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

2021-07-10 Thread Miroslav Šulc
commit: 22499670ca42d45b6edfd23a339c477bed6350cf
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Sun Jul 11 05:54:25 2021 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Sun Jul 11 05:54:25 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22499670

media-sound/qtractor: bump to 0.9.23

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

 media-sound/qtractor/Manifest   |   1 +
 media-sound/qtractor/qtractor-0.9.23.ebuild | 103 
 2 files changed, 104 insertions(+)

diff --git a/media-sound/qtractor/Manifest b/media-sound/qtractor/Manifest
index 245c0509953..bcfd45e1efb 100644
--- a/media-sound/qtractor/Manifest
+++ b/media-sound/qtractor/Manifest
@@ -1 +1,2 @@
 DIST qtractor-0.9.22.tar.gz 1946367 BLAKE2B 
7d53d9a31f6d9df6bdeb19d4d5687ec3037842ecfcd4e1ae167a541ade301c4cee1f1bda68c9186ec8d5f0e879c80f636536b5acd51137f4be783f5892d377be
 SHA512 
80e5dae7c38b95719ca16997022529dfbd5c51af209b54f819098299d2798677b6238dc9eaaf664cdf2437facda3757e39472ca74636eeddbb5e1f0f28a78b2c
+DIST qtractor-0.9.23.tar.gz 1951615 BLAKE2B 
6ccf22ccc21ad36aecff63a16de9e3bb2ae19ba6fd7475432c3cd1e37ce2468f837a68c160ceec0f9c7ec9931e1fc1614c3a84cd0dd34078d1e227868338c021
 SHA512 
fe57cc82d072ed49569441bb9f25f5233c0d7a6e7f0958a84247c8896741f2e4b83067e69d8e7999ccd9e68002b0e6ba4dc084674286952c17d472ae9f507bbd

diff --git a/media-sound/qtractor/qtractor-0.9.23.ebuild 
b/media-sound/qtractor/qtractor-0.9.23.ebuild
new file mode 100644
index 000..56455102cfd
--- /dev/null
+++ b/media-sound/qtractor/qtractor-0.9.23.ebuild
@@ -0,0 +1,103 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit flag-o-matic cmake xdg
+
+DESCRIPTION="Audio/MIDI multi-track sequencer written in C++ with the Qt 
framework"
+HOMEPAGE="https://qtractor.sourceforge.io;
+SRC_URI="mirror://sourceforge/qtractor/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+IUSE="aubio cpu_flags_x86_sse debug dssi ladspa libsamplerate mad osc 
rubberband vorbis zlib"
+REQUIRED_USE="dssi? ( ladspa )"
+
+BDEPEND="
+   dev-qt/linguist-tools:5
+   virtual/pkgconfig
+"
+DEPEND="
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtwidgets:5
+   dev-qt/qtxml:5
+   dev-qt/qtx11extras:5
+   media-libs/alsa-lib
+   media-libs/libsndfile
+   media-libs/lilv
+   media-libs/lv2
+   media-libs/suil
+   virtual/jack
+   aubio? ( media-libs/aubio )
+   dssi? ( media-libs/dssi )
+   ladspa? ( media-libs/ladspa-sdk )
+   libsamplerate? ( media-libs/libsamplerate )
+   mad? ( media-libs/libmad )
+   osc? ( media-libs/liblo )
+   rubberband? ( media-libs/rubberband )
+   vorbis? ( media-libs/libvorbis )
+   zlib? ( sys-libs/zlib )
+"
+RDEPEND="${DEPEND}"
+
+src_prepare() {
+   cmake_src_prepare
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DCONFIG_DSSI=$(usex dssi 1 0)
+   -DCONFIG_GRADIENT=1
+   -DCONFIG_JACK_LATENCY=1
+   -DCONFIG_JACK_METADATA=1
+   -DCONFIG_JACK_SESSION=1
+   -DCONFIG_LADSPA=$(usex ladspa 1 0)
+   -DCONFIG_LIBAUBIO=$(usex aubio 1 0)
+   -DCONFIG_LIBLILV=1
+   -DCONFIG_LIBLO=$(usex osc 1 0)
+   -DCONFIG_LIBMAD=$(usex mad 1 0)
+   -DCONFIG_LIBRUBBERBAND=$(usex rubberband 1 0)
+   -DCONFIG_LIBSAMPLERATE=$(usex libsamplerate 1 0)
+   -DCONFIG_LIBVORBIS=$(usex vorbis 1 0)
+   -DCONFIG_LIBZ=$(usex zlib 1 0)
+   -DCONFIG_LV2=1
+   -DCONFIG_LV2_UI_GTK2=0
+   -DCONFIG_NSM=0
+   -DCONFIG_SSE=$(usex cpu_flags_x86_sse 1 0)
+   -DCONFIG_STACKTRACE=$(usex debug 1 0)
+   -DCONFIG_VESTIGE=0
+   -DCONFIG_VST=0
+   -DCONFIG_VST3=0
+   -DCONFIG_XUNIQUE=0
+   )
+   # Following options are left to the default
+   # CONFIG_LV2_ATOM
+   # CONFIG_LV2_BUF_SIZE
+   # CONFIG_LV2_CVPORT
+   # CONFIG_LV2_EVENT
+   # CONFIG_LV2_EXTERNAL_UI
+   # CONFIG_LV2_MIDNAM
+   # CONFIG_LV2_OPTIONS
+   # CONFIG_LV2_PARAMETERS
+   # CONFIG_LV2_PATCH
+   # CONFIG_LV2_PORT_EVENT
+   # CONFIG_LV2_PRESETS
+   # CONFIG_LV2_PROGRAMS
+   # CONFIG_LV2_STATE
+   # CONFIG_LV2_STATE_FILES
+   # CONFIG_LV2_STATE_MAKE_PATH
+   # CONFIG_LV2_TIME
+   # CONFIG_LV2_TIME_POSITION
+   # CONFIG_LV2_UI
+   # CONFIG_LV2_UI_IDLE
+   # CONFIG_LV2_UI_REQ_VALUE
+   # CONFIG_LV2_UI_SHOW
+   # CONFIG_LV2_UI_TOUCH
+   # CONFIG_LV2_WORKER
+   # CONFIG_LV2_UI_X11
+   cmake_src_configure
+}



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qt-creator/, dev-qt/qt-creator/files/

2021-07-10 Thread Davide Pesavento
commit: 69c7ab38c931d19f61adb59bebadecc2ca598632
Author: Davide Pesavento  gentoo  org>
AuthorDate: Sun Jul 11 05:29:54 2021 +
Commit: Davide Pesavento  gentoo  org>
CommitDate: Sun Jul 11 05:29:54 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=69c7ab38

dev-qt/qt-creator: remove half-broken 4.12.3-r1

Bug: https://bugs.gentoo.org/757756
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Davide Pesavento  gentoo.org>

 dev-qt/qt-creator/Manifest |   1 -
 .../files/qt-creator-4.12.0-dylib-fix.patch|  84 
 .../qt-creator-4.12.0-libclangformat-ide.patch |  64 --
 dev-qt/qt-creator/metadata.xml |   2 -
 dev-qt/qt-creator/qt-creator-4.12.3-r1.ebuild  | 235 -
 5 files changed, 386 deletions(-)

diff --git a/dev-qt/qt-creator/Manifest b/dev-qt/qt-creator/Manifest
index d88825421b0..975ecb0a7d2 100644
--- a/dev-qt/qt-creator/Manifest
+++ b/dev-qt/qt-creator/Manifest
@@ -1,2 +1 @@
-DIST qt-creator-opensource-src-4.12.3.tar.xz 34351356 BLAKE2B 
7f1302df09bae10ebe1882552abd25333788d7185280e9a0c73e7da6fb8b4d929da326e42c500385fba3e044350cd46c2cf2e33e49b0cca2d9c3b4d68693115d
 SHA512 
48cd5839cff724300516f78deba3b1a7199d46d6f9a6a4c662bf2f581db167e4376a9bdd544544071591c4ee43c319c92ffcaf5ebb85412297f4144c3c7db7bf
 DIST qt-creator-opensource-src-4.15.1.tar.xz 44655240 BLAKE2B 
80d4b4688702f490ee478fa3efc34d72fcc586f27a480e310a3fbc5e2a5938cf61053ca87522884da2f4c2560f735a228f0fb24a63887a41fe5d21ff69f6344a
 SHA512 
a735e2c14a4e9ca94ae209039017747f51320b465fdcf9d63e62bdf4d63d5099c6b114fa14af8869acf9290fba57be6bb756dcf78edcc6f3ac620c9e844241a3

diff --git a/dev-qt/qt-creator/files/qt-creator-4.12.0-dylib-fix.patch 
b/dev-qt/qt-creator/files/qt-creator-4.12.0-dylib-fix.patch
deleted file mode 100644
index 0d4deb2c795..000
--- a/dev-qt/qt-creator/files/qt-creator-4.12.0-dylib-fix.patch
+++ /dev/null
@@ -1,84 +0,0 @@
-From 1c5faa6dcf16135ee31252d13766d01536a69405 Mon Sep 17 00:00:00 2001
-From: Peter Levine 
-Date: Tue, 5 May 2020 03:45:35 -0400
-Subject: [PATCH] Fix building against clang configured with
- CLANG_LINK_CLANG_DYLIB
-
-LLVM/Clang upstream only officially supports building shared
-components as a single dynamic library (via
-LLVM_BUILD_LLVM_DYLIB=ON, CLANG_LINK_CLANG_DYLIB=ON, etc..).
-Linux distros like Fedora and Gentoo have followed suit.
-
-Unfortunately, QT-Creator's src/shared/clang/clang_installation.pri
-file assumes clang is built with separate component libraries
-and the build fails.
-
-This change alters the build to check for the existence
-of clang component libraries and, if found, link to them, or
-otherwise to libclang-cpp.
-
-Task-number: QTCREATORBUG-23172
-Change-Id: I17df5822d7aeb471227f21f2cf4a71871d6f9b86

- src/shared/clang/clang_installation.pri | 35 +++--
- 1 file changed, 21 insertions(+), 14 deletions(-)
-
-diff --git a/src/shared/clang/clang_installation.pri 
b/src/shared/clang/clang_installation.pri
-index 08838838bca..c191c57f1c7 100644
 a/src/shared/clang/clang_installation.pri
-+++ b/src/shared/clang/clang_installation.pri
-@@ -204,19 +204,6 @@ isEmpty(LLVM_VERSION) {
- }
- }
- 
--
isEmpty(QTC_CLANG_BUILDMODE_MISMATCH)|!equals(QTC_CLANG_BUILDMODE_MISMATCH, 1) {
--CLANGFORMAT_MAIN_HEADER = $$LLVM_INCLUDEPATH/clang/Format/Format.h
--exists($$CLANGFORMAT_MAIN_HEADER) {
--CLANGFORMAT_LIBS=-lclangFormat -lclangToolingInclusions 
-lclangToolingCore -lclangRewrite -lclangLex -lclangBasic
--ALL_CLANG_LIBS=-lclangFormat -lclangToolingInclusions 
-lclangTooling -lclangToolingCore \
--   -lclangRewrite -lclangIndex -lclangFrontend 
-lclangParse -lclangSerialization \
--   -lclangSema -lclangEdit -lclangAnalysis 
-lclangDriver -lclangDynamicASTMatchers \
--   -lclangASTMatchers -lclangAST -lclangLex 
-lclangBasic
--win32:CLANGFORMAT_LIBS += -lversion
--}
--}
--win32:ALL_CLANG_LIBS += -lversion
--
- LIBCLANG_MAIN_HEADER = $$LLVM_INCLUDEPATH/clang-c/Index.h
- !exists($$LIBCLANG_MAIN_HEADER) {
- $$llvmWarningOrError(\
-@@ -237,10 +224,30 @@ isEmpty(LLVM_VERSION) {
- LIBCLANG_LIBS += $${CLANG_LIB}
- 
- 
isEmpty(QTC_CLANG_BUILDMODE_MISMATCH)|!equals(QTC_CLANG_BUILDMODE_MISMATCH, 1) {
-+CLANGFORMAT_MAIN_HEADER = $$LLVM_INCLUDEPATH/clang/Format/Format.h
-+exists($$CLANGFORMAT_MAIN_HEADER) {
-+
exists($${LLVM_LIBDIR}/libclangFormat.so*)|exists($${LLVM_LIBDIR}/libclangFormat.dylib)
 {
-+CLANGFORMAT_LIBS=-lclangFormat -lclangToolingInclusions 
-lclangToolingCore -lclangRewrite -lclangLex -lclangBasic
-+ALL_CLANG_LIBS=-lclangFormat -lclangToolingInclusions 
-lclangTooling -lclangToolingCore \
-+   -lclangRewrite -lclangIndex -lclangFrontend 
-lclangParse 

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

2021-07-10 Thread Davide Pesavento
commit: 6071107a60004a01f2a5a5085c2fc2f42014083f
Author: Davide Pesavento  gentoo  org>
AuthorDate: Sun Jul 11 05:34:04 2021 +
Commit: Davide Pesavento  gentoo  org>
CommitDate: Sun Jul 11 05:34:04 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6071107a

profiles/base/package.use.mask: drop obsolete entry for qt-creator

Bug: https://bugs.gentoo.org/757756
Signed-off-by: Davide Pesavento  gentoo.org>

 profiles/base/package.use.mask | 4 
 1 file changed, 4 deletions(-)

diff --git a/profiles/base/package.use.mask b/profiles/base/package.use.mask
index d9a86e696f2..83513d5d82c 100644
--- a/profiles/base/package.use.mask
+++ b/profiles/base/package.use.mask
@@ -136,10 +136,6 @@ media-gfx/blender doc
 # but making it do so while vendored is a non-trivial task.
 mail-mta/protonmail-bridge gui
 
-# Michał Górny  (2020-11-29)
-# libclangformat-ide is masked for removal.
-dev-qt/qt-creator clang
-
 # Michał Górny  (2020-09-27)
 # The respective dependencies are masked for removal.
 net-im/telepathy-connection-managers gadu icq meanwhile steam yahoo



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

2021-07-10 Thread Davide Pesavento
commit: 3985c100044bc6ae7e088951d8436dccbb827810
Author: Davide Pesavento  gentoo  org>
AuthorDate: Sun Jul 11 05:01:57 2021 +
Commit: Davide Pesavento  gentoo  org>
CommitDate: Sun Jul 11 05:01:57 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3985c100

dev-qt/qt-creator: sync KEYWORDS

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

 dev-qt/qt-creator/qt-creator-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-qt/qt-creator/qt-creator-.ebuild 
b/dev-qt/qt-creator/qt-creator-.ebuild
index 228e4f838dd..bfc4e05275d 100644
--- a/dev-qt/qt-creator/qt-creator-.ebuild
+++ b/dev-qt/qt-creator/qt-creator-.ebuild
@@ -19,7 +19,7 @@ else
[[ ${MY_PV} == ${PV} ]] && MY_REL=official || MY_REL=development
SRC_URI="https://download.qt.io/${MY_REL}_releases/${PN/-}/$(ver_cut 
1-2)/${MY_PV}/${MY_P}.tar.xz"
S=${WORKDIR}/${MY_P}
-   KEYWORDS="~amd64 ~x86"
+   KEYWORDS="~amd64 ~arm ~x86"
 fi
 
 LICENSE="GPL-3"



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

2021-07-10 Thread Davide Pesavento
commit: a3345ca863b3f721acd8841249670c2fcba9616a
Author: Hans Fredrik Nordhaug  gmail  com>
AuthorDate: Sun Jul 11 05:17:36 2021 +
Commit: Davide Pesavento  gentoo  org>
CommitDate: Sun Jul 11 05:18:54 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a3345ca8

dev-qt/qt-creator: add 4.15.1

Closes: https://bugs.gentoo.org/721720
Closes: https://bugs.gentoo.org/750527
Closes: https://github.com/gentoo/gentoo/pull/21278
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Hans Fredrik Nordhaug  gmail.com>
Signed-off-by: Davide Pesavento  gentoo.org>

 dev-qt/qt-creator/Manifest |   1 +
 dev-qt/qt-creator/qt-creator-4.15.1.ebuild | 232 +
 2 files changed, 233 insertions(+)

diff --git a/dev-qt/qt-creator/Manifest b/dev-qt/qt-creator/Manifest
index 2b32f1fba3a..d88825421b0 100644
--- a/dev-qt/qt-creator/Manifest
+++ b/dev-qt/qt-creator/Manifest
@@ -1 +1,2 @@
 DIST qt-creator-opensource-src-4.12.3.tar.xz 34351356 BLAKE2B 
7f1302df09bae10ebe1882552abd25333788d7185280e9a0c73e7da6fb8b4d929da326e42c500385fba3e044350cd46c2cf2e33e49b0cca2d9c3b4d68693115d
 SHA512 
48cd5839cff724300516f78deba3b1a7199d46d6f9a6a4c662bf2f581db167e4376a9bdd544544071591c4ee43c319c92ffcaf5ebb85412297f4144c3c7db7bf
+DIST qt-creator-opensource-src-4.15.1.tar.xz 44655240 BLAKE2B 
80d4b4688702f490ee478fa3efc34d72fcc586f27a480e310a3fbc5e2a5938cf61053ca87522884da2f4c2560f735a228f0fb24a63887a41fe5d21ff69f6344a
 SHA512 
a735e2c14a4e9ca94ae209039017747f51320b465fdcf9d63e62bdf4d63d5099c6b114fa14af8869acf9290fba57be6bb756dcf78edcc6f3ac620c9e844241a3

diff --git a/dev-qt/qt-creator/qt-creator-4.15.1.ebuild 
b/dev-qt/qt-creator/qt-creator-4.15.1.ebuild
new file mode 100644
index 000..bfc4e05275d
--- /dev/null
+++ b/dev-qt/qt-creator/qt-creator-4.15.1.ebuild
@@ -0,0 +1,232 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+LLVM_MAX_SLOT=12
+PLOCALES="cs da de fr hr ja pl ru sl uk zh-CN zh-TW"
+
+inherit llvm qmake-utils virtualx xdg
+
+DESCRIPTION="Lightweight IDE for C++/QML development centering around Qt"
+HOMEPAGE="https://doc.qt.io/qtcreator/;
+
+if [[ ${PV} == * ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://code.qt.io/${PN}/${PN}.git;
+else
+   MY_PV=${PV/_/-}
+   MY_P=${PN}-opensource-src-${MY_PV}
+   [[ ${MY_PV} == ${PV} ]] && MY_REL=official || MY_REL=development
+   SRC_URI="https://download.qt.io/${MY_REL}_releases/${PN/-}/$(ver_cut 
1-2)/${MY_PV}/${MY_P}.tar.xz"
+   S=${WORKDIR}/${MY_P}
+   KEYWORDS="~amd64 ~arm ~x86"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+QTC_PLUGINS=(android +autotest autotools:autotoolsprojectmanager baremetal 
bazaar beautifier boot2qt
+   '+clang:clangcodemodel|clangformat|clangtools' clearcase 
cmake:cmakeprojectmanager cppcheck
+   ctfvisualizer cvs +designer git glsl:glsleditor +help 
lsp:languageclient mcu:mcusupport mercurial
+   modeling:modeleditor nim perforce perfprofiler python 
qbs:qbsprojectmanager +qmldesigner
+   +qmljs:qmljseditor qmlprofiler qnx remotelinux scxml:scxmleditor 
serialterminal silversearcher
+   subversion valgrind webassembly)
+IUSE="doc systemd test webengine ${QTC_PLUGINS[@]%:*}"
+RESTRICT="!test? ( test )"
+REQUIRED_USE="
+   boot2qt? ( remotelinux )
+   clang? ( test? ( qbs ) )
+   mcu? ( cmake )
+   python? ( lsp )
+   qmldesigner? ( qmljs )
+   qnx? ( remotelinux )
+"
+
+# minimum Qt version required
+QT_PV="5.14:5"
+
+BDEPEND="
+   >=dev-qt/linguist-tools-${QT_PV}
+   virtual/pkgconfig
+   doc? ( >=dev-qt/qdoc-${QT_PV} )
+"
+CDEPEND="
+   >=dev-qt/qtconcurrent-${QT_PV}
+   >=dev-qt/qtcore-${QT_PV}
+   >=dev-qt/qtdeclarative-${QT_PV}[widgets]
+   >=dev-qt/qtgui-${QT_PV}
+   >=dev-qt/qtnetwork-${QT_PV}[ssl]
+   >=dev-qt/qtprintsupport-${QT_PV}
+   >=dev-qt/qtquickcontrols-${QT_PV}
+   >=dev-qt/qtscript-${QT_PV}
+   >=dev-qt/qtsql-${QT_PV}[sqlite]
+   >=dev-qt/qtsvg-${QT_PV}
+   >=dev-qt/qtwidgets-${QT_PV}
+   >=dev-qt/qtx11extras-${QT_PV}
+   >=dev-qt/qtxml-${QT_PV}
+   kde-frameworks/syntax-highlighting:5
+   clang? (
+   >=dev-cpp/yaml-cpp-0.6.2:=
+   || (
+   sys-devel/clang:12
+   sys-devel/clang:11
+   )
+   =dev-qt/designer-${QT_PV} )
+   help? (
+   >=dev-qt/qthelp-${QT_PV}
+   webengine? ( >=dev-qt/qtwebengine-${QT_PV}[widgets] )
+   )
+   perfprofiler? ( dev-libs/elfutils )
+   serialterminal? ( >=dev-qt/qtserialport-${QT_PV} )
+   systemd? ( sys-apps/systemd:= )
+"
+DEPEND="${CDEPEND}
+   test? (
+   >=dev-qt/qtdeclarative-${QT_PV}[localstorage]
+   >=dev-qt/qtquickcontrols2-${QT_PV}
+   >=dev-qt/qttest-${QT_PV}
+   >=dev-qt/qtxmlpatterns-${QT_PV}[qml]
+   )
+"

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

2021-07-10 Thread Davide Pesavento
commit: 18ac48856dec0d17c4dabd73bcdce52ec9531831
Author: Davide Pesavento  gentoo  org>
AuthorDate: Sun Jul 11 04:50:25 2021 +
Commit: Davide Pesavento  gentoo  org>
CommitDate: Sun Jul 11 04:53:25 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18ac4885

dev-qt/qt-creator: add hr translation

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

 dev-qt/qt-creator/qt-creator-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-qt/qt-creator/qt-creator-.ebuild 
b/dev-qt/qt-creator/qt-creator-.ebuild
index b22ecdc136b..228e4f838dd 100644
--- a/dev-qt/qt-creator/qt-creator-.ebuild
+++ b/dev-qt/qt-creator/qt-creator-.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 LLVM_MAX_SLOT=12
-PLOCALES="cs da de fr ja pl ru sl uk zh-CN zh-TW"
+PLOCALES="cs da de fr hr ja pl ru sl uk zh-CN zh-TW"
 
 inherit llvm qmake-utils virtualx xdg
 



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

2021-07-10 Thread Davide Pesavento
commit: 1e407a80672c4afedfdd712eae7e3b54df1a1a1b
Author: Hans Fredrik Nordhaug  gmail  com>
AuthorDate: Sun Jul 11 03:33:38 2021 +
Commit: Davide Pesavento  gentoo  org>
CommitDate: Sun Jul 11 04:53:24 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e407a80

dev-qt/qt-creator: adjust sed

https://github.com/gentoo/gentoo/pull/21278

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

 dev-qt/qt-creator/qt-creator-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-qt/qt-creator/qt-creator-.ebuild 
b/dev-qt/qt-creator/qt-creator-.ebuild
index 057d48b9f9a..9c70a14da51 100644
--- a/dev-qt/qt-creator/qt-creator-.ebuild
+++ b/dev-qt/qt-creator/qt-creator-.ebuild
@@ -182,7 +182,7 @@ src_prepare() {
sed -i -e '/CONFIG +=/s/$/ no_testcase_installs/' 
tests/auto/{qttest.pri,json/json.pro} || die
 
# fix path to some clang headers
-   sed -i -e 
"/^CLANG_RESOURCE_DIR\s*=/s:\$\${LLVM_LIBDIR}:${EPREFIX}/usr/lib:" 
src/shared/clang/clang_defines.pri || die
+   sed -i -e 
"/^CLANG_INCLUDE_DIR\s*=/s:\$\${LLVM_LIBDIR}:${EPREFIX}/usr/lib:" 
src/shared/clang/clang_defines.pri || die
 
# fix translations
local lang languages=



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

2021-07-10 Thread Davide Pesavento
commit: ed1763bf93e35fe1beea74462f7e153bbe057558
Author: Hans Fredrik Nordhaug  gmail  com>
AuthorDate: Sun Jul 11 03:24:47 2021 +
Commit: Davide Pesavento  gentoo  org>
CommitDate: Sun Jul 11 04:53:24 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed1763bf

dev-qt/qt-creator: drop obsolete patch

https://github.com/gentoo/gentoo/pull/21278

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

 dev-qt/qt-creator/qt-creator-.ebuild | 4 
 1 file changed, 4 deletions(-)

diff --git a/dev-qt/qt-creator/qt-creator-.ebuild 
b/dev-qt/qt-creator/qt-creator-.ebuild
index 18e67f9fc0b..057d48b9f9a 100644
--- a/dev-qt/qt-creator/qt-creator-.ebuild
+++ b/dev-qt/qt-creator/qt-creator-.ebuild
@@ -112,10 +112,6 @@ for x in ${PLOCALES}; do
 done
 unset x
 
-PATCHES=(
-   "${FILESDIR}"/${PN}-4.12.0-dylib-fix.patch
-)
-
 llvm_check_deps() {
has_version -d "sys-devel/clang:${LLVM_SLOT}"
 }



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

2021-07-10 Thread Davide Pesavento
commit: 9a9f0f76ee082dbefed69111aa9d802e024662e2
Author: Davide Pesavento  gentoo  org>
AuthorDate: Sun Jul 11 04:28:03 2021 +
Commit: Davide Pesavento  gentoo  org>
CommitDate: Sun Jul 11 04:53:24 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a9f0f76

dev-qt/qt-creator: require clang 11 or 12

Upstream recommends 11 or later

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

 dev-qt/qt-creator/qt-creator-.ebuild | 18 +-
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/dev-qt/qt-creator/qt-creator-.ebuild 
b/dev-qt/qt-creator/qt-creator-.ebuild
index 9c70a14da51..b22ecdc136b 100644
--- a/dev-qt/qt-creator/qt-creator-.ebuild
+++ b/dev-qt/qt-creator/qt-creator-.ebuild
@@ -2,15 +2,13 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-LLVM_MAX_SLOT=10
+LLVM_MAX_SLOT=12
 PLOCALES="cs da de fr ja pl ru sl uk zh-CN zh-TW"
 
 inherit llvm qmake-utils virtualx xdg
 
 DESCRIPTION="Lightweight IDE for C++/QML development centering around Qt"
 HOMEPAGE="https://doc.qt.io/qtcreator/;
-LICENSE="GPL-3"
-SLOT="0"
 
 if [[ ${PV} == * ]]; then
inherit git-r3
@@ -20,12 +18,12 @@ else
MY_P=${PN}-opensource-src-${MY_PV}
[[ ${MY_PV} == ${PV} ]] && MY_REL=official || MY_REL=development
SRC_URI="https://download.qt.io/${MY_REL}_releases/${PN/-}/$(ver_cut 
1-2)/${MY_PV}/${MY_P}.tar.xz"
-   KEYWORDS="~amd64 ~x86"
S=${WORKDIR}/${MY_P}
+   KEYWORDS="~amd64 ~x86"
 fi
 
-# TODO: unbundle sqlite
-
+LICENSE="GPL-3"
+SLOT="0"
 QTC_PLUGINS=(android +autotest autotools:autotoolsprojectmanager baremetal 
bazaar beautifier boot2qt
'+clang:clangcodemodel|clangformat|clangtools' clearcase 
cmake:cmakeprojectmanager cppcheck
ctfvisualizer cvs +designer git glsl:glsleditor +help 
lsp:languageclient mcu:mcusupport mercurial
@@ -69,8 +67,8 @@ CDEPEND="
clang? (
>=dev-cpp/yaml-cpp-0.6.2:=
|| (
-   sys-devel/clang:10
-   sys-devel/clang:9
+   sys-devel/clang:12
+   sys-devel/clang:11
)

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

2021-07-10 Thread Davide Pesavento
commit: dcb874465b3c7b145f837ea5f75137c2f0c1fc47
Author: Hans Fredrik Nordhaug  gmail  com>
AuthorDate: Sun Jul 11 03:21:02 2021 +
Commit: Davide Pesavento  gentoo  org>
CommitDate: Sun Jul 11 04:53:23 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dcb87446

dev-qt/qt-creator: drop obsolete dep on dev-libs/libclangformat-ide

https://github.com/gentoo/gentoo/pull/21278

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

 dev-qt/qt-creator/qt-creator-.ebuild | 10 +++---
 1 file changed, 3 insertions(+), 7 deletions(-)

diff --git a/dev-qt/qt-creator/qt-creator-.ebuild 
b/dev-qt/qt-creator/qt-creator-.ebuild
index e9e7c228800..18e67f9fc0b 100644
--- a/dev-qt/qt-creator/qt-creator-.ebuild
+++ b/dev-qt/qt-creator/qt-creator-.ebuild
@@ -69,10 +69,8 @@ CDEPEND="
clang? (
>=dev-cpp/yaml-cpp-0.6.2:=
|| (
-   ( sys-devel/clang:10
-   dev-libs/libclangformat-ide:10 )
-   ( sys-devel/clang:9
-   dev-libs/libclangformat-ide:9 )
+   sys-devel/clang:10
+   sys-devel/clang:9
)


[gentoo-commits] repo/proj/guru:dev commit in: sys-cluster/clusteringsuite/files/, sys-cluster/clusteringsuite/

2021-07-10 Thread Alessandro Barbieri
commit: bf5441f65964490eb32ea360af29fdcba3e15e0d
Author: Alessandro Barbieri  gmail  com>
AuthorDate: Sun Jul 11 04:13:53 2021 +
Commit: Alessandro Barbieri  gmail  com>
CommitDate: Sun Jul 11 04:13:53 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=bf5441f6

sys-cluster/clusteringsuite: update EAPI 7 -> 8

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

 .../clusteringsuite-2.6.9-r1.ebuild| 109 
 .../clusteringsuite-2.6.9-unbundle-libANN.patch| 193 +
 2 files changed, 302 insertions(+)

diff --git a/sys-cluster/clusteringsuite/clusteringsuite-2.6.9-r1.ebuild 
b/sys-cluster/clusteringsuite/clusteringsuite-2.6.9-r1.ebuild
new file mode 100644
index 0..cf6723918
--- /dev/null
+++ b/sys-cluster/clusteringsuite/clusteringsuite-2.6.9-r1.ebuild
@@ -0,0 +1,109 @@
+# Copyright 2019-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( pypy3 python3_{8..10} )
+
+inherit python-any-r1
+
+DESCRIPTION="Expose the main performance trends in applications computation 
structure"
+HOMEPAGE="
+   https://tools.bsc.es/cluster-analysis
+   https://github.com/bsc-performance-tools/clustering-suite
+"
+SRC_URI="https://ftp.tools.bsc.es/clusteringsuite/clusteringsuite-${PV}-src.tar.bz2;
+
+LICENSE="LGPL-2.1+"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="doc mpi"
+#TODO: muster treedbscan
+
+PATCHES=( "${FILESDIR}/${P}-unbundle-libANN.patch" )
+
+RDEPEND="
+   dev-libs/boost:=
+   sci-libs/ann
+   sys-cluster/libbsctools
+   mpi? ( virtual/mpi )
+"
+#  treedbscan? (
+#  dev-libs/boost[threads]:=
+#  dev-libs/gmp
+#  dev-libs/mpfr
+#  sci-mathematics/cgal
+#  sys-cluster/synapse
+#)
+
+DEPEND="
+   ${RDEPEND}
+   ${PYTHON_DEPS}
+"
+BDEPEND="doc? ( app-doc/doxygen )"
+
+src_prepare() {
+   rm -r src/libANN || die
+#  rm -r pcfparser_svn3942 || die
+   default
+}
+
+src_configure() {
+
+   local myconf=(
+   --disable-old-pcfparser
+   --disable-static
+   --disable-static-boost
+   --enable-shared
+   --with-boost="${EPREFIX}/usr"
+   --with-pic
+   )
+
+   if use mpi; then
+   myconf+=( "--with-mpi=${EPREFIX}/usr" )
+   else
+   myconf+=( "--without-mpi" )
+   fi
+#  if use muster; then
+#  myconf+=( "--with-muster=${EPREFIX}/usr" )
+#  else
+   myconf+=( "--without-muster" )
+#  fi
+#  if use treedbscan; then
+#  myconf+=( "--enable-treedbscan" )
+#  myconf+=( "--with-cgal=${EPREFIX}/usr" )
+#  myconf+=( "--with-gmp=${EPREFIX}/usr" )
+#  myconf+=( "--with-mpfr=${EPREFIX}/usr" )
+#  myconf+=( "--with-synapse=${EPREFIX}/usr" )
+#  else
+   myconf+=( "--without-cgal" )
+   myconf+=( "--without-gmp" )
+   myconf+=( "--without-mpfr" )
+   myconf+=( "--without-synapse" )
+#  fi
+
+   econf "${myconf[@]}" || die
+}
+
+src_compile() {
+   export VARTEXFONTS="${T}/fonts"
+   if use doc ; then
+   pushd doc || die
+   emake build-documentation
+   popd
+   fi
+   default
+}
+
+src_install() {
+   MAKEOPTS="-j1" DESTDIR="${D}" emake install
+
+   cd doc || die
+   dodoc -r *.pdf
+
+   rm "${ED}/usr/share/doc/clusteringsuite_manual.pdf" || die
+   mv "${ED}/usr/share/example" "${ED}/usr/share/doc/${PF}/examples" || die
+   docompress -x "/usr/share/doc/${PF}/examples"
+
+   find "${ED}" -name '*.la' -delete || die
+}

diff --git 
a/sys-cluster/clusteringsuite/files/clusteringsuite-2.6.9-unbundle-libANN.patch 
b/sys-cluster/clusteringsuite/files/clusteringsuite-2.6.9-unbundle-libANN.patch
new file mode 100644
index 0..fd6e15517
--- /dev/null
+++ 
b/sys-cluster/clusteringsuite/files/clusteringsuite-2.6.9-unbundle-libANN.patch
@@ -0,0 +1,193 @@
+--- a/configure
 b/configure
+@@ -19970,7 +19970,7 @@
+ 
+ 
+ 
+-ac_config_files="$ac_config_files Makefile include/Makefile 
common_utilities/Makefile pcfparser_svn3942/Makefile src/Makefile 
src/BasicClasses/Makefile src/libParaverTraceParser/Makefile 
src/libSharedComponents/Makefile src/libSharedComponents/kalign2/Makefile 
src/libANN/Makefile src/libClustering/gmeans/Makefile 
src/libClustering/Makefile src/libTraceClustering/Makefile 
src/DBSCANParametersApproximation/Makefile src/BurstClustering/Makefile 
src/ClusteringDataExtractor/Makefile src/ClustersDiff/Makefile 
src/ClustersSequenceScore/Makefile scripts/Makefile 
src/MusterDistributedClustering/Makefile src/libDistributedClustering/Makefile 
src/TreeDBSCAN/Makefile src/TreeDBSCAN/scripts/Makefile doc/Makefile"
++ac_config_files="$ac_config_files Makefile include/Makefile 
common_utilities/Makefile 

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

2021-07-10 Thread Craig Andrews
commit: 528d59f18a7a1b17acedb4628e22de3fb29c0b5b
Author: YiyangWu  gmail  com>
AuthorDate: Sun Jul 11 03:04:44 2021 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Sun Jul 11 03:25:34 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=528d59f1

dev-libs/rocr-runtime: fix for gentoo prefix

The current ebuild cannot find bitcode during cmake configuration in
gentoo prefix. This commit provide a fix.

version >= 4 are modified, while 3.x are older versions which remain
original states.

Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Yiyang Wu  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/21590
Signed-off-by: Craig Andrews  gentoo.org>

 dev-libs/rocr-runtime/rocr-runtime-4.0.0.ebuild | 4 ++--
 dev-libs/rocr-runtime/rocr-runtime-4.1.0.ebuild | 4 ++--
 dev-libs/rocr-runtime/rocr-runtime-4.2.0.ebuild | 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/dev-libs/rocr-runtime/rocr-runtime-4.0.0.ebuild 
b/dev-libs/rocr-runtime/rocr-runtime-4.0.0.ebuild
index 256f7ffb9e4..6326a7e4b20 100644
--- a/dev-libs/rocr-runtime/rocr-runtime-4.0.0.ebuild
+++ b/dev-libs/rocr-runtime/rocr-runtime-4.0.0.ebuild
@@ -38,10 +38,10 @@ src_prepare() {
sed -e "s:get_version ( \"1.0.0\" ):get_version ( \"${PV}\" ):" -i 
CMakeLists.txt || die
 
# ... otherwise system llvm/clang is used ...
-   sed -e "s:find_package(Clang REQUIRED HINTS 
\${CMAKE_INSTALL_PREFIX}/llvm \${CMAKE_PREFIX_PATH}/llvm PATHS /opt/rocm/llvm 
):find_package(Clang REQUIRED HINTS /usr/lib/llvm/roc ):" -i 
image/blit_src/CMakeLists.txt || die
+   sed -e "s:find_package(Clang REQUIRED HINTS 
\${CMAKE_INSTALL_PREFIX}/llvm \${CMAKE_PREFIX_PATH}/llvm PATHS /opt/rocm/llvm 
):find_package(Clang REQUIRED HINTS ${EPREFIX}/usr/lib/llvm/roc ):" -i 
image/blit_src/CMakeLists.txt || die
 
# Gentoo installs "*.bc" to "/usr/lib" instead of a "[path]/bitcode" 
directory ...
-   sed -e "s:/opt/rocm/amdgcn/bitcode:/usr/lib/amdgcn/bitcode:" -i 
image/blit_src/CMakeLists.txt || die
+   sed -e "s:/opt/rocm/amdgcn/bitcode:${EPREFIX}/usr/lib/amdgcn/bitcode:" 
-i image/blit_src/CMakeLists.txt || die
 
cmake_src_prepare
 }

diff --git a/dev-libs/rocr-runtime/rocr-runtime-4.1.0.ebuild 
b/dev-libs/rocr-runtime/rocr-runtime-4.1.0.ebuild
index 38fc7decb01..e91c230b519 100644
--- a/dev-libs/rocr-runtime/rocr-runtime-4.1.0.ebuild
+++ b/dev-libs/rocr-runtime/rocr-runtime-4.1.0.ebuild
@@ -39,10 +39,10 @@ src_prepare() {
sed -e "s:get_version ( \"1.0.0\" ):get_version ( \"${PV}\" ):" -i 
CMakeLists.txt || die
 
# ... otherwise system llvm/clang is used ...
-   sed -e "s:find_package(Clang REQUIRED HINTS 
\${CMAKE_INSTALL_PREFIX}/llvm \${CMAKE_PREFIX_PATH}/llvm PATHS /opt/rocm/llvm 
):find_package(Clang REQUIRED HINTS /usr/lib/llvm/roc ):" -i 
image/blit_src/CMakeLists.txt || die
+   sed -e "s:find_package(Clang REQUIRED HINTS 
\${CMAKE_INSTALL_PREFIX}/llvm \${CMAKE_PREFIX_PATH}/llvm PATHS /opt/rocm/llvm 
):find_package(Clang REQUIRED HINTS ${EPREFIX}/usr/lib/llvm/roc ):" -i 
image/blit_src/CMakeLists.txt || die
 
# Gentoo installs "*.bc" to "/usr/lib" instead of a "[path]/bitcode" 
directory ...
-   sed -e "s:/opt/rocm/amdgcn/bitcode:/usr/lib/amdgcn/bitcode:" -i 
image/blit_src/CMakeLists.txt || die
+   sed -e "s:/opt/rocm/amdgcn/bitcode:${EPREFIX}/usr/lib/amdgcn/bitcode:" 
-i image/blit_src/CMakeLists.txt || die
 
cmake_src_prepare
 }

diff --git a/dev-libs/rocr-runtime/rocr-runtime-4.2.0.ebuild 
b/dev-libs/rocr-runtime/rocr-runtime-4.2.0.ebuild
index 75444f1b60d..c9bc5602a20 100644
--- a/dev-libs/rocr-runtime/rocr-runtime-4.2.0.ebuild
+++ b/dev-libs/rocr-runtime/rocr-runtime-4.2.0.ebuild
@@ -37,10 +37,10 @@ src_prepare() {
sed -e "s:get_version ( \"1.0.0\" ):get_version ( \"${PV}\" ):" -i 
CMakeLists.txt || die
 
# ... otherwise system llvm/clang is used ...
-   sed -e "s:find_package(Clang REQUIRED HINTS 
\${CMAKE_INSTALL_PREFIX}/llvm \${CMAKE_PREFIX_PATH}/llvm PATHS /opt/rocm/llvm 
):find_package(Clang REQUIRED HINTS /usr/lib/llvm/roc ):" -i 
image/blit_src/CMakeLists.txt || die
+   sed -e "s:find_package(Clang REQUIRED HINTS 
\${CMAKE_INSTALL_PREFIX}/llvm \${CMAKE_PREFIX_PATH}/llvm PATHS /opt/rocm/llvm 
):find_package(Clang REQUIRED HINTS ${EPREFIX}/usr/lib/llvm/roc ):" -i 
image/blit_src/CMakeLists.txt || die
 
# Gentoo installs "*.bc" to "/usr/lib" instead of a "[path]/bitcode" 
directory ...
-   sed -e "s:/opt/rocm/amdgcn/bitcode:/usr/lib/amdgcn/bitcode:" -i 
image/blit_src/CMakeLists.txt || die
+   sed -e "s:/opt/rocm/amdgcn/bitcode:${EPREFIX}/usr/lib/amdgcn/bitcode:" 
-i image/blit_src/CMakeLists.txt || die
 
cmake_src_prepare
 }



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

2021-07-10 Thread Sam James
commit: 8fbb5f56d5e2171265da424eebfcd4014d64e94f
Author: Sam James  gentoo  org>
AuthorDate: Sun Jul 11 02:30:37 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jul 11 02:30:38 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fbb5f56

dev-perl/common-sense: Stabilize 3.750.0 ppc64, #801505

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

 dev-perl/common-sense/common-sense-3.750.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/common-sense/common-sense-3.750.0.ebuild 
b/dev-perl/common-sense/common-sense-3.750.0.ebuild
index 196315f6383..e8d703405ec 100644
--- a/dev-perl/common-sense/common-sense-3.750.0.ebuild
+++ b/dev-perl/common-sense/common-sense-3.750.0.ebuild
@@ -10,6 +10,6 @@ inherit perl-module
 DESCRIPTION="Save a tree AND a kitten, use common::sense!"
 
 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 ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv 
~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 BDEPEND="virtual/perl-ExtUtils-MakeMaker"



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

2021-07-10 Thread Sam James
commit: b2b4ae5c8c54463d8f23a4a72c690849421047c3
Author: Sam James  gentoo  org>
AuthorDate: Sun Jul 11 02:30:26 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jul 11 02:30:26 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2b4ae5c

net-libs/libqmi: Stabilize 1.28.6 arm, #800710

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

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

diff --git a/net-libs/libqmi/libqmi-1.28.6.ebuild 
b/net-libs/libqmi/libqmi-1.28.6.ebuild
index 236bf236f01..a976ea1a176 100644
--- a/net-libs/libqmi/libqmi-1.28.6.ebuild
+++ b/net-libs/libqmi/libqmi-1.28.6.ebuild
@@ -7,7 +7,7 @@ if [[ ${PV} == "" ]] ; then
inherit git-r3 autotools

EGIT_REPO_URI="https://gitlab.freedesktop.org/mobile-broadband/libqmi.git;
 else
-   KEYWORDS="amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 x86"
+   KEYWORDS="amd64 arm ~arm64 ~mips ~ppc ~ppc64 x86"
SRC_URI="https://www.freedesktop.org/software/libqmi/${P}.tar.xz;
 fi
 



[gentoo-commits] repo/gentoo:master commit in: sys-fs/mtools/

2021-07-10 Thread Sam James
commit: 388ffa916246377069f4fd7c90fcf256b2fc3185
Author: Sam James  gentoo  org>
AuthorDate: Sun Jul 11 02:30:42 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jul 11 02:30:42 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=388ffa91

sys-fs/mtools: Stabilize 4.0.31 ppc64, #801508

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

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

diff --git a/sys-fs/mtools/mtools-4.0.31.ebuild 
b/sys-fs/mtools/mtools-4.0.31.ebuild
index ba027f55ae6..44f7b56ea37 100644
--- a/sys-fs/mtools/mtools-4.0.31.ebuild
+++ b/sys-fs/mtools/mtools-4.0.31.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.bz2"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 sparc ~x86 
~x64-macos ~x64-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ppc64 sparc ~x86 
~x64-macos ~x64-solaris"
 IUSE="X elibc_glibc"
 
 RDEPEND="



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

2021-07-10 Thread Sam James
commit: 3e56e39e3e5c3fc24747342d92570dfcdcde19e2
Author: Sam James  gentoo  org>
AuthorDate: Sun Jul 11 02:30:34 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jul 11 02:30:34 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e56e39e

dev-perl/common-sense: Stabilize 3.750.0 sparc, #801505

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

 dev-perl/common-sense/common-sense-3.750.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/common-sense/common-sense-3.750.0.ebuild 
b/dev-perl/common-sense/common-sense-3.750.0.ebuild
index ba688959bb3..196315f6383 100644
--- a/dev-perl/common-sense/common-sense-3.750.0.ebuild
+++ b/dev-perl/common-sense/common-sense-3.750.0.ebuild
@@ -10,6 +10,6 @@ inherit perl-module
 DESCRIPTION="Save a tree AND a kitten, use common::sense!"
 
 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 ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 BDEPEND="virtual/perl-ExtUtils-MakeMaker"



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

2021-07-10 Thread Sam James
commit: 459743ccd9ecf1aac2abe738a4c63ef3921bb1fe
Author: Sam James  gentoo  org>
AuthorDate: Sun Jul 11 02:30:28 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jul 11 02:30:28 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=459743cc

net-misc/modemmanager: Stabilize 1.16.6 arm, #800710

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

 net-misc/modemmanager/modemmanager-1.16.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/modemmanager/modemmanager-1.16.6.ebuild 
b/net-misc/modemmanager/modemmanager-1.16.6.ebuild
index a2a59e1bf2c..27b11ec802c 100644
--- a/net-misc/modemmanager/modemmanager-1.16.6.ebuild
+++ b/net-misc/modemmanager/modemmanager-1.16.6.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://www.freedesktop.org/software/ModemManager/ModemManager-${PV}.ta
 
 LICENSE="GPL-2+"
 SLOT="0/1" # subslot = dbus interface version, i.e. N in 
org.freedesktop.ModemManager${N}
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sparc x86"
 
 IUSE="elogind +introspection mbim policykit +qmi systemd +udev vala"
 REQUIRED_USE="



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

2021-07-10 Thread Sam James
commit: 6bf7f3b24a1eedac0a7dbaa244d916aac21145a1
Author: Sam James  gentoo  org>
AuthorDate: Sun Jul 11 02:30:32 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jul 11 02:30:32 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6bf7f3b2

x11-libs/vte: Stabilize 0.64.2 arm, #800710

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

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

diff --git a/x11-libs/vte/vte-0.64.2.ebuild b/x11-libs/vte/vte-0.64.2.ebuild
index 4870cb12364..a9fd2cecf6a 100644
--- a/x11-libs/vte/vte-0.64.2.ebuild
+++ b/x11-libs/vte/vte-0.64.2.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://wiki.gnome.org/Apps/Terminal/VTE;
 LICENSE="LGPL-3+ GPL-3+"
 SLOT="2.91"
 IUSE="+crypt debug gtk-doc +icu +introspection systemd +vala vanilla"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv sparc 
x86 ~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv sparc 
x86 ~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris"
 REQUIRED_USE="vala? ( introspection )"
 
 # Upstream is hostile and refuses to upload tarballs.



[gentoo-commits] repo/gentoo:master commit in: sys-fs/mtools/

2021-07-10 Thread Sam James
commit: 36c7a9f9db6d36108b8e023cf55b795f89a1f9f5
Author: Sam James  gentoo  org>
AuthorDate: Sun Jul 11 02:30:36 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jul 11 02:30:36 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36c7a9f9

sys-fs/mtools: Stabilize 4.0.31 sparc, #801508

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

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

diff --git a/sys-fs/mtools/mtools-4.0.31.ebuild 
b/sys-fs/mtools/mtools-4.0.31.ebuild
index 3ebdd3b6df9..ba027f55ae6 100644
--- a/sys-fs/mtools/mtools-4.0.31.ebuild
+++ b/sys-fs/mtools/mtools-4.0.31.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.bz2"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 
~x64-macos ~x64-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 sparc ~x86 
~x64-macos ~x64-solaris"
 IUSE="X elibc_glibc"
 
 RDEPEND="



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

2021-07-10 Thread Sam James
commit: 58755886599a2baffc74e73cb0dfbe0e4a1a4c94
Author: Sam James  gentoo  org>
AuthorDate: Sun Jul 11 02:30:24 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jul 11 02:30:24 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58755886

net-libs/libmbim: Stabilize 1.24.8 arm, #800710

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

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

diff --git a/net-libs/libmbim/libmbim-1.24.8.ebuild 
b/net-libs/libmbim/libmbim-1.24.8.ebuild
index d22a92a6893..f8479e0bdfa 100644
--- a/net-libs/libmbim/libmbim-1.24.8.ebuild
+++ b/net-libs/libmbim/libmbim-1.24.8.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="https://www.freedesktop.org/software/libmbim/${P}.tar.xz;
 
 LICENSE="LGPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~mips ~ppc ~ppc64 x86"
 IUSE="udev"
 
 RDEPEND=">=dev-libs/glib-2.48:2



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

2021-07-10 Thread Sam James
commit: bbe823796f957c434af934fde2db0350dc1a364f
Author: Sam James  gentoo  org>
AuthorDate: Sun Jul 11 02:30:30 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jul 11 02:30:30 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bbe82379

x11-libs/pango: Stabilize 1.48.7 arm, #800710

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

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

diff --git a/x11-libs/pango/pango-1.48.7.ebuild 
b/x11-libs/pango/pango-1.48.7.ebuild
index 6c0f07e8f45..c03e354e9bd 100644
--- a/x11-libs/pango/pango-1.48.7.ebuild
+++ b/x11-libs/pango/pango-1.48.7.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="http://ftp.gnome.org/pub/GNOME/sources/pango/$(ver_cut 1-2)/${P}.tar.xz
 
 LICENSE="LGPL-2+ FTL"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv sparc x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv sparc x86"
 
 IUSE="gtk-doc +introspection sysprof test X"
 RESTRICT="!test? ( test )"



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

2021-07-10 Thread Sam James
commit: 3af1dffa614c72af94879574aa1e59f2c6d76e3f
Author: Sam James  gentoo  org>
AuthorDate: Sun Jul 11 02:30:08 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jul 11 02:30:08 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3af1dffa

dev-util/glib-utils: Stabilize 2.68.3 arm, #800710

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

 dev-util/glib-utils/glib-utils-2.68.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/glib-utils/glib-utils-2.68.3.ebuild 
b/dev-util/glib-utils/glib-utils-2.68.3.ebuild
index 3213306e53c..e8a8a7eaec6 100644
--- a/dev-util/glib-utils/glib-utils-2.68.3.ebuild
+++ b/dev-util/glib-utils/glib-utils-2.68.3.ebuild
@@ -14,7 +14,7 @@ LICENSE="LGPL-2.1+"
 SLOT="0" # /usr/bin utilities that can't be parallel installed by their nature
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 
-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 ~x86-winnt"
+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 ~x86-winnt"
 
 RDEPEND="${PYTHON_DEPS}"
 DEPEND="${RDEPEND}"



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

2021-07-10 Thread Sam James
commit: dcb8cfe353e6e0aab658874e3a999640e71a6c8e
Author: Sam James  gentoo  org>
AuthorDate: Sun Jul 11 02:30:22 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jul 11 02:30:23 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dcb8cfe3

media-libs/libldac: Stabilize 2.0.2.3 arm, #800710

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

 media-libs/libldac/libldac-2.0.2.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/libldac/libldac-2.0.2.3.ebuild 
b/media-libs/libldac/libldac-2.0.2.3.ebuild
index 06be1dbec91..73081f10319 100644
--- a/media-libs/libldac/libldac-2.0.2.3.ebuild
+++ b/media-libs/libldac/libldac-2.0.2.3.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/EHfive/ldacBT/releases/download/v${PV}/ldacBT-${PV}.
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 
~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 
~amd64-linux ~x86-linux"
 
 S="${WORKDIR}/ldacBT"
 



[gentoo-commits] repo/gentoo:master commit in: gui-libs/wpebackend-fdo/

2021-07-10 Thread Sam James
commit: 03e97b9b532ee9fa958c1f0b4a19734b0250d567
Author: Sam James  gentoo  org>
AuthorDate: Sun Jul 11 02:30:17 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jul 11 02:30:17 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03e97b9b

gui-libs/wpebackend-fdo: Stabilize 1.10.0 arm, #800710

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

 gui-libs/wpebackend-fdo/wpebackend-fdo-1.10.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui-libs/wpebackend-fdo/wpebackend-fdo-1.10.0.ebuild 
b/gui-libs/wpebackend-fdo/wpebackend-fdo-1.10.0.ebuild
index fb1352b0d02..4fadf94530f 100644
--- a/gui-libs/wpebackend-fdo/wpebackend-fdo-1.10.0.ebuild
+++ b/gui-libs/wpebackend-fdo/wpebackend-fdo-1.10.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://wpewebkit.org/releases/${P}.tar.xz;
 LICENSE="BSD-2"
 SLOT="1.0"
 
-KEYWORDS="amd64 ~arm ~arm64 ~ia64 ~ppc64 ~riscv ~sparc x86"
+KEYWORDS="amd64 arm ~arm64 ~ia64 ~ppc64 ~riscv ~sparc x86"
 
 RDEPEND="
media-libs/libepoxy[egl]



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

2021-07-10 Thread Sam James
commit: f4e88c1977999d14fa3e544a015d0fb429d67a0f
Author: Sam James  gentoo  org>
AuthorDate: Sun Jul 11 02:30:13 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jul 11 02:30:13 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4e88c19

gnome-extra/yelp-xsl: Stabilize 40.2 arm, #800710

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

 gnome-extra/yelp-xsl/yelp-xsl-40.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnome-extra/yelp-xsl/yelp-xsl-40.2.ebuild 
b/gnome-extra/yelp-xsl/yelp-xsl-40.2.ebuild
index 3e665a82b4c..ed8d601273d 100644
--- a/gnome-extra/yelp-xsl/yelp-xsl-40.2.ebuild
+++ b/gnome-extra/yelp-xsl/yelp-xsl-40.2.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://gitlab.gnome.org/GNOME/yelp-xsl;
 LICENSE="GPL-2+ LGPL-2.1+ MIT FDL-1.1+"
 SLOT="0"
 IUSE=""
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
sparc x86 ~amd64-linux ~x86-linux"
 
 RDEPEND="
>=dev-libs/libxml2-2.6.12:=



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

2021-07-10 Thread Sam James
commit: a2cb73cad082502a05340bed4d41d9b1edb86588
Author: Sam James  gentoo  org>
AuthorDate: Sun Jul 11 02:30:04 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jul 11 02:30:04 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2cb73ca

dev-python/dbusmock: Stabilize 0.23.1 arm, #800710

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

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

diff --git a/dev-python/dbusmock/dbusmock-0.23.1.ebuild 
b/dev-python/dbusmock/dbusmock-0.23.1.ebuild
index 54844930d7b..bb883f43994 100644
--- a/dev-python/dbusmock/dbusmock-0.23.1.ebuild
+++ b/dev-python/dbusmock/dbusmock-0.23.1.ebuild
@@ -18,7 +18,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="LGPL-3+"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 sparc x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 sparc x86"
 
 RDEPEND="
dev-python/dbus-python[${PYTHON_USEDEP}]



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

2021-07-10 Thread Sam James
commit: a7a99f8e0993d2e16df10b53afd33685a85fb1d2
Author: Sam James  gentoo  org>
AuthorDate: Sun Jul 11 02:30:06 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jul 11 02:30:06 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7a99f8e

dev-util/gdbus-codegen: Stabilize 2.68.3 arm, #800710

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

 dev-util/gdbus-codegen/gdbus-codegen-2.68.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/gdbus-codegen/gdbus-codegen-2.68.3.ebuild 
b/dev-util/gdbus-codegen/gdbus-codegen-2.68.3.ebuild
index 47b00518ced..c842e130ab9 100644
--- a/dev-util/gdbus-codegen/gdbus-codegen-2.68.3.ebuild
+++ b/dev-util/gdbus-codegen/gdbus-codegen-2.68.3.ebuild
@@ -15,7 +15,7 @@ HOMEPAGE="https://www.gtk.org/;
 
 LICENSE="LGPL-2+"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 
 RDEPEND="${PYTHON_DEPS}"
 DEPEND="${RDEPEND}"



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

2021-07-10 Thread Sam James
commit: 1dbb73a6e055e8f5b38675764784b985cd4fcf55
Author: Sam James  gentoo  org>
AuthorDate: Sun Jul 11 02:29:57 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jul 11 02:29:57 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1dbb73a6

app-text/enchant: Stabilize 2.3.0 arm, #800710

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

 app-text/enchant/enchant-2.3.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/enchant/enchant-2.3.0.ebuild 
b/app-text/enchant/enchant-2.3.0.ebuild
index 80348cd95b8..7857db77515 100644
--- a/app-text/enchant/enchant-2.3.0.ebuild
+++ b/app-text/enchant/enchant-2.3.0.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="https://github.com/AbiWord/enchant/releases/download/v${PV}/${P}.tar.gz
 
 LICENSE="LGPL-2.1+"
 SLOT="2"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv sparc 
x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv sparc 
x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris"
 
 IUSE="aspell +hunspell test voikko"
 REQUIRED_USE="|| ( hunspell aspell )"



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

2021-07-10 Thread Sam James
commit: 79ef72c40642c1b8c34d316272cdc1cb0166ff61
Author: Sam James  gentoo  org>
AuthorDate: Sun Jul 11 02:30:11 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jul 11 02:30:11 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79ef72c4

gnome-extra/gucharmap: Stabilize 13.0.8 arm, #800710

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

 gnome-extra/gucharmap/gucharmap-13.0.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnome-extra/gucharmap/gucharmap-13.0.8.ebuild 
b/gnome-extra/gucharmap/gucharmap-13.0.8.ebuild
index 97343815546..70fc51ec321 100644
--- a/gnome-extra/gucharmap/gucharmap-13.0.8.ebuild
+++ b/gnome-extra/gucharmap/gucharmap-13.0.8.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://gitlab.gnome.org/GNOME/${PN}/-/archive/${PV}/${P}.tar.gz;
 
 LICENSE="GPL-3+"
 SLOT="2.90"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 sparc x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~ia64 ~ppc ~ppc64 sparc x86"
 
 UNICODE_VERSION="13.0"
 



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

2021-07-10 Thread Sam James
commit: 5da78f24e6ce94a002c0773857b7e9a11fd45341
Author: Sam James  gentoo  org>
AuthorDate: Sun Jul 11 02:30:21 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jul 11 02:30:21 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5da78f24

media-libs/libopenaptx: Stabilize 0.2.0 arm, #800710

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

 media-libs/libopenaptx/libopenaptx-0.2.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/libopenaptx/libopenaptx-0.2.0.ebuild 
b/media-libs/libopenaptx/libopenaptx-0.2.0.ebuild
index e07dd595036..360c8d9882a 100644
--- a/media-libs/libopenaptx/libopenaptx-0.2.0.ebuild
+++ b/media-libs/libopenaptx/libopenaptx-0.2.0.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == "" ]] ; then
EGIT_REPO_URI="https://github.com/pali/${PN};
 else
SRC_URI="https://github.com/pali/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 x86"
+   KEYWORDS="amd64 arm ~arm64 ~ppc ~ppc64 x86"
 fi
 
 LICENSE="LGPL-2.1+"



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

2021-07-10 Thread Sam James
commit: aabb5ca1514406410e6552c3cd1d4255e5e426b0
Author: Sam James  gentoo  org>
AuthorDate: Sun Jul 11 02:30:19 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jul 11 02:30:19 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aabb5ca1

media-video/pipewire: Stabilize 0.3.30-r1 arm, #800710

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

 media-video/pipewire/pipewire-0.3.30-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-video/pipewire/pipewire-0.3.30-r1.ebuild 
b/media-video/pipewire/pipewire-0.3.30-r1.ebuild
index 51068630f52..864753c979d 100644
--- a/media-video/pipewire/pipewire-0.3.30-r1.ebuild
+++ b/media-video/pipewire/pipewire-0.3.30-r1.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} ==  ]]; then
inherit git-r3
 else

SRC_URI="https://gitlab.freedesktop.org/${PN}/${PN}/-/archive/${PV}/${P}.tar.gz;
-   KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 x86"
+   KEYWORDS="amd64 arm ~arm64 ~ppc ~ppc64 x86"
 fi
 
 DESCRIPTION="Multimedia processing graphs"



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

2021-07-10 Thread Sam James
commit: c5edc5025084cc2e50cb79587892c5412c3c1388
Author: Sam James  gentoo  org>
AuthorDate: Sun Jul 11 02:30:10 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jul 11 02:30:10 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5edc502

gnome-base/librsvg: Stabilize 2.50.7 arm, #800710

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

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

diff --git a/gnome-base/librsvg/librsvg-2.50.7.ebuild 
b/gnome-base/librsvg/librsvg-2.50.7.ebuild
index 8344ba76a50..b99062baf58 100644
--- a/gnome-base/librsvg/librsvg-2.50.7.ebuild
+++ b/gnome-base/librsvg/librsvg-2.50.7.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/LibRsvg;
 
 LICENSE="LGPL-2+"
 SLOT="2"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86"
+KEYWORDS="amd64 arm ~arm64 ~ppc64 x86"
 
 IUSE="+introspection +vala"
 REQUIRED_USE="vala? ( introspection )"



[gentoo-commits] repo/gentoo:master commit in: gui-libs/libwpe/

2021-07-10 Thread Sam James
commit: 93f4fa3244742c43ef074c232596d4fa61dd9a91
Author: Sam James  gentoo  org>
AuthorDate: Sun Jul 11 02:30:15 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jul 11 02:30:15 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93f4fa32

gui-libs/libwpe: Stabilize 1.10.1 arm, #800710

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

 gui-libs/libwpe/libwpe-1.10.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui-libs/libwpe/libwpe-1.10.1.ebuild 
b/gui-libs/libwpe/libwpe-1.10.1.ebuild
index 582476b3d98..0a096c60729 100644
--- a/gui-libs/libwpe/libwpe-1.10.1.ebuild
+++ b/gui-libs/libwpe/libwpe-1.10.1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://wpewebkit.org/releases/${P}.tar.xz;
 LICENSE="BSD-2"
 SLOT="1.0"
 
-KEYWORDS="amd64 ~arm ~arm64 ~ia64 ~ppc64 ~riscv ~sparc x86"
+KEYWORDS="amd64 arm ~arm64 ~ia64 ~ppc64 ~riscv ~sparc x86"
 
 RDEPEND="
media-libs/mesa[egl]



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

2021-07-10 Thread Sam James
commit: a4ec48f6d58d1399621d83adbe8849eec1095423
Author: Sam James  gentoo  org>
AuthorDate: Sun Jul 11 02:30:02 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jul 11 02:30:02 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4ec48f6

dev-libs/vala-common: Stabilize 0.52.4 arm, #800710

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

 dev-libs/vala-common/vala-common-0.52.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/vala-common/vala-common-0.52.4.ebuild 
b/dev-libs/vala-common/vala-common-0.52.4.ebuild
index 9f75b3f46b4..905e7f72458 100644
--- a/dev-libs/vala-common/vala-common-0.52.4.ebuild
+++ b/dev-libs/vala-common/vala-common-0.52.4.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/Vala;
 
 LICENSE="LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris"
 
 RDEPEND=""
 DEPEND=""



[gentoo-commits] repo/gentoo:master commit in: app-accessibility/at-spi2-core/

2021-07-10 Thread Sam James
commit: 59d88281a8bc41b846f25d81494cf869b0c535bf
Author: Sam James  gentoo  org>
AuthorDate: Sun Jul 11 02:29:55 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jul 11 02:29:55 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59d88281

app-accessibility/at-spi2-core: Stabilize 2.40.2 arm, #800710

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

 app-accessibility/at-spi2-core/at-spi2-core-2.40.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-accessibility/at-spi2-core/at-spi2-core-2.40.2.ebuild 
b/app-accessibility/at-spi2-core/at-spi2-core-2.40.2.ebuild
index afdd68b2a4b..ce310b26b7c 100644
--- a/app-accessibility/at-spi2-core/at-spi2-core-2.40.2.ebuild
+++ b/app-accessibility/at-spi2-core/at-spi2-core-2.40.2.ebuild
@@ -12,7 +12,7 @@ LICENSE="LGPL-2.1+"
 SLOT="2"
 IUSE="X gtk-doc +introspection"
 REQUIRED_USE="gtk-doc? ( X )"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 
 RDEPEND="
>=sys-apps/dbus-1.5[${MULTILIB_USEDEP}]



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

2021-07-10 Thread Sam James
commit: c617550f5585b8ebb872a3ea6f6fa59eb5c3f7ee
Author: Sam James  gentoo  org>
AuthorDate: Sun Jul 11 02:30:01 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jul 11 02:30:01 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c617550f

dev-libs/glib: Stabilize 2.68.3-r1 arm, #800710

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

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

diff --git a/dev-libs/glib/glib-2.68.3-r1.ebuild 
b/dev-libs/glib/glib-2.68.3-r1.ebuild
index 4fb34812b58..86515840729 100644
--- a/dev-libs/glib/glib-2.68.3-r1.ebuild
+++ b/dev-libs/glib/glib-2.68.3-r1.ebuild
@@ -15,7 +15,7 @@ IUSE="dbus debug +elf elibc_glibc fam gtk-doc kernel_linux 
+mime selinux static-
 RESTRICT="!test? ( test )"
 REQUIRED_USE="gtk-doc? ( test )" # Bug #777636
 
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux"
 
 # * elfutils (via libelf) does not build on Windows. gresources are not 
embedded
 # within ELF binaries on that platform anyway and inspecting ELF binaries from



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

2021-07-10 Thread Sam James
commit: 8c41c5ff388b48b6c22f382ed6fcf92b7036d783
Author: Sam James  gentoo  org>
AuthorDate: Sun Jul 11 02:29:59 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jul 11 02:29:59 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c41c5ff

dev-lang/vala: Stabilize 0.52.4 arm, #800710

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

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

diff --git a/dev-lang/vala/vala-0.52.4.ebuild b/dev-lang/vala/vala-0.52.4.ebuild
index 03db361f3c8..78ff3b380af 100644
--- a/dev-lang/vala/vala-0.52.4.ebuild
+++ b/dev-lang/vala/vala-0.52.4.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/Vala;
 
 LICENSE="LGPL-2.1+"
 SLOT="0.52"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
sparc x86 ~x86-linux"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
sparc x86 ~x86-linux"
 IUSE="test valadoc"
 RESTRICT="!test? ( test )"
 



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

2021-07-10 Thread Ionen Wolkens
commit: 4e211878d882fc13d977ffc434dfd7d4b761672d
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Sat Jul 10 23:07:41 2021 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Sun Jul 11 02:10:48 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e211878

app-emulation/uade: add gitlab remote-id, re-indent

Signed-off-by: Ionen Wolkens  gentoo.org>

 app-emulation/uade/metadata.xml | 11 +++
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/app-emulation/uade/metadata.xml b/app-emulation/uade/metadata.xml
index 78274e0fa55..953db6df541 100644
--- a/app-emulation/uade/metadata.xml
+++ b/app-emulation/uade/metadata.xml
@@ -1,8 +1,11 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-
-   ga...@gentoo.org
-   Gentoo Games Project
-
+   
+   ga...@gentoo.org
+   Gentoo Games Project
+   
+   
+   uade-music-player/uade
+   
 



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

2021-07-10 Thread Ionen Wolkens
commit: 1868dd11749c5bcb21533d69b4632b4a441b3d7c
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Sun Jul 11 00:14:06 2021 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Sun Jul 11 02:10:49 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1868dd11

app-emulation/uade: tidy and fix VariableScope + fuse automagic

Adds IUSE=fuse to control building uadefs.

Not doing major changes in stable, but also added EXTRA_ECONF should
users want to change anything.

src_install removed as it was only installing the man page a 2nd time.

Closes: https://bugs.gentoo.org/608000
Signed-off-by: Ionen Wolkens  gentoo.org>

 app-emulation/uade/metadata.xml|  3 ++
 app-emulation/uade/uade-2.13-r2.ebuild | 52 ++
 2 files changed, 55 insertions(+)

diff --git a/app-emulation/uade/metadata.xml b/app-emulation/uade/metadata.xml
index 953db6df541..c4c4b8d8413 100644
--- a/app-emulation/uade/metadata.xml
+++ b/app-emulation/uade/metadata.xml
@@ -5,6 +5,9 @@
ga...@gentoo.org
Gentoo Games Project

+   
+   Enable sys-fs/fuse uadefs frontend 
for on-the-fly WAV conversion
+   

uade-music-player/uade


diff --git a/app-emulation/uade/uade-2.13-r2.ebuild 
b/app-emulation/uade/uade-2.13-r2.ebuild
new file mode 100644
index 000..262a54d9033
--- /dev/null
+++ b/app-emulation/uade/uade-2.13-r2.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit toolchain-funcs
+
+DESCRIPTION="Unix Amiga Delitracker Emulator - plays old Amiga tunes through 
UAE emulation"
+HOMEPAGE="https://zakalwe.fi/uade;
+SRC_URI="https://zakalwe.fi/uade/uade2/${P}.tar.bz2;
+
+LICENSE="GPL-2+ LGPL-2+"
+SLOT="0"
+KEYWORDS="amd64 ppc x86"
+IUSE="fuse"
+
+RDEPEND="
+   media-libs/libao
+   fuse? ( sys-fs/fuse:0 )"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+PATCHES=(
+   "${FILESDIR}"/${P}-configure.patch
+)
+
+DOCS=( AUTHORS ChangeLog doc/BUGS doc/PLANS )
+
+src_prepare() {
+   default
+
+   # needed to avoid ${D} VariableScope undefined behavior in src_configure
+   find . -name Makefile.in -exec sed -i 's|{PACKAGEPREFIX}|$(DESTDIR)|' 
{} + || die
+}
+
+src_configure() {
+   tc-export CC
+
+   # not autotools generated
+   local configure=(
+   ./configure
+   --prefix="${EPREFIX}"/usr
+   --libdir="${EPREFIX}"/usr/$(get_libdir)
+   --with-text-scope
+   --without-audacious
+   --without-xmms
+   $(use_with fuse uadefs)
+   ${EXTRA_ECONF}
+   )
+   echo ${configure[*]}
+   "${configure[@]}" || die
+}



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

2021-07-10 Thread Ionen Wolkens
commit: 6cce984ca132d3af3956b7912ddbefbab7e014c3
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Sun Jul 11 01:44:15 2021 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Sun Jul 11 02:10:49 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6cce984c

app-emulation/uade: drop 2.13-r1

Signed-off-by: Ionen Wolkens  gentoo.org>

 app-emulation/uade/uade-2.13-r1.ebuild | 39 --
 1 file changed, 39 deletions(-)

diff --git a/app-emulation/uade/uade-2.13-r1.ebuild 
b/app-emulation/uade/uade-2.13-r1.ebuild
deleted file mode 100644
index 28ceda581e4..000
--- a/app-emulation/uade/uade-2.13-r1.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit toolchain-funcs
-
-DESCRIPTION="Unix Amiga Delitracker Emulator - plays old Amiga tunes through 
UAE emulation"
-HOMEPAGE="https://zakalwe.fi/uade;
-SRC_URI="https://zakalwe.fi/uade/uade2/${P}.tar.bz2;
-
-LICENSE="GPL-2+ LGPL-2+"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-
-RDEPEND="media-libs/libao"
-DEPEND="${RDEPEND}"
-BDEPEND="virtual/pkgconfig"
-
-DOCS=( AUTHORS ChangeLog doc/BUGS doc/PLANS )
-
-PATCHES=( "${FILESDIR}"/${P}-configure.patch )
-
-src_configure() {
-   tc-export CC
-
-   ./configure \
-   --prefix="${EPREFIX}"/usr \
-   --package-prefix="${D}" \
-   --libdir="${EPREFIX}/usr/$(get_libdir)" \
-   --with-text-scope \
-   --without-xmms \
-   --without-audacious || die
-}
-
-src_install() {
-   default
-   doman doc/uade123.1
-}



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

2021-07-10 Thread Sam James
commit: a830d9199f54abd202b13e472e1dded4abfcc075
Author: Sam James  gentoo  org>
AuthorDate: Sun Jul 11 00:57:39 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jul 11 00:57:39 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a830d919

net-irc/unrealircd: add 5.2.1.1

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

 net-irc/unrealircd/Manifest  |   1 +
 net-irc/unrealircd/unrealircd-5.2.1.1.ebuild | 177 +++
 2 files changed, 178 insertions(+)

diff --git a/net-irc/unrealircd/Manifest b/net-irc/unrealircd/Manifest
index 4bd8ba196d1..59a07b61bad 100644
--- a/net-irc/unrealircd/Manifest
+++ b/net-irc/unrealircd/Manifest
@@ -1,3 +1,4 @@
 DIST unrealircd-5.0.8.tar.gz 5013231 BLAKE2B 
57365a06b8108239ab10f6cff7d4553b08aa428acb5c635c4b9241c3f82459a5aac18c916a4534f3a8fc9ac1fd4c1d9418c7395233603e576eda40c56d81b110
 SHA512 
45fc0758a870dbb9c3ff55fc7029d1ecff9dcf65680f31ff331f012efbf9c9bffa60a6fe27b9bab69302d26b8293a1089cfaf1c550a3f2802a549f25e4644770
 DIST unrealircd-5.0.9.1.tar.gz 5210836 BLAKE2B 
1b71c54106a038501782004b183bfc4b148c381150cd293bdbf74f33dd8a244083e7ce55adcf16aee5cd344707d6b1d1843bbf3d83fea0749532f68a954da950
 SHA512 
1d45be1904c415a60bd5b7e279ee528e0f559207fe763ea8b10a9809a253b0e10d781b8624c85600206a8484bde0ba162c62dc96e12d581d904d483b0b89193a
 DIST unrealircd-5.2.0.2.tar.gz 7169870 BLAKE2B 
205435fe9b00e5c16432c79fa20562402276fc51a8e2173d9d46a25911cfeff7973520014ccb819370400628d0abe3663a1ea87dce621f275c587e983387da42
 SHA512 
78ef0637fc7e7d1b6a6f047e6922b61ec7da5173df6a768e0832f02922a0054e1ad23dc8bcd476d64124f5f7956b199d00f98d4c61af2d7e4800cefc5b56ccf1
+DIST unrealircd-5.2.1.1.tar.gz 7174342 BLAKE2B 
0d149807bcacd0604195948f3c5a7f538426741b38238bd00df76e7c2fa4b8603f86f325c2ba6f8f87bc72621e38fc5642b86aa081cf1f4f74cabc5cbdc89eb7
 SHA512 
d49a5fd9b02d6e43ec13f9195d226c10c4f2a7a7f0ac41c51b02a13fc287fea14c8fd73203fea773e57eb2e969cc4248abfdc24bd643a4f727222de7e4f726fa

diff --git a/net-irc/unrealircd/unrealircd-5.2.1.1.ebuild 
b/net-irc/unrealircd/unrealircd-5.2.1.1.ebuild
new file mode 100644
index 000..9b28edcdac4
--- /dev/null
+++ b/net-irc/unrealircd/unrealircd-5.2.1.1.ebuild
@@ -0,0 +1,177 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+SSL_CERT_MANDATORY=1
+inherit autotools ssl-cert systemd
+
+DESCRIPTION="An advanced Internet Relay Chat daemon"
+HOMEPAGE="https://www.unrealircd.org/;
+SRC_URI="https://www.unrealircd.org/downloads/${P}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux"
+IUSE="class-nofakelag curl +operoverride operoverride-verify +prefixaq 
showlistmodes"
+
+RDEPEND="
+   acct-group/unrealircd
+   acct-user/unrealircd
+   >=app-crypt/argon2-20171227-r1:=
+   dev-libs/libpcre2
+   dev-libs/libsodium:=
+   dev-libs/openssl:0=
+   >=net-dns/c-ares-1.7:=
+   virtual/libcrypt:=
+   curl? ( net-misc/curl[adns] )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+DOCS=( 
doc/{Authors,Donation,RELEASE-NOTES.md,tao.of.irc,technical/,translations.txt} )
+
+src_prepare() {
+   # QA check against bundled pkgs
+   rm -r extras || die
+
+   # building third-party modules (which we don't do) cause a sandbox 
violation
+   # bug 70
+   echo "" > src/buildmod || die
+
+   sed -e 's/$(MODULEFLAGS)/$(LDFLAGS) &/' -i src/modules/{,*/}Makefile.in 
|| die
+
+   if use class-nofakelag; then
+   sed -i -e 's:^//#undef\( FAKELAG_CONFIGURABLE\):#define\1:' 
include/config.h || die
+   fi
+
+   # File is missing from the 5.0.9.1 tarball
+   sed -i -e '/unrealircd-upgrade-script/d' configure.ac || die
+
+   default
+   eautoreconf
+}
+
+src_configure() {
+   # Default value for privatelibdir adds a build path to -Wl,-rpath.
+   econf \
+   --with-bindir="${EPREFIX}"/usr/bin \
+   --with-cachedir="${EPREFIX}"/var/lib/${PN} \
+   --with-confdir="${EPREFIX}"/etc/${PN} \
+   --with-datadir="${EPREFIX}"/var/lib/${PN} \
+   --with-docdir="${EPREFIX}"/usr/share/doc/${PF} \
+   --with-logdir="${EPREFIX}"/var/log/${PN} \
+   
--with-modulesdir="${EPREFIX}"/usr/"$(get_libdir)"/${PN}/modules \
+   --without-privatelibdir \
+   --with-pidfile="${EPREFIX}"/run/${PN}/ircd.pid \
+   --with-tmpdir="${EPREFIX}"/var/lib/${PN}/tmp \
+   --with-maxconnections=1024 \
+   --with-nick-history=2000 \
+   --with-permissions=0640 \
+   --with-system-argon2 \
+   --with-system-cares \
+   --with-system-pcre2 \
+   --enable-dynamic-linking \
+   --enable-ssl="${EPREFIX}"/usr \
+   $(use_enable curl libcurl "${EPREFIX}"/usr) \
+   $(use_enable prefixaq) \
+   

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

2021-07-10 Thread Sam James
commit: 7ba4d3c4f37ea771fe2db6451b844d7196b31798
Author: Sam James  gentoo  org>
AuthorDate: Sun Jul 11 00:57:43 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jul 11 00:57:44 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ba4d3c4

net-irc/unrealircd: drop 5.0.9.1-r1, 5.2.0.2-r1

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

 net-irc/unrealircd/Manifest |   2 -
 net-irc/unrealircd/unrealircd-5.0.9.1-r1.ebuild | 176 ---
 net-irc/unrealircd/unrealircd-5.2.0.2-r1.ebuild | 177 
 3 files changed, 355 deletions(-)

diff --git a/net-irc/unrealircd/Manifest b/net-irc/unrealircd/Manifest
index 59a07b61bad..cdbd6975a3c 100644
--- a/net-irc/unrealircd/Manifest
+++ b/net-irc/unrealircd/Manifest
@@ -1,4 +1,2 @@
 DIST unrealircd-5.0.8.tar.gz 5013231 BLAKE2B 
57365a06b8108239ab10f6cff7d4553b08aa428acb5c635c4b9241c3f82459a5aac18c916a4534f3a8fc9ac1fd4c1d9418c7395233603e576eda40c56d81b110
 SHA512 
45fc0758a870dbb9c3ff55fc7029d1ecff9dcf65680f31ff331f012efbf9c9bffa60a6fe27b9bab69302d26b8293a1089cfaf1c550a3f2802a549f25e4644770
-DIST unrealircd-5.0.9.1.tar.gz 5210836 BLAKE2B 
1b71c54106a038501782004b183bfc4b148c381150cd293bdbf74f33dd8a244083e7ce55adcf16aee5cd344707d6b1d1843bbf3d83fea0749532f68a954da950
 SHA512 
1d45be1904c415a60bd5b7e279ee528e0f559207fe763ea8b10a9809a253b0e10d781b8624c85600206a8484bde0ba162c62dc96e12d581d904d483b0b89193a
-DIST unrealircd-5.2.0.2.tar.gz 7169870 BLAKE2B 
205435fe9b00e5c16432c79fa20562402276fc51a8e2173d9d46a25911cfeff7973520014ccb819370400628d0abe3663a1ea87dce621f275c587e983387da42
 SHA512 
78ef0637fc7e7d1b6a6f047e6922b61ec7da5173df6a768e0832f02922a0054e1ad23dc8bcd476d64124f5f7956b199d00f98d4c61af2d7e4800cefc5b56ccf1
 DIST unrealircd-5.2.1.1.tar.gz 7174342 BLAKE2B 
0d149807bcacd0604195948f3c5a7f538426741b38238bd00df76e7c2fa4b8603f86f325c2ba6f8f87bc72621e38fc5642b86aa081cf1f4f74cabc5cbdc89eb7
 SHA512 
d49a5fd9b02d6e43ec13f9195d226c10c4f2a7a7f0ac41c51b02a13fc287fea14c8fd73203fea773e57eb2e969cc4248abfdc24bd643a4f727222de7e4f726fa

diff --git a/net-irc/unrealircd/unrealircd-5.0.9.1-r1.ebuild 
b/net-irc/unrealircd/unrealircd-5.0.9.1-r1.ebuild
deleted file mode 100644
index 4dc1c176bdc..000
--- a/net-irc/unrealircd/unrealircd-5.0.9.1-r1.ebuild
+++ /dev/null
@@ -1,176 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-SSL_CERT_MANDATORY=1
-inherit autotools ssl-cert systemd
-
-DESCRIPTION="An advanced Internet Relay Chat daemon"
-HOMEPAGE="https://www.unrealircd.org/;
-SRC_URI="https://www.unrealircd.org/downloads/${P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux"
-IUSE="class-nofakelag curl +operoverride operoverride-verify +prefixaq 
showlistmodes"
-
-RDEPEND="
-   acct-group/unrealircd
-   acct-user/unrealircd
-   >=app-crypt/argon2-20171227-r1:=
-   dev-libs/libpcre2
-   dev-libs/openssl:0=
-   >=net-dns/c-ares-1.7:=
-   virtual/libcrypt:=
-   curl? ( net-misc/curl[adns] )
-"
-DEPEND="${RDEPEND}"
-BDEPEND="virtual/pkgconfig"
-
-DOCS=( 
doc/{Authors,Donation,RELEASE-NOTES.md,tao.of.irc,technical/,translations.txt} )
-
-src_prepare() {
-   # QA check against bundled pkgs
-   rm -r extras || die
-
-   # building third-party modules (which we don't do) cause a sandbox 
violation
-   # bug 70
-   echo "" > src/buildmod || die
-
-   sed -e 's/$(MODULEFLAGS)/$(LDFLAGS) &/' -i src/modules/{,*/}Makefile.in 
|| die
-
-   if use class-nofakelag; then
-   sed -i -e 's:^//#undef\( FAKELAG_CONFIGURABLE\):#define\1:' 
include/config.h || die
-   fi
-
-   # File is missing from the 5.0.9.1 tarball
-   sed -i -e '/unrealircd-upgrade-script/d' configure.ac || die
-
-   default
-   eautoreconf
-}
-
-src_configure() {
-   # Default value for privatelibdir adds a build path to -Wl,-rpath.
-   econf \
-   --with-bindir="${EPREFIX}"/usr/bin \
-   --with-cachedir="${EPREFIX}"/var/lib/${PN} \
-   --with-confdir="${EPREFIX}"/etc/${PN} \
-   --with-datadir="${EPREFIX}"/var/lib/${PN} \
-   --with-docdir="${EPREFIX}"/usr/share/doc/${PF} \
-   --with-logdir="${EPREFIX}"/var/log/${PN} \
-   
--with-modulesdir="${EPREFIX}"/usr/"$(get_libdir)"/${PN}/modules \
-   --without-privatelibdir \
-   --with-pidfile="${EPREFIX}"/run/${PN}/ircd.pid \
-   --with-tmpdir="${EPREFIX}"/var/lib/${PN}/tmp \
-   --with-maxconnections=1024 \
-   --with-nick-history=2000 \
-   --with-permissions=0640 \
-   --with-system-argon2 \
-   --with-system-cares \
-   --with-system-pcre2 \
-   --enable-dynamic-linking \
-   --enable-ssl="${EPREFIX}"/usr \
-   $(use_enable curl 

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

2021-07-10 Thread Sam James
commit: 0b291eca30d4cddb59ad75fe95a1f018c739bf92
Author: Sam James  gentoo  org>
AuthorDate: Sun Jul 11 00:57:35 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jul 11 00:57:35 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b291eca

profiles/arch/arm: drop dist-kernel stable mask

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

 profiles/arch/arm/use.stable.mask | 4 
 1 file changed, 4 deletions(-)

diff --git a/profiles/arch/arm/use.stable.mask 
b/profiles/arch/arm/use.stable.mask
index f1751dec36f..8fa70e683bc 100644
--- a/profiles/arch/arm/use.stable.mask
+++ b/profiles/arch/arm/use.stable.mask
@@ -10,10 +10,6 @@
 python_single_target_python3_10
 python_targets_python3_10
 
-# Michał Górny  (2021-01-07)
-# Prebuilt kernel rebuilds are supported on stable yet.
-dist-kernel
-
 # Sam James  (2020-12-22)
 # Not yet stable
 lirc



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

2021-07-10 Thread Sam James
commit: 045920ca3310f9ac84e407eb826ee425dadd1968
Author: Sam James  gentoo  org>
AuthorDate: Sun Jul 11 00:57:37 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jul 11 00:57:37 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=045920ca

dev-lang/python: depend on newer OpenSSL (>= 1.1.1)

Upstream dropped compatibility and we don't have the capacity to maintain
backports to an unsupported version of OpenSSL. The last version to
work is ~3.8.6.

No revision bump required given this is a build-time failure and we already
depend on OpenSSL with a subslot operator (which handles upgrades/downgrades
correctly).

Bug: https://bugs.python.org/issue43669
Closes: https://bugs.gentoo.org/796374
Signed-off-by: Sam James  gentoo.org>

 dev-lang/python/python-3.10.0_beta2.ebuild | 2 +-
 dev-lang/python/python-3.10.0_beta3.ebuild | 2 +-
 dev-lang/python/python-3.10.0_beta4.ebuild | 2 +-
 dev-lang/python/python-3.7.10_p6.ebuild| 2 +-
 dev-lang/python/python-3.7.11.ebuild   | 2 +-
 dev-lang/python/python-3.8.10_p2.ebuild| 2 +-
 dev-lang/python/python-3.8.11.ebuild   | 2 +-
 dev-lang/python/python-3.9.5_p2.ebuild | 2 +-
 dev-lang/python/python-3.9.6.ebuild| 2 +-
 9 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/dev-lang/python/python-3.10.0_beta2.ebuild 
b/dev-lang/python/python-3.10.0_beta2.ebuild
index 818aa5957c7..3018395550f 100644
--- a/dev-lang/python/python-3.10.0_beta2.ebuild
+++ b/dev-lang/python/python-3.10.0_beta2.ebuild
@@ -43,7 +43,7 @@ RDEPEND="app-arch/bzip2:=
ncurses? ( >=sys-libs/ncurses-5.2:= )
readline? ( >=sys-libs/readline-4.1:= )
sqlite? ( >=dev-db/sqlite-3.3.8:3= )
-   ssl? ( dev-libs/openssl:= )
+   ssl? ( >=dev-libs/openssl-1.1.1:= )
tk? (
>=dev-lang/tcl-8.0:=
>=dev-lang/tk-8.0:=

diff --git a/dev-lang/python/python-3.10.0_beta3.ebuild 
b/dev-lang/python/python-3.10.0_beta3.ebuild
index e7e3f59b1da..64b7a004442 100644
--- a/dev-lang/python/python-3.10.0_beta3.ebuild
+++ b/dev-lang/python/python-3.10.0_beta3.ebuild
@@ -43,7 +43,7 @@ RDEPEND="app-arch/bzip2:=
ncurses? ( >=sys-libs/ncurses-5.2:= )
readline? ( >=sys-libs/readline-4.1:= )
sqlite? ( >=dev-db/sqlite-3.3.8:3= )
-   ssl? ( dev-libs/openssl:= )
+   ssl? ( >=dev-libs/openssl-1.1.1:= )
tk? (
>=dev-lang/tcl-8.0:=
>=dev-lang/tk-8.0:=

diff --git a/dev-lang/python/python-3.10.0_beta4.ebuild 
b/dev-lang/python/python-3.10.0_beta4.ebuild
index e7e3f59b1da..64b7a004442 100644
--- a/dev-lang/python/python-3.10.0_beta4.ebuild
+++ b/dev-lang/python/python-3.10.0_beta4.ebuild
@@ -43,7 +43,7 @@ RDEPEND="app-arch/bzip2:=
ncurses? ( >=sys-libs/ncurses-5.2:= )
readline? ( >=sys-libs/readline-4.1:= )
sqlite? ( >=dev-db/sqlite-3.3.8:3= )
-   ssl? ( dev-libs/openssl:= )
+   ssl? ( >=dev-libs/openssl-1.1.1:= )
tk? (
>=dev-lang/tcl-8.0:=
>=dev-lang/tk-8.0:=

diff --git a/dev-lang/python/python-3.7.10_p6.ebuild 
b/dev-lang/python/python-3.7.10_p6.ebuild
index fc1984de3bc..e3bd9bd6bc8 100644
--- a/dev-lang/python/python-3.7.10_p6.ebuild
+++ b/dev-lang/python/python-3.7.10_p6.ebuild
@@ -42,7 +42,7 @@ RDEPEND="app-arch/bzip2:=
ncurses? ( >=sys-libs/ncurses-5.2:= )
readline? ( >=sys-libs/readline-4.1:= )
sqlite? ( >=dev-db/sqlite-3.3.8:3= )
-   ssl? ( dev-libs/openssl:= )
+   ssl? ( >=dev-libs/openssl-1.1.1:= )
tk? (
>=dev-lang/tcl-8.0:=
>=dev-lang/tk-8.0:=

diff --git a/dev-lang/python/python-3.7.11.ebuild 
b/dev-lang/python/python-3.7.11.ebuild
index 2a194aeea94..4f48850a2fd 100644
--- a/dev-lang/python/python-3.7.11.ebuild
+++ b/dev-lang/python/python-3.7.11.ebuild
@@ -42,7 +42,7 @@ RDEPEND="app-arch/bzip2:=
ncurses? ( >=sys-libs/ncurses-5.2:= )
readline? ( >=sys-libs/readline-4.1:= )
sqlite? ( >=dev-db/sqlite-3.3.8:3= )
-   ssl? ( dev-libs/openssl:= )
+   ssl? ( >=dev-libs/openssl-1.1.1:= )
tk? (
>=dev-lang/tcl-8.0:=
>=dev-lang/tk-8.0:=

diff --git a/dev-lang/python/python-3.8.10_p2.ebuild 
b/dev-lang/python/python-3.8.10_p2.ebuild
index 3e7b9da36c3..409300beb1d 100644
--- a/dev-lang/python/python-3.8.10_p2.ebuild
+++ b/dev-lang/python/python-3.8.10_p2.ebuild
@@ -43,7 +43,7 @@ RDEPEND="app-arch/bzip2:=
ncurses? ( >=sys-libs/ncurses-5.2:= )
readline? ( >=sys-libs/readline-4.1:= )
sqlite? ( >=dev-db/sqlite-3.3.8:3= )
-   ssl? ( dev-libs/openssl:= )
+   ssl? ( >=dev-libs/openssl-1.1.1:= )
tk? (
>=dev-lang/tcl-8.0:=
>=dev-lang/tk-8.0:=

diff --git a/dev-lang/python/python-3.8.11.ebuild 
b/dev-lang/python/python-3.8.11.ebuild
index c6243a8ecd7..3ac0540738b 100644
--- a/dev-lang/python/python-3.8.11.ebuild
+++ b/dev-lang/python/python-3.8.11.ebuild
@@ 

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

2021-07-10 Thread Sam James
commit: 9efe5863ff0c56ca059e6e8e609190a0ec7db34a
Author: Sam James  gentoo  org>
AuthorDate: Sun Jul 11 00:57:33 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jul 11 00:57:33 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9efe5863

profiles/arch/x86: drop dist-kernel stable mask

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

 profiles/arch/x86/use.stable.mask | 4 
 1 file changed, 4 deletions(-)

diff --git a/profiles/arch/x86/use.stable.mask 
b/profiles/arch/x86/use.stable.mask
index 469e5f74c24..e0bd8000152 100644
--- a/profiles/arch/x86/use.stable.mask
+++ b/profiles/arch/x86/use.stable.mask
@@ -10,10 +10,6 @@
 python_single_target_python3_10
 python_targets_python3_10
 
-# Michał Górny  (2021-01-07)
-# Prebuilt kernel rebuilds are supported on stable yet.
-dist-kernel
-
 # Sam James  (2020-11-10)
 # media-gfx/openvdb is not stable on x86
 # ... and has failing tests right now anyway



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

2021-07-10 Thread Alessandro Barbieri
commit: f797d6ddc95ca51dac4e07e66afb491a35b7536c
Author: Alessandro Barbieri  gmail  com>
AuthorDate: Sun Jul 11 00:50:55 2021 +
Commit: Alessandro Barbieri  gmail  com>
CommitDate: Sun Jul 11 00:50:55 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f797d6dd

dev-python/statmake: fix cattrs dependency (again)

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

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

diff --git a/dev-python/statmake/statmake-0.3.0-r1.ebuild 
b/dev-python/statmake/statmake-0.3.0-r1.ebuild
index e6a9b3de2..f8930f071 100644
--- a/dev-python/statmake/statmake-0.3.0-r1.ebuild
+++ b/dev-python/statmake/statmake-0.3.0-r1.ebuild
@@ -19,9 +19,9 @@ IUSE="test"
 
 RDEPEND="
$(python_gen_cond_dep '
+   dev-python/cattrs[${PYTHON_USEDEP}]
dev-python/fonttools[${PYTHON_USEDEP}]
')
-   dev-python/cattrs[${PYTHON_SINGLE_USEDEP}]
 "
 DEPEND="
${RDEPEND}



[gentoo-commits] repo/proj/guru:dev commit in: dev-python/os-api-ref/

2021-07-10 Thread Alessandro Barbieri
commit: 6fe56ee56c0b39dc902648ff74a36bdd960528e1
Author: Alessandro Barbieri  gmail  com>
AuthorDate: Sun Jul 11 00:38:20 2021 +
Commit: Alessandro Barbieri  gmail  com>
CommitDate: Sun Jul 11 00:38:20 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6fe56ee5

dev-python/os-api-ref: initial import

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

 dev-python/os-api-ref/Manifest|  1 +
 dev-python/os-api-ref/metadata.xml| 16 +++
 dev-python/os-api-ref/os-api-ref-2.2.0.ebuild | 39 +++
 3 files changed, 56 insertions(+)

diff --git a/dev-python/os-api-ref/Manifest b/dev-python/os-api-ref/Manifest
new file mode 100644
index 0..737e39255
--- /dev/null
+++ b/dev-python/os-api-ref/Manifest
@@ -0,0 +1 @@
+DIST os-api-ref-2.2.0.tar.gz 93273 BLAKE2B 
9da508d51993f5b71474d39e818bfdc897023a6104e708c6c30b807bb20891f05685aa241605d1cf30540b75108e7914c932ba7aa6fa1619961c11ab2c7ee6d8
 SHA512 
3d25b3cd702c611577c86c206a60f92d929191f9e75c210e04c639c2a597ea58d31c81c17b79e41276c3e5b391e2c7bb95a9d7483b0f248e230d03550da3af96

diff --git a/dev-python/os-api-ref/metadata.xml 
b/dev-python/os-api-ref/metadata.xml
new file mode 100644
index 0..6c1e9a2f6
--- /dev/null
+++ b/dev-python/os-api-ref/metadata.xml
@@ -0,0 +1,16 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   lssndrbarbi...@gmail.com
+   Alessandro Barbieri
+   
+   
+This project is a collection of sphinx stanzas that assist in building an API 
Reference site for an OpenStack project in RST. RST is great for unstructured 
English, but displaying semi structured (and repetitive) data in tables is not 
its strength. This provides tooling to insert semi-structured data describing 
request and response parameters and status or error messages, and turn those 
into nice tables.
+The project also includes a set of styling (and javascript) that is expected 
to layer on top of a Sphinx theme base. This addition provides a nice set of 
collapsing sections for REST methods and javascript controls to expand / 
collapse all sections.
+Features
+Sphinx stanza rest_method describing the method and resource for a REST API 
call. Lets authors write simply and also gives readers a clean way to scan all 
methods then click a button to get more information about a method.
+Sphinx stanza rest_parameters used to insert semi-structured data into the RST 
files describing the parameters users cansend with the request. The stanza 
points to a structured YAML file, parameters.yaml.
+Sphinx stanza rest_status_code used to insert pointers to error or status 
codes returned by the service. Points to a structured YAML file, 
http_codes.yaml.
+   
+

diff --git a/dev-python/os-api-ref/os-api-ref-2.2.0.ebuild 
b/dev-python/os-api-ref/os-api-ref-2.2.0.ebuild
new file mode 100644
index 0..0fe45c50b
--- /dev/null
+++ b/dev-python/os-api-ref/os-api-ref-2.2.0.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="8"
+
+PYTHON_COMPAT=( python3_{8..9} )
+
+inherit distutils-r1
+
+DESCRIPTION="Sphinx Extensions to support API reference sites in OpenStack"
+HOMEPAGE="https://docs.openstack.org/os-api-ref/latest;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+   >=dev-python/openstackdocstheme-2.2.1[${PYTHON_USEDEP}]
+   >=dev-python/pyyaml-3.1.2[${PYTHON_USEDEP}]
+   >=dev-python/six-1.10.0[${PYTHON_USEDEP}]
+   dev-python/sphinx[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   ${RDEPEND}
+   test? (
+   >=dev-python/beautifulsoup-4.6.0[${PYTHON_USEDEP}]
+   >=dev-python/sphinx-testing-1.0.1[${PYTHON_USEDEP}]
+   >=dev-python/subunit-1.0.0[${PYTHON_USEDEP}]
+   >=dev-python/testtools-2.2.0[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+distutils_enable_sphinx doc/source ">=dev-python/openstackdocstheme-2.2.1"
+
+python_test() {
+   pytest -vv --deselect 
os_api_ref/tests/test_microversions.py::TestMicroversions::test_parameters_table
 || die
+}



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

2021-07-10 Thread Alessandro Barbieri
commit: 57d37bc93f30a7dbe384c52347d88f4ed08cd6a1
Author: Alessandro Barbieri  gmail  com>
AuthorDate: Sun Jul 11 00:32:07 2021 +
Commit: Alessandro Barbieri  gmail  com>
CommitDate: Sun Jul 11 00:32:07 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=57d37bc9

dev-python/cattrs: treeclean

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

 dev-python/cattrs/Manifest|  1 -
 dev-python/cattrs/cattrs-1.7.0.ebuild | 42 ---
 dev-python/cattrs/metadata.xml|  9 
 3 files changed, 52 deletions(-)

diff --git a/dev-python/cattrs/Manifest b/dev-python/cattrs/Manifest
deleted file mode 100644
index 02b6f19f6..0
--- a/dev-python/cattrs/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST cattrs-1.7.0.tar.gz 85690 BLAKE2B 
708295907124fc2ed9c3095fb99ef3ae0ec4d80e495f1b0964185d615fbcd59c7d7f090f400d49e0c92b2e3bc952929c3feb3c35804ff600b088b8df43762a13
 SHA512 
a87381a65a3c14652fc04cb7f409272f3705965cb05472b849c3bb9096362eafc7fdc445ab4b51cdf5b62d049e4f00951c992f1562a8c20eef1abbfb5b8d2958

diff --git a/dev-python/cattrs/cattrs-1.7.0.ebuild 
b/dev-python/cattrs/cattrs-1.7.0.ebuild
deleted file mode 100644
index 3811ca471..0
--- a/dev-python/cattrs/cattrs-1.7.0.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DISTUTILS_SINGLE_IMPL=1
-DISTUTILS_USE_SETUPTOOLS=pyproject.toml
-PYTHON_COMPAT=( python3_{8..9} )
-
-inherit distutils-r1
-
-SRC_URI="https://github.com/Tinche/cattrs/archive/refs/tags/v${PV}.tar.gz -> 
${P}.tar.gz"
-KEYWORDS="~amd64"
-DESCRIPTION="Complex custom class converters for attrs"
-HOMEPAGE="https://github.com/Tinche/cattrs;
-LICENSE="MIT"
-SLOT="0"
-
-RDEPEND="
-   ${PYTHON_DEPS}
-   $(python_gen_cond_dep '>=dev-python/attrs-20[${PYTHON_USEDEP}]')
-"
-DEPEND="
-   ${RDEPEND}
-   test? (
-   $(python_gen_cond_dep '
-   dev-python/bson[${PYTHON_USEDEP}]
-   dev-python/immutables[${PYTHON_USEDEP}]
-   dev-python/hypothesis[${PYTHON_USEDEP}]
-   dev-python/msgpack[${PYTHON_USEDEP}]
-   dev-python/pendulum[${PYTHON_USEDEP}]
-   dev-python/pytest-benchmark[${PYTHON_USEDEP}]
-   dev-python/pyyaml[${PYTHON_USEDEP}]
-   dev-python/tomlkit[${PYTHON_USEDEP}]
-   dev-python/ujson[${PYTHON_USEDEP}]
-   ')
-   dev-python/orjson[${PYTHON_SINGLE_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-distutils_enable_sphinx docs

diff --git a/dev-python/cattrs/metadata.xml b/dev-python/cattrs/metadata.xml
deleted file mode 100644
index d2b2c8ce9..0
--- a/dev-python/cattrs/metadata.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   co-maintainers welcome
-   lssndrbarbi...@gmail.com
-   Alessandro Barbieri
-   
-



[gentoo-commits] repo/proj/guru:dev commit in: media-gfx/fontbakery/

2021-07-10 Thread Alessandro Barbieri
commit: b63656101905fd3db0e5022330a5114b7d66c065
Author: Alessandro Barbieri  gmail  com>
AuthorDate: Sat Jul 10 15:31:37 2021 +
Commit: Alessandro Barbieri  gmail  com>
CommitDate: Sun Jul 11 00:29:03 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b6365610

media-gfx/fontbakery: initial import

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

 media-gfx/fontbakery/Manifest |  1 +
 media-gfx/fontbakery/fontbakery-0.7.38.ebuild | 57 +++
 media-gfx/fontbakery/metadata.xml | 14 +++
 3 files changed, 72 insertions(+)

diff --git a/media-gfx/fontbakery/Manifest b/media-gfx/fontbakery/Manifest
new file mode 100644
index 0..ec69bf933
--- /dev/null
+++ b/media-gfx/fontbakery/Manifest
@@ -0,0 +1 @@
+DIST fontbakery-0.7.38.tar.gz 31171347 BLAKE2B 
a07762237453e6bd72b7eea2ed5ab82b5ceafc759dd38ed3fbcf723fe3a81b1eccff6d6210f7342655980c509f7f0ad9a40fee107326a37d6b7fc06f661519c8
 SHA512 
795ccbe0ac248c22821813ea9bd1f90c1da58746f3f02a714e6d93dc6ae3bb0a46a0a83332856fa97439c222d5b0adece83c1e70a3b95441f7c83893f04187b8

diff --git a/media-gfx/fontbakery/fontbakery-0.7.38.ebuild 
b/media-gfx/fontbakery/fontbakery-0.7.38.ebuild
new file mode 100644
index 0..b602d7f41
--- /dev/null
+++ b/media-gfx/fontbakery/fontbakery-0.7.38.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..9} )
+
+inherit distutils-r1
+
+DESCRIPTION="Font quality assurance tool"
+HOMEPAGE="
+   https://github.com/googlefonts/fontbakery
+   https://pypi.org/project/fontbakery
+"
+SRC_URI="https://github.com/googlefonts/fontbakery/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+   >=dev-python/beautifulsoup-4.9.3[${PYTHON_USEDEP}]
+   >=dev-python/beziers-0.3.1[${PYTHON_USEDEP}]
+   >=dev-python/cmarkgfm-0.5.3[${PYTHON_USEDEP}]
+   >=dev-python/collidoscope-0.0.6[${PYTHON_USEDEP}]
+   >=dev-python/defcon-0.8.1[${PYTHON_USEDEP}]
+   >=dev-python/font-v-1.0.5[${PYTHON_USEDEP}]
+   >=dev-python/fonttools-4.24.3[${PYTHON_USEDEP}]
+   >=dev-python/lxml-4.6.3[${PYTHON_USEDEP}]
+   >=dev-python/pip-api-0.0.20[${PYTHON_USEDEP}]
+   >=dev-python/protobuf-python-3.17.0[${PYTHON_USEDEP}]
+   >=dev-python/pyyaml-5.4.1[${PYTHON_USEDEP}]
+   >=dev-python/requests-2.25.1[${PYTHON_USEDEP}]
+   >=dev-python/rich-10.2.2[${PYTHON_USEDEP}]
+   >=dev-python/stringbrewer-0.0.1[${PYTHON_USEDEP}]
+   >=dev-python/toml-0.10.2[${PYTHON_USEDEP}]
+   >=dev-python/vharfbuzz-0.1.1[${PYTHON_USEDEP}]
+   >=dev-util/ots-8.1.4
+   >=media-gfx/dehinter-3.1.0[${PYTHON_USEDEP}]
+   >=media-gfx/ufolint-1.2.0[${PYTHON_USEDEP}]
+"
+DEPEND="
+   ${RDEPEND}
+   test? (
+   dev-python/ufo2ft[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+distutils_enable_sphinx docs/source \
+   "
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  
+lssndrbarbi...@gmail.com
+Alessandro Barbieri
+  
+  
+https://github.com/googlefonts/fontbakery/issues
+googlefonts/fontbakery
+fontbakery
+  
+
+



[gentoo-commits] repo/proj/guru:dev commit in: sys-cluster/extrae/

2021-07-10 Thread Alessandro Barbieri
commit: 96044191ae3ba0e0aa6708d70e540a2b39d492eb
Author: Alessandro Barbieri  gmail  com>
AuthorDate: Sun Jul 11 00:25:59 2021 +
Commit: Alessandro Barbieri  gmail  com>
CommitDate: Sun Jul 11 00:29:03 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=96044191

sys-cluster/extrae: add memkind description

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

 sys-cluster/extrae/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sys-cluster/extrae/metadata.xml b/sys-cluster/extrae/metadata.xml
index bcef4fe59..4a9abda54 100644
--- a/sys-cluster/extrae/metadata.xml
+++ b/sys-cluster/extrae/metadata.xml
@@ -31,6 +31,7 @@ process). Extrae generates trace files that can be later 
visualized with sys-clu
Enables instrumentation for basic 
I/O (read, write) calls
Enables instrumentation for 
system calls (other than I/O and mallocs)
Enable support for tracing Java. This is 
necessary to create the connectors between |TRACE| and Java applications.
+   Enable dev-libs/memkind 
support
Embed the merging process in the 
tracing library so the final tracefile can be generated automatically from the 
application run
Enable support for tracing 
sys-cluster/nanos6 run-time




[gentoo-commits] repo/proj/guru:dev commit in: media-fonts/3270font/, media-fonts/3270font/files/

2021-07-10 Thread Alessandro Barbieri
commit: 68fb39a0c807e8b8e604ee7da9c767c4a1d4f585
Author: Alessandro Barbieri  gmail  com>
AuthorDate: Sun Jul 11 00:23:29 2021 +
Commit: Alessandro Barbieri  gmail  com>
CommitDate: Sun Jul 11 00:29:03 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=68fb39a0

media-fonts/3270font: add fontbakery tests

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

 media-fonts/3270font/3270font-2.3.0.ebuild| 15 ++-
 .../files/3270font-2.3.0-correctly-pass-options.patch | 10 ++
 2 files changed, 20 insertions(+), 5 deletions(-)

diff --git a/media-fonts/3270font/3270font-2.3.0.ebuild 
b/media-fonts/3270font/3270font-2.3.0.ebuild
index c1ccd1dac..16356a8d7 100644
--- a/media-fonts/3270font/3270font-2.3.0.ebuild
+++ b/media-fonts/3270font/3270font-2.3.0.ebuild
@@ -14,15 +14,17 @@ 
SRC_URI="https://github.com/rbanffy/3270font/archive/v${PV}.tar.gz -> ${P}.tar.g
 LICENSE="BSD CC-BY-SA-3.0 GPL-3 OFL"
 SLOT="0"
 KEYWORDS="~amd64"
-
 IUSE="test"
-RESTRICT="!test? ( test )"
 
+RESTRICT="test"
+PROPERTIES="test_network"
 DOCS=( CHANGELOG.md README.md  )
 HTML_DOCS=( "DESCRIPTION.en_us.html" )
-PATCHES=( "${FILESDIR}/remove-useless-tests.patch" )
+PATCHES=(
+   "${FILESDIR}/remove-useless-tests.patch"
+   "${FILESDIR}/${P}-correctly-pass-options.patch"
+)
 
-RDEPEND=""
 DEPEND="
${PYTHON_DEPS}
media-gfx/fontforge
@@ -31,6 +33,7 @@ DEPEND="
dev-python/ipdb[${PYTHON_USEDEP}]
dev-python/pillow[${PYTHON_USEDEP}]
dev-util/gftools[${PYTHON_SINGLE_USEDEP}]
+   media-gfx/fontbakery[${PYTHON_USEDEP}]
')
)
 "
@@ -40,7 +43,8 @@ FONT_SUFFIX="otf ttf pfm woff"
 
 python_check_deps() {
has_version -d "dev-python/ipdb[${PYTHON_USEDEP}]" && \
-   has_version -d "dev-python/pillow[${PYTHON_USEDEP}]"
+   has_version -d "dev-python/pillow[${PYTHON_USEDEP}]" && \
+   has_version -d "dev-util/gftools[${PYTHON_SINGLE_USEDEP}]"
 }
 
 pkg_setup() {
@@ -53,4 +57,5 @@ src_compile() {
 
 src_test() {
emake test
+   emake fbchecks
 }

diff --git 
a/media-fonts/3270font/files/3270font-2.3.0-correctly-pass-options.patch 
b/media-fonts/3270font/files/3270font-2.3.0-correctly-pass-options.patch
new file mode 100644
index 0..7d8dc6224
--- /dev/null
+++ b/media-fonts/3270font/files/3270font-2.3.0-correctly-pass-options.patch
@@ -0,0 +1,10 @@
+--- a/fontbakery_checks.sh
 b/fontbakery_checks.sh
+@@ -36,6 +36,6 @@
+ for fontdir in "$OUTPUT_DIR"/*
+ do
+   if [ -d "$fontdir" ]; then
+-fontbakery check-googlefonts "$OPTIONS" "$fontdir"/*.ttf
++fontbakery check-googlefonts $OPTIONS "$fontdir"/*.ttf
+   fi
+ done



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

2021-07-10 Thread Conrad Kostecki
commit: fbd440454a7a8cfc7849a3bbf1130e88005fa618
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Sat Jul 10 22:46:58 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Sat Jul 10 22:50:00 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbd44045

net-p2p/fms: drop old version

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

 net-p2p/fms/files/fms | 37 -
 net-p2p/fms/fms-0.3.82.ebuild | 77 ---
 2 files changed, 114 deletions(-)

diff --git a/net-p2p/fms/files/fms b/net-p2p/fms/files/fms
deleted file mode 100644
index d7f0453f160..000
--- a/net-p2p/fms/files/fms
+++ /dev/null
@@ -1,37 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-# Check for OpenRC/Baselayout 2 - see bug #270646
-is_openrc() {
-[ -f /lib/librc.so -o -f /etc/init.d/sysfs -o -f /lib/rc/version ]
-}
-
-start() {
-   ebegin "Starting FMS"
-   if is_openrc; then
-   start-stop-daemon -S -u freenet:freenet -d /var/freenet/fms -b 
-x /usr/bin/fms
-   eend $?
-   else
-   cd /var/freenet/fms
-   su -s /bin/sh -c "fms --daemon" freenet
-   eend $?
-   fi
-}
-
-stop() {
-   ebegin "Stopping FMS"
-   if is_openrc; then
-   start-stop-daemon -K -u freenet:freenet -d /var/freenet/fms 
/usr/bin/fms
-   eend $?
-   else
-   pkill -u freenet -f "fms --daemon"
-   eend 0
-   fi
-   if [[ $RC_CMD == "restart" ]]; then
-   ebegin "Waiting a few seconds to be sure FMS is ready for 
restart"
-   sleep 10
-   #give fms time to stop and release the nntp port
-   fi
-}
-

diff --git a/net-p2p/fms/fms-0.3.82.ebuild b/net-p2p/fms/fms-0.3.82.ebuild
deleted file mode 100644
index 76a9a63fb5c..000
--- a/net-p2p/fms/fms-0.3.82.ebuild
+++ /dev/null
@@ -1,77 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-inherit edos2unix cmake-utils user
-
-DESCRIPTION="A spam-resistant message board application for Freenet"
-#FMS oly has a homepage within freenet, so the closest is a wiki linking to it
-HOMEPAGE="https://github.com/freenet/wiki/wiki/FMS;
-SRC_URI="https://dev.gentoo.org/~tommy/distfiles/${PN}-src-${PV}.zip;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="frost ssl"
-
-RDEPEND="virtual/libiconv
-   frost? ( net-libs/mbedtls )
-   ssl? ( net-libs/mbedtls )
-   >=dev-libs/poco-1.4.3_p1
-   >=dev-db/sqlite-3.6.15"
-DEPEND="${RDEPEND}
-   app-arch/unzip"
-
-S=${WORKDIR}
-PATCHES=( "${FILESDIR}"/${PN}-use-system-libs4.patch )
-
-pkg_setup() {
-   enewgroup freenet
-   enewuser freenet -1 -1 /var/freenet freenet
-}
-
-src_prepare() {
-   rm -rv  libs
-   edos2unix src/http/pages/showfilepage.cpp
-   edos2unix CMakeLists.txt
-
-   cmake-utils_src_prepare
-}
-
-src_configure() {
-   local mycmakeargs=( -DI_HAVE_READ_THE_README=ON \
-   -DUSE_BUNDLED_SQLITE=OFF \
-   -DDO_CHARSET_CONVERSION=ON \
-   -DFROST_SUPPORT=$(use frost && echo ON || echo OFF) \
-   -DFCP_SSL_SUPPORT=$(use ssl && echo ON || echo OFF) )
-   cmake-utils_src_configure
-}
-
-src_install() {
-   insinto /var/freenet/fms
-   dobin "${CMAKE_BUILD_DIR}"/fms
-   doins *.htm
-   doins -r fonts images styles translations
-   fperms -R o-rwx /var/freenet/fms/ /usr/bin/fms
-   fowners -R freenet:freenet /var/freenet/fms/ /usr/bin/fms
-   doinitd "${FILESDIR}/fms"
-   dodoc readme.txt
-}
-
-pkg_postinst() {
-   if ! has_version 'net-p2p/freenet' ; then
-   ewarn "FMS needs a freenet node to up-/download messages."
-   ewarn "Please make sure to have a node you can connect to"
-   ewarn "or install net-p2p/freenet to get FMS working."
-   fi
-   elog "By default, the FMS NNTP server will listen on port 1119,"
-   elog "and the web configuration interface will be running at"
-   elog "http://localhost:8080. For more information, read"
-   elog "${ROOT}usr/share/doc/${PF}/readme.txt.bz2"
-   if use frost; then
-   elog " "
-   elog "You need to enable frost on the config page"
-   elog "and restart fms for frost support."
-   fi
-}



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

2021-07-10 Thread Conrad Kostecki
commit: 31f7b22a93e4b5044a6697b84e66807d5f608731
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Sat Jul 10 22:46:15 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Sat Jul 10 22:49:59 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31f7b22a

net-p2p/fms: migrate to EAPI 7, GLEP 81

Changes:
- Updated deps
- Updated init script for modern OpenRC
- Updated docs in pkg_postinst
- Update to EAPI 7
- Migrate to GLEP 81

Closes: https://bugs.gentoo.org/774516
Closes: https://bugs.gentoo.org/781446
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Conrad Kostecki  gentoo.org>

 net-p2p/fms/files/fms.initd  | 11 +
 net-p2p/fms/fms-0.3.82-r1.ebuild | 97 
 2 files changed, 108 insertions(+)

diff --git a/net-p2p/fms/files/fms.initd b/net-p2p/fms/files/fms.initd
new file mode 100644
index 000..fb76b701c51
--- /dev/null
+++ b/net-p2p/fms/files/fms.initd
@@ -0,0 +1,11 @@
+#!/sbin/openrc-run
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+pidfile="/run/fms.pid"
+start_stop_daemon_args="--chdir /var/freenet/fms"
+
+command="/usr/bin/fms"
+command_background="true"
+command_group="freenet"
+command_user="freenet"

diff --git a/net-p2p/fms/fms-0.3.82-r1.ebuild b/net-p2p/fms/fms-0.3.82-r1.ebuild
new file mode 100644
index 000..ca07782f847
--- /dev/null
+++ b/net-p2p/fms/fms-0.3.82-r1.ebuild
@@ -0,0 +1,97 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit edos2unix cmake
+
+DESCRIPTION="A spam-resistant message board application for Freenet"
+# FMS only has a homepage within freenet, so the closest is a wiki linking to 
it
+HOMEPAGE="https://github.com/freenet/wiki/wiki/FMS;
+SRC_URI="https://dev.gentoo.org/~tommy/distfiles/${PN}-src-${PV}.zip;
+S="${WORKDIR}"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="frost ssl"
+
+CDEPEND="
+   acct-group/freenet
+   acct-user/freenet
+"
+
+RDEPEND="
+   ${CDEPEND}
+   dev-db/sqlite:3=
+   dev-libs/poco
+   frost? ( net-libs/mbedtls:0= )
+   ssl? ( net-libs/mbedtls:0= )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+   ${CDEPEND}
+   app-arch/unzip
+   virtual/libiconv
+"
+
+PATCHES=( "${FILESDIR}/${PN}-use-system-libs4.patch" )
+
+DOCS=( "readme.txt" )
+
+src_prepare() {
+   # Convert encoding due applied patch
+   edos2unix src/http/pages/showfilepage.cpp
+   edos2unix CMakeLists.txt
+
+   # Remove bundled libs
+   rm -fr libs || die
+
+   cmake_src_prepare
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DDO_CHARSET_CONVERSION="ON"
+   -DFCP_SSL_SUPPORT="$(usex ssl 'ON' 'OFF')"
+   -DFROST_SUPPORT="$(usex frost 'ON' 'OFF')"
+   -DI_HAVE_READ_THE_README="ON"
+   -DUSE_BUNDLED_SQLITE="OFF"
+   )
+
+   cmake_src_configure
+}
+
+src_install() {
+   dobin "${BUILD_DIR}"/fms
+
+   insinto /var/freenet/fms
+   doins *.htm
+   doins -r fonts images styles translations
+
+   fperms -R o-rwx /var/freenet/fms
+   fowners -R freenet:freenet /var/freenet/fms
+
+   newinitd "${FILESDIR}/fms.initd" fms
+
+   einstalldocs
+}
+
+pkg_postinst() {
+   if ! has_version 'net-p2p/freenet' ; then
+   ewarn "FMS needs a freenet node to upload and download 
messages."
+   ewarn "Please make sure to have a node you can connect to"
+   ewarn "or install net-p2p/freenet to get FMS working."
+   fi
+
+   einfo "By default, the FMS NNTP server will listen on port 1119,"
+   einfo "and the web configuration interface will be running at"
+   einfo "http://localhost:8080.;
+   einfo "For more information, read the installed readme.txt."
+
+   if use frost; then
+   einfo
+   einfo "You need to enable frost on the configuration page"
+   einfo "and restart FMS for frost support."
+   fi
+}



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

2021-07-10 Thread Conrad Kostecki
commit: 8a276637dee2a574978f4e5e9622c342329b5739
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Sat Jul 10 22:38:47 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Sat Jul 10 22:38:47 2021 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=8a276637

uid-gid.txt: move freenet to uid/gid 105

Bug: https://bugs.gentoo.org/781446
Signed-off-by: Conrad Kostecki  gentoo.org>

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

diff --git a/files/uid-gid.txt b/files/uid-gid.txt
index 0b039a6..4b2324d 100644
--- a/files/uid-gid.txt
+++ b/files/uid-gid.txt
@@ -151,6 +151,7 @@ users   -   
100 acct
 messagebus 101 101 
acct
 polkitd102 102 
acct
 plex   103 103 
acct
+freenet105 105 
acct
 lpadmin-   106 
acct
 rpc111 111 
historical  Used by net-nds/portmap, removed in 
[36e60cce11d7](https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36e60cce11d780582196c42d6b692897455d7a27)
 unifi  113 113 
acct
@@ -182,7 +183,6 @@ pdnsd   184 
184 acct
 tinyproxy  186 186 
acct
 iroffer187 187 
acct
 haproxy188 188 
acct
-freenet189 189 
acct
 systemd-journal-   190 
acct
 systemd-journal-remote 191 191 
acct
 systemd-network192 192 
acct



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

2021-07-10 Thread Conrad Kostecki
commit: d961d4f50de4cecf2b6be46c825f159b3171d9e3
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Sat Jul 10 21:47:29 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Sat Jul 10 21:47:29 2021 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=d961d4f5

uid-gid.txt: add uid/gid (189) freenet

Bug: https://bugs.gentoo.org/781446
Signed-off-by: Conrad Kostecki  gentoo.org>

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

diff --git a/files/uid-gid.txt b/files/uid-gid.txt
index 5f924f4..0b039a6 100644
--- a/files/uid-gid.txt
+++ b/files/uid-gid.txt
@@ -182,6 +182,7 @@ pdnsd   184 
184 acct
 tinyproxy  186 186 
acct
 iroffer187 187 
acct
 haproxy188 188 
acct
+freenet189 189 
acct
 systemd-journal-   190 
acct
 systemd-journal-remote 191 191 
acct
 systemd-network192 192 
acct



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

2021-07-10 Thread William Hubbs
commit: 47e977286b1767a02d4d04f235fafa536ebe67d7
Author: William Hubbs  gentoo  org>
AuthorDate: Sat Jul 10 22:26:32 2021 +
Commit: William Hubbs  gentoo  org>
CommitDate: Sat Jul 10 22:26:32 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47e97728

s6.eclass: add eapi 8 support

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

 eclass/s6.eclass | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/eclass/s6.eclass b/eclass/s6.eclass
index b84d5a166db..25960ba4a1d 100644
--- a/eclass/s6.eclass
+++ b/eclass/s6.eclass
@@ -4,7 +4,7 @@
 # @ECLASS: s6.eclass
 # @MAINTAINER:
 # William Hubbs 
-# @SUPPORTED_EAPIS: 5 6 7
+# @SUPPORTED_EAPIS: 5 6 7 8
 # @BLURB: helper functions to install s6 services
 # @DESCRIPTION:
 # This eclass provides helpers to install s6 services.
@@ -25,9 +25,9 @@
 # }
 # @CODE
 
-case ${EAPI:-0} in
-   5|6|7) ;;
-   *) die "${ECLASS}.eclass: API in EAPI ${EAPI} not yet established" ;;
+case ${EAPI} in
+   5|6|7|8) ;;
+   *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;;
 esac
 
 # @FUNCTION: _s6_get_servicedir



[gentoo-commits] repo/proj/guru:dev commit in: net-misc/gmid/files/, net-misc/gmid/

2021-07-10 Thread Anna Vyalkova
commit: b7e12e52c5028db68ec748a50f5f9904e255d4f1
Author: Anna (cybertailor) Vyalkova  sysrq  in>
AuthorDate: Sat Jul 10 18:24:50 2021 +
Commit: Anna Vyalkova  sysrq  in>
CommitDate: Sat Jul 10 18:24:50 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b7e12e52

net-misc/gmid: add 1.7, drop 1.6.2

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

 net-misc/gmid/Manifest |   2 +-
 .../files/gmid-1.6.2-disable-runtime-test.patch|  10 --
 net-misc/gmid/files/gmid-1.6.2-make-pidfile.patch  | 111 -
 net-misc/gmid/files/gmid.conf  |   6 +-
 .../gmid/{gmid-1.6.2.ebuild => gmid-1.7.ebuild}|  37 +++
 5 files changed, 25 insertions(+), 141 deletions(-)

diff --git a/net-misc/gmid/Manifest b/net-misc/gmid/Manifest
index 1a3dac3a9..857b18fce 100644
--- a/net-misc/gmid/Manifest
+++ b/net-misc/gmid/Manifest
@@ -1 +1 @@
-DIST gmid-1.6.2.tar.gz 60293 BLAKE2B 
807f4e93d1ed0f2a69a9631504ffe28d5aee4efbba85b9e7d0a8eec5b4fb50a38285478651f196f57fbcf7b4d38ff462f78c37210720353af638d76b2b28e3e1
 SHA512 
053e2f95449d71c72052c422b1c51657ad48f662422a121452618c69e6bac9b23bbaa2b35b52d314eb7614b9a0f413504c87cd431bc756d455dd198c79270da8
+DIST gmid-1.7.tar.gz 78157 BLAKE2B 
a48cd98621874f1a725b0c4b4ee70af45ebfec56734d00478e52d194f3d5a090ea3c4f8001159863149fdc400619685a1e355ab695b81e76d3b483d0101ef5a4
 SHA512 
d7aaddcc14ea48b4f8377ca841905071f4d82ce96168a39c38e2896b0d1253e31450a9a3794f6a2699afbbb266ffce2e301adc4acf41075a10e11eb878732ad4

diff --git a/net-misc/gmid/files/gmid-1.6.2-disable-runtime-test.patch 
b/net-misc/gmid/files/gmid-1.6.2-disable-runtime-test.patch
deleted file mode 100644
index c6cb8c19c..0
--- a/net-misc/gmid/files/gmid-1.6.2-disable-runtime-test.patch
+++ /dev/null
@@ -1,10 +0,0 @@
 a/regress/Makefile
-+++ b/regress/Makefile
-@@ -4,7 +4,6 @@
- 
- all: puny-test testdata iri_test cert.pem testca.pem valid.crt 
invalid.cert.pem
-   ./puny-test
--  ./runtime
-   ./iri_test
- 
- puny-test: puny-test.o ../puny.o ../utf8.o ../utils.o ../log.o ${COMPAT}

diff --git a/net-misc/gmid/files/gmid-1.6.2-make-pidfile.patch 
b/net-misc/gmid/files/gmid-1.6.2-make-pidfile.patch
deleted file mode 100644
index f95d583a7..0
--- a/net-misc/gmid/files/gmid-1.6.2-make-pidfile.patch
+++ /dev/null
@@ -1,111 +0,0 @@
 a/gmid.1
-+++ b/gmid.1
-@@ -22,6 +22,7 @@
- .Bk -words
- .Op Fl fnv
- .Op Fl c Ar config
-+.Op Fl P Ar pidfile
- .Ek
- .Nm
- .Bk -words
-@@ -51,6 +52,10 @@ Specify the configuration file.
- Stays and logs on the foreground.
- .It Fl n
- Check that the configuration is valid, but don't start the server.
-+.It Fl P Pa pidfile
-+Write
-+.Nm
-+pid to the given path.
- .El
- .Pp
- If no configuration file is given,
 a/gmid.c
-+++ b/gmid.c
-@@ -316,7 +316,7 @@ static void
- usage(const char *me)
- {
-   fprintf(stderr,
--  "USAGE: %s [-fn] [-c config] | [-6h] [-d certs-dir] [-H host]\n"
-+  "USAGE: %s [-fn] [-c config] [-P pidfile] | [-6h] [-d certs-dir] 
[-H host]\n"
-   "   [-p port] [-x cgi] [dir]\n",
-   me);
- }
-@@ -411,6 +411,34 @@ serve(int argc, char **argv, struct imsgbuf *ibuf)
-   _exit(executor_main(ibuf));
- }
- 
-+static int
-+write_pidfile(const char *pidfile)
-+{
-+  struct flocklock;
-+  int fd;
-+
-+  if (pidfile == NULL)
-+  return -1;
-+
-+  if ((fd = open(pidfile, O_WRONLY|O_CREAT|O_CLOEXEC, 0600)) == -1)
-+  fatal("can't open pidfile %s: %s", pidfile, strerror(errno));
-+
-+  lock.l_start = 0;
-+  lock.l_len = 0;
-+  lock.l_type = F_WRLCK;
-+  lock.l_whence = SEEK_SET;
-+
-+  if (fcntl(fd, F_SETLK, ) == -1)
-+  fatal("can't lock %s, gmid is already running?", pidfile);
-+
-+  if (ftruncate(fd, 0) == -1)
-+  fatal("ftruncate: %s: %s", pidfile, strerror(errno));
-+
-+  dprintf(fd, "%d\n", getpid());
-+
-+  return fd;
-+}
-+
- static void
- setup_configless(int argc, char **argv, const char *cgi)
- {
-@@ -434,11 +462,12 @@ main(int argc, char **argv)
- {
-   struct imsgbuf exibuf;
-   int ch, conftest = 0, configless = 0;
--  int old_ipv6, old_port;
-+  int pidfd, old_ipv6, old_port;
-+  const char *pidfile = NULL;
- 
-   init_config();
- 
--  while ((ch = getopt(argc, argv, "6c:d:fH:hnp:vx:")) != -1) {
-+  while ((ch = getopt(argc, argv, "6c:d:fH:hnP:p:vx:")) != -1) {
-   switch (ch) {
-   case '6':
-   conf.ipv6 = 1;
-@@ -472,6 +501,10 @@ main(int argc, char **argv)
-   conftest = 1;
-   break;
- 
-+  case 'P':
-+  pidfile = optarg;
-+  break;
-+
-   case 'p':
-   conf.port = parse_portno(optarg);
-   configless = 1;
-@@ -536,6 +569,8 @@ main(int argc, char **argv)
-  

[gentoo-commits] repo/gentoo:master commit in: games-action/dxx-rebirth/

2021-07-10 Thread James Le Cuirot
commit: 94813df7fda738f9eefb7ade14a05a7bda54268e
Author: James Le Cuirot  gentoo  org>
AuthorDate: Sat Jul 10 22:15:24 2021 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Sat Jul 10 22:15:24 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94813df7

games-action/dxx-rebirth: Drop old 0.61.0_pre20200615

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

 games-action/dxx-rebirth/Manifest  |   1 -
 .../dxx-rebirth-0.61.0_pre20200615.ebuild  | 257 -
 2 files changed, 258 deletions(-)

diff --git a/games-action/dxx-rebirth/Manifest 
b/games-action/dxx-rebirth/Manifest
index f41040fea49..4e590d8f682 100644
--- a/games-action/dxx-rebirth/Manifest
+++ b/games-action/dxx-rebirth/Manifest
@@ -1,2 +1 @@
-DIST dxx-rebirth-0.61.0_pre20200615.tar.gz 1959226 BLAKE2B 
08d66eb1599100172e2bd8dcb8e13ca11314f3b06658c36851ddc7d91897a8376899b7c33b6e7a2d7b72e93cf7f20f157994d06f880e138dc807350e4c64c517
 SHA512 
3470e2b9cf20268f1af5e8084f0b361d1dd5d797bee9a1d97ce5509046f79750ac214d0f34e7eef1acc4ee4ae868ad3f34d33b45ff16386e9d8a7d758db2
 DIST dxx-rebirth_20210623-src.tar.xz 1340044 BLAKE2B 
f16a8904d777559e789d719bc0d6d2dbb7d26c1128984117b6c64a334ae589dd5806439cc51e458a583e1b6cc831dae7c51bf7bd3fbc972989b0ce4e5b932a4e
 SHA512 
150d873fa045df6fb2f9bb70334d08eeae0cc7a639e825f1352fed28501ab9541a27bf3395fc1929bc8d76ed9126b038eed67c5a01657f43116da4663e929821

diff --git a/games-action/dxx-rebirth/dxx-rebirth-0.61.0_pre20200615.ebuild 
b/games-action/dxx-rebirth/dxx-rebirth-0.61.0_pre20200615.ebuild
deleted file mode 100644
index 2f380b10341..000
--- a/games-action/dxx-rebirth/dxx-rebirth-0.61.0_pre20200615.ebuild
+++ /dev/null
@@ -1,257 +0,0 @@
-# Copyright 2017-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7,8,9} )
-
-inherit desktop python-any-r1 scons-utils toolchain-funcs xdg
-
-if [[ "${PV}" =  ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/dxx-rebirth/dxx-rebirth;
-else
-   # dxx-rebirth-0.61.0_pre20190720.ebuild
-   #MY_COMMIT='a17792c89fd49dd12fdf5981670dd7f64b42850f'
-   # dxx-rebirth-0.61.0_pre20200615.ebuild
-   MY_COMMIT='0c2fcf691ffb2a586991350d67f3efd1cca2a1f3'
-   # dxx-rebirth-0.61.0_pre20200627.ebuild
-   #MY_COMMIT='aba40babb47d36a88011af01e4bc0fc00dca74ef'
-   S="${WORKDIR}/${PN}-${MY_COMMIT}"
-   
#SRC_URI="https://github.com/dxx-rebirth/dxx-rebirth/archive/${MY_COMMIT}.tar.gz
 -> ${PN}-${PVR}.tar.gz"
-   
SRC_URI="https://codeload.github.com/dxx-rebirth/dxx-rebirth/tar.gz/${MY_COMMIT}
 -> ${PN}-${PVR}.tar.gz"
-   unset MY_COMMIT
-
-   # Games under Gentoo are marked as 'testing' by convention
-   #
-   # Other architectures are reported to work, but not tested regularly by
-   # the core team.
-   #
-   # Raspberry Pi support is tested by an outside contributor, and his
-   # fixes are merged into the main source by upstream.
-   #
-   # Cross-compilation to Windows is also supported.
-   KEYWORDS="~amd64 ~x86"
-fi
-
-DESCRIPTION="Descent Rebirth - enhanced Descent 1 & 2 engine"
-HOMEPAGE="https://www.dxx-rebirth.com/;
-
-LICENSE="DXX-Rebirth GPL-3"
-SLOT="0"
-
-# Default to building both game engines.  The total size is relatively
-# small.
-IUSE="+d1x +d2x +data debug editor +flac ipv6 +joystick l10n_de +midi +mp3 
+music +opengl opl3-musicpack +png sc55-musicpack sdl2 tracker valgrind +vorbis"
-
-# Game data is stored in HOG files.
-# Game movies are in MVL files.
-# Various add-ons use zip files to bundle their content together.
-#
-# PNG support enables writing screenshots as PNG instead of TGA (for
-# USE=opengl) or PCX (for USE=-opengl).
-DEPEND="dev-games/physfs[hog,mvl,zip]
-   opengl? (
-   virtual/opengl
-   virtual/glu )
-   png? ( media-libs/libpng )
-"
-
-# As of this writing, there is no Portage shorthand syntax to express:
-# "
-#  flag1? ( package[flag1] )
-#  flag2? ( package[flag2] )
-#  ...
-#  flagN? ( package[flagN] )
-# ", such that unsetting all flags removes the dependency on package.
-# Fake it by using a text fragment that is repeatedly expanded with
-# differing substitutions.
-#
-# The use of single quotes is intentional here.  The ${word} is a
-# placeholder to be matched by text substitution when the fragment is
-# expanded, not a shell variable reference.
-#
-# For each flag, depend on freedata using the same flag.  If none of the
-# flags are set, freedata is not needed.
-DXX_RDEPEND_USE_FREEDATA_FRAGMENT='
-   ${USE}? ( games-action/descent${ENGINE}-freedata[${USE}] )
-'
-# Block <0.59.100 due to file collision.
-#
-# If USE=data, then require a game data package.
-# The build process does not use the game data, nor change how the game
-# is built based on what game data will be used.  At startup, the 

[gentoo-commits] repo/gentoo:master commit in: games-action/dxx-rebirth/

2021-07-10 Thread James Le Cuirot
commit: 5ca99171eb0a4d194a52fb62ec6ed79f9f33f5aa
Author: James Le Cuirot  gentoo  org>
AuthorDate: Sat Jul 10 22:14:56 2021 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Sat Jul 10 22:14:56 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ca99171

games-action/dxx-rebirth: Bump snapshot to 20210623

Fixes: https://bugs.gentoo.org/801487
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: James Le Cuirot  gentoo.org>

 games-action/dxx-rebirth/Manifest | 1 +
 ...-rebirth-.ebuild => dxx-rebirth-0.61.0_pre20210623.ebuild} | 8 
 games-action/dxx-rebirth/dxx-rebirth-.ebuild  | 2 ++
 3 files changed, 7 insertions(+), 4 deletions(-)

diff --git a/games-action/dxx-rebirth/Manifest 
b/games-action/dxx-rebirth/Manifest
index 1b705069b99..f41040fea49 100644
--- a/games-action/dxx-rebirth/Manifest
+++ b/games-action/dxx-rebirth/Manifest
@@ -1 +1,2 @@
 DIST dxx-rebirth-0.61.0_pre20200615.tar.gz 1959226 BLAKE2B 
08d66eb1599100172e2bd8dcb8e13ca11314f3b06658c36851ddc7d91897a8376899b7c33b6e7a2d7b72e93cf7f20f157994d06f880e138dc807350e4c64c517
 SHA512 
3470e2b9cf20268f1af5e8084f0b361d1dd5d797bee9a1d97ce5509046f79750ac214d0f34e7eef1acc4ee4ae868ad3f34d33b45ff16386e9d8a7d758db2
+DIST dxx-rebirth_20210623-src.tar.xz 1340044 BLAKE2B 
f16a8904d777559e789d719bc0d6d2dbb7d26c1128984117b6c64a334ae589dd5806439cc51e458a583e1b6cc831dae7c51bf7bd3fbc972989b0ce4e5b932a4e
 SHA512 
150d873fa045df6fb2f9bb70334d08eeae0cc7a639e825f1352fed28501ab9541a27bf3395fc1929bc8d76ed9126b038eed67c5a01657f43116da4663e929821

diff --git a/games-action/dxx-rebirth/dxx-rebirth-.ebuild 
b/games-action/dxx-rebirth/dxx-rebirth-0.61.0_pre20210623.ebuild
similarity index 97%
copy from games-action/dxx-rebirth/dxx-rebirth-.ebuild
copy to games-action/dxx-rebirth/dxx-rebirth-0.61.0_pre20210623.ebuild
index b29054e2a7b..f2aeb8f86f4 100644
--- a/games-action/dxx-rebirth/dxx-rebirth-.ebuild
+++ b/games-action/dxx-rebirth/dxx-rebirth-0.61.0_pre20210623.ebuild
@@ -11,11 +11,11 @@ if [[ "${PV}" =  ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/dxx-rebirth/dxx-rebirth;
 else
-   MY_COMMIT=''
-   S="${WORKDIR}/${PN}-${MY_COMMIT}"
-   
SRC_URI="https://codeload.github.com/dxx-rebirth/dxx-rebirth/tar.gz/${MY_COMMIT}
 -> ${PN}-${PVR}.tar.gz"
-   unset MY_COMMIT
+   S="${WORKDIR}/${PN}_${PV##*_pre}-src"
+   
SRC_URI="https://www.dxx-rebirth.com/download/dxx/rebirth/${PN}_${PV##*_pre}-src.tar.xz;
 
+   # Games under Gentoo are marked as 'testing' by convention
+   #
# Other architectures are reported to work, but not tested regularly by
# the core team.
#

diff --git a/games-action/dxx-rebirth/dxx-rebirth-.ebuild 
b/games-action/dxx-rebirth/dxx-rebirth-.ebuild
index b29054e2a7b..8b70e138369 100644
--- a/games-action/dxx-rebirth/dxx-rebirth-.ebuild
+++ b/games-action/dxx-rebirth/dxx-rebirth-.ebuild
@@ -16,6 +16,8 @@ else

SRC_URI="https://codeload.github.com/dxx-rebirth/dxx-rebirth/tar.gz/${MY_COMMIT}
 -> ${PN}-${PVR}.tar.gz"
unset MY_COMMIT
 
+   # Games under Gentoo are marked as 'testing' by convention
+   #
# Other architectures are reported to work, but not tested regularly by
# the core team.
#



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

2021-07-10 Thread Andreas K. Hüttel
commit: 48d54deb9406b5e8217a88b6e769170df77128e5
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat Jul 10 21:53:09 2021 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Sat Jul 10 21:53:09 2021 +
URL:https://gitweb.gentoo.org/proj/releng.git/commit/?id=48d54deb

amd64: also upload nomultilib systemd stage3

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

 tools/catalyst-auto-amd64-demeter.conf | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/tools/catalyst-auto-amd64-demeter.conf 
b/tools/catalyst-auto-amd64-demeter.conf
index 42755ae3..04b76871 100644
--- a/tools/catalyst-auto-amd64-demeter.conf
+++ b/tools/catalyst-auto-amd64-demeter.conf
@@ -93,6 +93,9 @@ post_build() {
nomultilib/stage3-openrc.spec)
upload stage3-amd64-nomultilib-openrc-${TIMESTAMP}.tar.xz*
;;
+   nomultilib/stage3-systemd.spec)
+   upload stage3-amd64-nomultilib-systemd-${TIMESTAMP}.tar.xz*
+   ;;
x32/stage3-openrc.spec)
upload stage3-x32-openrc-${TIMESTAMP}.tar.xz*
;;



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

2021-07-10 Thread Lars Wendler
commit: 0d6f1fbaa1198c04f6efb5bb8be505b4394c3541
Author: Sam James  gentoo  org>
AuthorDate: Sat Jul 10 15:18:31 2021 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sat Jul 10 21:41:02 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d6f1fba

autotools.eclass: add EAPI 8 support

Signed-off-by: Sam James  gentoo.org>
Closes: https://github.com/gentoo/gentoo/pull/21584
Signed-off-by: Lars Wendler  gentoo.org>

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

diff --git a/eclass/autotools.eclass b/eclass/autotools.eclass
index 67ae6d8466b..837f9e7a9aa 100644
--- a/eclass/autotools.eclass
+++ b/eclass/autotools.eclass
@@ -4,7 +4,7 @@
 # @ECLASS: autotools.eclass
 # @MAINTAINER:
 # base-sys...@gentoo.org
-# @SUPPORTED_EAPIS: 5 6 7
+# @SUPPORTED_EAPIS: 5 6 7 8
 # @BLURB: Regenerates auto* build scripts
 # @DESCRIPTION:
 # This eclass is for safely handling autotooled software packages that need to
@@ -31,7 +31,7 @@ case ${EAPI} in
# Needed for eqawarn
inherit eutils
;;
-   7) ;;
+   7|8) ;;
*) die "${ECLASS}: EAPI ${EAPI} not supported" ;;
 esac
 



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

2021-07-10 Thread Lars Wendler
commit: ff7fb4695d7656feb7b793cd897882b7d49342d6
Author: Sam James  gentoo  org>
AuthorDate: Sat Jul 10 15:12:16 2021 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sat Jul 10 21:41:02 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff7fb469

autotools.eclass: rename configure.in to configure.ac on new EAPIs

automake is "eventually" going to fail when it detects configure.in.

Don't do this immediately - instead only on new EAPIs to avoid
breaking existing ebuilds.

We give an eqawarn (which is triggered by e.g. PORTAGE_ELOG_CLASSES="qa" and
is opt-in) for maintainers to upstream these where possible, but this isn't
always the case for software ehich otherwise works but is unmaintained upstream.

Bug: https://bugs.gentoo.org/426262
Signed-off-by: Sam James  gentoo.org>
Signed-off-by: Lars Wendler  gentoo.org>

 eclass/autotools.eclass | 17 ++---
 1 file changed, 14 insertions(+), 3 deletions(-)

diff --git a/eclass/autotools.eclass b/eclass/autotools.eclass
index b386654c832..67ae6d8466b 100644
--- a/eclass/autotools.eclass
+++ b/eclass/autotools.eclass
@@ -373,10 +373,21 @@ eautoconf() {
die "No configure.{ac,in} present!"
fi
 
+
if [[ ${WANT_AUTOCONF} != "2.1" && -e configure.in ]] ; then
-   eqawarn "This package has a configure.in file which has long 
been deprecated.  Please"
-   eqawarn "update it to use configure.ac instead as newer 
versions of autotools will die"
-   eqawarn "when it finds this file.  See 
https://bugs.gentoo.org/426262 for details."
+   case ${EAPI:-0} in
+   0|1|2|3|4|5|6|7)
+   eqawarn "This package has a configure.in file 
which has long been deprecated.  Please"
+   eqawarn "update it to use configure.ac instead 
as newer versions of autotools will die"
+   eqawarn "when it finds this file.  See 
https://bugs.gentoo.org/426262 for details."
+   ;;
+   *)
+   # Move configure file to the new location only 
on newer EAPIs to ensure
+   # checks are done rather than retroactively 
breaking ebuilds.
+   eqawarn "Moving configure.in to configure.ac 
(bug #426262)"
+   mv configure.{in,ac} || die
+   ;;
+   esac
fi
 
# Install config.guess and config.sub which are required by many macros



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

2021-07-10 Thread Lars Wendler
commit: cfb9c2f8b0c629d46b13368ffa1b2d66c0db2990
Author: Lars Wendler  gentoo  org>
AuthorDate: Sat Jul 10 21:37:37 2021 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sat Jul 10 21:38:09 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cfb9c2f8

dev-libs/libjcat: Default-enable gpg and pkcs7 USE flags

Closes: https://bugs.gentoo.org/801496
Signed-off-by: Lars Wendler  gentoo.org>

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

diff --git a/dev-libs/libjcat/libjcat-0.1.8.ebuild 
b/dev-libs/libjcat/libjcat-0.1.8.ebuild
index 20c253ee26f..11fd5361f10 100644
--- a/dev-libs/libjcat/libjcat-0.1.8.ebuild
+++ b/dev-libs/libjcat/libjcat-0.1.8.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://github.com/hughsie/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 LICENSE="LGPL-2.1+"
 SLOT="0"
 KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86"
-IUSE="gpg gtk-doc +introspection +man pkcs7 test vala"
+IUSE="+gpg gtk-doc +introspection +man +pkcs7 test vala"
 
 RDEPEND="dev-libs/glib:2
dev-libs/json-glib:=



[gentoo-commits] repo/gentoo:master commit in: sys-apps/util-linux/, sys-apps/util-linux/files/

2021-07-10 Thread Lars Wendler
commit: f97eb250b55904388c542a546ec048f239f89b5c
Author: Lars Wendler  gentoo  org>
AuthorDate: Sat Jul 10 21:24:33 2021 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sat Jul 10 21:31:41 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f97eb250

sys-apps/util-linux: Attempt fix build with sys-libs/libxcrypt[-abi_x86_32]

Bug: https://bugs.gentoo.org/801403
Signed-off-by: Lars Wendler  gentoo.org>

 .../files/util-linux-2.37-avoid_autoreconf.patch   | 136 +
 .../files/util-linux-2.37-lcrypt_link_fix.patch|  50 
 .../files/util-linux-2.37-lcrypt_use_LIBS.patch|  91 ++
 sys-apps/util-linux/util-linux-2.37.ebuild |   4 +
 4 files changed, 281 insertions(+)

diff --git a/sys-apps/util-linux/files/util-linux-2.37-avoid_autoreconf.patch 
b/sys-apps/util-linux/files/util-linux-2.37-avoid_autoreconf.patch
new file mode 100644
index 000..44ea6e5c2be
--- /dev/null
+++ b/sys-apps/util-linux/files/util-linux-2.37-avoid_autoreconf.patch
@@ -0,0 +1,136 @@
+--- util-linux-2.37/config.h.in
 util-linux-2.37/config.h.in
+@@ -216,9 +216,6 @@
+ /* Define to 1 if you have the `cap-ng' library (-lcap-ng). */
+ #undef HAVE_LIBCAP_NG
+ 
+-/* Do we need -lcrypt? */
+-#undef HAVE_LIBCRYPT
+-
+ /* Define if libeconf is available */
+ #undef HAVE_LIBECONF
+ 
+--- util-linux-2.37/configure
 util-linux-2.37/configure
+@@ -4965,12 +4965,7 @@
+ program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"`
+ 
+ if test x"${MISSING+set}" != xset; then
+-  case $am_aux_dir in
+-  *\ * | *\   *)
+-MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;;
+-  *)
+-MISSING="\${SHELL} $am_aux_dir/missing" ;;
+-  esac
++  MISSING="\${SHELL} '$am_aux_dir/missing'"
+ fi
+ # Use eval to expand $SHELL
+ if eval "$MISSING --is-lightweight"; then
+@@ -25591,7 +25586,10 @@
+ 
+ else
+ 
++
++  old_LIBS="$LIBS"
+   LIBS="$LIBS -lcrypt"
++
+   cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+ /* end confdefs.h.  */
+ 
+@@ -25612,10 +25610,7 @@
+   return 0;
+ }
+ _ACEOF
+-if ac_fn_c_try_compile "$LINENO"; then :
+-
+-
+-$as_echo "#define HAVE_LIBCRYPT 1" >>confdefs.h
++if ac_fn_c_try_link "$LINENO"; then :
+ 
+   have_libcrypt=yes
+   have_crypt=yes
+@@ -25626,7 +25621,11 @@
+ $as_echo "$as_me: WARNING: crypt() is not available" >&2;}
+ 
+ fi
+-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
++rm -f core conftest.err conftest.$ac_objext \
++conftest$ac_exeext conftest.$ac_ext
++
++  LIBS="$old_LIBS"
++
+ 
+ fi
+ rm -f core conftest.err conftest.$ac_objext \
+@@ -25768,12 +25767,8 @@
+ 
+ 
+ 
+-  old_CFLAGS="$CFLAGS"
+-  old_CPPFLAGS="$CPPFLAGS"
+-  old_LDFLAGS="$LDFLAGS"
+-  CFLAGS="$CFLAGS "
+-  CPPFLAGS="$CPPFLAGS "
+-  LDFLAGS="$LDFLAGS $SELINUX_LIBS"
++  old_LIBS="$LIBS"
++  LIBS="$LIBS $SELINUX_LIBS"
+ 
+ # This function is missing in old libselinux 1.xx versions
+ for ac_func in security_get_initial_context
+@@ -25788,9 +25783,7 @@
+ done
+ 
+ 
+-  CFLAGS="$old_CFLAGS"
+-  CPPFLAGS="$old_CPPFLAGS"
+-  LDFLAGS="$old_LDFLAGS"
++  LIBS="$old_LIBS"
+ 
+ 
+ fi
+--- util-linux-2.37/Makefile.in
 util-linux-2.37/Makefile.in
+@@ -1,4 +1,4 @@
+-# Makefile.in generated by automake 1.16.2 from Makefile.am.
++# Makefile.in generated by automake 1.16.3 from Makefile.am.
+ # @configure_input@
+ 
+ # Copyright (C) 1994-2020 Free Software Foundation, Inc.
+@@ -4649,6 +4649,8 @@
+ GZIP_ENV = --best
+ DIST_ARCHIVES = $(distdir).tar.xz
+ DIST_TARGETS = dist-xz
++# Exists only to be overridden by the user if desired.
++AM_DISTCHECK_DVI_TARGET = dvi
+ distuninstallcheck_listfiles = find . -type f -print
+ am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
+   | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
+@@ -14854,7 +14856,7 @@
+   $(DISTCHECK_CONFIGURE_FLAGS) \
+   --srcdir=../.. --prefix="$$dc_install_base" \
+ && $(MAKE) $(AM_MAKEFLAGS) \
+-&& $(MAKE) $(AM_MAKEFLAGS) dvi \
++&& $(MAKE) $(AM_MAKEFLAGS) $(AM_DISTCHECK_DVI_TARGET) \
+ && $(MAKE) $(AM_MAKEFLAGS) check \
+ && $(MAKE) $(AM_MAKEFLAGS) install \
+ && $(MAKE) $(AM_MAKEFLAGS) installcheck \
+@@ -14920,7 +14922,8 @@
+   done
+ install: $(BUILT_SOURCES)
+   $(MAKE) $(AM_MAKEFLAGS) install-recursive
+-install-exec: install-exec-recursive
++install-exec: $(BUILT_SOURCES)
++  $(MAKE) $(AM_MAKEFLAGS) install-exec-recursive
+ install-data: install-data-recursive
+ uninstall: uninstall-recursive
+ 
+@@ -16157,7 +16160,8 @@
+   uninstall-man8
+ 
+ .MAKE: $(am__recursive_targets) all check check-am install install-am \
+-  install-data-am install-exec-am install-strip uninstall-am
++  install-data-am install-exec install-exec-am install-strip \
++  uninstall-am
+ 
+ .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \
+   am--depfiles am--refresh check check-am check-local clean \

diff --git 

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

2021-07-10 Thread John Helmert III
commit: ebba5014f902ed70b58d5cfb7d7312f52be6b468
Author: John Helmert III  gentoo  org>
AuthorDate: Sat Jul 10 21:21:22 2021 +
Commit: John Helmert III  gentoo  org>
CommitDate: Sat Jul 10 21:30:31 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ebba5014

dev-python/pytest-subtesthack: mark ALLARCHES

Signed-off-by: John Helmert III  gentoo.org>

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

diff --git a/dev-python/pytest-subtesthack/metadata.xml 
b/dev-python/pytest-subtesthack/metadata.xml
index 83cea879f32..3bd46636104 100644
--- a/dev-python/pytest-subtesthack/metadata.xml
+++ b/dev-python/pytest-subtesthack/metadata.xml
@@ -5,6 +5,7 @@
pyt...@gentoo.org
Python

+   

pytest-subtesthack
untitaker/pytest-subtesthack



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

2021-07-10 Thread John Helmert III
commit: d639bc25505eeb3175a22b1e0ad99afbeb906943
Author: John Helmert III  gentoo  org>
AuthorDate: Sat Jul 10 20:34:33 2021 +
Commit: John Helmert III  gentoo  org>
CommitDate: Sat Jul 10 21:30:30 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d639bc25

dev-python/pytest-subtesthack: enable py3.10 and disable py3.7

Signed-off-by: John Helmert III  gentoo.org>

 dev-python/pytest-subtesthack/pytest-subtesthack-0.1.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pytest-subtesthack/pytest-subtesthack-0.1.2.ebuild 
b/dev-python/pytest-subtesthack/pytest-subtesthack-0.1.2.ebuild
index ecf80737e6f..9738c6bb61a 100644
--- a/dev-python/pytest-subtesthack/pytest-subtesthack-0.1.2.ebuild
+++ b/dev-python/pytest-subtesthack/pytest-subtesthack-0.1.2.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{7..9} )
+PYTHON_COMPAT=( python3_{8..10} )
 
 inherit distutils-r1
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/vdirsyncer/, dev-python/vdirsyncer/files/

2021-07-10 Thread John Helmert III
commit: d9f335c58209e7d4f80b3ba028586511372eca88
Author: John Helmert III  gentoo  org>
AuthorDate: Sat Jul 10 20:53:05 2021 +
Commit: John Helmert III  gentoo  org>
CommitDate: Sat Jul 10 21:30:32 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9f335c5

dev-python/vdirsyncer: Python bump, fix tests, install systemd files

Also close old test bugs related to hypothesis which don't seem
reproducible with any modern hypothesis versions in tree.

Closes: https://bugs.gentoo.org/641546
Closes: https://bugs.gentoo.org/668360
Closes: https://bugs.gentoo.org/743953
Signed-off-by: John Helmert III  gentoo.org>

 .../files/vdirsyncer-0.18.0-no-cov.patch   | 25 +
 dev-python/vdirsyncer/vdirsyncer-0.18.0-r1.ebuild  | 63 ++
 2 files changed, 88 insertions(+)

diff --git a/dev-python/vdirsyncer/files/vdirsyncer-0.18.0-no-cov.patch 
b/dev-python/vdirsyncer/files/vdirsyncer-0.18.0-no-cov.patch
new file mode 100644
index 000..d7e1d537ce4
--- /dev/null
+++ b/dev-python/vdirsyncer/files/vdirsyncer-0.18.0-no-cov.patch
@@ -0,0 +1,25 @@
+Avoid pytest-cov involvement:
+
+https://dev.gentoo.org/~mgorny/python-guide/pytest.html#avoiding-dependencies-on-other-pytest-plugins
+
+Signed-Off-By: John Helmert III 
+
+diff --git a/setup.cfg b/setup.cfg
+index 2428e44..117f237 100644
+--- a/setup.cfg
 b/setup.cfg
+@@ -1,14 +1,6 @@
+ [wheel]
+ universal = 1
+ 
+-[tool:pytest]
+-addopts = 
+-  --tb=short
+-  --cov-config .coveragerc
+-  --cov=vdirsyncer
+-  --cov-report=term-missing
+-  --no-cov-on-fail
+-
+ [flake8]
+ application-import-names = tests,vdirsyncer
+ extend-ignore = 

diff --git a/dev-python/vdirsyncer/vdirsyncer-0.18.0-r1.ebuild 
b/dev-python/vdirsyncer/vdirsyncer-0.18.0-r1.ebuild
new file mode 100644
index 000..21d72fd5f54
--- /dev/null
+++ b/dev-python/vdirsyncer/vdirsyncer-0.18.0-r1.ebuild
@@ -0,0 +1,63 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+PYTHON_REQ_USE="sqlite"
+
+inherit distutils-r1 systemd
+
+DESCRIPTION="Synchronize calendars and contacts"
+HOMEPAGE="https://github.com/pimutils/vdirsyncer;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+
+RDEPEND="dev-python/click[${PYTHON_USEDEP}]
+   >=dev-python/click-log-0.3.0[${PYTHON_USEDEP}]
+   =dev-python/click-threading-0.5[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/requests-toolbelt[${PYTHON_USEDEP}]
+   dev-python/atomicwrites[${PYTHON_USEDEP}]"
+BDEPEND="
+   dev-python/setuptools_scm[${PYTHON_USEDEP}]
+   test? (
+   dev-python/hypothesis[${PYTHON_USEDEP}]
+   dev-python/pytest-localserver[${PYTHON_USEDEP}]
+   dev-python/pytest-subtesthack[${PYTHON_USEDEP}]
+   )"
+
+PATCHES=(
+   "${FILESDIR}/${PN}-0.18.0-no-cov.patch"
+)
+
+DOCS=( AUTHORS.rst CHANGELOG.rst CONTRIBUTING.rst README.rst config.example )
+
+distutils_enable_tests pytest
+
+python_test() {
+   # skip tests needing servers running
+   local -x DAV_SERVER=skip
+   local -x REMOTESTORAGE_SERVER=skip
+   # pytest dies hard if the envvars do not have any value...
+   local -x CI=false
+   local -x DETERMINISTIC_TESTS=false
+
+   local deselect=(
+   # test CA is too weak for modern python
+   tests/system/utils/test_main.py::test_request_ssl
+   tests/system/utils/test_main.py::test_request_ssl_fingerprints
+   )
+
+   epytest ${deselect[@]/#/--deselect }
+}
+
+src_install() {
+   distutils-r1_src_install
+
+   systemd_dounit contrib/vdirsyncer.{service,timer}
+}



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

2021-07-10 Thread John Helmert III
commit: ee54b97fe665c397be7f3f52c43a68fdda555178
Author: John Helmert III  gentoo  org>
AuthorDate: Sat Jul 10 21:19:49 2021 +
Commit: John Helmert III  gentoo  org>
CommitDate: Sat Jul 10 21:30:33 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee54b97f

dev-python/vdirsyncer: mark ALLARCHES

Signed-off-by: John Helmert III  gentoo.org>

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

diff --git a/dev-python/vdirsyncer/metadata.xml 
b/dev-python/vdirsyncer/metadata.xml
index f42dda4bb8a..2cf2c252668 100644
--- a/dev-python/vdirsyncer/metadata.xml
+++ b/dev-python/vdirsyncer/metadata.xml
@@ -8,6 +8,7 @@
pyt...@gentoo.org
Python

+   

pimutils/vdirsyncer
vdirsyncer



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

2021-07-10 Thread John Helmert III
commit: 59a890daed39a20590a258367194c196e6cb
Author: John Helmert III  gentoo  org>
AuthorDate: Sat Jul 10 20:43:41 2021 +
Commit: John Helmert III  gentoo  org>
CommitDate: Sat Jul 10 21:30:31 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59a8

dev-python/pytest-subtesthack: drop 0.1.1

The tests pass locally with 0.1.2 with all implementations, so the test
failure bug seems no longer relevant.

Closes: https://bugs.gentoo.org/738262
Signed-off-by: John Helmert III  gentoo.org>

 dev-python/pytest-subtesthack/Manifest |  1 -
 .../pytest-subtesthack-0.1.1.ebuild| 32 --
 2 files changed, 33 deletions(-)

diff --git a/dev-python/pytest-subtesthack/Manifest 
b/dev-python/pytest-subtesthack/Manifest
index 831610c75eb..ec39bdad285 100644
--- a/dev-python/pytest-subtesthack/Manifest
+++ b/dev-python/pytest-subtesthack/Manifest
@@ -1,2 +1 @@
-DIST pytest-subtesthack-0.1.1.tar.gz 2410 BLAKE2B 
3d41950ad46bb07da145db7f88eba7eb34a2bbb99273f47d2443cae5ab0e11737f1c2fe81bf473180178b2ad9e55b252c7717846f1b010cc58fb1bf61380d003
 SHA512 
0bf6425b535e65dc7f06f74493d10fbb6451e78a817174638661d7525f39f092f67db8da010228cbd54b400485e71e443118f91ebef660b9c00d2b354062a55f
 DIST pytest-subtesthack-0.1.2.tar.gz 2669 BLAKE2B 
f1f5a052f9418732de4a97ff438d280d177860439e667e29ff0d0503740e009c88046b5ba859884e5fa9e958ea1be7388d7fc6838c19e44075ab0ef757ee41c7
 SHA512 
ddb7b0c27f912bec31e58ddc54930e229755df8980d146c861f7f1c766ae742b4f1552117d89638bdbd443f22890262320a56565954ebc6deeae6184f459a5a8

diff --git a/dev-python/pytest-subtesthack/pytest-subtesthack-0.1.1.ebuild 
b/dev-python/pytest-subtesthack/pytest-subtesthack-0.1.1.ebuild
deleted file mode 100644
index 1c2580a1e3e..000
--- a/dev-python/pytest-subtesthack/pytest-subtesthack-0.1.1.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7,8} )
-
-inherit distutils-r1
-
-DESCRIPTION="A hack for test fixtures, needed for hypothesis inside py.test"
-HOMEPAGE="https://github.com/untitaker/pytest-subtesthack/;
-# pypi tarball misses tests
-SRC_URI="https://github.com/untitaker/pytest-subtesthack/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
-
-LICENSE="public-domain"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="dev-python/pytest[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   test? (
-   dev-python/hypothesis[${PYTHON_USEDEP}]
-   dev-python/pytest[${PYTHON_USEDEP}]
-   )"
-
-python_test() {
-   distutils_install_for_testing
-   pytest -vv || die "Tests fail with ${EPYTHON}"
-}



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

2021-07-10 Thread John Helmert III
commit: 219086cb170df88a592359b93ca7e87cc8a26042
Author: John Helmert III  gentoo  org>
AuthorDate: Sat Jul 10 21:23:22 2021 +
Commit: John Helmert III  gentoo  org>
CommitDate: Sat Jul 10 21:30:32 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=219086cb

dev-python/pytest-subtesthack: update EAPI 7 -> 8

Signed-off-by: John Helmert III  gentoo.org>

 .../pytest-subtesthack-0.1.2-r1.ebuild | 25 ++
 1 file changed, 25 insertions(+)

diff --git a/dev-python/pytest-subtesthack/pytest-subtesthack-0.1.2-r1.ebuild 
b/dev-python/pytest-subtesthack/pytest-subtesthack-0.1.2-r1.ebuild
new file mode 100644
index 000..605571f3975
--- /dev/null
+++ b/dev-python/pytest-subtesthack/pytest-subtesthack-0.1.2-r1.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="A hack for test fixtures, needed for hypothesis inside py.test"
+HOMEPAGE="https://github.com/untitaker/pytest-subtesthack/;
+# pypi tarball misses tests
+SRC_URI="https://github.com/untitaker/pytest-subtesthack/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
+
+LICENSE="public-domain"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+
+RDEPEND="dev-python/pytest[${PYTHON_USEDEP}]"
+DEPEND="
+   test? (
+   dev-python/hypothesis[${PYTHON_USEDEP}]
+   )"
+
+distutils_enable_tests --install pytest



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

2021-07-10 Thread Conrad Kostecki
commit: b546d04e93d5e29fd085010beceb6be830cab428
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Sat Jun 19 18:51:58 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Sat Jul 10 21:13:07 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b546d04e

www-servers/puma: remove unused patch(es)

Closes: https://github.com/gentoo/gentoo/pull/21334
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Signed-off-by: Conrad Kostecki  gentoo.org>

 .../puma/files/puma-3.12.1-ruby26-waitpid.patch|  47 -
 .../puma/files/puma-3.12.5-cve-2020-11077.patch| 114 -
 2 files changed, 161 deletions(-)

diff --git a/www-servers/puma/files/puma-3.12.1-ruby26-waitpid.patch 
b/www-servers/puma/files/puma-3.12.1-ruby26-waitpid.patch
deleted file mode 100644
index b28c69fa4d4..000
--- a/www-servers/puma/files/puma-3.12.1-ruby26-waitpid.patch
+++ /dev/null
@@ -1,47 +0,0 @@
-From b94c3e34faff024a5b1930af36e4d64bd6dde57f Mon Sep 17 00:00:00 2001
-From: MSP-Greg 
-Date: Fri, 15 Mar 2019 17:26:20 -0500
-Subject: [PATCH] Puma::Cluster#stop_workers - use WNOHANG with nil return
- tests
-
-Ruby 2.6 introduced a bug that affects worker shutdown (waitpid).
-
-Added code using Process::WNOHANG along with needed logic. Adds worker status 
(via $?) and total shutdown time to log.
-
-Co-authored-by: MSP-Greg 
-Co-authored-by: guilleiguaran 

- lib/puma/cluster.rb | 20 +++-
- 1 file changed, 19 insertions(+), 1 deletion(-)
-
-diff --git a/lib/puma/cluster.rb b/lib/puma/cluster.rb
-index 93d65131..0879c96c 100644
 a/lib/puma/cluster.rb
-+++ b/lib/puma/cluster.rb
-@@ -37,7 +37,25 @@ def stop_workers
-   @workers.each { |x| x.term }
- 
-   begin
--@workers.each { |w| Process.waitpid(w.pid) }
-+if RUBY_VERSION < '2.6'
-+  @workers.each { |w| Process.waitpid(w.pid) }
-+else
-+  # below code is for a bug in Ruby 2.6+, above waitpid call hangs
-+  t_st = Process.clock_gettime(Process::CLOCK_MONOTONIC)
-+  pids = @workers.map(&:pid)
-+  loop do
-+pids.reject! do |w_pid|
-+  if Process.waitpid(w_pid, Process::WNOHANG)
-+log "worker status: #{$?}"
-+true
-+  end
-+end
-+break if pids.empty?
-+sleep 0.5
-+  end
-+  t_end = Process.clock_gettime(Process::CLOCK_MONOTONIC)
-+  log format("worker shutdown time: %6.2f", t_end - t_st)
-+end
-   rescue Interrupt
- log "! Cancelled waiting for workers"
-   end

diff --git a/www-servers/puma/files/puma-3.12.5-cve-2020-11077.patch 
b/www-servers/puma/files/puma-3.12.5-cve-2020-11077.patch
deleted file mode 100644
index 4d26da28eee..000
--- a/www-servers/puma/files/puma-3.12.5-cve-2020-11077.patch
+++ /dev/null
@@ -1,114 +0,0 @@
-From 089df0727ffab1b3b69f2e6da40597c52e346013 Mon Sep 17 00:00:00 2001
-From: Evan Phoenix 
-Date: Tue, 19 May 2020 15:20:10 -0700
-Subject: [PATCH] Reduce ambiguity of headers
-

- ext/puma_http11/http11_parser.c  |  4 +++-
- ext/puma_http11/http11_parser.rl |  4 +++-
- lib/puma/server.rb   | 31 +++
- 3 files changed, 37 insertions(+), 2 deletions(-)
-
-diff --git a/ext/puma_http11/http11_parser.c b/ext/puma_http11/http11_parser.c
-index 453f8cd40..e8844a37e 100644
 a/ext/puma_http11/http11_parser.c
-+++ b/ext/puma_http11/http11_parser.c
-@@ -14,12 +14,14 @@
- 
- /*
-  * capitalizes all lower-case ASCII characters,
-- * converts dashes to underscores.
-+ * converts dashes to underscores, and underscores to commas.
-  */
- static void snake_upcase_char(char *c)
- {
- if (*c >= 'a' && *c <= 'z')
-   *c &= ~0x20;
-+else if (*c == '_')
-+  *c = ',';
- else if (*c == '-')
-   *c = '_';
- }
-diff --git a/ext/puma_http11/http11_parser.rl 
b/ext/puma_http11/http11_parser.rl
-index 880c1d40b..62452ba7c 100644
 a/ext/puma_http11/http11_parser.rl
-+++ b/ext/puma_http11/http11_parser.rl
-@@ -12,12 +12,14 @@
- 
- /*
-  * capitalizes all lower-case ASCII characters,
-- * converts dashes to underscores.
-+ * converts dashes to underscores, and underscores to commas.
-  */
- static void snake_upcase_char(char *c)
- {
- if (*c >= 'a' && *c <= 'z')
-   *c &= ~0x20;
-+else if (*c == '_')
-+  *c = ',';
- else if (*c == '-')
-   *c = '_';
- }
-diff --git a/lib/puma/server.rb b/lib/puma/server.rb
-index d870b383f..5b2cd94df 100644
 a/lib/puma/server.rb
-+++ b/lib/puma/server.rb
-@@ -665,6 +665,37 @@ def handle_request(req, lines)
- }
-   end
- 
-+  # Fixup any headers with , in the name to have _ now. We emit
-+  # headers with , in them during the parse phase to avoid ambiguity
-+  # with the - to _ conversion for critical headers. But here for
-+  # compatibility, we'll 

[gentoo-commits] repo/gentoo:master commit in: dev-tex/latex2html/files/

2021-07-10 Thread Conrad Kostecki
commit: 0a6a4274636934b4ee25092ce42b46f02453574b
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Sun Jul  4 11:28:40 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Sat Jul 10 21:14:39 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a6a4274

dev-tex/latex2html: remove unused patches

Closes: https://github.com/gentoo/gentoo/pull/21521
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Signed-off-by: Conrad Kostecki  gentoo.org>

 .../files/latex2html-2017.2-brace-2.patch  | 12 
 .../latex2html/files/latex2html-2017.2-brace.patch | 36 --
 .../files/latex2html-2017.2-dotinc-2.patch | 12 
 .../files/latex2html-2017.2-dotinc.patch   | 33 
 .../files/latex2html-convert-length.patch  | 22 -
 .../files/latex2html-extract-major-version-2.patch | 12 
 .../latex2html/files/latex2html-perl_name.patch| 11 ---
 dev-tex/latex2html/files/latex2html-tests.patch| 26 
 8 files changed, 164 deletions(-)

diff --git a/dev-tex/latex2html/files/latex2html-2017.2-brace-2.patch 
b/dev-tex/latex2html/files/latex2html-2017.2-brace-2.patch
deleted file mode 100644
index 533cbc0c75c..000
--- a/dev-tex/latex2html/files/latex2html-2017.2-brace-2.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -ruN latex2html-2017.2.orig/styles/frames.perl 
latex2html-2017.2/styles/frames.perl
 latex2html-2017.2.orig/styles/frames.perl  2017-01-23 18:14:25.0 
+0100
-+++ latex2html-2017.2/styles/frames.perl   2017-09-23 15:49:27.184088195 
+0200
-@@ -706,7 +706,7 @@
- $_[0] =~ s/<(META NAME|LINK)[^>]*>\s*//g;
- $_[0] =~ s/$more_links_mark/$NO_ROBOTS\n$LATEX2HTML_META/g;
- local($savedRS)=$/; $/ = '';
--$_[0] =~ s/\n{2;}/\n/sg;
-+$_[0] =~ s/\n\{2;}/\n/sg;
- $_[0] =~ s/\s$//s;
- $_[0] =~ s!\s*(\n\n)\s*!$1!s;
- $/ = $savedRS;

diff --git a/dev-tex/latex2html/files/latex2html-2017.2-brace.patch 
b/dev-tex/latex2html/files/latex2html-2017.2-brace.patch
deleted file mode 100644
index 4782fb313e7..000
--- a/dev-tex/latex2html/files/latex2html-2017.2-brace.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-diff -ruN latex2html-2017.2.orig/versions/html3_2.pl 
latex2html-2017.2/versions/html3_2.pl
 latex2html-2017.2.orig/versions/html3_2.pl 2017-01-23 17:14:25.0 
-
-+++ latex2html-2017.2/versions/html3_2.pl  2017-08-04 09:38:17.219909442 
-
-@@ -607,7 +607,7 @@
- 
- if ($color_env) {
-   local($color_test) = join(',',@$open_tags_R);
--  if ($color_test =~ /(color{[^}]*})/g ) {
-+  if ($color_test =~ /(color\{[^}]*})/g ) {
-   $color_env = $1;
-   }
- }
-diff -ruN latex2html-2017.2.orig/versions/html4_01.pl 
latex2html-2017.2/versions/html4_01.pl
 latex2html-2017.2.orig/versions/html4_01.pl2017-01-23 
17:14:25.0 -
-+++ latex2html-2017.2/versions/html4_01.pl 2017-08-04 09:39:32.529023088 
-
-@@ -976,7 +976,7 @@
- 
- if ($color_env) {
-   local($color_test) = join(',',@$open_tags_R);
--  if ($color_test =~ /(color{[^}]*})/g ) {
-+  if ($color_test =~ /(color\{[^}]*})/g ) {
-   $color_env = $1;
-   }
- }
-diff -ruN latex2html-2017.2.orig/versions/html4_1.pl 
latex2html-2017.2/versions/html4_1.pl
 latex2html-2017.2.orig/versions/html4_1.pl 2017-01-23 17:14:25.0 
-
-+++ latex2html-2017.2/versions/html4_1.pl  2017-08-04 09:37:48.507866114 
-
-@@ -976,7 +976,7 @@
- 
- if ($color_env) {
-   local($color_test) = join(',',@$open_tags_R);
--  if ($color_test =~ /(color{[^}]*})/g ) {
-+  if ($color_test =~ /(color\{[^}]*})/g ) {
-   $color_env = $1;
-   }
- }

diff --git a/dev-tex/latex2html/files/latex2html-2017.2-dotinc-2.patch 
b/dev-tex/latex2html/files/latex2html-2017.2-dotinc-2.patch
deleted file mode 100644
index 2e58c0070d7..000
--- a/dev-tex/latex2html/files/latex2html-2017.2-dotinc-2.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -ruN latex2html-2017.2.orig/configure latex2html-2017.2/configure
 latex2html-2017.2.orig/configure   2017-01-23 17:14:25.0 -
-+++ latex2html-2017.2/configure2017-08-04 09:21:02.929355288 -
-@@ -1225,7 +1225,7 @@
- fi
- 
- # this is used to get the values from the config file
--eval `perl -w -e 'use cfgcache; foreach(keys %cfg) { print 
qq($_='"'"'$cfg{$_}'"'"'\n);}'`
-+eval `perl -w -e 'use lib q[.]; use cfgcache; foreach(keys %cfg) { print 
qq($_='"'"'$cfg{$_}'"'"'\n);}'`
- 
- 
- 

diff --git a/dev-tex/latex2html/files/latex2html-2017.2-dotinc.patch 
b/dev-tex/latex2html/files/latex2html-2017.2-dotinc.patch
deleted file mode 100644
index e7f29ad5779..000
--- a/dev-tex/latex2html/files/latex2html-2017.2-dotinc.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-diff -ruN latex2html-2017.2.orig/config/build.pl 
latex2html-2017.2/config/build.pl
 

[gentoo-commits] repo/gentoo:master commit in: app-emulation/cloud-init/files/

2021-07-10 Thread Conrad Kostecki
commit: c0ab018ccd813e45dcf4637182869622888587ca
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Wed Jun 16 18:11:41 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Sat Jul 10 21:12:12 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0ab018c

app-emulation/cloud-init: remove unused patch

Closes: https://github.com/gentoo/gentoo/pull/21270
Package-Manager: Portage-3.0.19, Repoman-3.0.3
Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Signed-off-by: Conrad Kostecki  gentoo.org>

 ...it-20.1-gentoo-support-upstream-templates.patch | 93 --
 1 file changed, 93 deletions(-)

diff --git 
a/app-emulation/cloud-init/files/cloud-init-20.1-gentoo-support-upstream-templates.patch
 
b/app-emulation/cloud-init/files/cloud-init-20.1-gentoo-support-upstream-templates.patch
deleted file mode 100644
index c840f4fde3e..000
--- 
a/app-emulation/cloud-init/files/cloud-init-20.1-gentoo-support-upstream-templates.patch
+++ /dev/null
@@ -1,93 +0,0 @@
-From 823454f1ea140ec47f5f9c5c3c5ad62eb458eb8a Mon Sep 17 00:00:00 2001
-From: Gilles Dartiguelongue 
-Date: Wed, 24 Oct 2018 10:52:46 +0200
-Subject: [PATCH 2/5] Add support for gentoo in cloud.cfg and templates
-

- config/cloud.cfg.tmpl   |  8 ++--
- templates/hosts.gentoo.tmpl | 24 
- tools/render-cloudcfg   |  2 +-
- 3 files changed, 31 insertions(+), 3 deletions(-)
- create mode 100644 templates/hosts.gentoo.tmpl
-
-diff --git a/config/cloud.cfg.tmpl b/config/cloud.cfg.tmpl
-index 1fef133a..3f5a41a2 100644
 a/config/cloud.cfg.tmpl
-+++ b/config/cloud.cfg.tmpl
-@@ -134,7 +134,7 @@ cloud_final_modules:
- # (not accessible to handlers/transforms)
- system_info:
-# This will affect which distro class gets used
--{% if variant in ["amazon", "arch", "centos", "debian", "fedora", "freebsd", 
"rhel", "suse", "ubuntu"] %}
-+{% if variant in ["amazon", "arch", "centos", "debian", "fedora", "freebsd", 
"gentoo", "rhel", "suse", "ubuntu"] %}
-distro: {{ variant }}
- {% else %}
-# Unknown/fallback distro.
-@@ -172,7 +172,7 @@ system_info:
-  primary: http://ports.ubuntu.com/ubuntu-ports
-  security: http://ports.ubuntu.com/ubuntu-ports
-ssh_svcname: ssh
--{% elif variant in ["amazon", "arch", "centos", "fedora", "rhel", "suse"] %}
-+{% elif variant in ["amazon", "arch", "centos", "fedora", "gentoo", "rhel", 
"suse"] %}
-# Default user name + that default users groups (if added/used)
-default_user:
-  name: {{ variant }}
-@@ -180,6 +180,10 @@ system_info:
- {% endif %}
- {% if variant == "suse" %}
-  groups: [cdrom, users]
-+{% elif variant == "gentoo" %}
-+ groups: [users, wheel]
-+ primary_group: users
-+ no_user_group: true
- {% elif variant == "arch" %}
-  groups: [wheel, users]
- {% else %}
-diff --git a/templates/hosts.gentoo.tmpl b/templates/hosts.gentoo.tmpl
-new file mode 100644
-index ..cd045fa6
 /dev/null
-+++ b/templates/hosts.gentoo.tmpl
-@@ -0,0 +1,24 @@
-+## template:jinja
-+{#
-+This file /etc/cloud/templates/hosts.gentoo.tmpl is only utilized
-+if enabled in cloud-config.  Specifically, in order to enable it
-+you need to add the following to config:
-+  manage_etc_hosts: True
-+-#}
-+# Your system has configured 'manage_etc_hosts' as True.
-+# As a result, if you wish for changes to this file to persist
-+# then you will need to either
-+# a.) make changes to the master file in 
/etc/cloud/templates/hosts.gentoo.tmpl
-+# b.) change or remove the value of 'manage_etc_hosts' in
-+# /etc/cloud/cloud.cfg or cloud-config from user-data
-+# 
-+# The following lines are desirable for IPv4 capable hosts
-+127.0.0.1 {{fqdn}} {{hostname}}
-+127.0.0.1 localhost.localdomain localhost
-+127.0.0.1 localhost4.localdomain4 localhost4
-+
-+# The following lines are desirable for IPv6 capable hosts
-+::1 {{fqdn}} {{hostname}}
-+::1 localhost.localdomain localhost
-+::1 localhost6.localdomain6 localhost6
-+
-diff --git a/tools/render-cloudcfg b/tools/render-cloudcfg
-index 8b7cb875..d109044e 100755
 a/tools/render-cloudcfg
-+++ b/tools/render-cloudcfg
-@@ -4,7 +4,7 @@ import argparse
- import os
- import sys
- 
--VARIANTS = ["amazon", "arch", "centos", "debian", "fedora", "freebsd", "rhel",
--"suse", "ubuntu", "unknown"]
-+VARIANTS = ["amazon", "arch", "centos", "debian", "fedora", "freebsd",
-+"gentoo", "rhel", "suse", "ubuntu", "unknown"]
- 
- if "avoid-pep8-E402-import-not-top-of-file":
- _tdir = os.path.abspath(os.path.join(os.path.dirname(__file__), ".."))
--- 
-2.19.1
-



[gentoo-commits] repo/gentoo:master commit in: dev-texlive/texlive-latexextra/files/

2021-07-10 Thread Conrad Kostecki
commit: dbc20e5f0a861149f100d741ec26b02bbb21f635
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Sun Jul  4 11:29:58 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Sat Jul 10 21:15:03 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dbc20e5f

dev-texlive/texlive-latexextra: remove unused patch(es)

Closes: https://github.com/gentoo/gentoo/pull/21522
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Signed-off-by: Conrad Kostecki  gentoo.org>

 .../texlive-latexextra/files/lstlinebgrd-syntax.patch| 16 
 1 file changed, 16 deletions(-)

diff --git a/dev-texlive/texlive-latexextra/files/lstlinebgrd-syntax.patch 
b/dev-texlive/texlive-latexextra/files/lstlinebgrd-syntax.patch
deleted file mode 100644
index 16f9da12d05..000
--- a/dev-texlive/texlive-latexextra/files/lstlinebgrd-syntax.patch
+++ /dev/null
@@ -1,16 +0,0 @@
 a/texmf-dist/tex/latex/lstaddons/lstlinebgrd.sty   2019-06-21 
16:32:09.158990775 +0200
-+++ b/texmf-dist/tex/latex/lstaddons/lstlinebgrd.sty   2019-06-21 
16:31:45.408991817 +0200
-@@ -27,10 +27,10 @@
- \lst@Key{numbers}{none}{%
- \def\lst@PlaceNumber{\lst@linebgrd}%
- \lstKV@SwitchCases{#1}%
--{none&\\%
-- left&\def\lst@PlaceNumber{\llap{\normalfont
-+{none:\\%
-+ left:\def\lst@PlaceNumber{\llap{\normalfont
- 
\lst@numberstyle{\thelstnumber}\kern\lst@numbersep}\lst@linebgrd}\\%
-- right&\def\lst@PlaceNumber{\rlap{\normalfont
-+ right:\def\lst@PlaceNumber{\rlap{\normalfont
- \kern\linewidth \kern\lst@numbersep
- \lst@numberstyle{\thelstnumber}}\lst@linebgrd}%
- }{\PackageError{Listings}{Numbers #1 unknown}\@ehc}}



[gentoo-commits] repo/gentoo:master commit in: app-admin/puppet/files/

2021-07-10 Thread Conrad Kostecki
commit: 7e21c9dc7f325d95c0615d2a13f2a01e18400f5d
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Sun Jul  4 11:22:48 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Sat Jul 10 21:14:08 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e21c9dc

app-admin/puppet: remove unused patch

Closes: https://github.com/gentoo/gentoo/pull/21520
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Signed-off-by: Conrad Kostecki  gentoo.org>

 app-admin/puppet/files/puppet-fix-tests-6.10.1.patch | 19 ---
 1 file changed, 19 deletions(-)

diff --git a/app-admin/puppet/files/puppet-fix-tests-6.10.1.patch 
b/app-admin/puppet/files/puppet-fix-tests-6.10.1.patch
deleted file mode 100644
index daa065dabb5..000
--- a/app-admin/puppet/files/puppet-fix-tests-6.10.1.patch
+++ /dev/null
@@ -1,19 +0,0 @@
 spec/unit/network/http/api/indirected_routes_spec.rb   2018-09-17 
19:36:56.0 -0500
-+++ spec/unit/network/http/api/indirected_routes_spec.rb   2018-09-19 
10:52:35.841614932 -0500
-@@ -158,16 +158,6 @@
-   handler.uri2indirection("GET", uri_escaped, params)
- end
- 
--it "when the environment is unknown should remove :environment from 
params passed to check_authorization and therefore fail" do
--  expect(handler).to receive(:check_authorization).with(anything,
--anything,
--
excluding(:environment))
--  expect { handler.uri2indirection("GET",
--   "#{master_url_prefix}/node/bar",
--   {:environment => 'bogus'})
--  }.to raise_error(not_found_error)
--end
--
- it "should not URI unescape the indirection key as passed through to a 
call to check_authorization" do
-   expect(handler).to receive(:check_authorization).with(anything, 
anything, hash_including(environment: 
be_a(Puppet::Node::Environment).and(have_attributes(name: :env
- 



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

2021-07-10 Thread Conrad Kostecki
commit: ff00e97fbea18229318a88a135b6b00114630322
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Sun Jul  4 11:24:20 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Sat Jul 10 21:13:39 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff00e97f

dev-libs/libmateweather: remove unused patch(es)

Closes: https://github.com/gentoo/gentoo/pull/21519
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Signed-off-by: Conrad Kostecki  gentoo.org>

 .../libmateweather-1.24.0-fix-tzdata-hints.patch   | 31 --
 1 file changed, 31 deletions(-)

diff --git 
a/dev-libs/libmateweather/files/libmateweather-1.24.0-fix-tzdata-hints.patch 
b/dev-libs/libmateweather/files/libmateweather-1.24.0-fix-tzdata-hints.patch
deleted file mode 100644
index d1c3cab1165..000
--- a/dev-libs/libmateweather/files/libmateweather-1.24.0-fix-tzdata-hints.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-From 354086a51ea676b6575dbb3ec62d749ec0a7c607 Mon Sep 17 00:00:00 2001
-From: rbuj 
-Date: Fri, 22 May 2020 20:19:57 +0200
-Subject: [PATCH] Locations: America/Godthab was renamed to America/Nuuk
-

- data/Locations.xml.in | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/data/Locations.xml.in b/data/Locations.xml.in
-index 5488867..62529b9 100644
 a/data/Locations.xml.in
-+++ b/data/Locations.xml.in
-@@ -6482,7 +6482,7 @@
- -->
-   Danmarkshavn
- 
--
-+
-   

[gentoo-commits] repo/gentoo:master commit in: kde-plasma/discover/files/

2021-07-10 Thread Conrad Kostecki
commit: d8706a434f3b6632496c94b10b8b0742f245d38b
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Tue Jun 15 19:35:18 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Sat Jul 10 21:08:31 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8706a43

kde-plasma/discover: remove unused patch

Closes: https://github.com/gentoo/gentoo/pull/21256
Package-Manager: Portage-3.0.19, Repoman-3.0.3
Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Signed-off-by: Conrad Kostecki  gentoo.org>

 .../files/discover-5.21.4-missing-link.patch   | 49 --
 1 file changed, 49 deletions(-)

diff --git a/kde-plasma/discover/files/discover-5.21.4-missing-link.patch 
b/kde-plasma/discover/files/discover-5.21.4-missing-link.patch
deleted file mode 100644
index c8c8b152ea7..000
--- a/kde-plasma/discover/files/discover-5.21.4-missing-link.patch
+++ /dev/null
@@ -1,49 +0,0 @@
-From 3c578beeb5d3748d9fdacae4ace42fe6098d9184 Mon Sep 17 00:00:00 2001
-From: Andreas Sturmlechner 
-Date: Sun, 25 Apr 2021 00:26:12 +0200
-Subject: [PATCH] Add missing Qt5Concurrent to target_link_libraries
-
-This was working as long as it was implicitly provided by KIO.
-Other backends are fine.
-
-Fixes:
-- DiscoverCommon w/ AppStreamQt
-- packagekit-backend
-
-See also: https://invent.kde.org/frameworks/kio/-/merge_requests/426
-
-Signed-off-by: Andreas Sturmlechner 

- libdiscover/CMakeLists.txt| 2 +-
- libdiscover/backends/PackageKitBackend/CMakeLists.txt | 2 +-
- 2 files changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/libdiscover/CMakeLists.txt b/libdiscover/CMakeLists.txt
-index 1097ea84..3e2a6c9c 100644
 a/libdiscover/CMakeLists.txt
-+++ b/libdiscover/CMakeLists.txt
-@@ -48,7 +48,7 @@ if(TARGET AppStreamQt)
- appstream/AppStreamIntegration.cpp
- appstream/AppStreamUtils.cpp
- )
--target_link_libraries(DiscoverCommon PRIVATE AppStreamQt)
-+target_link_libraries(DiscoverCommon PRIVATE Qt5::Concurrent AppStreamQt)
- 
- if(AppStreamQt_VERSION VERSION_GREATER 0.12.4)
- target_compile_definitions(DiscoverCommon PRIVATE 
-DAPPSTREAM_HAS_SPDX=1)
-diff --git a/libdiscover/backends/PackageKitBackend/CMakeLists.txt 
b/libdiscover/backends/PackageKitBackend/CMakeLists.txt
-index cfeb38f1..466dbc49 100644
 a/libdiscover/backends/PackageKitBackend/CMakeLists.txt
-+++ b/libdiscover/backends/PackageKitBackend/CMakeLists.txt
-@@ -19,7 +19,7 @@ ecm_qt_declare_logging_category(packagekit-backend_SRCS 
HEADER libdiscover_backe
- 
- add_library(packagekit-backend MODULE ${packagekit-backend_SRCS})
- 
--target_link_libraries(packagekit-backend PRIVATE Discover::Common Qt5::Core 
PK::packagekitqt5 KF5::ConfigGui KF5::KIOCore KF5::Archive AppStreamQt)
-+target_link_libraries(packagekit-backend PRIVATE Discover::Common Qt5::Core 
Qt5::Concurrent PK::packagekitqt5 KF5::ConfigGui KF5::KIOCore KF5::Archive 
AppStreamQt)
- install(TARGETS packagekit-backend DESTINATION ${PLUGIN_INSTALL_DIR}/discover)
- 
- if(TARGET PkgConfig::Markdown)
--- 
-2.31.1
-



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

2021-07-10 Thread Conrad Kostecki
commit: fd4f9013e00b36a9bd167c5b55ccd50fe0b2556a
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Sun May 23 14:51:36 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Sat Jul 10 21:06:50 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd4f9013

dev-perl/GD: remove unused patch(es)

Closes: https://github.com/gentoo/gentoo/pull/20951
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Signed-off-by: Conrad Kostecki  gentoo.org>

 dev-perl/GD/files/GD-2.560.0-rt106594.patch | 40 -
 1 file changed, 40 deletions(-)

diff --git a/dev-perl/GD/files/GD-2.560.0-rt106594.patch 
b/dev-perl/GD/files/GD-2.560.0-rt106594.patch
deleted file mode 100644
index dc8007d5d49..000
--- a/dev-perl/GD/files/GD-2.560.0-rt106594.patch
+++ /dev/null
@@ -1,40 +0,0 @@
-diff -Naur GD-2.56/t/GD.t GD-2.56b/t/GD.t
 GD-2.56/t/GD.t 2014-10-28 01:34:54.0 +
-+++ GD-2.56b/t/GD.t2016-05-10 10:05:05.838356122 +
-@@ -7,8 +7,8 @@
- use FindBin qw($Bin);
- use lib "$Bin/../blib/lib","$Bin/../blib/arch","$Bin/../lib";
- use constant FONT=>"$Bin/test_data/Generic.ttf";
--use constant IMAGE_TESTS => 7;
--use Test::More tests => 11;
-+use constant IMAGE_TESTS => 6;
-+use Test::More tests => 10;
- use IO::Dir;
- 
- use_ok('GD',':DEFAULT',':cmp');
-@@ -219,25 +219,6 @@
- return $im;
- }
- 
--sub test7 {
--  my $im = GD::Image->new(400,250);
--  if (!$im) { printf("Test7: no image");};
--  my($white,$black,$red,$blue,$yellow) = 
--(
-- $im->colorAllocate(255, 255, 255),
-- $im->colorAllocate(0, 0, 0),
-- $im->colorAllocate(255, 0, 0),
-- $im->colorAllocate(0,0,255),
-- $im->colorAllocate(255,250,205)
--);
--
--  # Some TTFs
--  $im->stringFT($black,FONT,12.0,0.0,20,20,"Hello world!") || warn $@;
--  $im->stringFT($red,FONT,14.0,0.0,20,80,"Hello world!") || warn $@;
--  $im->stringFT($blue,FONT,30.0,-0.5,60,100,"Goodbye cruel world!") || warn 
$@;
--  return $im;
--}
--
- sub run_image_regression_tests {
- my $suffix = $ENV{GDIMAGETYPE} || 'gd2';
- print STDERR "# Testing using $suffix support.\n";



[gentoo-commits] repo/gentoo:master commit in: kde-plasma/libkworkspace/files/

2021-07-10 Thread Conrad Kostecki
commit: e0e26df5b85d4c163b456d897a83c1fd8c897de8
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Tue Jun 15 19:35:49 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Sat Jul 10 21:08:54 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0e26df5

kde-plasma/libkworkspace: remove unused patch

Closes: https://github.com/gentoo/gentoo/pull/21256
Package-Manager: Portage-3.0.19, Repoman-3.0.3
Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Signed-off-by: Conrad Kostecki  gentoo.org>

 .../files/libkworkspace-5.19.80-standalone.patch   | 108 -
 1 file changed, 108 deletions(-)

diff --git 
a/kde-plasma/libkworkspace/files/libkworkspace-5.19.80-standalone.patch 
b/kde-plasma/libkworkspace/files/libkworkspace-5.19.80-standalone.patch
deleted file mode 100644
index 8c8213d002d..000
--- a/kde-plasma/libkworkspace/files/libkworkspace-5.19.80-standalone.patch
+++ /dev/null
@@ -1,108 +0,0 @@
-From 30d75ef4b3e75155e78924aa82aa9f368bb86f4f Mon Sep 17 00:00:00 2001
-From: Andreas Sturmlechner 
-Date: Sun, 2 Feb 2020 18:29:57 +0100
-Subject: [PATCH] libkworkspace: Allow standalone build
-

- libkworkspace/CMakeLists.txt | 67 +++-
- 1 file changed, 66 insertions(+), 1 deletion(-)
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index 7ba097a6e..66f70c0b6 100644
 a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -1,3 +1,56 @@
-+project(libkworkspace)
-+
-+if(${CMAKE_SOURCE_DIR} STREQUAL ${libkworkspace_SOURCE_DIR})
-+set(PROJECT_VERSION "GENTOO_PV")
-+set(PROJECT_VERSION_MAJOR 5)
-+
-+cmake_minimum_required(VERSION 3.0)
-+
-+set(QT_MIN_VERSION "5.14.0")
-+set(KF5_MIN_VERSION "5.71.0")
-+find_package(Qt5 ${QT_MIN_VERSION} CONFIG REQUIRED COMPONENTS Core DBus)
-+find_package(ECM ${KF5_MIN_VERSION} REQUIRED NO_MODULE)
-+set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
-+
-+include(KDEInstallDirs)
-+include(KDECMakeSettings)
-+include(KDECompilerSettings NO_POLICY_SCOPE)
-+include(ECMMarkNonGuiExecutable)
-+include(CMakePackageConfigHelpers)
-+include(WriteBasicConfigVersionFile)
-+include(CheckIncludeFiles)
-+include(FeatureSummary)
-+include(ECMQtDeclareLoggingCategory)
-+include(KDEPackageAppTemplates)
-+include(ECMMarkAsTest)
-+include(GenerateExportHeader)
-+
-+find_package(KF5 ${KF5_MIN_VERSION} REQUIRED COMPONENTS CoreAddons I18n 
Init Plasma WindowSystem)
-+
-+find_package(KWinDBusInterface CONFIG REQUIRED)
-+find_package(KScreenLocker 5.13.80 REQUIRED)
-+find_package(ScreenSaverDBusInterface CONFIG REQUIRED)
-+
-+find_package(X11)
-+set_package_properties(X11 PROPERTIES DESCRIPTION "X11 libraries"
-+URL "http://www.x.org;
-+TYPE OPTIONAL
-+PURPOSE "Required for X11 support")
-+
-+if(X11_FOUND)
-+find_package(Qt5X11Extras ${QT_MIN_VERSION} CONFIG REQUIRED)
-+set(HAVE_X11 1)
-+endif()
-+
-+if(BUILD_TESTING)
-+find_package(Qt5Test ${QT_MIN_VERSION} CONFIG REQUIRED)
-+endif()
-+
-+check_include_files(unistd.h HAVE_UNISTD_H)
-+
-+configure_file(../config-workspace.h.cmake 
${CMAKE_CURRENT_BINARY_DIR}/config-workspace.h)
-+configure_file(../config-X11.h.cmake 
${CMAKE_CURRENT_BINARY_DIR}/config-X11.h)
-+endif()
- 
- set(kworkspace_LIB_SRCS kdisplaymanager.cpp
- kworkspace.cpp
-@@ -16,9 +69,17 @@ include_directories(${CMAKE_CURRENT_BINARY_DIR})
- qt5_add_dbus_interface(kworkspace_LIB_SRCS 
${KINIT_DBUS_INTERFACES_DIR}/kf5_org.kde.KLauncher.xml klauncher_interface)
- qt5_add_dbus_interface(kworkspace_LIB_SRCS 
${KSCREENLOCKER_DBUS_INTERFACES_DIR}/kf5_org.freedesktop.ScreenSaver.xml 
screenlocker_interface )
- qt5_add_dbus_interface(kworkspace_LIB_SRCS 
${KSCREENLOCKER_DBUS_INTERFACES_DIR}/org.kde.screensaver.xml 
kscreenlocker_interface )
-+if(${CMAKE_SOURCE_DIR} STREQUAL ${libkworkspace_SOURCE_DIR})
-+qt5_add_dbus_interface(kworkspace_LIB_SRCS 
../ksmserver/org.kde.LogoutPrompt.xml logoutprompt_interface)
-+qt5_add_dbus_interface(kworkspace_LIB_SRCS 
../startkde/plasma-session/org.kde.Startup.xml startup_interface)
-+qt5_add_dbus_interface(kworkspace_LIB_SRCS 
../startkde/plasma-shutdown/org.kde.Shutdown.xml shutdown_interface)
-+set(ksmserver_xml ../ksmserver/org.kde.KSMServerInterface.xml)
-+else()
- qt5_add_dbus_interface(kworkspace_LIB_SRCS 
${plasma-workspace_SOURCE_DIR}/ksmserver/org.kde.LogoutPrompt.xml 
logoutprompt_interface)
- qt5_add_dbus_interface(kworkspace_LIB_SRCS 
${plasma-workspace_SOURCE_DIR}/startkde/plasma-session/org.kde.Startup.xml 
startup_interface)
- qt5_add_dbus_interface(kworkspace_LIB_SRCS 
${plasma-workspace_SOURCE_DIR}/startkde/plasma-shutdown/org.kde.Shutdown.xml 
shutdown_interface)
-+set(ksmserver_xml 
${plasma-workspace_SOURCE_DIR}/ksmserver/org.kde.KSMServerInterface.xml)
-+endif()
- 
- 

[gentoo-commits] repo/gentoo:master commit in: dev-ml/camlp4/files/

2021-07-10 Thread Conrad Kostecki
commit: b669fd529dd6495dff674d55e4db35d4da62bc6c
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Thu Jun 17 18:23:52 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Sat Jul 10 21:12:40 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b669fd52

dev-ml/camlp4: remove unused patch

Closes: https://github.com/gentoo/gentoo/pull/21286
Package-Manager: Portage-3.0.19, Repoman-3.0.3
Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Signed-off-by: Conrad Kostecki  gentoo.org>

 dev-ml/camlp4/files/oc409.patch | 13 -
 1 file changed, 13 deletions(-)

diff --git a/dev-ml/camlp4/files/oc409.patch b/dev-ml/camlp4/files/oc409.patch
deleted file mode 100644
index 727762a64a2..000
--- a/dev-ml/camlp4/files/oc409.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-Index: camlp4-4.08-1/configure
-===
 camlp4-4.08-1.orig/configure
-+++ camlp4-4.08-1/configure
-@@ -39,7 +39,7 @@ if [ $major -lt 4 -o \( $major -eq 4 -a
- echo "The standalone Camlp4 requires OCaml >= 4.02."
- echo "For previous versions of OCaml use the Camlp4 distributed with 
OCaml."
- exit 2
--elif [ $major -ne 4 -o $minor -ne 8 ]; then
-+elif [ $major -lt 4 -o $minor -lt 8 ]; then
- echo "This version of Camlp4 is for OCaml 4.07 but you are using OCaml 
$ocaml_version."
- if [ -d .git ] ; then
-   if [ $PINNED -eq 1 ] ; then



[gentoo-commits] repo/gentoo:master commit in: kde-plasma/plasma-workspace/files/

2021-07-10 Thread Conrad Kostecki
commit: 02c527fe45bfb42d79061e0ba2ff9b8125b250a7
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Tue Jun 15 19:37:34 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Sat Jul 10 21:10:13 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02c527fe

kde-plasma/plasma-workspace: remove unused patch

Closes: https://github.com/gentoo/gentoo/pull/21256
Package-Manager: Portage-3.0.19, Repoman-3.0.3
Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Signed-off-by: Conrad Kostecki  gentoo.org>

 ...asma-workspace-5.14.2-split-libkworkspace.patch | 35 --
 1 file changed, 35 deletions(-)

diff --git 
a/kde-plasma/plasma-workspace/files/plasma-workspace-5.14.2-split-libkworkspace.patch
 
b/kde-plasma/plasma-workspace/files/plasma-workspace-5.14.2-split-libkworkspace.patch
deleted file mode 100644
index f12d9f4daf5..000
--- 
a/kde-plasma/plasma-workspace/files/plasma-workspace-5.14.2-split-libkworkspace.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-From 4717089b68c386446be240f463f2f13e7024468b Mon Sep 17 00:00:00 2001
-From: Andreas Sturmlechner 
-Date: Mon, 22 Oct 2018 10:35:10 +0200
-Subject: [PATCH] libkworkspace: Allow standalone build
-

- CMakeLists.txt   |  6 +++-
- 1 file changed, 5 insertions(+), 1 deletions(-)
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index e587a386..d1a63527 100644
 a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -46,6 +46,7 @@ set_package_properties(KF5Baloo PROPERTIES DESCRIPTION "File 
Searching"
- 
- find_package(KF5TextEditor)
- find_package(KWinDBusInterface CONFIG REQUIRED)
-+find_package(LibKWorkspace 5.14.1)
- 
- find_package(KScreenLocker 5.13.80 REQUIRED)
- find_package(ScreenSaverDBusInterface CONFIG REQUIRED)
-@@ -135,7 +136,10 @@ endif()
- add_definitions(-DQT_NO_URL_CAST_FROM_STRING)
- 
- add_subdirectory(doc)
--add_subdirectory(libkworkspace)
-+if(NOT LibKWorkspace_FOUND)
-+message(STATUS "System LibKWorkspace not found, using bundled.")
-+add_subdirectory(libkworkspace)
-+endif()
- add_subdirectory(libdbusmenuqt)
- add_subdirectory(appmenu)
- 
--- 
-2.19.1



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

2021-07-10 Thread Conrad Kostecki
commit: 284745a9005787c4743499753727b65be4f2c8a8
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Thu Jun  3 16:49:56 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Sat Jul 10 21:07:11 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=284745a9

sys-devel/automake: remove unused patch

Closes: https://github.com/gentoo/gentoo/pull/21106
Package-Manager: Portage-3.0.19, Repoman-3.0.3
Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Signed-off-by: Conrad Kostecki  gentoo.org>

 ...1.16.2-skip-tags-lisp-space-without-etags.patch | 23 --
 1 file changed, 23 deletions(-)

diff --git 
a/sys-devel/automake/files/automake-1.16.2-skip-tags-lisp-space-without-etags.patch
 
b/sys-devel/automake/files/automake-1.16.2-skip-tags-lisp-space-without-etags.patch
deleted file mode 100644
index 70ca8f783c3..000
--- 
a/sys-devel/automake/files/automake-1.16.2-skip-tags-lisp-space-without-etags.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-From 77d39959511295f5a30332d5d03f0a6956bd9460 Mon Sep 17 00:00:00 2001
-From: Karl Berry 
-Date: Tue, 24 Mar 2020 18:30:18 -0700
-Subject: [PATCH] tests: require etags for tags-lisp-space test.
-
-* t/tags-lisp-space.sh (required): set to etags.

- t/tags-lisp-space.sh | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/t/tags-lisp-space.sh b/t/tags-lisp-space.sh
-index d0a940ba3..44312b0b7 100755
 a/t/tags-lisp-space.sh
-+++ b/t/tags-lisp-space.sh
-@@ -18,7 +18,7 @@
- # if there are CONFIG_HEADERS.
- # See automake bug#38139.
- 
--required=''
-+required=etags
- . test-init.sh
- 
- # some AC_CONFIG_FILES header is needed to trigger the bug.



[gentoo-commits] repo/gentoo:master commit in: dev-perl/PDL-Graphics-Gnuplot/files/

2021-07-10 Thread Conrad Kostecki
commit: 3b6dd702c014fbe0841a92bfd7d6a7e0ab27a745
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Sat May 15 15:41:01 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Sat Jul 10 21:05:50 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b6dd702

dev-perl/PDL-Graphics-Gnuplot: remove unused patch

Closes: https://github.com/gentoo/gentoo/pull/20820
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Signed-off-by: Conrad Kostecki  gentoo.org>

 .../PDL-Graphics-Gnuplot-2.11.0-outputfile.patch   | 23 --
 1 file changed, 23 deletions(-)

diff --git 
a/dev-perl/PDL-Graphics-Gnuplot/files/PDL-Graphics-Gnuplot-2.11.0-outputfile.patch
 
b/dev-perl/PDL-Graphics-Gnuplot/files/PDL-Graphics-Gnuplot-2.11.0-outputfile.patch
deleted file mode 100644
index 7d33370584a..000
--- 
a/dev-perl/PDL-Graphics-Gnuplot/files/PDL-Graphics-Gnuplot-2.11.0-outputfile.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-From b12c3f5de6340b997e5a2992710828f3e89308a0 Mon Sep 17 00:00:00 2001
-From: Simon Reinhardt 
-Date: Mon, 26 Jun 2017 14:57:32 +0200
-Subject: [PATCH] Fix #65: No quoting for output filenames.
-
-Insert missing call to quote_escape (escape backslashes and such for gnuplot
-double-quote strings).

- lib/PDL/Graphics/Gnuplot.pm | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/lib/PDL/Graphics/Gnuplot.pm b/lib/PDL/Graphics/Gnuplot.pm
-index 0edf7ef..ff96cc9 100644
 a/lib/PDL/Graphics/Gnuplot.pm
-+++ b/lib/PDL/Graphics/Gnuplot.pm
-@@ -5188,6 +5188,7 @@ our $pOptionsTable =
- if($vv ne $v) {
- carp "INFO: Plotting to '$vv'\n";
- }
-+$vv = quote_escape($vv);
- return "set $k \"$vv\"\n";
-   },
-   undef,3,



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

2021-07-10 Thread Conrad Kostecki
commit: b162f9817c0aef8c34b133d8d21d037aabc03448
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Wed Jun 16 18:16:00 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Sat Jul 10 21:11:39 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b162f981

app-misc/tmux: remove unused patch

Closes: https://github.com/gentoo/gentoo/pull/21268
Package-Manager: Portage-3.0.19, Repoman-3.0.3
Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Signed-off-by: Conrad Kostecki  gentoo.org>

 app-misc/tmux/files/tmux-fix-bindings.patch | 45 -
 1 file changed, 45 deletions(-)

diff --git a/app-misc/tmux/files/tmux-fix-bindings.patch 
b/app-misc/tmux/files/tmux-fix-bindings.patch
deleted file mode 100644
index 6436302f055..000
--- a/app-misc/tmux/files/tmux-fix-bindings.patch
+++ /dev/null
@@ -1,45 +0,0 @@
-From f2951bd4a560692048e68bf29a5b0a288346a7d4 Mon Sep 17 00:00:00 2001
-From: Nicholas Marriott 
-Date: Wed, 5 May 2021 07:23:23 +0100
-Subject: [PATCH] Remove old shift function keys which interfere with xterm
- keys now. GitHub issue 2696.
-

- input-keys.c | 24 
- 1 file changed, 24 deletions(-)
-
-diff --git a/input-keys.c b/input-keys.c
-index ffd2201c0..be83600e5 100644
 a/input-keys.c
-+++ b/input-keys.c
-@@ -94,30 +94,6 @@ static struct input_key_entry input_key_defaults[] = {
-   { .key = KEYC_F12,
- .data = "\033[24~"
-   },
--  { .key = KEYC_F1|KEYC_SHIFT,
--.data = "\033[25~"
--  },
--  { .key = KEYC_F2|KEYC_SHIFT,
--.data = "\033[26~"
--  },
--  { .key = KEYC_F3|KEYC_SHIFT,
--.data = "\033[28~"
--  },
--  { .key = KEYC_F4|KEYC_SHIFT,
--.data = "\033[29~"
--  },
--  { .key = KEYC_F5|KEYC_SHIFT,
--.data = "\033[31~"
--  },
--  { .key = KEYC_F6|KEYC_SHIFT,
--.data = "\033[32~"
--  },
--  { .key = KEYC_F7|KEYC_SHIFT,
--.data = "\033[33~"
--  },
--  { .key = KEYC_F8|KEYC_SHIFT,
--.data = "\033[34~"
--  },
-   { .key = KEYC_IC,
- .data = "\033[2~"
-   },



[gentoo-commits] repo/gentoo:master commit in: kde-plasma/xembed-sni-proxy/files/

2021-07-10 Thread Conrad Kostecki
commit: 9e573beae1ffc8d6ef46ddfd1fa8f057c4b866dd
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Tue Jun 15 19:38:01 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Sat Jul 10 21:11:18 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e573bea

kde-plasma/xembed-sni-proxy: remove unused patch

Closes: https://github.com/gentoo/gentoo/pull/21256
Package-Manager: Portage-3.0.19, Repoman-3.0.3
Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Signed-off-by: Conrad Kostecki  gentoo.org>

 .../xembed-sni-proxy-5.14.90-standalone.patch  | 59 --
 1 file changed, 59 deletions(-)

diff --git 
a/kde-plasma/xembed-sni-proxy/files/xembed-sni-proxy-5.14.90-standalone.patch 
b/kde-plasma/xembed-sni-proxy/files/xembed-sni-proxy-5.14.90-standalone.patch
deleted file mode 100644
index 8fb3c170904..000
--- 
a/kde-plasma/xembed-sni-proxy/files/xembed-sni-proxy-5.14.90-standalone.patch
+++ /dev/null
@@ -1,59 +0,0 @@
-From 42008129f1659bc34c454ce14632fd279679f556 Mon Sep 17 00:00:00 2001
-From: Andreas Sturmlechner 
-Date: Mon, 22 Oct 2018 21:44:33 +0200
-Subject: [PATCH] xembed-sni-proxy: Allow standalone build
-

- CMakeLists.txt | 35 +
- 1 file changed, 35 insertions(+)
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index c2f67ac6..30b2c1b5 100644
 a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -1,3 +1,34 @@
-+project(xembed-sni-proxy)
-+
-+if(${CMAKE_SOURCE_DIR} STREQUAL ${xembed-sni-proxy_SOURCE_DIR})
-+set(PROJECT_VERSION "GENTOO_PV")
-+set(PROJECT_VERSION_MAJOR 5)
-+
-+cmake_minimum_required(VERSION 3.0)
-+
-+set(QT_MIN_VERSION "5.11.0")
-+set(KF5_MIN_VERSION "5.54.0")
-+find_package(Qt5 ${QT_MIN_VERSION} CONFIG REQUIRED COMPONENTS Core DBus 
X11Extras)
-+find_package(ECM ${KF5_MIN_VERSION} REQUIRED NO_MODULE)
-+set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
-+
-+include(KDEInstallDirs)
-+include(KDECMakeSettings)
-+include(KDECompilerSettings NO_POLICY_SCOPE)
-+include(FeatureSummary)
-+include(ECMQtDeclareLoggingCategory)
-+
-+find_package(KF5WindowSystem ${KF5_MIN_VERSION} REQUIRED)
-+find_package(X11 REQUIRED)
-+find_package(XCB MODULE REQUIRED COMPONENTS XCB RANDR)
-+set_package_properties(XCB PROPERTIES TYPE REQUIRED)
-+
-+configure_file(../config-X11.h.cmake 
${CMAKE_CURRENT_BINARY_DIR}/config-X11.h)
-+else()
-+set(PROJECT_VERSION "5.14.90")
-+set(PROJECT_VERSION_MAJOR 5)
-+endif()
-+
- add_definitions(-DQT_NO_CAST_TO_ASCII
- -DQT_NO_CAST_FROM_ASCII
- -DQT_NO_URL_CAST_FROM_STRING
-@@ -64,3 +95,7 @@ target_link_libraries(xembedsniproxy
- install(TARGETS xembedsniproxy ${KDE_INSTALL_TARGETS_DEFAULT_ARGS})
- install(FILES xembedsniproxy.desktop DESTINATION ${KDE_INSTALL_AUTOSTARTDIR})
- 
-+if ("${CMAKE_BINARY_DIR}" STREQUAL "${CMAKE_CURRENT_BINARY_DIR}")
-+feature_summary(WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES)
-+endif()
-+
--- 
-2.19.1
-



[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-mysql/files/

2021-07-10 Thread Conrad Kostecki
commit: b347780101cfbdf0bc46e5d6aa3954df98f2cbe4
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Sat May  1 17:54:21 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Sat Jul 10 21:03:30 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3477801

dev-perl/DBD-mysql: remove unused patches

Closes: https://github.com/gentoo/gentoo/pull/20632
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Signed-off-by: Conrad Kostecki  gentoo.org>

 dev-perl/DBD-mysql/files/4.041-mariadb-10.2.patch  |  35 -
 .../DBD-mysql-4.044-amvis-type-conversions.patch   |  56 
 .../files/DBD-mysql-4.044-no-dot-inc.patch | 151 -
 3 files changed, 242 deletions(-)

diff --git a/dev-perl/DBD-mysql/files/4.041-mariadb-10.2.patch 
b/dev-perl/DBD-mysql/files/4.041-mariadb-10.2.patch
deleted file mode 100644
index 13fa2775a3c..000
--- a/dev-perl/DBD-mysql/files/4.041-mariadb-10.2.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-From 509fd6a054de9408ce9032e93fff61f6bdbc568a Mon Sep 17 00:00:00 2001
-From: Brian Evans 
-Date: Fri, 13 Oct 2017 15:03:50 -0400
-Subject: Fix building/linking against MariaDB 10.2
-
-Bug: https://bugs.gentoo.org/634192

- mysql.xs | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/mysql.xs b/mysql.xs
-index 13c6a57..6de3c8e 100644
 a/mysql.xs
-+++ b/mysql.xs
-@@ -790,7 +790,7 @@ dbd_mysql_get_info(dbh, sql_info_type)
- D_imp_dbh(dbh);
- IV type = 0;
- SV* retsv=NULL;
--#if !defined(MARIADB_BASE_VERSION) && MYSQL_VERSION_ID >= 50709
-+#if ( !defined(MARIADB_BASE_VERSION) && MYSQL_VERSION_ID >= 50709 ) || 
MYSQL_VERSION_ID >= 100202
- /* MariaDB 10 is not MySQL source level compatible so this only applies to 
MySQL*/
- IV buffer_len;
- #endif 
-@@ -822,7 +822,7 @@ dbd_mysql_get_info(dbh, sql_info_type)
-   retsv = newSVpvn("`", 1);
-   break;
-   case SQL_MAXIMUM_STATEMENT_LENGTH:
--#if !defined(MARIADB_BASE_VERSION) && MYSQL_VERSION_ID >= 50709
-+#if ( !defined(MARIADB_BASE_VERSION) && MYSQL_VERSION_ID >= 50709 ) || 
MYSQL_VERSION_ID >= 100202
- /* MariaDB 10 is not MySQL source level compatible so this
-only applies to MySQL*/
-   /* mysql_get_option() was added in mysql 5.7.3 */
--- 
-2.14.2
-

diff --git 
a/dev-perl/DBD-mysql/files/DBD-mysql-4.044-amvis-type-conversions.patch 
b/dev-perl/DBD-mysql/files/DBD-mysql-4.044-amvis-type-conversions.patch
deleted file mode 100644
index 9cf9ff91fc8..000
--- a/dev-perl/DBD-mysql/files/DBD-mysql-4.044-amvis-type-conversions.patch
+++ /dev/null
@@ -1,56 +0,0 @@
-From eb7eddaa2341b853df045ad4a3690c60fc38c6c8 Mon Sep 17 00:00:00 2001
-From: Pali 
-Date: Fri, 24 Feb 2017 19:51:36 +0100
-Subject: Fix type conversions
-
-Calling SvNV() for magical scalar is not enough for float type conversion.
-It caused problem for Amavis in tainted mode -- all float values were zero.
-On the other hand SvIV() and SvUV() seems to work fine. To be sure that
-correct value of float is in scalar use sv_setnv() with explicit NV float
-value. Similar code is changed also for integers IV/UV.
-
-This patch should fix reported Amavis bug:
-https://github.com/perl5-dbi/DBD-mysql/issues/78
-
-See also reported perl bug about SvNV():
-https://rt.perl.org/Public/Bug/Display.html?id=130801
-
-Bugs: https://github.com/perl5-dbi/DBD-mysql/issues/78
-Bugs-Debian: https://bugs.debian.org/856064

- dbdimp.c | 9 +++--
- 1 file changed, 3 insertions(+), 6 deletions(-)
-
-diff --git a/dbdimp.c b/dbdimp.c
-index 9c33994..7fdfba1 100644
 a/dbdimp.c
-+++ b/dbdimp.c
-@@ -4380,8 +4380,7 @@ process:
-   if (!(fields[i].flags & ZEROFILL_FLAG))
-   {
- /* Coerce to dobule and set scalar as NV */
--(void) SvNV(sv);
--SvNOK_only(sv);
-+sv_setnv(sv, SvNV(sv));
-   }
-   break;
- 
-@@ -4392,13 +4391,11 @@ process:
- /* Coerce to integer and set scalar as UV resp. IV */
- if (fields[i].flags & UNSIGNED_FLAG)
- {
--  (void) SvUV(sv);
--  SvIOK_only_UV(sv);
-+  sv_setuv(sv, SvUV(sv));
- }
- else
- {
--  (void) SvIV(sv);
--  SvIOK_only(sv);
-+  sv_setiv(sv, SvIV(sv));
- }
-   }
-   break;
--- 
-2.15.1
-

diff --git a/dev-perl/DBD-mysql/files/DBD-mysql-4.044-no-dot-inc.patch 
b/dev-perl/DBD-mysql/files/DBD-mysql-4.044-no-dot-inc.patch
deleted file mode 100644
index 5e0829384be..000
--- a/dev-perl/DBD-mysql/files/DBD-mysql-4.044-no-dot-inc.patch
+++ /dev/null
@@ -1,151 +0,0 @@
-From 35931a7465f19da53b97cd1bc5369a69aeac2ff6 Mon Sep 17 00:00:00 2001
-From: Pali 
-Date: Mon, 17 Apr 2017 21:38:58 +0200
-Subject: Fix tests on Perl On 5.25.10 or greater with
- -Ddefault_inc_excludes_dot
-
-Some tests do not include dot in 

[gentoo-commits] repo/gentoo:master commit in: kde-plasma/milou/files/

2021-07-10 Thread Conrad Kostecki
commit: 53ef60028540aef80ab69ed76834cefb5906b37f
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Tue Jun 15 19:36:12 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Sat Jul 10 21:09:52 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53ef6002

kde-plasma/milou: remove unused patch(es)

Closes: https://github.com/gentoo/gentoo/pull/21256
Package-Manager: Portage-3.0.19, Repoman-3.0.3
Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Signed-off-by: Conrad Kostecki  gentoo.org>

 .../files/milou-5.19.80-disable-manual-tests.patch | 29 --
 1 file changed, 29 deletions(-)

diff --git a/kde-plasma/milou/files/milou-5.19.80-disable-manual-tests.patch 
b/kde-plasma/milou/files/milou-5.19.80-disable-manual-tests.patch
deleted file mode 100644
index a9e3b029f91..000
--- a/kde-plasma/milou/files/milou-5.19.80-disable-manual-tests.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-From b239834faa093a972bd7ca33296484609f121a3b Mon Sep 17 00:00:00 2001
-From: Andreas Sturmlechner 
-Date: Tue, 14 Jul 2020 20:24:01 +0200
-Subject: [PATCH] Disable test dir based on BUILD_TESTING or unavailability of
- Qt5::Test
-
-These tests are manual; an attempt to run them ended in failure.
-
-Signed-off-by: Andreas Sturmlechner 

- lib/CMakeLists.txt | 5 -
- 1 file changed, 4 insertions(+), 1 deletion(-)
-
-diff --git a/lib/CMakeLists.txt b/lib/CMakeLists.txt
-index a739c5c..92dd0be 100644
 a/lib/CMakeLists.txt
-+++ b/lib/CMakeLists.txt
-@@ -39,4 +39,7 @@ install(TARGETS milou EXPORT MilouLibraryTargets 
${KDE_INSTALL_TARGETS_DEFAULT_A
- 
- add_subdirectory(qml)
- add_subdirectory(previews)
--add_subdirectory(test)
-+
-+if(BUILD_TESTING AND TARGET Qt5::Test)
-+  add_subdirectory(test)
-+endif()
--- 
-2.27.0
-



[gentoo-commits] repo/gentoo:master commit in: app-shells/bash/files/

2021-07-10 Thread Conrad Kostecki
commit: cdf75470811178fd2712bf0780d4d6dd8b3f02f4
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Fri May  7 18:09:30 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Sat Jul 10 21:04:42 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cdf75470

app-shells/bash: remove unused patches

Closes: https://github.com/gentoo/gentoo/pull/20722
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Signed-off-by: Conrad Kostecki  gentoo.org>

 .../files/bash-5.0_p11-disable_priv_mode.patch | 85 --
 app-shells/bash/files/bash-5.1-parallel_make.patch | 15 
 2 files changed, 100 deletions(-)

diff --git a/app-shells/bash/files/bash-5.0_p11-disable_priv_mode.patch 
b/app-shells/bash/files/bash-5.0_p11-disable_priv_mode.patch
deleted file mode 100644
index 9a05c8b8613..000
--- a/app-shells/bash/files/bash-5.0_p11-disable_priv_mode.patch
+++ /dev/null
@@ -1,85 +0,0 @@
-diff -urP ../bash-5.0.orig/config.h.in config.h.in
 ../bash-5.0.orig/config.h.in   2018-12-04 09:54:17.0 -0700
-+++ config.h.in2019-12-10 11:34:42.157926317 -0700
-@@ -1,6 +1,6 @@
- /* config.h -- Configuration file for bash. */
- 
--/* Copyright (C) 1987-2009,2011-2012 Free Software Foundation, Inc.
-+/* Copyright (C) 1987-2009,2011-2012,2013-2019 Free Software Foundation, Inc.
- 
-This file is part of GNU Bash, the Bourne Again SHell.
- 
-@@ -807,6 +807,14 @@
- #undef HAVE_SETREGID
- #undef HAVE_DECL_SETREGID
- 
-+/* Define if you have the setregid function.  */
-+#undef HAVE_SETRESGID
-+#undef HAVE_DECL_SETRESGID
-+
-+/* Define if you have the setresuid function.  */
-+#undef HAVE_SETRESUID
-+#undef HAVE_DECL_SETRESUID
-+
- /* Define if you have the setvbuf function.  */
- #undef HAVE_SETVBUF
- 
-diff -urP ../bash-5.0.orig/configure configure
 ../bash-5.0.orig/configure 2019-01-02 07:43:31.0 -0700
-+++ configure  2019-12-10 11:34:42.166926317 -0700
-@@ -10281,6 +10281,17 @@
- #define HAVE_DECL_SETREGID $ac_have_decl
- _ACEOF
- 
-+ac_fn_c_check_decl "$LINENO" "" "ac_cv_have_decl_" "$ac_includes_default"
-+if test "x$ac_cv_have_decl_" = xyes; then :
-+  ac_have_decl=1
-+else
-+  ac_have_decl=0
-+fi
-+
-+cat >>confdefs.h <<_ACEOF
-+#define HAVE_DECL_ $ac_have_decl
-+_ACEOF
-+(setresuid, setresgid)
- ac_fn_c_check_decl "$LINENO" "strcpy" "ac_cv_have_decl_strcpy" 
"$ac_includes_default"
- if test "x$ac_cv_have_decl_strcpy" = xyes; then :
-   ac_have_decl=1
-diff -urP ../bash-5.0.orig/configure.ac configure.ac
 ../bash-5.0.orig/configure.ac  2019-01-02 07:39:11.0 -0700
-+++ configure.ac   2019-12-10 11:34:42.168926317 -0700
-@@ -810,6 +810,7 @@
- AC_CHECK_DECLS([printf])
- AC_CHECK_DECLS([sbrk])
- AC_CHECK_DECLS([setregid])
-+AC_CHECK_DECLS[(setresuid, setresgid])
- AC_CHECK_DECLS([strcpy])
- AC_CHECK_DECLS([strsignal])
- 
-diff -urP ../bash-5.0.orig/shell.c shell.c
 ../bash-5.0.orig/shell.c   2018-12-06 09:28:21.0 -0700
-+++ shell.c2019-12-10 11:34:42.170926317 -0700
-@@ -1293,7 +1293,11 @@
- {
-   int e;
- 
-+#if HAVE_DECL_SETRESUID
-+  if (setresuid (current_user.uid, current_user.uid, current_user.uid) < 0)
-+#else
-   if (setuid (current_user.uid) < 0)
-+#endif
- {
-   e = errno;
-   sys_error (_("cannot set uid to %d: effective uid %d"), 
current_user.uid, current_user.euid);
-@@ -1302,7 +1306,11 @@
-   exit (e);
- #endif
- }
-+#if HAVE_DECL_SETRESGID
-+  if (setresgid (current_user.gid, current_user.gid, current_user.gid) < 0)
-+#else
-   if (setgid (current_user.gid) < 0)
-+#endif
- sys_error (_("cannot set gid to %d: effective gid %d"), current_user.gid, 
current_user.egid);
- 
-   current_user.euid = current_user.uid;

diff --git a/app-shells/bash/files/bash-5.1-parallel_make.patch 
b/app-shells/bash/files/bash-5.1-parallel_make.patch
deleted file mode 100644
index b341a8a06e2..000
--- a/app-shells/bash/files/bash-5.1-parallel_make.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-bashline.c:65:10: fatal error: builtins/builtext.h: No such file or directory
-   65 | #include "builtins/builtext.h"  /* for read_builtin */
-  |  ^
-
 bash-5.1/Makefile.in
-+++ bash-5.1/Makefile.in
-@@ -584,6 +584,8 @@
-   ls -l $(Program)
-   -$(SIZE) $(Program)
- 
-+$(CSOURCES): $(DEFDIR)/builtext.h
-+
- .build:   $(SOURCES) config.h Makefile version.h $(VERSPROG)
-   @echo
-   @echo "   ***"



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

2021-07-10 Thread Conrad Kostecki
commit: 8a36cb230f7a11edf480ebf6e7e2001ea49fe3f9
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Sat May  1 17:55:14 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Sat Jul 10 21:04:02 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a36cb23

dev-util/strace: remove unused patch

Closes: https://github.com/gentoo/gentoo/pull/20635
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Signed-off-by: Conrad Kostecki  gentoo.org>

 dev-util/strace/files/strace-5.5-static.patch | 178 --
 1 file changed, 178 deletions(-)

diff --git a/dev-util/strace/files/strace-5.5-static.patch 
b/dev-util/strace/files/strace-5.5-static.patch
deleted file mode 100644
index da57ee0f938..000
--- a/dev-util/strace/files/strace-5.5-static.patch
+++ /dev/null
@@ -1,178 +0,0 @@
 /Makefile.am
-+++ /Makefile.am
-@@ -379,7 +379,6 @@
- if USE_LIBDW
- strace_SOURCES += unwind-libdw.c
- strace_CPPFLAGS += $(libdw_CPPFLAGS)
--strace_CFLAGS += $(libdw_CFLAGS)
- strace_LDFLAGS += $(libdw_LDFLAGS)
- strace_LDADD += $(libdw_LIBS)
- endif
 /configure.ac
-+++ /configure.ac
-@@ -48,6 +48,15 @@
- AC_DEFINE([MANPAGE_DATE], "[manpage_date]", [Date])
- AC_SUBST([MANPAGE_DATE], [manpage_date])
- 
-+AC_ARG_ENABLE([static],
-+[AS_HELP_STRING([--enable-static],
-+[link strace statically])],
-+[], [enable_static=no])
-+if test "$enable_static" = "yes"; then
-+  # Add -pthread since strace wants -lrt for timer_create, and -lrt uses 
-lpthread.
-+  LDFLAGS="$LDFLAGS -pthread -static"
-+fi
-+
- AC_C_BIGENDIAN
- 
- AC_MSG_CHECKING([for supported architecture])
 /m4/st_libdw.m4
-+++ /m4/st_libdw.m4
-@@ -8,7 +8,6 @@
- AC_DEFUN([st_ARG_LIBDW], [dnl
- 
- : ${libdw_CPPFLAGS=}
--: ${libdw_CFLAGS=}
- : ${libdw_LDFLAGS=}
- : ${libdw_LIBS=}
- 
-@@ -34,48 +33,14 @@
- have_libdw=
- 
- AS_IF([test "x$with_libdw" != xno && test "x$use_unwinder" = x],
--  [saved_CPPFLAGS="$CPPFLAGS"
--   saved_CFLAGS="$CFLAGS"
--   CPPFLAGS="$CPPFLAGS $libdw_CPPFLAGS"
--   CFLAGS="$CFLAGS $libdw_CFLAGS"
--
--   AC_CHECK_HEADERS([elfutils/libdwfl.h],
--  [AC_CHECK_LIB([dw], [dwfl_linux_proc_attach],
--[libdw_LIBS="-ldw $libdw_LIBS"
-- AC_CACHE_CHECK([for elfutils version],
--[st_cv_ELFUTILS_VERSION],
--
[[st_cv_ELFUTILS_VERSION="$(echo _ELFUTILS_VERSION |
--  
  $CPP $CPPFLAGS -P -imacros elfutils/version.h - |
--  
  grep '^[0-9]')"
--  test -n 
"$st_cv_ELFUTILS_VERSION" ||
--  
st_cv_ELFUTILS_VERSION=0
--]]
--   )
-- AS_IF([test "$st_cv_ELFUTILS_VERSION" 
-ge 164],
--   [have_libdw=yes],
--   [AS_IF([test "x$with_libdw" = 
xyes],
--  [AC_MSG_ERROR([elfutils 
version >= 164 is required for stack tracing support])],
--  [AC_MSG_WARN([elfutils 
version >= 164 is required for stack tracing support])]
-- )
--   ]
--  )
--],
--[AS_IF([test "x$with_libdw" = xyes],
--   [AC_MSG_FAILURE([failed to find 
dwfl_linux_proc_attach in libdw])],
--  )
--],
--[$libdw_LDFLAGS $libdw_LIBS]
--   )
--  ],
--  [AS_IF([test "x$with_libdw" = xyes],
-- [AC_MSG_FAILURE([failed to find 
elfutils/libdwfl.h])]
--)
--  ]
-- )
--
--   CFLAGS="$saved_CFLAGS"
--   CPPFLAGS="$saved_CPPFLAGS"
--  ]
-+  [if test "$enable_static" = "yes"; then
-+   PKG_CHECK_MODULES_STATIC([LIBDW], [libdw >= 0.164])
-+   else
-+   PKG_CHECK_MODULES([LIBDW], [libdw >= 0.164])
-+   fi
-+   have_libdw=yes
-+   libdw_CPPFLAGS="$LIBDW_CFLAGS"
-+   libdw_LIBS="$LIBDW_LIBS"]
- )
- 
- AS_IF([test "x$have_libdw" = xyes],
-@@ -84,7 +49,6 @@
-[Whether to use libdw for stack tracing]
-  

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

2021-07-10 Thread Conrad Kostecki
commit: 2aa994b5c808df07ac6b128ee82b422134a842da
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Tue May 18 17:53:03 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Sat Jul 10 21:06:22 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2aa994b5

sys-apps/shadow: remove unused patch

Closes: https://github.com/gentoo/gentoo/pull/20873
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Signed-off-by: Conrad Kostecki  gentoo.org>

 sys-apps/shadow/files/shadow-4.8-revert-bin-merge.patch | 15 ---
 1 file changed, 15 deletions(-)

diff --git a/sys-apps/shadow/files/shadow-4.8-revert-bin-merge.patch 
b/sys-apps/shadow/files/shadow-4.8-revert-bin-merge.patch
deleted file mode 100644
index 08382fcb950..000
--- a/sys-apps/shadow/files/shadow-4.8-revert-bin-merge.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-diff --git a/src/Makefile.am b/src/Makefile.am
-index 97839741..ff153d92 100644
 a/src/Makefile.am
-+++ b/src/Makefile.am
-@@ -2,8 +2,8 @@
- EXTRA_DIST = \
-   .indent.pro
- 
--ubindir = ${bindir}
--usbindir = ${sbindir}
-+ubindir = ${prefix}/bin
-+usbindir = ${prefix}/sbin
- suidperms = 4755
- sgidperms = 2755
- 



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

2021-07-10 Thread Davide Pesavento
commit: 42bbd1ff5eeb2a4dc46b271571e14c48fdc9397c
Author: Davide Pesavento  gentoo  org>
AuthorDate: Sat Jul 10 20:58:13 2021 +
Commit: Davide Pesavento  gentoo  org>
CommitDate: Sat Jul 10 21:00:37 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42bbd1ff

dev-util/qbs: add 1.19.1

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

 dev-util/qbs/Manifest  |   1 +
 dev-util/qbs/metadata.xml  |  12 +++--
 dev-util/qbs/qbs-1.19.1.ebuild | 120 +
 3 files changed, 129 insertions(+), 4 deletions(-)

diff --git a/dev-util/qbs/Manifest b/dev-util/qbs/Manifest
index 142b017fb2d..5243f5419bd 100644
--- a/dev-util/qbs/Manifest
+++ b/dev-util/qbs/Manifest
@@ -1,2 +1,3 @@
 DIST qbs-src-1.16.0.tar.gz 4571788 BLAKE2B 
4fb06314d0d0a532574e0d245ea85b6d596850ffe4b81b621406d1bc99e0529fc491bf5c7db514d90026c0bf4916f9fa102457aab2bbaaddbbe2e90c03aa04a4
 SHA512 
65c5398ffad54e10e251bed79a5b58abd722c0f95a031c536fc8647d915dd696923401c767a7a8ac029f4f571b6bbf96ef4b7493bb30768f675477bd68fcc21c
 DIST qbs-src-1.18.0.tar.gz 4921432 BLAKE2B 
4c081434596c58d433e52ca9e335e3b4d62b75e401290895719b7fbe4f3c20cf8b34ab0753ae79a34b4e29c8859751a6276da8d6dbd5f3c711581af16ab61415
 SHA512 
bdef30200c7e74749c363b1d68232fd90d1dfc998722bee0e058ffcaff8e003599e0404b49f86cbeae098d59ccb5663316db5094d77b50a217fcf4ab5ae64d83
+DIST qbs-src-1.19.1.tar.gz 4961984 BLAKE2B 
2b9333ac8bba12f311ad47b1315d0a61ddf3b3a804888369f3fd868fbebca4ad13bd857451cb3fe3515fd9f9e69b42b84484289e79d3e7911c69720d7d08ab29
 SHA512 
b53dae9631c9d4ec1f799395948a67ce4b62ae88908cce3b00f42fb0213d80d32127c3429b95d5c32c9f7c1b861fc5a52ac6952046a6d91d035539d7412a5c4d

diff --git a/dev-util/qbs/metadata.xml b/dev-util/qbs/metadata.xml
index 4311f5d8ba9..06efa80b24b 100644
--- a/dev-util/qbs/metadata.xml
+++ b/dev-util/qbs/metadata.xml
@@ -14,10 +14,14 @@
projects across multiple platforms. Qbs can be used for any software
project, regardless of programming language, toolkit, or libraries used.
 
-   Qbs is an all-in-one tool that generates a build graph from a
-   high-level project description (like qmake or cmake) and additionally
-   undertakes the task of executing the commands in the low-level build
-   graph (like make).
+   Qbs projects are specified in a QML dialect. QML is a concise, easy to
+   learn, and intuitive language that is used successfully in the Qt 
project.
+   Its core is declarative, but it can be extended with JavaScript snippets
+   for extra flexibility.
+
+   Qbs is an all-in-one tool that generates a build graph from a high-level
+   project description (like qmake or CMake) and additionally undertakes 
the
+   task of executing the commands in the low-level build graph (like make).


https://bugreports.qt.io/

diff --git a/dev-util/qbs/qbs-1.19.1.ebuild b/dev-util/qbs/qbs-1.19.1.ebuild
new file mode 100644
index 000..3339bb57428
--- /dev/null
+++ b/dev-util/qbs/qbs-1.19.1.ebuild
@@ -0,0 +1,120 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit qmake-utils toolchain-funcs
+
+MY_P=${PN}-src-${PV}
+
+DESCRIPTION="Modern build tool for software projects"
+HOMEPAGE="https://doc.qt.io/qbs/;
+SRC_URI="https://download.qt.io/official_releases/${PN}/${PV}/${MY_P}.tar.gz;
+S=${WORKDIR}/${MY_P}
+
+LICENSE="|| ( LGPL-2.1 LGPL-3 )"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE="doc examples gui test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   dev-qt/qtcore:5=
+   dev-qt/qtnetwork:5
+   dev-qt/qtscript:5
+   dev-qt/qtxml:5
+   gui? (
+   dev-qt/qtgui:5
+   dev-qt/qtwidgets:5
+   )
+"
+DEPEND="${RDEPEND}
+   test? (
+   dev-qt/linguist-tools:5
+   dev-qt/qtdbus:5
+   dev-qt/qtdeclarative:5
+   dev-qt/qttest:5
+   )
+"
+BDEPEND="
+   dev-qt/qtcore:5
+   doc? (
+   dev-qt/qdoc:5
+   dev-qt/qthelp:5
+   )
+"
+
+src_prepare() {
+   default
+
+   if ! use examples; then
+   sed -i -e '/INSTALLS +=/ s:examples::' static.pro || die
+   fi
+
+   if ! use gui; then
+   sed -i -e '/SUBDIRS += config-ui/ d' src/app/app.pro || die
+   fi
+
+   echo "SUBDIRS = $(usev test auto)" >> tests/tests.pro
+
+   # skip several tests that fail and/or have additional deps
+   sed -i \
+   -e 's/findArchiver(binaryName,.*/"";/'  `# requires zip and 
jar` \
+   -e 's/p\.value("nodejs\./true||&/'  `# requires nodejs, bug 
527652` \
+   -e 
's/\(p\.value\|m_qbsStderr\.contains\)("typescript\./true||&/' `# requires 
nodejs and typescript` \
+   tests/auto/blackbox/tst_blackbox.cpp || die
+   sed -i -re '/blackbox-(android|apple|java)\.pro/ d' 

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

2021-07-10 Thread Davide Pesavento
commit: e8fe7830a84c047fe51a31c1c5bda5003cf543b5
Author: Davide Pesavento  gentoo  org>
AuthorDate: Sat Jul 10 20:59:45 2021 +
Commit: Davide Pesavento  gentoo  org>
CommitDate: Sat Jul 10 21:00:37 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8fe7830

dev-util/qbs: drop 1.16.0

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

 dev-util/qbs/Manifest  |   1 -
 dev-util/qbs/qbs-1.16.0.ebuild | 116 -
 2 files changed, 117 deletions(-)

diff --git a/dev-util/qbs/Manifest b/dev-util/qbs/Manifest
index 5243f5419bd..bfcc02f2c5b 100644
--- a/dev-util/qbs/Manifest
+++ b/dev-util/qbs/Manifest
@@ -1,3 +1,2 @@
-DIST qbs-src-1.16.0.tar.gz 4571788 BLAKE2B 
4fb06314d0d0a532574e0d245ea85b6d596850ffe4b81b621406d1bc99e0529fc491bf5c7db514d90026c0bf4916f9fa102457aab2bbaaddbbe2e90c03aa04a4
 SHA512 
65c5398ffad54e10e251bed79a5b58abd722c0f95a031c536fc8647d915dd696923401c767a7a8ac029f4f571b6bbf96ef4b7493bb30768f675477bd68fcc21c
 DIST qbs-src-1.18.0.tar.gz 4921432 BLAKE2B 
4c081434596c58d433e52ca9e335e3b4d62b75e401290895719b7fbe4f3c20cf8b34ab0753ae79a34b4e29c8859751a6276da8d6dbd5f3c711581af16ab61415
 SHA512 
bdef30200c7e74749c363b1d68232fd90d1dfc998722bee0e058ffcaff8e003599e0404b49f86cbeae098d59ccb5663316db5094d77b50a217fcf4ab5ae64d83
 DIST qbs-src-1.19.1.tar.gz 4961984 BLAKE2B 
2b9333ac8bba12f311ad47b1315d0a61ddf3b3a804888369f3fd868fbebca4ad13bd857451cb3fe3515fd9f9e69b42b84484289e79d3e7911c69720d7d08ab29
 SHA512 
b53dae9631c9d4ec1f799395948a67ce4b62ae88908cce3b00f42fb0213d80d32127c3429b95d5c32c9f7c1b861fc5a52ac6952046a6d91d035539d7412a5c4d

diff --git a/dev-util/qbs/qbs-1.16.0.ebuild b/dev-util/qbs/qbs-1.16.0.ebuild
deleted file mode 100644
index 2ecd2be09ac..000
--- a/dev-util/qbs/qbs-1.16.0.ebuild
+++ /dev/null
@@ -1,116 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit qmake-utils toolchain-funcs
-
-MY_P=${PN}-src-${PV}
-
-DESCRIPTION="Modern build tool for software projects"
-HOMEPAGE="https://doc.qt.io/qbs/;
-SRC_URI="http://download.qt.io/official_releases/${PN}/${PV}/${MY_P}.tar.gz;
-
-LICENSE="|| ( LGPL-2.1 LGPL-3 )"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
-IUSE="doc examples test"
-RESTRICT="!test? ( test )"
-
-# see bug 581874 for the qttest dep in RDEPEND
-RDEPEND="
-   dev-qt/qtcore:5=
-   dev-qt/qtgui:5
-   dev-qt/qtnetwork:5
-   dev-qt/qtscript:5
-   dev-qt/qtwidgets:5
-   dev-qt/qtxml:5
-   test? ( dev-qt/qttest:5 )
-"
-DEPEND="${RDEPEND}
-   doc? (
-   dev-qt/qdoc:5
-   dev-qt/qthelp:5
-   )
-   test? (
-   dev-qt/linguist-tools:5
-   dev-qt/qtdbus:5
-   dev-qt/qtdeclarative:5
-   )
-"
-
-S=${WORKDIR}/${MY_P}
-
-src_prepare() {
-   default
-
-   if ! use examples; then
-   sed -i -e '/INSTALLS +=/ s:examples::' static.pro || die
-   fi
-
-   echo "SUBDIRS = $(usex test auto '')" >> tests/tests.pro
-
-   # skip several tests that fail and/or have additional deps
-   sed -i \
-   -e 's/findArchiver("7z")/""/'   `# requires p7zip, 
fails` \
-   -e 's/findArchiver(binaryName,.*/"";/'  `# requires zip and 
jar` \
-   -e 's/p\.value("nodejs\./true||&/'  `# requires nodejs, bug 
527652` \
-   -e 
's/\(p\.value\|m_qbsStderr\.contains\)("typescript\./true||&/' `# requires 
nodejs and typescript` \
-   tests/auto/blackbox/tst_blackbox.cpp || die
-
-   # requires jdk, fails, bug 585398
-   sed -i -e '/blackbox-java\.pro/ d' tests/auto/auto.pro || die
-}
-
-src_configure() {
-   local myqmakeargs=(
-   qbs.pro # bug 523218
-   -recursive
-   CONFIG+=qbs_disable_rpath
-   CONFIG+=qbs_enable_project_file_updates
-   $(usex test 'CONFIG+=qbs_enable_unit_tests' '')
-   QBS_INSTALL_PREFIX="${EPREFIX}/usr"
-   QBS_LIBRARY_DIRNAME="$(get_libdir)"
-   )
-   eqmake5 "${myqmakeargs[@]}"
-}
-
-src_test() {
-   einfo "Setting up test environment in ${T}"
-
-   export HOME=${T}
-   export LD_LIBRARY_PATH=${S}/$(get_libdir)
-   export QBS_AUTOTEST_PROFILE=testProfile
-
-   "${S}"/bin/qbs-setup-toolchains "$(tc-getCC)" testToolchain || die
-   "${S}"/bin/qbs-setup-qt "$(qt5_get_bindir)/qmake" 
${QBS_AUTOTEST_PROFILE} || die
-   "${S}"/bin/qbs-config 
profiles.${QBS_AUTOTEST_PROFILE}.qbs.targetPlatform linux || die
-
-   einfo "Running autotests"
-
-   # simply exporting LD_LIBRARY_PATH doesn't work
-   # we have to use a custom testrunner script
-   local testrunner=${WORKDIR}/gentoo-testrunner
-   cat <<-EOF > "${testrunner}"
-   #!/bin/sh
-   export 
LD_LIBRARY_PATH="${LD_LIBRARY_PATH}\${LD_LIBRARY_PATH:+:}\${LD_LIBRARY_PATH}"
-   exec "\$@"

[gentoo-commits] repo/gentoo:master commit in: sys-fs/mtools/

2021-07-10 Thread Lars Wendler
commit: 7c194c36399507e8b0f28af64b7a0b20b05f4158
Author: Lars Wendler  gentoo  org>
AuthorDate: Sat Jul 10 20:39:38 2021 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sat Jul 10 20:39:38 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c194c36

sys-fs/mtools: Bump to version 4.0.32

Signed-off-by: Lars Wendler  gentoo.org>

 sys-fs/mtools/Manifest |  1 +
 sys-fs/mtools/mtools-4.0.32.ebuild | 46 ++
 2 files changed, 47 insertions(+)

diff --git a/sys-fs/mtools/Manifest b/sys-fs/mtools/Manifest
index c4d95f4642c..bf301fcfc67 100644
--- a/sys-fs/mtools/Manifest
+++ b/sys-fs/mtools/Manifest
@@ -2,3 +2,4 @@ DIST mtools-4.0.27.tar.bz2 420579 BLAKE2B 
3044fff1896427227e4585df81c208f7580302
 DIST mtools-4.0.29.tar.bz2 440446 BLAKE2B 
b448fad8f5669230dc4fe32442c3a8b0ee570e1b084ac6b99b3239fa16fa97ba0ac5263aee34fefcb8726999178829a9ad6ed0444f41361518e5d24cfb3de083
 SHA512 
3671fa835bf7b410b33acbe0e4694da1609f284a99268e7c64ebdbf3ce9fc9e78cc5594d06eae5487e380b983ead190098d01a9fc1bc88b4eda324046172e62e
 DIST mtools-4.0.30.tar.bz2 442886 BLAKE2B 
dd66897c814c2afd842d6cb2a0865b4559a38c0c99468f6d96f16c869ed088f4a136c4ce798af39ca3115076dff9f303bd79145f17d502bc25d4b5b0a81f11e2
 SHA512 
9871dd2237c595286334d162bf9f494bc389cfc2cf098012484994212eff2c522fce357567b3fa5a7b314cc7336f7329fd9d71a2e1a0be2fdb3293dcbc4d98f5
 DIST mtools-4.0.31.tar.bz2 446527 BLAKE2B 
4b954362d0c177c5a2f7b098065f841ca075092b8c49230ca4098a1a34fe64bce32d31df1aae702f12b174a8176026687de9dea5344f3878c1acdba4a8a0c753
 SHA512 
6c50eadcd32563b593b58984fd6426faabab208283c0b81c7df194cc27fb7d6bf873916b152c74c4800374f0b70f7dd41c768d823d9efc78cab6efbb6ee37df5
+DIST mtools-4.0.32.tar.bz2 436537 BLAKE2B 
6b057be3d053ecf1ebee72b6b73324ec2cdbd7daf87c927f6ec2f6ef203345ddb869d6d7cb645e21054304ae68fc7a33e77e7a0f0cb606d3b755da36e66ca69a
 SHA512 
a66e7483c422abdaddbe9e6b2cd0ecc2f87b0bc4f40929ac2e4db8b8d88cfacf118b126cba3207307bff376d5572170a1ee5803618de0544f68d420ed06bcab9

diff --git a/sys-fs/mtools/mtools-4.0.32.ebuild 
b/sys-fs/mtools/mtools-4.0.32.ebuild
new file mode 100644
index 000..3ebdd3b6df9
--- /dev/null
+++ b/sys-fs/mtools/mtools-4.0.32.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+inherit flag-o-matic
+
+DESCRIPTION="utilities to access MS-DOS disks from Unix without mounting them"
+HOMEPAGE="https://www.gnu.org/software/mtools/ 
https://savannah.gnu.org/projects/mtools;
+SRC_URI="mirror://gnu/${PN}/${P}.tar.bz2"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 
~x64-macos ~x64-solaris"
+IUSE="X elibc_glibc"
+
+RDEPEND="
+   !elibc_glibc? ( virtual/libiconv )
+   X? (
+   x11-libs/libICE
+   x11-libs/libXau
+   x11-libs/libSM
+   x11-libs/libX11
+   x11-libs/libXt
+   )"
+DEPEND="${RDEPEND}"
+
+src_configure() {
+   use !elibc_glibc && use !elibc_musl && append-libs "-liconv" #447688
+   local myeconfargs=(
+   --sysconfdir="${EPREFIX}"/etc/mtools
+   $(use_with X x)
+   )
+   econf "${myeconfargs[@]}"
+}
+
+src_install() {
+   local -a DOCS=( README* Release.notes )
+   default
+
+   insinto /etc/mtools
+   doins mtools.conf
+
+   # default is fine
+   sed -i -e '/^SAMPLE FILE$/s:^:#:' "${ED}"/etc/mtools/mtools.conf || die
+}



[gentoo-commits] repo/gentoo:master commit in: sys-fs/mtools/

2021-07-10 Thread Lars Wendler
commit: 8c2ff19e3a8da3d5638ae0cc5cedb0e0f891cc46
Author: Lars Wendler  gentoo  org>
AuthorDate: Sat Jul 10 20:40:00 2021 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sat Jul 10 20:40:00 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c2ff19e

sys-fs/mtools: Removed old

Signed-off-by: Lars Wendler  gentoo.org>

 sys-fs/mtools/Manifest |  2 --
 sys-fs/mtools/mtools-4.0.29.ebuild | 46 --
 sys-fs/mtools/mtools-4.0.30.ebuild | 46 --
 3 files changed, 94 deletions(-)

diff --git a/sys-fs/mtools/Manifest b/sys-fs/mtools/Manifest
index bf301fcfc67..96945940028 100644
--- a/sys-fs/mtools/Manifest
+++ b/sys-fs/mtools/Manifest
@@ -1,5 +1,3 @@
 DIST mtools-4.0.27.tar.bz2 420579 BLAKE2B 
3044fff1896427227e4585df81c208f7580302155cf119db426cfc7a24b3d5195b560b8810613f571eed77584d47bb5125007cdcb8551b303db62ce264853776
 SHA512 
21072e1b6d22ea00913dbc856c5fbe1ecfbfc0207432c7632f0026ae2d9555743eb0710c86e8939a6b3183a03693b8d1297121df9d5702dd5bf6121ad240572c
-DIST mtools-4.0.29.tar.bz2 440446 BLAKE2B 
b448fad8f5669230dc4fe32442c3a8b0ee570e1b084ac6b99b3239fa16fa97ba0ac5263aee34fefcb8726999178829a9ad6ed0444f41361518e5d24cfb3de083
 SHA512 
3671fa835bf7b410b33acbe0e4694da1609f284a99268e7c64ebdbf3ce9fc9e78cc5594d06eae5487e380b983ead190098d01a9fc1bc88b4eda324046172e62e
-DIST mtools-4.0.30.tar.bz2 442886 BLAKE2B 
dd66897c814c2afd842d6cb2a0865b4559a38c0c99468f6d96f16c869ed088f4a136c4ce798af39ca3115076dff9f303bd79145f17d502bc25d4b5b0a81f11e2
 SHA512 
9871dd2237c595286334d162bf9f494bc389cfc2cf098012484994212eff2c522fce357567b3fa5a7b314cc7336f7329fd9d71a2e1a0be2fdb3293dcbc4d98f5
 DIST mtools-4.0.31.tar.bz2 446527 BLAKE2B 
4b954362d0c177c5a2f7b098065f841ca075092b8c49230ca4098a1a34fe64bce32d31df1aae702f12b174a8176026687de9dea5344f3878c1acdba4a8a0c753
 SHA512 
6c50eadcd32563b593b58984fd6426faabab208283c0b81c7df194cc27fb7d6bf873916b152c74c4800374f0b70f7dd41c768d823d9efc78cab6efbb6ee37df5
 DIST mtools-4.0.32.tar.bz2 436537 BLAKE2B 
6b057be3d053ecf1ebee72b6b73324ec2cdbd7daf87c927f6ec2f6ef203345ddb869d6d7cb645e21054304ae68fc7a33e77e7a0f0cb606d3b755da36e66ca69a
 SHA512 
a66e7483c422abdaddbe9e6b2cd0ecc2f87b0bc4f40929ac2e4db8b8d88cfacf118b126cba3207307bff376d5572170a1ee5803618de0544f68d420ed06bcab9

diff --git a/sys-fs/mtools/mtools-4.0.29.ebuild 
b/sys-fs/mtools/mtools-4.0.29.ebuild
deleted file mode 100644
index 3ebdd3b6df9..000
--- a/sys-fs/mtools/mtools-4.0.29.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-inherit flag-o-matic
-
-DESCRIPTION="utilities to access MS-DOS disks from Unix without mounting them"
-HOMEPAGE="https://www.gnu.org/software/mtools/ 
https://savannah.gnu.org/projects/mtools;
-SRC_URI="mirror://gnu/${PN}/${P}.tar.bz2"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 
~x64-macos ~x64-solaris"
-IUSE="X elibc_glibc"
-
-RDEPEND="
-   !elibc_glibc? ( virtual/libiconv )
-   X? (
-   x11-libs/libICE
-   x11-libs/libXau
-   x11-libs/libSM
-   x11-libs/libX11
-   x11-libs/libXt
-   )"
-DEPEND="${RDEPEND}"
-
-src_configure() {
-   use !elibc_glibc && use !elibc_musl && append-libs "-liconv" #447688
-   local myeconfargs=(
-   --sysconfdir="${EPREFIX}"/etc/mtools
-   $(use_with X x)
-   )
-   econf "${myeconfargs[@]}"
-}
-
-src_install() {
-   local -a DOCS=( README* Release.notes )
-   default
-
-   insinto /etc/mtools
-   doins mtools.conf
-
-   # default is fine
-   sed -i -e '/^SAMPLE FILE$/s:^:#:' "${ED}"/etc/mtools/mtools.conf || die
-}

diff --git a/sys-fs/mtools/mtools-4.0.30.ebuild 
b/sys-fs/mtools/mtools-4.0.30.ebuild
deleted file mode 100644
index 3ebdd3b6df9..000
--- a/sys-fs/mtools/mtools-4.0.30.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-inherit flag-o-matic
-
-DESCRIPTION="utilities to access MS-DOS disks from Unix without mounting them"
-HOMEPAGE="https://www.gnu.org/software/mtools/ 
https://savannah.gnu.org/projects/mtools;
-SRC_URI="mirror://gnu/${PN}/${P}.tar.bz2"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 
~x64-macos ~x64-solaris"
-IUSE="X elibc_glibc"
-
-RDEPEND="
-   !elibc_glibc? ( virtual/libiconv )
-   X? (
-   x11-libs/libICE
-   x11-libs/libXau
-   x11-libs/libSM
-   x11-libs/libX11
-   x11-libs/libXt
-   )"
-DEPEND="${RDEPEND}"
-
-src_configure() {
-   use !elibc_glibc && use !elibc_musl && append-libs "-liconv" #447688
-   local myeconfargs=(
-   --sysconfdir="${EPREFIX}"/etc/mtools
-   

[gentoo-commits] proj/releng:master commit in: releases/specs/amd64/

2021-07-10 Thread Andreas K. Hüttel
commit: d3d84cf63e804b6014e522d2d2c880ffc999ed75
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat Jul 10 20:35:17 2021 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Sat Jul 10 20:35:17 2021 +
URL:https://gitweb.gentoo.org/proj/releng.git/commit/?id=d3d84cf6

amd64: fix installcd source file name

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

 releases/specs/amd64/installcd-stage1.spec | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/releases/specs/amd64/installcd-stage1.spec 
b/releases/specs/amd64/installcd-stage1.spec
index f57e4e14..a9e94257 100644
--- a/releases/specs/amd64/installcd-stage1.spec
+++ b/releases/specs/amd64/installcd-stage1.spec
@@ -4,7 +4,7 @@ target: livecd-stage1
 rel_type: default
 profile: default/linux/amd64/17.1/no-multilib
 snapshot: @TIMESTAMP@
-source_subpath: default/stage3-amd64-@TIMESTAMP@
+source_subpath: default/stage3-amd64-openrc-@TIMESTAMP@
 compression_mode: pixz_x
 portage_confdir: @REPO_DIR@/releases/portage/isos
 



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

2021-07-10 Thread Andreas K. Hüttel
commit: 54ef1a5dbcb5e4da2ab09a2145903d0cef6f8593
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat Jul 10 20:01:17 2021 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Sat Jul 10 20:04:55 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54ef1a5d

dev-perl/constant-defer: remove old

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

 .../constant-defer/constant-defer-6.0.0.ebuild | 31 --
 1 file changed, 31 deletions(-)

diff --git a/dev-perl/constant-defer/constant-defer-6.0.0.ebuild 
b/dev-perl/constant-defer/constant-defer-6.0.0.ebuild
deleted file mode 100644
index 817eb3e8e17..000
--- a/dev-perl/constant-defer/constant-defer-6.0.0.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DIST_AUTHOR="KRYDE"
-DIST_VERSION="6"
-inherit perl-module
-
-DESCRIPTION="constant subs with deferred value calculation"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 x86"
-IUSE="test examples"
-RESTRICT="!test? ( test )"
-
-RDEPEND="virtual/perl-Carp"
-DEPEND="virtual/perl-ExtUtils-MakeMaker
-   virtual/perl-Exporter
-   test? ( virtual/perl-Data-Dumper
-   virtual/perl-Test
-   virtual/perl-Test-Simple )"
-
-src_install() {
-   perl-module_src_install
-   if use examples; then
-   docompress -x /usr/share/doc/${PF}/examples
-   dodoc -r examples
-   fi
-}



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

2021-07-10 Thread Andreas K. Hüttel
commit: e7ea9bee481b997ca5e93fa0db69f0db26e12676
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat Jul 10 19:57:57 2021 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Sat Jul 10 20:04:46 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7ea9bee

dev-perl/capitalization: stable for all

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

 dev-perl/capitalization/capitalization-0.30.0-r2.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-perl/capitalization/capitalization-0.30.0-r2.ebuild 
b/dev-perl/capitalization/capitalization-0.30.0-r2.ebuild
index 55df105eac6..3b22816dd7f 100644
--- a/dev-perl/capitalization/capitalization-0.30.0-r2.ebuild
+++ b/dev-perl/capitalization/capitalization-0.30.0-r2.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 DIST_AUTHOR=MIYAGAWA
 DIST_VERSION=0.03
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="no capitalization on method names"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~hppa ~ia64 ppc sparc x86"
 
 RDEPEND="dev-perl/Devel-Symdump"
 BDEPEND="${RDEPEND}"



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

2021-07-10 Thread Andreas K. Hüttel
commit: 61566897df10851e462de81713f6fb888be15083
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat Jul 10 20:01:02 2021 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Sat Jul 10 20:04:52 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61566897

dev-perl/constant-defer: stable for x86

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

 dev-perl/constant-defer/constant-defer-6.0.0-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-perl/constant-defer/constant-defer-6.0.0-r1.ebuild 
b/dev-perl/constant-defer/constant-defer-6.0.0-r1.ebuild
index 4910aca9d3e..a25e293c9d6 100644
--- a/dev-perl/constant-defer/constant-defer-6.0.0-r1.ebuild
+++ b/dev-perl/constant-defer/constant-defer-6.0.0-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
@@ -12,7 +12,7 @@ DESCRIPTION="constant subs with deferred value calculation"
 
 LICENSE="GPL-3+"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE="test examples"
 RESTRICT="!test? ( test )"
 



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

2021-07-10 Thread Andreas K. Hüttel
commit: 31ce70f1f2809b46339412dc647870d27f1163c6
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat Jul 10 19:58:15 2021 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Sat Jul 10 20:04:49 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31ce70f1

dev-perl/capitalization: remove old

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

 .../capitalization/capitalization-0.30.0-r1.ebuild| 19 ---
 1 file changed, 19 deletions(-)

diff --git a/dev-perl/capitalization/capitalization-0.30.0-r1.ebuild 
b/dev-perl/capitalization/capitalization-0.30.0-r1.ebuild
deleted file mode 100644
index da4fe24f815..000
--- a/dev-perl/capitalization/capitalization-0.30.0-r1.ebuild
+++ /dev/null
@@ -1,19 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-MODULE_AUTHOR=MIYAGAWA
-MODULE_VERSION=0.03
-inherit perl-module
-
-DESCRIPTION="no capitalization on method names"
-
-SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ~ia64 ppc sparc x86"
-IUSE=""
-
-RDEPEND="dev-perl/Devel-Symdump"
-DEPEND="${RDEPEND}"
-
-SRC_TEST="do"



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

2021-07-10 Thread Andreas K. Hüttel
commit: 21d2435bcf5f0d8291d14f7bc75c27983aacda62
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat Jul 10 19:44:17 2021 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Sat Jul 10 20:04:39 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21d2435b

dev-perl/MusicBrainz-DiscID: Version bump 0.06

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

 dev-perl/MusicBrainz-DiscID/Manifest   |  1 +
 .../MusicBrainz-DiscID-0.60.0.ebuild   | 29 ++
 2 files changed, 30 insertions(+)

diff --git a/dev-perl/MusicBrainz-DiscID/Manifest 
b/dev-perl/MusicBrainz-DiscID/Manifest
index cdaa7a36542..56cab4347f0 100644
--- a/dev-perl/MusicBrainz-DiscID/Manifest
+++ b/dev-perl/MusicBrainz-DiscID/Manifest
@@ -1 +1,2 @@
 DIST MusicBrainz-DiscID-0.04.tar.gz 6907 BLAKE2B 
1dc163515af1818816d223da5090dec67cf1102311370de0658d15488d5551207b27f8b817727f3ddad2a64f3f792cf1e094ace460fd3db7d4eb1b06fdeea18d
 SHA512 
ccf93205f3485fa19e22cee079b2615326384513dc773f5d242216b680317d2d35d3a2421e46bc17651d8d7797a4d01bd3c2c0ae603a1d1e550ac2a558163125
+DIST MusicBrainz-DiscID-0.06.tar.gz 6663 BLAKE2B 
b5cb0820a37e30b33c27e2a57a28ae8143b4d60c3299e534dfdbade798afdc56d9905bfda044e5fdc08f77d56c2caece546e3245a17bf4960dd814d96485a210
 SHA512 
85483603c111d39f7e6490808817416612a96a0dc3d20ad432e7bd1e39ca0a21d4044dd4e25ff41eb713e4b0dd97c0cb1c486cb7a2c730369df9b782e61ec483

diff --git a/dev-perl/MusicBrainz-DiscID/MusicBrainz-DiscID-0.60.0.ebuild 
b/dev-perl/MusicBrainz-DiscID/MusicBrainz-DiscID-0.60.0.ebuild
new file mode 100644
index 000..6c52e7782e3
--- /dev/null
+++ b/dev-perl/MusicBrainz-DiscID/MusicBrainz-DiscID-0.60.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=NJH
+DIST_VERSION=0.06
+DIST_EXAMPLES=("examples/*")
+inherit perl-module
+
+DESCRIPTION="Perl interface for the MusicBrainz libdiscid library"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+
+RDEPEND=">=media-libs/libdiscid-0.2.2"
+DEPEND="${RDEPEND}
+"
+BDEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+   virtual/pkgconfig
+   test? (
+   >=virtual/perl-Test-1.0.0
+   virtual/perl-Test-Simple
+   )
+"
+
+PERL_RM_FILES=( t/05pod.t )



  1   2   3   >