[gentoo-commits] repo/gentoo:master commit in: dev-cpp/sol2/, dev-cpp/sol2/files/

2021-07-13 Thread Ionen Wolkens
commit: 35da96df067a8a2cb5f983830b0f63f744000820
Author: Alexey Sokolov  asokolov  org>
AuthorDate: Sun Jul 11 23:29:46 2021 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Wed Jul 14 05:46:17 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35da96df

dev-cpp/sol2: new package 3.2.2

games-engines/openmw-0.48 will depend on it

Package-Manager: Portage-3.0.20, Repoman-3.0.2
Signed-off-by: Alexey Sokolov  asokolov.org>
Signed-off-by: Ionen Wolkens  gentoo.org>

 dev-cpp/sol2/Manifest  |  2 +
 dev-cpp/sol2/files/sol2-3.2.2-catch-depend.patch   | 27 +++
 dev-cpp/sol2/files/sol2-3.2.2-luajit-pkgconf.patch | 17 +
 dev-cpp/sol2/metadata.xml  | 19 +
 dev-cpp/sol2/sol2-3.2.2.ebuild | 83 ++
 5 files changed, 148 insertions(+)

diff --git a/dev-cpp/sol2/Manifest b/dev-cpp/sol2/Manifest
new file mode 100644
index 000..b298932cab9
--- /dev/null
+++ b/dev-cpp/sol2/Manifest
@@ -0,0 +1,2 @@
+DIST sol2-3.2.2-gcc11.patch 24788 BLAKE2B 
bc50d638c6414d86af7a744c26c3eae05400d593caeca725d3d15e81a76bcb22817994cdbb884c795aaa157e8c3de0753e38c6352e57dc081e001e8e245aa9a7
 SHA512 
98bb29cf7e89306ed7e9d350dc924b5fa10d51cb7ff4eb3ac873775d17c3b8849a37d6c1566fe9eb18222b524d648b4268d513fb0a2e7d272a4a6032eda10930
+DIST sol2-3.2.2.tar.gz 8531029 BLAKE2B 
65fd220f5109e4917d06d5ef906ceccb7e292276f69bd49dfd826089a77e566af1811fdf660ffbfbd2437dca4b86ef5c4790dace9029805926e1ee0445b2e965
 SHA512 
e5a739b37aea7150f141f6a003c2689dd33155feed5bb3cf2569abbfe9f0062eacdaaf346be523d627f0e491b35e68822c80e1117fa09ece8c9d8d5af09fdbec

diff --git a/dev-cpp/sol2/files/sol2-3.2.2-catch-depend.patch 
b/dev-cpp/sol2/files/sol2-3.2.2-catch-depend.patch
new file mode 100644
index 000..2da3c00c161
--- /dev/null
+++ b/dev-cpp/sol2/files/sol2-3.2.2-catch-depend.patch
@@ -0,0 +1,27 @@
+Use catch library from system
+
+--- a/tests/runtime_tests/CMakeLists.txt
 b/tests/runtime_tests/CMakeLists.txt
+@@ -22,12 +22,6 @@
+ 
+ # # # # sol3 tests - runtime tests
+ 
+-if (CMAKE_GENERATOR MATCHES "Visual Studio 14 2015")
+-  find_package(Catch 1.12.1 REQUIRED)
+-else()
+-  find_package(Catch REQUIRED)
+-endif()
+-
+ file(GLOB SOL2_RUNTIME_TEST_SOURCES source/*.cpp)
+ source_group(test_sources FILES ${SOL2_RUNTIME_TEST_SOURCES})
+ 
+@@ -38,7 +32,8 @@ function(CREATE_TEST test_target_name test_name target_sol)
+   OUTPUT_NAME ${test_name}
+   EXPORT_NAME sol2::${test_name})
+   target_link_libraries(${test_target_name} 
+-  PUBLIC Threads::Threads ${LUA_LIBRARIES} ${CATCH_LIBRARIES} 
${target_sol})
++  PUBLIC Threads::Threads ${LUA_LIBRARIES} ${target_sol})
++  target_include_directories(${test_target_name} PRIVATE ${CATCH_INC_DIR})
+   
+   if (MSVC)
+   if (NOT CMAKE_COMPILER_ID MATCHES "Clang")

diff --git a/dev-cpp/sol2/files/sol2-3.2.2-luajit-pkgconf.patch 
b/dev-cpp/sol2/files/sol2-3.2.2-luajit-pkgconf.patch
new file mode 100644
index 000..9b9c9f10176
--- /dev/null
+++ b/dev-cpp/sol2/files/sol2-3.2.2-luajit-pkgconf.patch
@@ -0,0 +1,17 @@
+Use the lua version selected by lua eclass
+
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -188,7 +188,11 @@ if (SOL2_IS_TOP_LEVEL AND (SOL2_DO_TESTS OR 
SOL2_DO_EXAMPLES))
+ 
+   string(TOLOWER ${SOL2_LUA_VERSION} NORMALIZED_LUA_VERSION)
+   # Find way to get Lua: build if requested, or attempt to build if no 
matching version is found
+-  if (SOL2_BUILD_LUA)
++  if (TRUE)
++  find_package(PkgConfig REQUIRED)
++  pkg_check_modules(LUA REQUIRED lua IMPORTED_TARGET)
++  set(LUA_LIBRARIES PkgConfig::LUA)
++  elseif (SOL2_BUILD_LUA)
+   find_package(LuaBuild REQUIRED COMPONENTS ${SOL2_LUA_VERSION})
+   elseif (NOT SOL2_LUA_VERSION)
+   find_package(LuaBuild REQUIRED)

diff --git a/dev-cpp/sol2/metadata.xml b/dev-cpp/sol2/metadata.xml
new file mode 100644
index 000..4376dd4a461
--- /dev/null
+++ b/dev-cpp/sol2/metadata.xml
@@ -0,0 +1,19 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   alexey+gen...@asokolov.org
+   Alexey Sokolov
+   
+   
+   proxy-ma...@gentoo.org
+   Proxy Maintainers
+   
+   
+   ga...@gentoo.org
+   Gentoo Games Project
+   
+   
+   ThePhD/sol2
+   
+

diff --git a/dev-cpp/sol2/sol2-3.2.2.ebuild b/dev-cpp/sol2/sol2-3.2.2.ebuild
new file mode 100644
index 000..4a8b270ac71
--- /dev/null
+++ b/dev-cpp/sol2/sol2-3.2.2.ebuild
@@ -0,0 +1,83 @@
+# Copyright 2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+LUA_COMPAT=( lua5-{1,3,4} luajit )
+inherit cmake lua
+
+DESCRIPTION="Header-only C++ <-> Lua API wrapper"
+HOMEPAGE="https://github.com/ThePhD/sol2;
+SRC_URI="
+   

[gentoo-commits] repo/gentoo:master commit in: games-engines/openmw/

2021-07-13 Thread Ionen Wolkens
commit: 1bebdf7b67974441a745e299d644dbf7f1c96eb3
Author: Alexey Sokolov  asokolov  org>
AuthorDate: Sun Jul 11 23:34:09 2021 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Wed Jul 14 05:46:21 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1bebdf7b

games-engines/openmw: add lua support

Package-Manager: Portage-3.0.20, Repoman-3.0.2
Signed-off-by: Alexey Sokolov  asokolov.org>
Closes: https://github.com/gentoo/gentoo/pull/21606
Signed-off-by: Ionen Wolkens  gentoo.org>

 games-engines/openmw/openmw-.ebuild | 25 ++---
 1 file changed, 22 insertions(+), 3 deletions(-)

diff --git a/games-engines/openmw/openmw-.ebuild 
b/games-engines/openmw/openmw-.ebuild
index 9b13f4d95f9..82aa73331fd 100644
--- a/games-engines/openmw/openmw-.ebuild
+++ b/games-engines/openmw/openmw-.ebuild
@@ -3,7 +3,8 @@
 
 EAPI=7
 
-inherit cmake flag-o-matic xdg-utils readme.gentoo-r1
+LUA_COMPAT=( lua5-{1,3,4} luajit )
+inherit cmake flag-o-matic lua-single xdg-utils readme.gentoo-r1
 
 DESCRIPTION="Open source reimplementation of TES III: Morrowind"
 HOMEPAGE="https://openmw.org/ https://gitlab.com/OpenMW/openmw;
@@ -20,12 +21,13 @@ fi
 LICENSE="GPL-3 MIT BitstreamVera ZLIB"
 SLOT="0"
 IUSE="doc devtools +osg-fork test +qt5"
+REQUIRED_USE="${LUA_REQUIRED_USE}"
 RESTRICT="!test? ( test )"
 
 # FIXME: Unbundle dev-games/openscenegraph-qt in extern/osgQt directory,
 # used when BUILD_OPENCS flag is enabled. See bug #676266.
 
-RDEPEND="
+RDEPEND="${LUA_DEPS}
app-arch/lz4
dev-games/mygui
dev-games/recastnavigation
@@ -48,7 +50,9 @@ RDEPEND="
)
 "
 
-DEPEND="${RDEPEND}"
+DEPEND="${RDEPEND}
+   dev-cpp/sol2
+"
 
 BDEPEND="
virtual/pkgconfig
@@ -70,6 +74,7 @@ src_prepare() {
 
# Use the system tinyxml headers
rm -v extern/oics/tiny{str,xml}* || die
+   rm -rv extern/sol3.2.2 || die
 }
 
 src_configure() {
@@ -96,6 +101,20 @@ src_configure() {
-DBULLET_USE_DOUBLES=ON
)
 
+   if [[ ${ELUA} == luajit ]]; then
+   mycmakeargs+=(
+   -DUSE_LUAJIT=ON
+   )
+   else
+   mycmakeargs+=(
+   -DUSE_LUAJIT=OFF
+   -DLua_FIND_VERSION_MAJOR=$(ver_cut 1 $(lua_get_version))
+   -DLua_FIND_VERSION_MINOR=$(ver_cut 2 $(lua_get_version))
+   -DLua_FIND_VERSION_COUNT=2
+   -DLua_FIND_VERSION_EXACT=ON
+   )
+   fi
+
cmake_src_configure
 }
 



[gentoo-commits] repo/gentoo:master commit in: dev-cpp/sol2/files/, dev-cpp/sol2/

2021-07-13 Thread Ionen Wolkens
commit: 16dbaad166c01dc830f0d42c4d915c1f5b18f775
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Wed Jul 14 03:22:56 2021 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Wed Jul 14 05:46:21 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16dbaad1

dev-cpp/sol2: use smaller gcc11 patch

Upstream's commit that fixes this has too many unrelated changes.

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

 dev-cpp/sol2/Manifest |  1 -
 dev-cpp/sol2/files/sol2-3.2.2-gcc11.patch | 10 ++
 dev-cpp/sol2/sol2-3.2.2.ebuild|  7 ++-
 3 files changed, 12 insertions(+), 6 deletions(-)

diff --git a/dev-cpp/sol2/Manifest b/dev-cpp/sol2/Manifest
index b298932cab9..88055ed75b0 100644
--- a/dev-cpp/sol2/Manifest
+++ b/dev-cpp/sol2/Manifest
@@ -1,2 +1 @@
-DIST sol2-3.2.2-gcc11.patch 24788 BLAKE2B 
bc50d638c6414d86af7a744c26c3eae05400d593caeca725d3d15e81a76bcb22817994cdbb884c795aaa157e8c3de0753e38c6352e57dc081e001e8e245aa9a7
 SHA512 
98bb29cf7e89306ed7e9d350dc924b5fa10d51cb7ff4eb3ac873775d17c3b8849a37d6c1566fe9eb18222b524d648b4268d513fb0a2e7d272a4a6032eda10930
 DIST sol2-3.2.2.tar.gz 8531029 BLAKE2B 
65fd220f5109e4917d06d5ef906ceccb7e292276f69bd49dfd826089a77e566af1811fdf660ffbfbd2437dca4b86ef5c4790dace9029805926e1ee0445b2e965
 SHA512 
e5a739b37aea7150f141f6a003c2689dd33155feed5bb3cf2569abbfe9f0062eacdaaf346be523d627f0e491b35e68822c80e1117fa09ece8c9d8d5af09fdbec

diff --git a/dev-cpp/sol2/files/sol2-3.2.2-gcc11.patch 
b/dev-cpp/sol2/files/sol2-3.2.2-gcc11.patch
new file mode 100644
index 000..cc8c6bb1b4f
--- /dev/null
+++ b/dev-cpp/sol2/files/sol2-3.2.2-gcc11.patch
@@ -0,0 +1,10 @@
+Add missing include needed for tests (and possibly consumers) with gcc11.
+
+Fixed upstream in:
+https://github.com/ThePhD/sol2/commit/e5e6466e09b632677d24a8f204d6a0ea0a8862b1
+--- a/include/sol/stack_core.hpp
 b/include/sol/stack_core.hpp
+@@ -42,2 +42,3 @@
+ #include 
++#include 
+ #include 

diff --git a/dev-cpp/sol2/sol2-3.2.2.ebuild b/dev-cpp/sol2/sol2-3.2.2.ebuild
index 4a8b270ac71..8af75c6deec 100644
--- a/dev-cpp/sol2/sol2-3.2.2.ebuild
+++ b/dev-cpp/sol2/sol2-3.2.2.ebuild
@@ -8,10 +8,7 @@ inherit cmake lua
 
 DESCRIPTION="Header-only C++ <-> Lua API wrapper"
 HOMEPAGE="https://github.com/ThePhD/sol2;
-SRC_URI="
-   https://github.com/ThePhD/sol2/archive/refs/tags/v${PV}.tar.gz -> 
${P}.tar.gz
-   
https://github.com/ThePhD/sol2/commit/e5e6466e09b632677d24a8f204d6a0ea0a8862b1.patch
 -> ${P}-gcc11.patch
-"
+SRC_URI="https://github.com/ThePhD/sol2/archive/refs/tags/v${PV}.tar.gz -> 
${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
@@ -33,7 +30,7 @@ BDEPEND="
 "
 
 PATCHES=(
-   "${DISTDIR}"/${P}-gcc11.patch
+   "${FILESDIR}"/${P}-gcc11.patch
"${FILESDIR}"/${P}-luajit-pkgconf.patch
"${FILESDIR}"/${P}-catch-depend.patch
 )



[gentoo-commits] repo/gentoo:master commit in: dev-util/cucumber-create-meta/

2021-07-13 Thread Hans de Graaff
commit: 7f5a950ad1ee6a45e3e13d3b7bf75104659e8682
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Jul 13 10:33:06 2021 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Wed Jul 14 05:39:43 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f5a950a

dev-util/cucumber-create-meta: import of 4.0.0

New dependency for dev-util/cucumber

Package-Manager: Portage-3.0.20, Repoman-3.0.2
Signed-off-by: Hans de Graaff  gentoo.org>

 dev-util/cucumber-create-meta/Manifest |  1 +
 .../cucumber-create-meta-4.0.0.ebuild  | 26 ++
 dev-util/cucumber-create-meta/metadata.xml | 10 +
 3 files changed, 37 insertions(+)

diff --git a/dev-util/cucumber-create-meta/Manifest 
b/dev-util/cucumber-create-meta/Manifest
new file mode 100644
index 000..6cc5801a941
--- /dev/null
+++ b/dev-util/cucumber-create-meta/Manifest
@@ -0,0 +1 @@
+DIST cucumber-create-meta-4.0.0.gem 8192 BLAKE2B 
4809b0f9ec7f922af374ac46bd9d0cb9797f48738596f00c08bf3d861a19141160032421715d4d141b1b1854e77f3798d09308f626188c3ef6b30a491fadcd29
 SHA512 
0103b8277741d4eb2e590e1d7f9231187482d32f9a2c19c837baab759b3c48c11a39ac7af686d56fefb7b79120110e930c9af25fb895294529a3b5b0612a5b63

diff --git a/dev-util/cucumber-create-meta/cucumber-create-meta-4.0.0.ebuild 
b/dev-util/cucumber-create-meta/cucumber-create-meta-4.0.0.ebuild
new file mode 100644
index 000..afd973929fd
--- /dev/null
+++ b/dev-util/cucumber-create-meta/cucumber-create-meta-4.0.0.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+USE_RUBY="ruby26 ruby27"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+
+inherit ruby-fakegem
+
+DESCRIPTION="HTML formatter for Cucumber"
+HOMEPAGE="https://cucumber.io/;
+LICENSE="Ruby"
+
+KEYWORDS="~amd64"
+SLOT="$(ver_cut 1)"
+IUSE="test"
+
+ruby_add_rdepend "
+   >=dev-util/cucumber-messages-15.0.0:15
+   >=dev-ruby/sys-uname-1.2.2:1
+"
+
+all_ruby_prepare() {
+   sed -i -e '1igem "cucumber-messages", "~>15.0"' 
spec/cucumber/create_meta_spec.rb || die
+}

diff --git a/dev-util/cucumber-create-meta/metadata.xml 
b/dev-util/cucumber-create-meta/metadata.xml
new file mode 100644
index 000..06c13e2d2e3
--- /dev/null
+++ b/dev-util/cucumber-create-meta/metadata.xml
@@ -0,0 +1,10 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   gra...@gentoo.org
+   
+   
+   aslakhellesoy/cucumber
+   
+



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

2021-07-13 Thread Miroslav Šulc
commit: 237b0c147c952491644d72e48e2716e3baa6d8d9
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Wed Jul 14 05:18:10 2021 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Wed Jul 14 05:18:10 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=237b0c14

media-sound/mpg123: removed obsolete 1.27.2

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

 media-sound/mpg123/Manifest |   1 -
 media-sound/mpg123/mpg123-1.27.2.ebuild | 105 
 2 files changed, 106 deletions(-)

diff --git a/media-sound/mpg123/Manifest b/media-sound/mpg123/Manifest
index 4b32936a06c..cebc17f9734 100644
--- a/media-sound/mpg123/Manifest
+++ b/media-sound/mpg123/Manifest
@@ -1,4 +1,3 @@
-DIST mpg123-1.27.2.tar.bz2 1067102 BLAKE2B 
14da616ffd9e798f07f8eaa00080a1a5ff8cf3c3c7436cc83c8f2264317a30a88ee98ddd0ac077c43672887daff447bf10d287be72a5c7d1a4d5580c90e68298
 SHA512 
b1c7de0c1b1d14cce3b3ba72e7454b7ce392443a3eaace0431381f1871e2fda1470b8efd07176057f8bf76d88f14c2b7ffae470ba34a3271c7e779277b86d6c0
 DIST mpg123-1.28.0.tar.bz2 1063321 BLAKE2B 
a4fa37ac9c3aca867ac4f18eea9c2d39ed80c7e86908b2f5399da8ae82c2e4b57c1a041f17427702da14af9902051ce4de5a85497f7236963ae390ef8715327a
 SHA512 
4e333ee4f3bbebcfff280cf286265e969a8da93b9043d03c0189e22cd40918b07bf12181bd06141d4479c78bc0d0ed472e0d3bb61b2fdb96fe9f7cd48f9a6b77
 DIST mpg123-1.28.1.tar.bz2 1066558 BLAKE2B 
4516ed6cafda21aaaf132266b91ae235ca0b911a79c4514c0588c030f4f5f2f3923153729f1fc3354cb5fa982ca8dc27ba6cb58fa884da379a8913c8119e8bd2
 SHA512 
af1fb96878a7b57f62f06445e9b888cbecc569a91fe118459c71415f62287f9d9de9b0d0663522cb181e1a21692d64d0a810d8aebfa6e085eb76926d7a2186f9
 DIST mpg123-1.28.2.tar.bz2 1065867 BLAKE2B 
2fc585598e49334b608c2a8487b40b599dc1a57afc53249975a339dbc381b968cc099d4274fb74872d3c4c54d1a6ee1858c4b00c78feb93809c823cc56398661
 SHA512 
45ac11c5997d13f80917e135a40d2fb4448703dad56271dfe8ce7c8dea339cbac7727ec121779040bd7a07fc4ea79086860ea4a8ec879eda3bdcbf7d57348cda

diff --git a/media-sound/mpg123/mpg123-1.27.2.ebuild 
b/media-sound/mpg123/mpg123-1.27.2.ebuild
deleted file mode 100644
index 4d8fe02781d..000
--- a/media-sound/mpg123/mpg123-1.27.2.ebuild
+++ /dev/null
@@ -1,105 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit flag-o-matic toolchain-funcs libtool multilib-minimal
-
-DESCRIPTION="a realtime MPEG 1.0/2.0/2.5 audio player for layers 1, 2 and 3"
-HOMEPAGE="https://www.mpg123.org/;
-SRC_URI="https://www.mpg123.org/download/${P}.tar.bz2;
-
-LICENSE="GPL-2 LGPL-2.1"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x86-solaris"
-IUSE="cpu_flags_x86_3dnow cpu_flags_x86_3dnowext cpu_flags_ppc_altivec alsa 
coreaudio int-quality ipv6 jack cpu_flags_x86_mmx nas oss portaudio pulseaudio 
sdl cpu_flags_x86_sse"
-
-# No MULTILIB_USEDEP here since we only build libmpg123 for non native ABIs.
-RDEPEND="
-   app-eselect/eselect-mpg123
-   dev-libs/libltdl:0
-   alsa? ( media-libs/alsa-lib )
-   jack? ( virtual/jack )
-   nas? ( media-libs/nas )
-   portaudio? ( media-libs/portaudio )
-   pulseaudio? ( media-sound/pulseaudio )
-   sdl? ( media-libs/libsdl )"
-DEPEND="${RDEPEND}"
-BDEPEND="
-   sys-devel/libtool
-   virtual/pkgconfig
-"
-
-DOCS=( AUTHORS ChangeLog NEWS NEWS.libmpg123 README )
-
-src_prepare() {
-   default
-   elibtoolize # for Darwin bundles
-}
-
-multilib_src_configure() {
-   local _audio=dummy
-   local _output=dummy
-   local _cpu=generic_fpu
-
-   # Build fails without -D_GNU_SOURCE like this:
-   # error: ‘struct hostent’ has no member named ‘h_addr’
-   append-cflags -D_GNU_SOURCE
-
-   if $(multilib_is_native_abi) ; then
-   local flag
-   for flag in nas portaudio sdl oss jack alsa pulseaudio 
coreaudio; do
-   if use ${flag}; then
-   _audio+=" ${flag/pulseaudio/pulse}"
-   _output=${flag/pulseaudio/pulse}
-   fi
-   done
-   fi
-
-   use cpu_flags_ppc_altivec && _cpu=altivec
-
-   if [[ $(tc-arch) == amd64 || ${ARCH} == x64-* ]]; then
-   use cpu_flags_x86_sse && _cpu=x86-64
-   elif use x86 && gcc-specs-pie ; then
-   # Don't use any mmx, 3dnow, sse and 3dnowext
-   # bug #164504
-   _cpu=generic_fpu
-   else
-   use cpu_flags_x86_mmx && _cpu=mmx
-   use cpu_flags_x86_3dnow && _cpu=3dnow
-   use cpu_flags_x86_sse && _cpu=x86
-   use cpu_flags_x86_3dnowext && _cpu=x86
-   fi
-
-   local myconf=(
-   --with-optimization=0
-   --with-audio="${_audio}"
-   --with-default-audio=${_output}
-   

[gentoo-commits] repo/gentoo:master commit in: net-proxy/dante/

2021-07-13 Thread Sam James
commit: d0fbca3b28cb579499578bc1577abc5adabb44a5
Author: Sam James  gentoo  org>
AuthorDate: Wed Jul 14 05:00:14 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jul 14 05:00:53 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0fbca3b

net-proxy/dante: add missing libcrypt dependency

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

 net-proxy/dante/{dante-1.4.1-r5.ebuild => dante-1.4.1-r6.ebuild} | 1 +
 1 file changed, 1 insertion(+)

diff --git a/net-proxy/dante/dante-1.4.1-r5.ebuild 
b/net-proxy/dante/dante-1.4.1-r6.ebuild
similarity index 99%
rename from net-proxy/dante/dante-1.4.1-r5.ebuild
rename to net-proxy/dante/dante-1.4.1-r6.ebuild
index 76bd958c87e..6b433c56f7a 100644
--- a/net-proxy/dante/dante-1.4.1-r5.ebuild
+++ b/net-proxy/dante/dante-1.4.1-r6.ebuild
@@ -15,6 +15,7 @@ KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc 
ppc64 ~s390 sparc x8
 IUSE="debug kerberos pam selinux static-libs tcpd upnp"
 
 CDEPEND="
+   virtual/libcrypt:=
kerberos? ( virtual/krb5 )
pam? ( sys-libs/pam )
tcpd? ( sys-apps/tcp-wrappers )



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

2021-07-13 Thread Joonas Niilola
commit: 9e30f79ce641822468a14601b024672e2432d914
Author: Joonas Niilola  gentoo  org>
AuthorDate: Wed Jul 14 04:59:45 2021 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Wed Jul 14 04:59:45 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e30f79c

dev-python/texttable: add 1.6.4

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

 dev-python/texttable/Manifest   |  1 +
 dev-python/texttable/texttable-1.6.4.ebuild | 28 
 2 files changed, 29 insertions(+)

diff --git a/dev-python/texttable/Manifest b/dev-python/texttable/Manifest
index dd5f58f12bc..f0c8b27431b 100644
--- a/dev-python/texttable/Manifest
+++ b/dev-python/texttable/Manifest
@@ -1 +1,2 @@
 DIST texttable-1.6.3.tar.gz 11574 BLAKE2B 
aebb306acb89f62963e9473ab6e22291a1ec93993a0106ddd2943f656737cb0960a10e680a69b6577ebb8ac0af3c6ecdfd8c58647a6ce37d9a6531e41f61f480
 SHA512 
89a26ef7d9947ec4edfc5791c91f2ac327c79bbc5aa0e0f89c0a63dbd80bc420027af073da935254faa143b9e8bef85a7bb352791b45b0cd60c7bcf569869f2d
+DIST texttable-1.6.4.tar.gz 11611 BLAKE2B 
a97a9beefc9547fe7487af5b6411effd7391e303a13161d7e1c9304a1b580cf47bb10c8649dfea5c6f8ba05bc6c3fd7595662e8b74b282696d9ee3a110746212
 SHA512 
300b02f5b682f1c09a3eb5abfd4ee9c724354505a3f9e8f68207fd7d244402f234437807d68b6b526c3d4ade9e527e66c921bcd47a5e86d680698d559da3fe1a

diff --git a/dev-python/texttable/texttable-1.6.4.ebuild 
b/dev-python/texttable/texttable-1.6.4.ebuild
new file mode 100644
index 000..31621be8f4f
--- /dev/null
+++ b/dev-python/texttable/texttable-1.6.4.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7..10} )
+
+inherit distutils-r1 optfeature
+
+DESCRIPTION="Module for creating simple ASCII tables"
+HOMEPAGE="https://github.com/foutaise/texttable 
https://pypi.org/project/texttable/;
+SRC_URI="https://github.com/foutaise/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+
+RDEPEND="dev-python/wcwidth[${PYTHON_USEDEP}]"
+
+distutils_enable_tests pytest
+
+python_test() {
+   pytest -vv tests.py || die
+}
+
+pkg_postinst() {
+   optfeature "better wrapping of CJK text" dev-python/cjkwrap
+}



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

2021-07-13 Thread Sam James
commit: 2275340eb63f5f974ad11fb14040cdf7f89d0551
Author: Sam James  gentoo  org>
AuthorDate: Wed Jul 14 04:51:06 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jul 14 04:52:57 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2275340e

dev-libs/libxml2: fix libcrypt QA warning false positive

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

 dev-libs/libxml2/Manifest |   1 +
 dev-libs/libxml2/libxml2-2.9.12-r4.ebuild | 254 ++
 2 files changed, 255 insertions(+)

diff --git a/dev-libs/libxml2/Manifest b/dev-libs/libxml2/Manifest
index 92c97c365e0..282d68582d1 100644
--- a/dev-libs/libxml2/Manifest
+++ b/dev-libs/libxml2/Manifest
@@ -2,6 +2,7 @@ DIST libxml2-2.9.10-r1-patchset.tar.xz 72088 BLAKE2B 
4d5f8aed35d6c0232089e09f22a
 DIST libxml2-2.9.10.tar.gz 5624761 BLAKE2B 
a9958bd7db17fbfb8259b64d66548eb19d28f1aecf40cf66752fcec5720855d31cea9941d52963badd8c18ea1770485f1c11da6213149458336ce0273418f421
 SHA512 
0adfd12bfde89cbd6296ba6e66b6bed4edb814a74b4265bda34d95c41d9d92c696ee7adb0c737aaf9cc6e10426a31a35079b2a23d26c074e299858da12c072ed
 DIST libxml2-2.9.12-r2-patchset.tar.bz2 5939 BLAKE2B 
e518a174385a121ca5545d0a51c2a2b4ddd21b1e7996e2806f368588b27d60e8318ab50ebfb90c3ee57ccece4f1c37e05c1daeed4203a4e9cb5a056ba530ad2b
 SHA512 
06b96ab8426cd560c1147998965b5e718bee08536549a278269f6535ff1460ed97d83067ed0e8a4d834145a5e5a6caa912cf8aa5a33a360e4b1bc9d9135bfb04
 DIST libxml2-2.9.12-r3-patchset.tar.bz2 6281 BLAKE2B 
b7038f85009afdacc2fcf0b9cf30f915f20a2c8dfbe3749c6e74c637191f97169ee46b26deac5e347230d956f2d5aded218d09f0232f23b39ef4ad5e2fd09f61
 SHA512 
8170462eb3ecd2f834650309498a4e586fb3edb3114f42b3c95e96dc2ca81181e70ccd1790c440bd7ef4f489a2311b99765dcd12d9fb52207a11fb4394409ae8
+DIST libxml2-2.9.12-r4-patchset.tar.bz2 7006 BLAKE2B 
64225a16346bff60f2bf3b6d32dffeec6887c44d308dd816d6de3b92ee7f7dd5599b5dfdae0b6ca9e056897c17b659ff36d170f972e1b6043ca3ec8de9c65050
 SHA512 
ca0734c894afc264851107c22a606b9094941a4452a946b769d6f7161b3301425da5bd3e26eeceb4e31e9721f76505aacf73eeaffa6699bb7395783915eff111
 DIST libxml2-2.9.12.tar.gz 5681632 BLAKE2B 
ab93633140e9fd119d3a48ed829a91213c3d7956a00d181203f5188fb0ed0d3a7150d3128fe986b13efadf6fe484393262a3de575527f38f74aa6c0067a6d934
 SHA512 
df1c6486e80f0fcf3c506f3599bcfb94b620c00d0b5d26831bc983daa78d58ec58b5057b1ec7c1a26c694f40199c6234ee2a6dcabf65abfa10c447cb5705abbd
 DIST libxml2-2.9.12.tar.gz.asc 488 BLAKE2B 
48ec86ec373d94de73bdb52141fc77fccd0ca296a35ed97aa3479ecdcf82b15422dd7d751359b5b1ca477e24b8eee9226784cfbfd861236e10eed2519e7959bf
 SHA512 
69ca6ab7170cad467724e19eff99a3544966a26069e78a7b7cc27ae93a9077b11cc8dad2536bd0b27c3b45f4ea7520c813fe5a018cd65f103059f7f75147a656
 DIST xmlts20080827.tar.gz 638940 BLAKE2B 
c5aab959c6e0698acd5b9be82b48a8ac26f4d01cc03f9acfff20d344f97f4711fc6d4a524ae70457147e8e30c72e27b6726829e1dd21896286aa974ed60774e7
 SHA512 
7325d0977c4427fc4944b291ccf896a665f654cc24399e5565c12a849c2bc3aef4fa3ee42a09ac115abcb6570c51a8fbd052c38d64d164279ecdecad5a4e884d

diff --git a/dev-libs/libxml2/libxml2-2.9.12-r4.ebuild 
b/dev-libs/libxml2/libxml2-2.9.12-r4.ebuild
new file mode 100644
index 000..975c32047f3
--- /dev/null
+++ b/dev-libs/libxml2/libxml2-2.9.12-r4.ebuild
@@ -0,0 +1,254 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+# Note: Please bump in sync with dev-libs/libxslt
+
+PATCHSET_VERSION="2.9.12-r4-patchset"
+
+PYTHON_COMPAT=( python3_{7,8,9} )
+PYTHON_REQ_USE="xml"
+VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/danielveillard.asc
+inherit autotools flag-o-matic prefix python-r1 multilib-minimal verify-sig
+
+XSTS_HOME="http://www.w3.org/XML/2004/xml-schema-test-suite;
+XSTS_NAME_1="xmlschema2002-01-16"
+XSTS_NAME_2="xmlschema2004-01-14"
+XSTS_TARBALL_1="xsts-2002-01-16.tar.gz"
+XSTS_TARBALL_2="xsts-2004-01-14.tar.gz"
+XMLCONF_TARBALL="xmlts20130923.tar.gz"
+DESCRIPTION="XML C parser and toolkit"
+HOMEPAGE="http://www.xmlsoft.org/ https://gitlab.gnome.org/GNOME/libxml2;
+SRC_URI="
+   ftp://xmlsoft.org/${PN}/${PN}-${PV/_rc/-rc}.tar.gz
+   
https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/${PN}-${PATCHSET_VERSION}.tar.bz2
+   test? (
+   ${XSTS_HOME}/${XSTS_NAME_1}/${XSTS_TARBALL_1}
+   ${XSTS_HOME}/${XSTS_NAME_2}/${XSTS_TARBALL_2}
+   https://www.w3.org/XML/Test/${XMLCONF_TARBALL}
+   )
+   verify-sig? ( ftp://xmlsoft.org/${PN}/${PN}-${PV/_rc/-rc}.tar.gz.asc )
+"
+S="${WORKDIR}/${PN}-${PV%_rc*}"
+
+LICENSE="MIT"
+SLOT="2"
+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"
+IUSE="debug examples icu ipv6 lzma +python readline static-libs test"
+RESTRICT="!test? ( test )"
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+BDEPEND="
+   

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

2021-07-13 Thread Sam James
commit: 5570cc427432efe0d2dec2f1054ee37ceb08492a
Author: Sam James  gentoo  org>
AuthorDate: Wed Jul 14 04:29:26 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jul 14 04:52:56 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5570cc42

dev-libs/newt: fix libcrypt QA warning false positive

* Fix LDFLAGS ordering (respect as-needed, similar to libxml2)
* Fix configure with non-Bash (dash here)

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

 .../newt-0.52.21-fix-non-POSIX-backticks.patch | 27 +++
 .../newt-0.52.21-makefile-LDFLAGS-ordering.patch   | 30 ++
 dev-libs/newt/newt-0.52.21-r1.ebuild   | 14 ++
 3 files changed, 66 insertions(+), 5 deletions(-)

diff --git a/dev-libs/newt/files/newt-0.52.21-fix-non-POSIX-backticks.patch 
b/dev-libs/newt/files/newt-0.52.21-fix-non-POSIX-backticks.patch
new file mode 100644
index 000..3d6b87030dd
--- /dev/null
+++ b/dev-libs/newt/files/newt-0.52.21-fix-non-POSIX-backticks.patch
@@ -0,0 +1,27 @@
+From a37a8c15f4653b4edea414f42a0d76f3b1f5652c Mon Sep 17 00:00:00 2001
+From: Sam James 
+Date: Wed, 14 Jul 2021 05:19:25 +0100
+Subject: [PATCH] Fix non-POSIX backticks
+
+---
+ configure.ac | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/configure.ac b/configure.ac
+index cb2b940..9ba4c64 100644
+--- a/configure.ac
 b/configure.ac
+@@ -23,8 +23,8 @@ AC_CHECK_SIZEOF([void *])
+ AC_MSG_CHECKING([for GNU ld])
+ LD=`$CC -print-prog-name=ld 2>&5`
+ 
+-if test `$LD -v 2>&1 | $ac_cv_path_GREP -c "GNU ld"` = 0 -a \
+-   test `$LD -v 2>&1 | $ac_cv_path_GREP -c "GNU gold"` = 0; then
++if test $($LD -v 2>&1 | $ac_cv_path_GREP -c "GNU ld") = 0 -a \
++   $($LD -v 2>&1 | $ac_cv_path_GREP -c "GNU gold") = 0; then
+   # Not
+   GNU_LD=""
+   AC_MSG_RESULT([no])
+-- 
+2.32.0
+

diff --git a/dev-libs/newt/files/newt-0.52.21-makefile-LDFLAGS-ordering.patch 
b/dev-libs/newt/files/newt-0.52.21-makefile-LDFLAGS-ordering.patch
new file mode 100644
index 000..f05075adb37
--- /dev/null
+++ b/dev-libs/newt/files/newt-0.52.21-makefile-LDFLAGS-ordering.patch
@@ -0,0 +1,30 @@
+From 22d44d2cbfcbec216d0028ebdf274247139a8045 Mon Sep 17 00:00:00 2001
+From: Sam James 
+Date: Wed, 14 Jul 2021 05:12:32 +0100
+Subject: [PATCH] Swap order of LDFLAGS and P*FLAGS
+
+Needed to respect as-needed.
+
+Bug: https://bugs.gentoo.org/798945
+---
+ Makefile.in | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/Makefile.in b/Makefile.in
+index 1047efc..f0bc417 100644
+--- a/Makefile.in
 b/Makefile.in
+@@ -97,8 +97,8 @@ _snack.$(SOEXT):   snack.c $(LIBNEWTSH)
+   PLFLAGS=`$$pyconfig --libs`; \
+   echo $(CC) $(SHCFLAGS) $(CPPFLAGS) $$PIFLAGS $$PCFLAGS -c -o 
$$ver/snack.o snack.c; \
+   $(CC) $(SHCFLAGS) $(CPPFLAGS) $$PIFLAGS $$PCFLAGS -c -o 
$$ver/snack.o snack.c; \
+-  echo $(CC) --shared $$PLDFLAGS $$PLFLAGS $(LDFLAGS) -o 
$$ver/_snack.$(SOEXT) $$ver/snack.o -L.  -lnewt $(LIBS); \
+-  $(CC) --shared $$PLDFLAGS $$PLFLAGS $(LDFLAGS) -o 
$$ver/_snack.$(SOEXT) $$ver/snack.o -L.  -lnewt $(LIBS); \
++  echo $(CC) --shared $(LDFLAGS) $$PLDFLAGS $$PLFLAGS -o 
$$ver/_snack.$(SOEXT) $$ver/snack.o -L.  -lnewt $(LIBS); \
++  $(CC) --shared $(LDFLAGS) $$PLDFLAGS $$PLFLAGS -o 
$$ver/_snack.$(SOEXT) $$ver/snack.o -L.  -lnewt $(LIBS); \
+   done || :
+   touch $@
+ 
+-- 
+2.32.0
+

diff --git a/dev-libs/newt/newt-0.52.21-r1.ebuild 
b/dev-libs/newt/newt-0.52.21-r1.ebuild
index 4eb95be8623..b2727a258f8 100644
--- a/dev-libs/newt/newt-0.52.21-r1.ebuild
+++ b/dev-libs/newt/newt-0.52.21-r1.ebuild
@@ -29,6 +29,14 @@ RDEPEND="
"
 DEPEND="${RDEPEND}"
 
+PATCHES=(
+   "${FILESDIR}"/${PN}-0.52.13-gold.patch
+   "${FILESDIR}"/${PN}-0.52.14-tcl.patch
+   "${FILESDIR}"/${PN}-0.52.21-python-sitedir.patch
+   "${FILESDIR}"/${PN}-0.52.21-makefile-LDFLAGS-ordering.patch
+   "${FILESDIR}"/${PN}-0.52.21-fix-non-POSIX-backticks.patch
+)
+
 src_prepare() {
# bug 73850
if use elibc_uclibc; then
@@ -54,11 +62,7 @@ src_prepare() {
|| die "sed po/Makefile"
fi
 
-   eapply \
-   "${FILESDIR}"/${PN}-0.52.13-gold.patch \
-   "${FILESDIR}"/${PN}-0.52.14-tcl.patch \
-   "${FILESDIR}"/${PN}-0.52.21-python-sitedir.patch
-   eapply_user
+   default
eautoreconf
 
# can't build out-of-source



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

2021-07-13 Thread Sam James
commit: 533c70b5ebb1dc5e2e408a6358b38dc6b5aa28c1
Author: Sam James  gentoo  org>
AuthorDate: Wed Jul 14 04:51:47 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jul 14 04:53:00 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=533c70b5

dev-util/git-delta: drop 0.8.2

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

 dev-util/git-delta/Manifest   |   2 -
 dev-util/git-delta/git-delta-0.8.2.ebuild | 154 --
 2 files changed, 156 deletions(-)

diff --git a/dev-util/git-delta/Manifest b/dev-util/git-delta/Manifest
index 8cab325c058..a7e04a05685 100644
--- a/dev-util/git-delta/Manifest
+++ b/dev-util/git-delta/Manifest
@@ -1,7 +1,6 @@
 DIST adler-0.2.3.crate 12168 BLAKE2B 
c7743569d700d7ec3185e0459a18181148f8cd7579f4da1fab30eb2e3c3cabbe5a7467f7760f0cba4b2fdeb62f8d988ee1f24637685d76db7acb56f679cfc996
 SHA512 
565849eba122eb94d240a0cba875035537058cc168f137a8a3b99392d753815d56fa0e1a1e851062632700b0e3d12caf67f5f768b9f727956a2e5b599029e9dc
 DIST aho-corasick-0.7.15.crate 113071 BLAKE2B 
a22743be74f873b9545648db6a994250e3e39b92ac99601580e3b02194d205e921bff0b1952a4cca3399a3a7828555a1abfb0c1466f3930811c6b95c1a07ec5e
 SHA512 
e67816efa7305937a7cbbb0079b91b8afa3fdab52cfb8eeddeee156f18bbeed26f941cd4cb18ab2bdc1da5a9ff1dcbe9d2090deec68c00287bd99ace18ee8b24
 DIST ansi_colours-1.0.1.crate 9937 BLAKE2B 
04d86fb964138cadeab0cb708e99d198189efe6ad871b9cea43967f610922234f371befe7b25c8ef824f94daef5b6c52e47a5d86f7966b82ff100ae5a4e38281
 SHA512 
16d9470385c55eb28be0fd3ea0bf5d8832676282636edb71f670c629a77884f590bf4ea13f2bf1002031a5a014cf1bfb32bb7a09da27af3c1d85e4a0f524af23
-DIST ansi_colours-1.0.3.crate 10419 BLAKE2B 
e140d65a40228e2df42f2d8d5d5ae6809e1e30afa007d97d07ed14ed6f8f4535c0adbb497cd417c5ef6528e5a60a997d4ede66709581a653c5e3dff83bda9ea5
 SHA512 
98ca71c01e3c5b86022430823066b68621904398f69bb7a3d13dd2b999b343a72151568d837cb0d811826204e538a34ff88590cb72f7da5d2bb2a365a264bca2
 DIST ansi_colours-1.0.4.crate 10525 BLAKE2B 
f71ef0dc730cb35e634623cbf6888abb72519fa53b40aba49ad1151a37d98bf3ff93652ad67d276243c7ef9435a19b839a43a4122e451a2defc96231fba145e9
 SHA512 
36eef5c4c84f7f8bf3adb65eca5d7d2da48190c127cd76b78b7bb035cf98afbf2534b82bb293cc1e472eaeb08d541fe28a87b99ebd53dbae8a50026898b043b3
 DIST ansi_term-0.11.0.crate 17087 BLAKE2B 
9bd35c045a01ce4c6c4a5db1b4f15e9412bb97426eec19d4421dffbec633de8d13452c13c1dc1b30998690b78d7ed38311aca700087f13a81f66bd1d5d7300c4
 SHA512 
a637466a380748f939b3af090b8c0333f35581925bc03f4dda9b3f95d338836403cf5487ae3af9ff68f8245a837f8ab061aabe57a126a6a2c20f2e972c77d1fa
 DIST ansi_term-0.12.1.crate 24838 BLAKE2B 
f636772c34e2d68cda7b8d3b2b86abda074585a62bd2654812ce92384244655a9197fa66e6939e19a674c0148ca605313d83de262bb18c2339a8a4eb4438a791
 SHA512 
b840e28b3e7700689a69a39659b1e066560078dd4a58326b91a028915819e7af883399ee53e920db68fd974c58d35bb1ddf8d427af5937d5f696f57c4376b671
@@ -32,7 +31,6 @@ DIST fnv-1.0.7.crate 11266 BLAKE2B 
81da85889c91b6567e0f555e37dd915f1bd919719d1ca
 DIST form_urlencoded-1.0.0.crate 8412 BLAKE2B 
d65250a1d56cee26befb8733733ab67ffba9b9826755194158f336a22e792d38320292548ec73cedf18a56a806707334eb75833e54bb811c56a2ccfee05aa731
 SHA512 
193b8630b2790931c1ade898187637b2efdfed60b2c98a2dec6658380433fb7711fc2d8196834c19eecddd219ca7383e4a4946bef25c664bf4dc010388b60605
 DIST getrandom-0.1.16.crate 25077 BLAKE2B 
0cbe96c27e78100c181a064e5fe524efa9a7a267fe60f8336d2ae0125883acd5d575ff17d1d56607255d9b2c30cb9d962026fdea1a5c3c29a5e0760d27c3136a
 SHA512 
c5450c522c07c7a38b326f9a9062bac7d089630219d577ea4b55abad4e0c31d17b7cde385fc43912dfa100b42334e7a52422c55fda8b738caae428c6f9addb53
 DIST git-delta-0.7.1.tar.gz 1064009 BLAKE2B 
3932d4adb5f696b92bf9d8987d90b2521401211944f9a8c0e5587e5dbcdf9ba93406547dee42885ca248687209c56d59e0f079f9e583f9b70104c09a306516a3
 SHA512 
cac2fdb9460ee49e8855a99ba2d9625205f050ef6be286c5ab55950aa256243ee5f367b8c2a333759a6a0399c89edb33ec97014296403a9ca4ab9b3d9704530d
-DIST git-delta-0.8.2.tar.gz 1068616 BLAKE2B 
86d60df2bd5a42969a44dd7239ab6a6502030ab10fa7dab18ff91192843d3817b2af475765691bfae43897e9111446ba49242de48f2bcafb69df6fb569f226c0
 SHA512 
8e6b838477468612c12105d798f5401e3f4119f049ce721c69d3aa595ffcad2991ee8c9a609bd3eb6154806f8418e39a1b515f9c179e42608080416e1efd3e74
 DIST git-delta-0.8.3.tar.gz 1069452 BLAKE2B 
a27fe07538acfd6346bc12f2e4ad03396737e268ce4653b25c908fbcc7bb47fe2ed76550dc431ab80bf9ab86746d4cd9b551ea68a47e603ae9fe99aa935df7bf
 SHA512 
8cda4255c878be8dc4dc841dc1778f992c7b01c7a56965babfff9cd0dd085b751e79ffb87450d50d78fd094f2ab851f468c0e88ca4e2f0becf6ebbc122ce602d
 DIST git2-0.13.17.crate 181726 BLAKE2B 
be159d2f3602a65b133d6bdb3d949a48b34029b7a491961469d7a5a6dd8d471b0460ea53e802f69a216ed6111d0329e8a8ee29024af3753a185258f1268b5ead
 SHA512 
5d95ff8d5c62df55b9995f2319dc350dfc9c44b90bb594f6b90df4985f8ebed50211e380885826251aa4e86eef1cfac99f648fba5f91cd4b725b0d05b3800fc9
 DIST git2-0.13.20.crate 190365 BLAKE2B 

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

2021-07-13 Thread Sam James
commit: ac949d9d29d1bdd7d8b8fe53c8bf8cead454563b
Author: Sam James  gentoo  org>
AuthorDate: Wed Jul 14 04:51:33 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jul 14 04:52:59 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac949d9d

dev-util/git-delta: add 0.8.3

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

 dev-util/git-delta/Manifest   |  10 ++
 dev-util/git-delta/git-delta-0.8.3.ebuild | 159 ++
 2 files changed, 169 insertions(+)

diff --git a/dev-util/git-delta/Manifest b/dev-util/git-delta/Manifest
index 607cdcc107c..8cab325c058 100644
--- a/dev-util/git-delta/Manifest
+++ b/dev-util/git-delta/Manifest
@@ -2,6 +2,7 @@ DIST adler-0.2.3.crate 12168 BLAKE2B 
c7743569d700d7ec3185e0459a18181148f8cd7579f
 DIST aho-corasick-0.7.15.crate 113071 BLAKE2B 
a22743be74f873b9545648db6a994250e3e39b92ac99601580e3b02194d205e921bff0b1952a4cca3399a3a7828555a1abfb0c1466f3930811c6b95c1a07ec5e
 SHA512 
e67816efa7305937a7cbbb0079b91b8afa3fdab52cfb8eeddeee156f18bbeed26f941cd4cb18ab2bdc1da5a9ff1dcbe9d2090deec68c00287bd99ace18ee8b24
 DIST ansi_colours-1.0.1.crate 9937 BLAKE2B 
04d86fb964138cadeab0cb708e99d198189efe6ad871b9cea43967f610922234f371befe7b25c8ef824f94daef5b6c52e47a5d86f7966b82ff100ae5a4e38281
 SHA512 
16d9470385c55eb28be0fd3ea0bf5d8832676282636edb71f670c629a77884f590bf4ea13f2bf1002031a5a014cf1bfb32bb7a09da27af3c1d85e4a0f524af23
 DIST ansi_colours-1.0.3.crate 10419 BLAKE2B 
e140d65a40228e2df42f2d8d5d5ae6809e1e30afa007d97d07ed14ed6f8f4535c0adbb497cd417c5ef6528e5a60a997d4ede66709581a653c5e3dff83bda9ea5
 SHA512 
98ca71c01e3c5b86022430823066b68621904398f69bb7a3d13dd2b999b343a72151568d837cb0d811826204e538a34ff88590cb72f7da5d2bb2a365a264bca2
+DIST ansi_colours-1.0.4.crate 10525 BLAKE2B 
f71ef0dc730cb35e634623cbf6888abb72519fa53b40aba49ad1151a37d98bf3ff93652ad67d276243c7ef9435a19b839a43a4122e451a2defc96231fba145e9
 SHA512 
36eef5c4c84f7f8bf3adb65eca5d7d2da48190c127cd76b78b7bb035cf98afbf2534b82bb293cc1e472eaeb08d541fe28a87b99ebd53dbae8a50026898b043b3
 DIST ansi_term-0.11.0.crate 17087 BLAKE2B 
9bd35c045a01ce4c6c4a5db1b4f15e9412bb97426eec19d4421dffbec633de8d13452c13c1dc1b30998690b78d7ed38311aca700087f13a81f66bd1d5d7300c4
 SHA512 
a637466a380748f939b3af090b8c0333f35581925bc03f4dda9b3f95d338836403cf5487ae3af9ff68f8245a837f8ab061aabe57a126a6a2c20f2e972c77d1fa
 DIST ansi_term-0.12.1.crate 24838 BLAKE2B 
f636772c34e2d68cda7b8d3b2b86abda074585a62bd2654812ce92384244655a9197fa66e6939e19a674c0148ca605313d83de262bb18c2339a8a4eb4438a791
 SHA512 
b840e28b3e7700689a69a39659b1e066560078dd4a58326b91a028915819e7af883399ee53e920db68fd974c58d35bb1ddf8d427af5937d5f696f57c4376b671
 DIST arrayvec-0.5.2.crate 27838 BLAKE2B 
51e2eacae0ef148f3f52d21ae00794e540e7ce4c013fb496dd1347ad91ffbbca199381fffbb064225f829216f6c5e915edfa64833f91fabdd13c3f011d86491f
 SHA512 
1896b5f64b4dbdcff8ad234bda4ea8129bcacf87839347304717e94ee9f369cf5f4371755e453ff7d72817edb8f7fdbc726d77cc4f28ed05148dc89c7714b004
@@ -11,6 +12,7 @@ DIST base64-0.13.0.crate 62070 BLAKE2B 
b957f65cdb1e28baeca0cefc92fa98be797409b7d
 DIST bincode-1.3.1.crate 26121 BLAKE2B 
7bccc02071a11944e787fdb4c86b082827834df31f3fb751ed32720d4c44e4a26977838e311580ed330d9f6bc5ad76632e0af5530a3f8781ee739d9dc1ff218b
 SHA512 
75e62caef54a58ea5d24acbdef70b55893b11706400ad423919084a4723f5ea60e337447221171c4cd86d764db1f9f767c303b4cf5cd8f27318519db77fb82b4
 DIST bitflags-1.2.1.crate 16745 BLAKE2B 
0fa6d3ce44aad7616d5cd02aad8c1d0b0fed4022650eb43067c4a72e6fc88da05442674fa51826e4858a47c9de233e1ba2229820af094197cd11bb416ceffb2b
 SHA512 
ad89b3798845e23737a620bba581c2ff1ff3e15bac12555c765e201d2c0b90ecea0cdbc5b5b1a3fa9858c385e8e041f8226f5acfae5bbbe9925643fff2bf3f0b
 DIST box_drawing-0.1.2.crate 2819 BLAKE2B 
968243dc8cc4c999d87b1ecf45314e9ed5fd81c8403b181f6452889df92edcc407e98774592a4072c1b3a0f551ae99913cbc01bf97bec69dccc7e2b7fba14200
 SHA512 
fba2720279dbfd56a14371951b854aa0a30fb4caeb5b95703ec6721d681dfe97a37b21b069e6264565510fa3f3d0716dba99d8b3021bec76410c823ef262e746
+DIST bstr-0.2.15.crate 344206 BLAKE2B 
3a4f24d2a039f7aeee3b6fcbfcc2fa72f1ef8a06ff8bc039af055739436655851565a57e5a4f86a7984b00ee7598c1fbdf26f3302929f91d7efb1327fd36eb57
 SHA512 
6e464ca1aec722a283759ff6978bab1769dfc8d61aa683f8e4c59bd69c7be2fe86c5470f4c54457871c6640e2d50b6b882747ec567098eb78e62f7cb07cb93a2
 DIST bytelines-2.2.2.crate 4218 BLAKE2B 
48523123ac1b5b643666ccd466a9fb48c4aff77bd13b198b24d0e1092dd971bf5ba804d97a83a38a8b99ecab94b51e837cb4850d5b0789f4d2f0115159c4176d
 SHA512 
0d768b579993c0d72914affe36d61632e0c39310094b4d3dde29e69039249c9bb88af18e8f8033c377b05938c50e43ebd29114d2c664b2c904be27c61b1b8dad
 DIST byteorder-1.3.4.crate 21943 BLAKE2B 
278b24e036e920f84683f883991a967d997883bc80edefc5b69f52551794a37e5051786a1ac1b7a30bf2f5cad7318d781f189a7b2e496e2743df01262d5c33d6
 SHA512 
0618ce2cd6f3f6c586201d9aee8c8aaa08f99c9f9f215cf448b3cb6af1ac741845f5279953544caaec7fcf0beec1474bb991bee1ad0c0dac0c3f1d3ddd99e2d9
 DIST cc-1.0.66.crate 53454 BLAKE2B 

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

2021-07-13 Thread Matthew Thode
commit: 1b381caa8b38d317ad1ee0b0bd72add458f85a4d
Author: Matthew Thode  gentoo  org>
AuthorDate: Wed Jul 14 04:31:42 2021 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Wed Jul 14 04:31:54 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b381caa

www-apps/icingaweb2: 2.9.0 fix php8 dep (remove json flag)

Package-Manager: Portage-3.0.20, Repoman-3.0.2
Signed-off-by: Matthew Thode  gentoo.org>

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

diff --git a/www-apps/icingaweb2/icingaweb2-2.9.0.ebuild 
b/www-apps/icingaweb2/icingaweb2-2.9.0.ebuild
index 2a18a8e21d9..84db9d6e071 100644
--- a/www-apps/icingaweb2/icingaweb2-2.9.0.ebuild
+++ b/www-apps/icingaweb2/icingaweb2-2.9.0.ebuild
@@ -30,7 +30,7 @@ DEPEND=">=net-analyzer/icinga2-2.1.1
|| (

dev-lang/php:7.3[apache2?,cli,fpm?,gd,json,intl,ldap?,mysql?,nls,pdo,postgres?,sockets,ssl,xslt,xml]

dev-lang/php:7.4[apache2?,cli,fpm?,gd,json,intl,ldap?,mysql?,nls,pdo,postgres?,sockets,ssl,xslt,xml]
-   
dev-lang/php:8.0[apache2?,cli,fpm?,gd,json,intl,ldap?,mysql?,nls,pdo,postgres?,sockets,ssl,xslt,xml]
+   
dev-lang/php:8.0[apache2?,cli,fpm?,gd,intl,ldap?,mysql?,nls,pdo,postgres?,sockets,ssl,xslt,xml]
)
acct-group/icingacmd
acct-group/icingaweb2"



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

2021-07-13 Thread Sam James
commit: 5bd84243e746f54487c2d69c6df31bbd07a04c33
Author: Sam James  gentoo  org>
AuthorDate: Wed Jul 14 04:06:33 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jul 14 04:09:22 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5bd84243

dev-lang/parrot: add missing libcrypt dependency

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

 .../parrot/{parrot-8.1.0-r3.ebuild => parrot-8.1.0-r4.ebuild} | 11 +--
 1 file changed, 5 insertions(+), 6 deletions(-)

diff --git a/dev-lang/parrot/parrot-8.1.0-r3.ebuild 
b/dev-lang/parrot/parrot-8.1.0-r4.ebuild
similarity index 97%
rename from dev-lang/parrot/parrot-8.1.0-r3.ebuild
rename to dev-lang/parrot/parrot-8.1.0-r4.ebuild
index ad319217e9f..1612f534871 100644
--- a/dev-lang/parrot/parrot-8.1.0-r3.ebuild
+++ b/dev-lang/parrot/parrot-8.1.0-r4.ebuild
@@ -3,11 +3,6 @@
 
 EAPI=7
 
-inherit multilib
-
-# weird failures
-RESTRICT="test"
-
 DESCRIPTION="Virtual machine designed to compile and execute bytecode for 
dynamic languages"
 HOMEPAGE="http://www.parrot.org/;
 SRC_URI="ftp://ftp.parrot.org/pub/parrot/releases/all/${PV}/${P}.tar.gz;
@@ -17,13 +12,17 @@ SLOT="0/${PV}"
 KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos"
 IUSE="opengl nls doc examples gdbm +gmp ssl +unicode pcre"
 
+# weird failures
+RESTRICT="test"
+
 CDEPEND="sys-libs/readline:0=
dev-libs/libffi:=
net-libs/libnsl:0=
+   virtual/libcrypt:=
opengl? ( media-libs/freeglut )
nls? ( sys-devel/gettext )
unicode? ( >=dev-libs/icu-2.6:= )
-   gdbm? ( >=sys-libs/gdbm-1.8.3-r1 )
+   gdbm? ( >=sys-libs/gdbm-1.8.3-r1:= )
gmp? ( >=dev-libs/gmp-4.1.4:0= )
ssl? ( dev-libs/openssl:0= )
pcre? ( dev-libs/libpcre )



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

2021-07-13 Thread Sam James
commit: f037d8ec055e342e73d24b691c35f8e41caa
Author: Sam James  gentoo  org>
AuthorDate: Wed Jul 14 04:04:38 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jul 14 04:09:20 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f037d8ec

dev-lang/regina-rexx: add missing libcrypt dependency

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

 .../{regina-rexx-3.9.1-r1.ebuild => regina-rexx-3.9.1-r2.ebuild}| 6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/dev-lang/regina-rexx/regina-rexx-3.9.1-r1.ebuild 
b/dev-lang/regina-rexx/regina-rexx-3.9.1-r2.ebuild
similarity index 90%
rename from dev-lang/regina-rexx/regina-rexx-3.9.1-r1.ebuild
rename to dev-lang/regina-rexx/regina-rexx-3.9.1-r2.ebuild
index bc100fa59cf..b09080ce292 100644
--- a/dev-lang/regina-rexx/regina-rexx-3.9.1-r1.ebuild
+++ b/dev-lang/regina-rexx/regina-rexx-3.9.1-r2.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
@@ -8,12 +8,14 @@ inherit autotools
 DESCRIPTION="Portable Rexx interpreter"
 HOMEPAGE="https://regina-rexx.sourceforge.io/;
 SRC_URI="mirror://sourceforge/${PN}/Regina-REXX-${PV}.tar.gz"
+S="${WORKDIR}/Regina-REXX-${PV}"
 
 LICENSE="LGPL-2.1 MPL-1.0"
 SLOT="0"
 KEYWORDS="~amd64 ~ppc ~x86"
 
-S="${WORKDIR}/Regina-REXX-${PV}"
+RDEPEND="virtual/libcrypt:="
+DEPEND="${RDEPEND}"
 
 PATCHES=( "${FILESDIR}"/${PN}-3.9.1-makefile.patch )
 



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

2021-07-13 Thread Sam James
commit: 0d65994aaa1298331b652ba66404933174c69bd1
Author: Sam James  gentoo  org>
AuthorDate: Wed Jul 14 04:03:40 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jul 14 04:09:18 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d65994a

dev-lang/swi-prolog: add missing libcrypt dependency

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

 .../{swi-prolog-8.2.3-r1.ebuild => swi-prolog-8.2.3-r2.ebuild}   | 5 +++--
 .../{swi-prolog-8.2.4-r1.ebuild => swi-prolog-8.2.4-r2.ebuild}   | 5 +++--
 .../{swi-prolog-8.3.25-r1.ebuild => swi-prolog-8.3.25-r2.ebuild} | 5 +++--
 .../{swi-prolog-8.3.26.ebuild => swi-prolog-8.3.26-r1.ebuild}| 5 +++--
 4 files changed, 12 insertions(+), 8 deletions(-)

diff --git a/dev-lang/swi-prolog/swi-prolog-8.2.3-r1.ebuild 
b/dev-lang/swi-prolog/swi-prolog-8.2.3-r2.ebuild
similarity index 96%
rename from dev-lang/swi-prolog/swi-prolog-8.2.3-r1.ebuild
rename to dev-lang/swi-prolog/swi-prolog-8.2.3-r2.ebuild
index 39819e8af95..a681b43d480 100644
--- a/dev-lang/swi-prolog/swi-prolog-8.2.3-r1.ebuild
+++ b/dev-lang/swi-prolog/swi-prolog-8.2.3-r2.ebuild
@@ -20,13 +20,14 @@ RESTRICT="!test? ( test )"
 
 RDEPEND="sys-libs/ncurses:=
sys-libs/zlib
-   archive? ( app-arch/libarchive )
+   virtual/libcrypt:=
+   archive? ( app-arch/libarchive:= )
berkdb? ( >=sys-libs/db-4:= )
odbc? ( dev-db/unixODBC )
pcre? ( dev-libs/libpcre )
readline? ( sys-libs/readline:= )
libedit? ( dev-libs/libedit )
-   gmp? ( dev-libs/gmp:0 )
+   gmp? ( dev-libs/gmp:0= )
ssl? ( dev-libs/openssl:0= )
java? ( >=virtual/jdk-1.8:* )
uuid? ( dev-libs/ossp-uuid )

diff --git a/dev-lang/swi-prolog/swi-prolog-8.2.4-r1.ebuild 
b/dev-lang/swi-prolog/swi-prolog-8.2.4-r2.ebuild
similarity index 97%
rename from dev-lang/swi-prolog/swi-prolog-8.2.4-r1.ebuild
rename to dev-lang/swi-prolog/swi-prolog-8.2.4-r2.ebuild
index 40ca2887121..3b46e755859 100644
--- a/dev-lang/swi-prolog/swi-prolog-8.2.4-r1.ebuild
+++ b/dev-lang/swi-prolog/swi-prolog-8.2.4-r2.ebuild
@@ -19,13 +19,14 @@ RESTRICT="!test? ( test )"
 
 RDEPEND="sys-libs/ncurses:=
sys-libs/zlib
-   archive? ( app-arch/libarchive )
+   virtual/libcrypt:=
+   archive? ( app-arch/libarchive:= )
berkdb? ( >=sys-libs/db-4:= )
odbc? ( dev-db/unixODBC )
pcre? ( dev-libs/libpcre )
readline? ( sys-libs/readline:= )
libedit? ( dev-libs/libedit )
-   gmp? ( dev-libs/gmp:0 )
+   gmp? ( dev-libs/gmp:0= )
ssl? ( dev-libs/openssl:0= )
java? ( >=virtual/jdk-1.8:* )
uuid? ( dev-libs/ossp-uuid )

diff --git a/dev-lang/swi-prolog/swi-prolog-8.3.25-r1.ebuild 
b/dev-lang/swi-prolog/swi-prolog-8.3.25-r2.ebuild
similarity index 97%
rename from dev-lang/swi-prolog/swi-prolog-8.3.25-r1.ebuild
rename to dev-lang/swi-prolog/swi-prolog-8.3.25-r2.ebuild
index cf72f007059..3b4293326d3 100644
--- a/dev-lang/swi-prolog/swi-prolog-8.3.25-r1.ebuild
+++ b/dev-lang/swi-prolog/swi-prolog-8.3.25-r2.ebuild
@@ -19,13 +19,14 @@ RESTRICT="!test? ( test )"
 
 RDEPEND="sys-libs/ncurses:=
sys-libs/zlib
-   archive? ( app-arch/libarchive )
+   virtual/libcrypt:=
+   archive? ( app-arch/libarchive:= )
berkdb? ( >=sys-libs/db-4:= )
odbc? ( dev-db/unixODBC )
pcre? ( dev-libs/libpcre )
readline? ( sys-libs/readline:= )
libedit? ( dev-libs/libedit )
-   gmp? ( dev-libs/gmp:0 )
+   gmp? ( dev-libs/gmp:0= )
ssl? ( dev-libs/openssl:0= )
java? ( >=virtual/jdk-1.8:* )
uuid? ( dev-libs/ossp-uuid )

diff --git a/dev-lang/swi-prolog/swi-prolog-8.3.26.ebuild 
b/dev-lang/swi-prolog/swi-prolog-8.3.26-r1.ebuild
similarity index 97%
rename from dev-lang/swi-prolog/swi-prolog-8.3.26.ebuild
rename to dev-lang/swi-prolog/swi-prolog-8.3.26-r1.ebuild
index cf72f007059..3b4293326d3 100644
--- a/dev-lang/swi-prolog/swi-prolog-8.3.26.ebuild
+++ b/dev-lang/swi-prolog/swi-prolog-8.3.26-r1.ebuild
@@ -19,13 +19,14 @@ RESTRICT="!test? ( test )"
 
 RDEPEND="sys-libs/ncurses:=
sys-libs/zlib
-   archive? ( app-arch/libarchive )
+   virtual/libcrypt:=
+   archive? ( app-arch/libarchive:= )
berkdb? ( >=sys-libs/db-4:= )
odbc? ( dev-db/unixODBC )
pcre? ( dev-libs/libpcre )
readline? ( sys-libs/readline:= )
libedit? ( dev-libs/libedit )
-   gmp? ( dev-libs/gmp:0 )
+   gmp? ( dev-libs/gmp:0= )
ssl? ( dev-libs/openssl:0= )
java? ( >=virtual/jdk-1.8:* )
uuid? ( dev-libs/ossp-uuid )



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

2021-07-13 Thread Sam James
commit: 89230846f8a73539b812bdff8898a395eeb30119
Author: Sam James  gentoo  org>
AuthorDate: Wed Jul 14 03:59:58 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jul 14 04:09:16 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89230846

dev-libs/Ice: add misisng libcrypt dependency

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

 dev-libs/Ice/{Ice-3.6.5-r1.ebuild => Ice-3.6.5-r2.ebuild} | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-libs/Ice/Ice-3.6.5-r1.ebuild b/dev-libs/Ice/Ice-3.6.5-r2.ebuild
similarity index 99%
rename from dev-libs/Ice/Ice-3.6.5-r1.ebuild
rename to dev-libs/Ice/Ice-3.6.5-r2.ebuild
index 56dd843d69f..7a584459e1e 100644
--- a/dev-libs/Ice/Ice-3.6.5-r1.ebuild
+++ b/dev-libs/Ice/Ice-3.6.5-r2.ebuild
@@ -35,6 +35,7 @@ REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
 RDEPEND=">=dev-libs/expat-2.0.1
>=app-arch/bzip2-1.0.5
dev-libs/openssl:0=
+   virtual/libcrypt:=
|| (
$(for slot in ${BERKDB_SLOTS[@]} ; do printf '%s\n' 
"sys-libs/db:${slot}[cxx]" ; done)
)



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

2021-07-13 Thread Sam James
commit: 2ed1a1692d84c5951dcbd9c7aaa3f94d103eefc5
Author: Sam James  gentoo  org>
AuthorDate: Wed Jul 14 03:59:01 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jul 14 04:09:14 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ed1a169

net-analyzer/net-snmp: add missing libcrypt dependency

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

 .../net-snmp/{net-snmp-5.9-r2.ebuild => net-snmp-5.9-r4.ebuild} | 2 ++
 .../net-snmp/{net-snmp-5.9-r3.ebuild => net-snmp-5.9-r5.ebuild} | 1 +
 .../net-snmp/{net-snmp-5.9.1.ebuild => net-snmp-5.9.1-r1.ebuild}| 1 +
 net-analyzer/net-snmp/net-snmp-.ebuild  | 1 +
 4 files changed, 5 insertions(+)

diff --git a/net-analyzer/net-snmp/net-snmp-5.9-r2.ebuild 
b/net-analyzer/net-snmp/net-snmp-5.9-r4.ebuild
similarity index 99%
rename from net-analyzer/net-snmp/net-snmp-5.9-r2.ebuild
rename to net-analyzer/net-snmp/net-snmp-5.9-r4.ebuild
index 5ee94160278..85e04734976 100644
--- a/net-analyzer/net-snmp/net-snmp-5.9-r2.ebuild
+++ b/net-analyzer/net-snmp/net-snmp-5.9-r4.ebuild
@@ -2,6 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
+
 DISTUTILS_OPTIONAL=yesplz
 DISTUTILS_SINGLE_IMPL=yesplz
 GENTOO_DEPEND_ON_PERL=no
@@ -31,6 +32,7 @@ REQUIRED_USE="
 "
 
 COMMON_DEPEND="
+   virtual/libcrypt:=
bzip2? ( app-arch/bzip2 )
elf? ( dev-libs/elfutils )
lm-sensors? ( sys-apps/lm-sensors )

diff --git a/net-analyzer/net-snmp/net-snmp-5.9-r3.ebuild 
b/net-analyzer/net-snmp/net-snmp-5.9-r5.ebuild
similarity index 99%
rename from net-analyzer/net-snmp/net-snmp-5.9-r3.ebuild
rename to net-analyzer/net-snmp/net-snmp-5.9-r5.ebuild
index 3a88621c46c..30fa5fda53e 100644
--- a/net-analyzer/net-snmp/net-snmp-5.9-r3.ebuild
+++ b/net-analyzer/net-snmp/net-snmp-5.9-r5.ebuild
@@ -33,6 +33,7 @@ REQUIRED_USE="
 RESTRICT="test"
 
 COMMON_DEPEND="
+   virtual/libcrypt:=
bzip2? ( app-arch/bzip2 )
elf? ( dev-libs/elfutils )
lm-sensors? ( sys-apps/lm-sensors )

diff --git a/net-analyzer/net-snmp/net-snmp-5.9.1.ebuild 
b/net-analyzer/net-snmp/net-snmp-5.9.1-r1.ebuild
similarity index 99%
rename from net-analyzer/net-snmp/net-snmp-5.9.1.ebuild
rename to net-analyzer/net-snmp/net-snmp-5.9.1-r1.ebuild
index a33f94b2f9a..ac38c56a767 100644
--- a/net-analyzer/net-snmp/net-snmp-5.9.1.ebuild
+++ b/net-analyzer/net-snmp/net-snmp-5.9.1-r1.ebuild
@@ -33,6 +33,7 @@ REQUIRED_USE="
 RESTRICT="test"
 
 COMMON_DEPEND="
+   virtual/libcrypt:=
bzip2? ( app-arch/bzip2 )
elf? ( dev-libs/elfutils )
lm-sensors? ( sys-apps/lm-sensors )

diff --git a/net-analyzer/net-snmp/net-snmp-.ebuild 
b/net-analyzer/net-snmp/net-snmp-.ebuild
index 652062a6064..5517dfe3206 100644
--- a/net-analyzer/net-snmp/net-snmp-.ebuild
+++ b/net-analyzer/net-snmp/net-snmp-.ebuild
@@ -32,6 +32,7 @@ REQUIRED_USE="
 RESTRICT="test"
 
 COMMON_DEPEND="
+   virtual/libcrypt:=
bzip2? ( app-arch/bzip2 )
elf? ( dev-libs/elfutils )
lm-sensors? ( sys-apps/lm-sensors )



[gentoo-commits] repo/user/superposition:master commit in: dev-ml/biniou/, dev-ml/yojson/

2021-07-13 Thread Philip Miess
commit: 3b3310b8368b121e704ca9cc08a4624ae2505d61
Author: Philip Miess  yahoo  com>
AuthorDate: Wed Jul 14 00:02:59 2021 +
Commit: Philip Miess  yahoo  com>
CommitDate: Wed Jul 14 00:02:59 2021 +
URL:
https://gitweb.gentoo.org/repo/user/superposition.git/commit/?id=3b3310b8

deleted biniou and yojson ebuilds

Signed-off-by: Philip Miess  yahoo.com>

 dev-ml/biniou/Manifest|  3 ---
 dev-ml/biniou/biniou-1.2.0.ebuild | 32 
 dev-ml/biniou/metadata.xml|  8 
 dev-ml/yojson/Manifest|  5 -
 dev-ml/yojson/metadata.xml|  8 
 dev-ml/yojson/yojson-1.4.0.ebuild | 33 -
 dev-ml/yojson/yojson-1.7.0.ebuild | 33 -
 7 files changed, 122 deletions(-)

diff --git a/dev-ml/biniou/Manifest b/dev-ml/biniou/Manifest
deleted file mode 100644
index 56afb84..000
--- a/dev-ml/biniou/Manifest
+++ /dev/null
@@ -1,3 +0,0 @@
-DIST biniou-1.2.0.tar.gz 23611 BLAKE2B 
01f5afada666d23b74f31cf12b5f578f3622c85311d7a1b6eb319843beac4c3ebe8e8e314a47ec14ee0ef6f5c1a5b6dd849dcf24b0c3cc8a38ca6a54d89e4c4d
 SHA512 
04c04c2dd5e3e1237106db257567ba6900bd94759b07b02ba2e0d9209d1bbdc9ed629864e06d44a8b61f72d46fbcc7a0ffc86f82feb223d9d99ca41afc625fab
-EBUILD biniou-1.2.0.ebuild 733 BLAKE2B 
bca11d4883ce1f7c6cdd3f1bc248ef90b74a252bb64838eefb8b93e92daa4960bbfb28eb4c186348d4f2fef577addf4f33623b3719efcfda45571daabddec515
 SHA512 
f5d1d62d70840aaf2f8b00829d6f4dea4105e63c4caf569892bf5500b1dd3ec87a6353d7b0e9fcd3a964d052fc48fe4abdf1f5c126da6806952c767be45c
-MISC metadata.xml 246 BLAKE2B 
293edb7a04720164c7fe980b83a53e65fa0537bf20ee28f065f980b1a474ff468f2b7c4adb14c80b691080a801bbbc9095cb24fa4102ce10d57b0ac47d67ffa7
 SHA512 
d922d11e07aa5d95318b09b38f66979151ae05272a7f202e87a03ebc7df9fd985468cfdac2188e04b27e31a69c03d63b59f2682374430ad3d0dbdc7c909a2e1c

diff --git a/dev-ml/biniou/biniou-1.2.0.ebuild 
b/dev-ml/biniou/biniou-1.2.0.ebuild
deleted file mode 100644
index 612cf15..000
--- a/dev-ml/biniou/biniou-1.2.0.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit findlib
-
-DESCRIPTION="A binary data serialization format inspired by JSON for OCaml"
-HOMEPAGE="https://github.com/mjambon/biniou;
-SRC_URI="https://github.com/mjambon/biniou/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-SLOT="0/${PV}"
-LICENSE="BSD"
-KEYWORDS="~amd64"
-IUSE="+ocamlopt"
-
-RDEPEND=">=dev-lang/ocaml-3.11:=[ocamlopt?]
-   dev-ml/easy-format:=[ocamlopt?]
-"
-DEPEND="${RDEPEND}
-   ~dev-ml/dune-1.11.4
-   dev-ml/opam
-"
-
-src_install() {
-   opam-installer -i \
-   --prefix="${ED}/usr" \
-   --libdir="${D}/$(ocamlc -where)" \
-   --docdir="${ED}/usr/share/doc/${PF}" \
-   --mandir="${ED}/usr/share/man" \
-   ${PN}.install || die
-}

diff --git a/dev-ml/biniou/metadata.xml b/dev-ml/biniou/metadata.xml
deleted file mode 100644
index 7bfe73b..000
--- a/dev-ml/biniou/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   
-   mjambon/biniou
-   
-

diff --git a/dev-ml/yojson/Manifest b/dev-ml/yojson/Manifest
deleted file mode 100644
index 72ea8de..000
--- a/dev-ml/yojson/Manifest
+++ /dev/null
@@ -1,5 +0,0 @@
-DIST yojson-1.4.0.tar.gz 26197 BLAKE2B 
c7d1a9d47f448995b31cd7631f64dec29e65b1f141854092bfe186a58c28b96c5c7f246f7e4ab4563dfcd84776904d4af77bbcbdc4e149229fbde339bd92df9f
 SHA512 
dc019ecf0387299282c3df9a548456d2529993241911a83acb14f2361ed14886e5ebebe415773b6bc718cb0b12a25529184f3b5b62c71b42960fbd62e1c63bf6
-DIST yojson-1.7.0.tar.gz 29704 BLAKE2B 
edbd7f66d69a85880fc8ee9bb25a993744a310887024f7af63665ba8f5067f1b9383ec4d6dd5f4ca3376d698665a8f605c078f7597ddd4e71857c1a20143c2e5
 SHA512 
25eedb64e4bf7c7e8d5a5a115812cd502540afbdeb7c947da3a14e5968aa0a7db8ab402425662571d8935b9cd6a19796ce81dd80a65dc614f156626c60e7036e
-EBUILD yojson-1.4.0.ebuild 687 BLAKE2B 
6fc3c22e1993b303ff796d03330accba6ff66bad67a9327b49935d3971c67973fe99306564a0883e5ff81caf315ea022cfe5ca95289c470a4d095f208a3dab1d
 SHA512 
1edfac963eb80e38d2ba9895737e4cd97f5b12ba357ff2e02819a406f6b60ff3f52109ce596e8e3935d0603faaaeb0bf901447f3ec961009b9453f5ee71b82bd
-EBUILD yojson-1.7.0.ebuild 704 BLAKE2B 
e85037e1cb75687b87e91da7fcaa4aa95febf54b2eff257775db9f97f16142f64213f892fa76796891422611622fb143fefe94de51d14c996141216c1f7f1d58
 SHA512 
2e8c019a353d40438ef3cf4d20e1bc769fda2a0dd57e6c798ce5671e8733dc26e369c0b034ac9bea92641c2202c504bbef6617ddf2cfc7462ba8fc471398d462
-MISC metadata.xml 251 BLAKE2B 
fa0c2c2679ffa3d7ee1d66435fa6ae0a87cd066936bef24881ca3c1559420ef9cb9aef9a8956f97d422a0b01ec5979674b4002f8d2141da8259c2e0ed049c506
 SHA512 
df914b4514c8649fb6ed3d115eb88866177d9cb8a9e4cfc743c28b7b1b17a32a4c3e5a5051f8f499089727ecce11dbe366f5065917795dc5f08f9524a499f676

diff --git a/dev-ml/yojson/metadata.xml 

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

2021-07-13 Thread Matthew Thode
commit: 1910116c22ce6a846006556569499a447c1bd794
Author: Matthew Thode  gentoo  org>
AuthorDate: Wed Jul 14 03:48:20 2021 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Wed Jul 14 04:00:48 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1910116c

dev-libs/leatherman: 1.12.6 bump

Package-Manager: Portage-3.0.20, Repoman-3.0.2
Signed-off-by: Matthew Thode  gentoo.org>

 dev-libs/leatherman/Manifest |  1 +
 dev-libs/leatherman/leatherman-1.12.6.ebuild | 61 
 2 files changed, 62 insertions(+)

diff --git a/dev-libs/leatherman/Manifest b/dev-libs/leatherman/Manifest
index 03859e6c7da..7cd5a8382b5 100644
--- a/dev-libs/leatherman/Manifest
+++ b/dev-libs/leatherman/Manifest
@@ -1,3 +1,4 @@
 DIST leatherman-1.12.2.tar.gz 816010 BLAKE2B 
4b7b00b88ef0ba5cb01405aa24fd5ff72918a122cc8a1c0a029e374152964f77afa29a1f503ed5863a39bd13aa808dba2a0b351f65756e97c8e2e8408358cbfc
 SHA512 
9be8333b616bd9772f234474ae874c7214fa0c1bc4658ff042233d6e1683cc61b63d666d750297c79a8058490e42c8b2ff8999cb7f04aa329644f52540e43bde
 DIST leatherman-1.12.4.tar.gz 818043 BLAKE2B 
7a8718d598bf48b70d555d2a21e2e930eba6b3407ad5414b43d30411acf4c9bf4193ad20058b63d3c8911b7c5b0d021f84d6eca6dd3d00165c7d145186f8177f
 SHA512 
b2645a5049856f93c30bb89e87e3a47cf8137aeac73708248b2b228874818063fb31440ca2bd760783e8c95e880fe7ae34a387fcc448efee01dd0cda48089b55
 DIST leatherman-1.12.5.tar.gz 818066 BLAKE2B 
9d30fb224d3f4389f398294712dc85af782eeff877dd0a214fc60ee67d4a70467c1d32255cf8814f0cfc5428c660a315c24a9becdb1aa05f4d5c43ede8552af7
 SHA512 
dad1ee67f98a4cd12d9c6f022ae2b8c748e4c081918744030191d7c33f84983691f6bcfba3ddf5c0e5b4c36109ebd757325d6e42d88c74caaff942e6603d333e
+DIST leatherman-1.12.6.tar.gz 818106 BLAKE2B 
056ea52c355cf178e16be03f2a4fb54bf0e6aece4045545e7e45c50664e711db2bb756f56c9cd33a6dfe1de24c4ecb98766d4bd158ffb7757958274ba38f76db
 SHA512 
4e2a1ee2e7226224f115648a78bc3e4798ef0528ef32e01d1e7ebcbeb1250fd6ed88001c9db21456feeef3bd6ff201b0fd68fd5feb2671a66d13519dd3454386

diff --git a/dev-libs/leatherman/leatherman-1.12.6.ebuild 
b/dev-libs/leatherman/leatherman-1.12.6.ebuild
new file mode 100644
index 000..c105fc67cf2
--- /dev/null
+++ b/dev-libs/leatherman/leatherman-1.12.6.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake
+
+DESCRIPTION="A C++ toolkit"
+HOMEPAGE="https://github.com/puppetlabs/leatherman;
+SRC_URI="https://github.com/puppetlabs/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+IUSE="debug static-libs test"
+#RESTRICT="!test? ( test )"
+RESTRICT="test"  # restricted til we don't need the shared_nowide patch
+KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86"
+SLOT="0/${PV}"
+
+RDEPEND="net-misc/curl"
+DEPEND=">=dev-libs/boost-1.73:=[nls]
+   net-misc/curl
+   >=sys-devel/gcc-4.8:*"
+
+PATCHES=( "${FILESDIR}"/portage-sandbox-test-fix.patch )
+PATCHES+=( "${FILESDIR}"/1.12.2-shared_nowide.patch )
+
+src_prepare() {
+   sed -i 's/\-Werror\ //g' "cmake/cflags.cmake" || die
+   # vendored boost lib conflicts with boost 1.73 and above
+   cmake_src_prepare
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DCMAKE_VERBOSE_MAKEFILE=ON
+   -DCMAKE_BUILD_TYPE=None
+   )
+   if ! use static-libs; then
+   mycmakeargs+=(
+   -DLEATHERMAN_SHARED=ON
+   )
+   else
+   mycmakeargs+=(
+   -DLEATHERMAN_SHARED=OFF
+   )
+   fi
+   if use debug; then
+   mycmakeargs+=(
+ -DCMAKE_BUILD_TYPE=Debug
+   )
+   fi
+   cmake_src_configure
+}
+
+src_test() {
+   "${WORKDIR}/${P}"_build/bin/leatherman_test
+}
+
+src_install() {
+   cmake_src_install
+}



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

2021-07-13 Thread Matthew Thode
commit: 8e481fd285962e6aff4a78cbfba904b3e616bffa
Author: Matthew Thode  gentoo  org>
AuthorDate: Wed Jul 14 04:00:02 2021 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Wed Jul 14 04:00:53 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e481fd2

www-apps/icingaweb2: 2.9.0 bump

Package-Manager: Portage-3.0.20, Repoman-3.0.2
Signed-off-by: Matthew Thode  gentoo.org>

 www-apps/icingaweb2/Manifest|  2 +
 www-apps/icingaweb2/icingaweb2-2.8.3.ebuild | 77 
 www-apps/icingaweb2/icingaweb2-2.9.0.ebuild | 78 +
 3 files changed, 157 insertions(+)

diff --git a/www-apps/icingaweb2/Manifest b/www-apps/icingaweb2/Manifest
index 69e960c2ff6..b68f250d6c8 100644
--- a/www-apps/icingaweb2/Manifest
+++ b/www-apps/icingaweb2/Manifest
@@ -1 +1,3 @@
 DIST icingaweb2-2.8.2.tar.gz 8514166 BLAKE2B 
7e6a4457467a6a728c5818999ac6f15234f1cfd1415132e1a8219e897affddd4d4ec488bb90ced82a0ce5403220463ccfa0424014a4c090176d85fd968a9
 SHA512 
252ecb36751add239897b6344dd622542f892b1850398fe724d0ab91e8d691cefe0b33c727c28aa630c93b76b381aabe69721db034c4de0518f346bbd5b698de
+DIST icingaweb2-2.8.3.tar.gz 8514052 BLAKE2B 
507753833ed8a0de816651f3fdb06f3fdf04b3fa9c43fad5046c28924c93f3c3e491d9a4e1532f08ac0d6abe97c1343b85cdb23de9ece9f16858b91886283e9c
 SHA512 
236385dc54dbd11d8e100059bb7e29b3a4efc23888f187e13e563510dfb1f3d20e5c4107e2dadfa6842e6689aaa21d4e9465abd0a234c52229354f43ec44cfb4
+DIST icingaweb2-2.9.0.tar.gz 10895850 BLAKE2B 
cf0f1375e3eb29ddbbf6691afd1c240ae1431b7dd82bd591dd3fe135602d1eabc418c6279fe7bd8f8e519f264b69a9da8bb1d09d286f37aa2f7e5ed21ddacd5a
 SHA512 
d8f2817c025160cd8f59f33d678ca6eea9b893b80ca5c45c719d8778269da46322e720a1c73d7bcd7be73a07f08dbe279ffb78220f2a6c00f7e07e9f0f88d4d4

diff --git a/www-apps/icingaweb2/icingaweb2-2.8.3.ebuild 
b/www-apps/icingaweb2/icingaweb2-2.8.3.ebuild
new file mode 100644
index 000..c5f119e375d
--- /dev/null
+++ b/www-apps/icingaweb2/icingaweb2-2.8.3.ebuild
@@ -0,0 +1,77 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit depend.apache multilib
+
+DESCRIPTION="Icinga Web 2 - Frontend for icinga2"
+HOMEPAGE="http://www.icinga.org/;
+
+if [[ ${PV} == * ]];then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/Icinga/icingaweb2.git;
+   EGIT_BRANCH="master"
+else
+   SRC_URI="https://codeload.github.com/Icinga/${PN}/tar.gz/v${PV} -> 
${P}.tar.gz"
+   KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="apache2 apache2-server fpm ldap mysql nginx pdf postgres"
+REQUIRED_USE="( ^^ ( apache2-server nginx ) ) apache2? ( apache2-server )"
+
+DEPEND=">=net-analyzer/icinga2-2.1.1
+   dev-php/pecl-imagick
+   pdf? ( media-gfx/imagemagick[png] )
+   apache2-server? ( >=www-servers/apache-2.4.0 )
+   nginx? ( >=www-servers/nginx-1.7.0:* )
+   || (
+   
dev-lang/php:7.3[apache2?,cli,fpm?,gd,json,intl,ldap?,mysql?,nls,pdo,postgres?,sockets,ssl,xslt,xml]
+   
dev-lang/php:7.4[apache2?,cli,fpm?,gd,json,intl,ldap?,mysql?,nls,pdo,postgres?,sockets,ssl,xslt,xml]
+   )
+   acct-group/icingacmd
+   acct-group/icingaweb2"
+RDEPEND="${DEPEND}"
+
+want_apache2
+
+pkg_setup() {
+   depend.apache_pkg_setup
+
+   use nginx && usermod -a -G icingacmd,icingaweb2 nginx
+   use apache2 && usermod -a -G icingacmd,icingaweb2 apache
+}
+
+pkg_config() {
+   if [[ -d /etc/icingaweb2 ]] ; then
+   einfo "Updating existing installation ..."
+   else
+   einfo "Running first time setup ..."
+   einfo "Creating configuration directory ..."
+   /usr/share/${PN}/bin/icingacli setup config directory
+   einfo "Creating authentication token for web setup ..."
+   /usr/share/${PN}/bin/icingacli setup token create
+   if use apache2 ; then
+   einfo "The following might be useful for your Apache2 
configuration:"
+   /usr/share/${PN}/bin/icingacli setup config webserver 
apache --document-root /usr/share/${PN}/public
+   fi
+   if use nginx ; then
+   einfo "The following might be useful for your NGinx 
configuration:"
+   /usr/share/${PN}/bin/icingacli setup config webserver 
nginx --document-root /usr/share/${PN}/public
+   fi
+   fi
+   einfo "All done."
+}
+
+src_install() {
+   insinto "/usr/share/${PN}"
+   doins -r "${S}"/*
+   fperms -R a+rX "/usr/share/${PN}/public/"
+   fperms u+x,g+x "/usr/share/${PN}/bin/icingacli"
+}
+
+pkg_postinst() {
+   einfo "Run 'emerge --config =${CATEGORY}/${PF}' to finish setup."
+}

diff --git a/www-apps/icingaweb2/icingaweb2-2.9.0.ebuild 
b/www-apps/icingaweb2/icingaweb2-2.9.0.ebuild

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

2021-07-13 Thread Matthew Thode
commit: bafe8bb87bfc2e51d9420466332ff4ed4057d33c
Author: Matthew Thode  gentoo  org>
AuthorDate: Wed Jul 14 03:46:36 2021 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Wed Jul 14 04:00:47 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bafe8bb8

dev-libs/leatherman: 1.12.5 stable amd64 ppc ppc64 sparc x86

Package-Manager: Portage-3.0.20, Repoman-3.0.2
Signed-off-by: Matthew Thode  gentoo.org>

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

diff --git a/dev-libs/leatherman/leatherman-1.12.5.ebuild 
b/dev-libs/leatherman/leatherman-1.12.5.ebuild
index c105fc67cf2..93aeee4fe22 100644
--- a/dev-libs/leatherman/leatherman-1.12.5.ebuild
+++ b/dev-libs/leatherman/leatherman-1.12.5.ebuild
@@ -13,7 +13,7 @@ LICENSE="Apache-2.0"
 IUSE="debug static-libs test"
 #RESTRICT="!test? ( test )"
 RESTRICT="test"  # restricted til we don't need the shared_nowide patch
-KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="amd64 ~arm ~hppa ppc ppc64 sparc x86"
 SLOT="0/${PV}"
 
 RDEPEND="net-misc/curl"



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

2021-07-13 Thread Matthew Thode
commit: 38859f1e85aaed881c6555db245d272ab8531961
Author: Matthew Thode  gentoo  org>
AuthorDate: Wed Jul 14 03:50:09 2021 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Wed Jul 14 04:00:51 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38859f1e

dev-ruby/facter: 3.14.19 bump

Package-Manager: Portage-3.0.20, Repoman-3.0.2
Signed-off-by: Matthew Thode  gentoo.org>

 dev-ruby/facter/Manifest  |  1 +
 dev-ruby/facter/facter-3.14.19.ebuild | 99 +++
 2 files changed, 100 insertions(+)

diff --git a/dev-ruby/facter/Manifest b/dev-ruby/facter/Manifest
index 948becfca01..6c637dab87e 100644
--- a/dev-ruby/facter/Manifest
+++ b/dev-ruby/facter/Manifest
@@ -1,2 +1,3 @@
 DIST facter-3.14.17.tar.gz 409415 BLAKE2B 
5884d1244ee869b1e8880bb243996be5a0377adcbcc7e02ccd94a98f3a98d700ad129a457dcddcc3aeae6027fb818032331ce5690019fe7186e8deb9b022430d
 SHA512 
109a7748d883748c516ff7262c7eb589f3c7321edc3882aad242f6fece566d1e6e81f340f3dbb3a7fed16c528ba0da8769984c394178efdd447f10de1841ff53
 DIST facter-3.14.18.tar.gz 409243 BLAKE2B 
6d11498ecd82910ab82ec9674fbe7cf8d87f76f47dc6bf1a25c6138d498ad0c1d47ae5b2cb67fb092892e29279ff3263e2d025ff1317e4fb428105c943ee11e3
 SHA512 
537696324fd1ea653019fe3febdd168f40155d120bb0f9b899711c04f8252166731ab3530e2f03c01606e3549db3726e146b00781ac6ab5383f5ba2ce1e74d3f
+DIST facter-3.14.19.tar.gz 409345 BLAKE2B 
f977bb36ec8042ac950babd19ed398b8bd4fece854304a8a7a5f6b7608c3ad6ba4999b9038e401d599883da5bad63304b502fef164d1988d68a8477f1ff302a1
 SHA512 
65efc0237edc8198165e8229ca5d64e165a36e58718a863e14df9de9b64d4c9fb911d084e23daa982473f0703077b2cb0a5de8c544161591a894d537312c30f0

diff --git a/dev-ruby/facter/facter-3.14.19.ebuild 
b/dev-ruby/facter/facter-3.14.19.ebuild
new file mode 100644
index 000..249ddd7569a
--- /dev/null
+++ b/dev-ruby/facter/facter-3.14.19.ebuild
@@ -0,0 +1,99 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+USE_RUBY="ruby24 ruby25 ruby26 ruby27"
+
+# git-r3 goes after ruby-ng so that it overrides src_unpack properly
+inherit cmake eutils ruby-ng
+
+DESCRIPTION="A cross-platform ruby library for retrieving facts from operating 
systems"
+HOMEPAGE="http://www.puppetlabs.com/puppet/related-projects/facter/;
+
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE="test"
+if [[ ${PV} ==  ]] ; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/puppetlabs/facter.git;
+   EGIT_BRANCH="master"
+else
+   [[ "${PV}" = *_rc* ]] || \
+   KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86"
+   SRC_URI="https://github.com/puppetlabs/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+fi
+
+RESTRICT="!test? ( test )"
+
+ruby_add_bdepend "test? ( dev-ruby/rake dev-ruby/rspec:2 dev-ruby/mocha:0.14 )"
+
+RDEPEND="
+   >=dev-cpp/cpp-hocon-0.2.1:=
+   >=dev-libs/leatherman-1.0.0:=
+   dev-libs/openssl:0=
+   sys-apps/util-linux
+   app-emulation/virt-what
+   net-misc/curl
+   dev-libs/boost:=[nls]
+   >=dev-cpp/yaml-cpp-0.5.1
+   !

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

2021-07-13 Thread Matthew Thode
commit: 3542dd74dd3055df8528caf0224e447a2f41b969
Author: Matthew Thode  gentoo  org>
AuthorDate: Wed Jul 14 03:48:58 2021 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Wed Jul 14 04:00:50 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3542dd74

dev-libs/leatherman: clean up 1.12.2 1.12.4

Package-Manager: Portage-3.0.20, Repoman-3.0.2
Signed-off-by: Matthew Thode  gentoo.org>

 dev-libs/leatherman/Manifest |  2 -
 dev-libs/leatherman/leatherman-1.12.2.ebuild | 61 
 dev-libs/leatherman/leatherman-1.12.4.ebuild | 61 
 3 files changed, 124 deletions(-)

diff --git a/dev-libs/leatherman/Manifest b/dev-libs/leatherman/Manifest
index 7cd5a8382b5..d96cc0b0fed 100644
--- a/dev-libs/leatherman/Manifest
+++ b/dev-libs/leatherman/Manifest
@@ -1,4 +1,2 @@
-DIST leatherman-1.12.2.tar.gz 816010 BLAKE2B 
4b7b00b88ef0ba5cb01405aa24fd5ff72918a122cc8a1c0a029e374152964f77afa29a1f503ed5863a39bd13aa808dba2a0b351f65756e97c8e2e8408358cbfc
 SHA512 
9be8333b616bd9772f234474ae874c7214fa0c1bc4658ff042233d6e1683cc61b63d666d750297c79a8058490e42c8b2ff8999cb7f04aa329644f52540e43bde
-DIST leatherman-1.12.4.tar.gz 818043 BLAKE2B 
7a8718d598bf48b70d555d2a21e2e930eba6b3407ad5414b43d30411acf4c9bf4193ad20058b63d3c8911b7c5b0d021f84d6eca6dd3d00165c7d145186f8177f
 SHA512 
b2645a5049856f93c30bb89e87e3a47cf8137aeac73708248b2b228874818063fb31440ca2bd760783e8c95e880fe7ae34a387fcc448efee01dd0cda48089b55
 DIST leatherman-1.12.5.tar.gz 818066 BLAKE2B 
9d30fb224d3f4389f398294712dc85af782eeff877dd0a214fc60ee67d4a70467c1d32255cf8814f0cfc5428c660a315c24a9becdb1aa05f4d5c43ede8552af7
 SHA512 
dad1ee67f98a4cd12d9c6f022ae2b8c748e4c081918744030191d7c33f84983691f6bcfba3ddf5c0e5b4c36109ebd757325d6e42d88c74caaff942e6603d333e
 DIST leatherman-1.12.6.tar.gz 818106 BLAKE2B 
056ea52c355cf178e16be03f2a4fb54bf0e6aece4045545e7e45c50664e711db2bb756f56c9cd33a6dfe1de24c4ecb98766d4bd158ffb7757958274ba38f76db
 SHA512 
4e2a1ee2e7226224f115648a78bc3e4798ef0528ef32e01d1e7ebcbeb1250fd6ed88001c9db21456feeef3bd6ff201b0fd68fd5feb2671a66d13519dd3454386

diff --git a/dev-libs/leatherman/leatherman-1.12.2.ebuild 
b/dev-libs/leatherman/leatherman-1.12.2.ebuild
deleted file mode 100644
index e41dffc8583..000
--- a/dev-libs/leatherman/leatherman-1.12.2.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake-utils
-
-DESCRIPTION="A C++ toolkit"
-HOMEPAGE="https://github.com/puppetlabs/leatherman;
-SRC_URI="https://github.com/puppetlabs/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-IUSE="debug static-libs test"
-#RESTRICT="!test? ( test )"
-RESTRICT="test"  # restricted til we don't need the shared_nowide patch
-KEYWORDS="amd64 ~arm ~hppa ppc ppc64 sparc x86"
-SLOT="0/${PV}"
-
-RDEPEND="net-misc/curl"
-DEPEND=">=dev-libs/boost-1.73:=[nls]
-   net-misc/curl
-   >=sys-devel/gcc-4.8:*"
-
-PATCHES=( "${FILESDIR}"/portage-sandbox-test-fix.patch )
-PATCHES+=( "${FILESDIR}"/1.12.2-shared_nowide.patch )
-
-src_prepare() {
-   sed -i 's/\-Werror\ //g' "cmake/cflags.cmake" || die
-   # vendored boost lib conflicts with boost 1.73 and above
-   cmake-utils_src_prepare
-}
-
-src_configure() {
-   local mycmakeargs=(
-   -DCMAKE_VERBOSE_MAKEFILE=ON
-   -DCMAKE_BUILD_TYPE=None
-   )
-   if ! use static-libs; then
-   mycmakeargs+=(
-   -DLEATHERMAN_SHARED=ON
-   )
-   else
-   mycmakeargs+=(
-   -DLEATHERMAN_SHARED=OFF
-   )
-   fi
-   if use debug; then
-   mycmakeargs+=(
- -DCMAKE_BUILD_TYPE=Debug
-   )
-   fi
-   cmake-utils_src_configure
-}
-
-src_test() {
-   "${WORKDIR}/${P}"_build/bin/leatherman_test
-}
-
-src_install() {
-   cmake-utils_src_install
-}

diff --git a/dev-libs/leatherman/leatherman-1.12.4.ebuild 
b/dev-libs/leatherman/leatherman-1.12.4.ebuild
deleted file mode 100644
index e41dffc8583..000
--- a/dev-libs/leatherman/leatherman-1.12.4.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake-utils
-
-DESCRIPTION="A C++ toolkit"
-HOMEPAGE="https://github.com/puppetlabs/leatherman;
-SRC_URI="https://github.com/puppetlabs/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-IUSE="debug static-libs test"
-#RESTRICT="!test? ( test )"
-RESTRICT="test"  # restricted til we don't need the shared_nowide patch
-KEYWORDS="amd64 ~arm ~hppa ppc ppc64 sparc x86"
-SLOT="0/${PV}"
-
-RDEPEND="net-misc/curl"
-DEPEND=">=dev-libs/boost-1.73:=[nls]
-   net-misc/curl
-   >=sys-devel/gcc-4.8:*"
-
-PATCHES=( "${FILESDIR}"/portage-sandbox-test-fix.patch )
-PATCHES+=( 

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

2021-07-13 Thread Matthew Thode
commit: ed00cd40c4ebb9cf6c6627bab8374780f0c196da
Author: Matthew Thode  gentoo  org>
AuthorDate: Wed Jul 14 03:45:05 2021 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Wed Jul 14 04:00:46 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed00cd40

dev-ruby/facter: 3.14.18 stable amd64/x86

Package-Manager: Portage-3.0.20, Repoman-3.0.2
Signed-off-by: Matthew Thode  gentoo.org>

 dev-ruby/facter/facter-3.14.18.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/facter/facter-3.14.18.ebuild 
b/dev-ruby/facter/facter-3.14.18.ebuild
index 249ddd7569a..b69eea0e499 100644
--- a/dev-ruby/facter/facter-3.14.18.ebuild
+++ b/dev-ruby/facter/facter-3.14.18.ebuild
@@ -19,7 +19,7 @@ if [[ ${PV} ==  ]] ; then
EGIT_BRANCH="master"
 else
[[ "${PV}" = *_rc* ]] || \
-   KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86"
+   KEYWORDS="amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc x86"
SRC_URI="https://github.com/puppetlabs/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
 fi
 



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

2021-07-13 Thread Sam James
commit: ec9c31915f702a62404366212874cbc786bba469
Author: Sam James  gentoo  org>
AuthorDate: Wed Jul 14 03:11:45 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jul 14 03:11:45 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec9c3191

sys-apps/file: Stabilize 5.40-r3 arm, #800851

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

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

diff --git a/sys-apps/file/file-5.40-r3.ebuild 
b/sys-apps/file/file-5.40-r3.ebuild
index a35b94c33d9..90b41899e80 100644
--- a/sys-apps/file/file-5.40-r3.ebuild
+++ b/sys-apps/file/file-5.40-r3.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == "" ]] ; then
inherit autotools git-r3
 else
SRC_URI="ftp://ftp.astron.com/pub/file/${P}.tar.gz;
-   KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+   KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 fi
 
 DESCRIPTION="identify a file's format by scanning binary data for patterns"



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

2021-07-13 Thread Sam James
commit: 31457d74b41644d24059c783291842dd0364db65
Author: Sam James  gentoo  org>
AuthorDate: Wed Jul 14 03:11:54 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jul 14 03:11:54 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31457d74

media-sound/mpg123: Stabilize 1.28.0-r1 arm, #800953

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

 media-sound/mpg123/mpg123-1.28.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/mpg123/mpg123-1.28.0-r1.ebuild 
b/media-sound/mpg123/mpg123-1.28.0-r1.ebuild
index 59cc6ba32b4..b43f88f17c2 100644
--- a/media-sound/mpg123/mpg123-1.28.0-r1.ebuild
+++ b/media-sound/mpg123/mpg123-1.28.0-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://www.mpg123.org/download/${P}.tar.bz2;
 
 LICENSE="GPL-2 LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ppc ppc64 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x86-solaris"
 IUSE="cpu_flags_x86_3dnow cpu_flags_x86_3dnowext cpu_flags_ppc_altivec alsa 
coreaudio int-quality ipv6 jack cpu_flags_x86_mmx nas oss portaudio pulseaudio 
sdl cpu_flags_x86_sse"
 
 # No MULTILIB_USEDEP here since we only build libmpg123 for non native ABIs.



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

2021-07-13 Thread Sam James
commit: 7783fba78cae42dd3a057a7623d9d5586ea7a94f
Author: Sam James  gentoo  org>
AuthorDate: Wed Jul 14 03:11:28 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jul 14 03:11:28 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7783fba7

dev-python/black: Stabilize 21.6_beta0 arm, #799965

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

 dev-python/black/black-21.6_beta0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/black/black-21.6_beta0.ebuild 
b/dev-python/black/black-21.6_beta0.ebuild
index 900d53d129c..0675c52604d 100644
--- a/dev-python/black/black-21.6_beta0.ebuild
+++ b/dev-python/black/black-21.6_beta0.ebuild
@@ -16,7 +16,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ppc ppc64 ~riscv sparc x86 
~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv sparc x86 
~x64-macos"
 
 RDEPEND="
dev-python/appdirs[${PYTHON_USEDEP}]



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

2021-07-13 Thread Sam James
commit: 4336d07cb14cf6ac780204c62ecfa155b6221831
Author: Sam James  gentoo  org>
AuthorDate: Wed Jul 14 03:11:02 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jul 14 03:11:02 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4336d07c

net-wireless/bluez: Stabilize 5.58-r1 arm, #797568

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

 net-wireless/bluez/bluez-5.58-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-wireless/bluez/bluez-5.58-r1.ebuild 
b/net-wireless/bluez/bluez-5.58-r1.ebuild
index dc6017eb67c..5020f2ad539 100644
--- a/net-wireless/bluez/bluez-5.58-r1.ebuild
+++ b/net-wireless/bluez/bluez-5.58-r1.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://www.kernel.org/pub/linux/bluetooth/${P}.tar.xz;
 
 LICENSE="GPL-2+ LGPL-2.1+"
 SLOT="0/3"
-KEYWORDS="amd64 ~arm arm64 ~hppa ~mips ppc ppc64 x86"
+KEYWORDS="amd64 arm arm64 ~hppa ~mips ppc ppc64 x86"
 IUSE="btpclient cups doc debug deprecated extra-tools experimental +mesh midi 
+obex +readline selinux systemd test test-programs +udev user-session"
 
 # Since this release all remaining extra-tools need readline support, but this 
could



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

2021-07-13 Thread Sam James
commit: f0d457df0520c5e94b8ad255babec830f4c41631
Author: Sam James  gentoo  org>
AuthorDate: Wed Jul 14 03:11:37 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jul 14 03:11:37 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0d457df

app-admin/sysstat: Stabilize 12.5.4 arm, #800209

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

 app-admin/sysstat/sysstat-12.5.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/sysstat/sysstat-12.5.4.ebuild 
b/app-admin/sysstat/sysstat-12.5.4.ebuild
index 34e50a0fb1f..ddcb57509fa 100644
--- a/app-admin/sysstat/sysstat-12.5.4.ebuild
+++ b/app-admin/sysstat/sysstat-12.5.4.ebuild
@@ -10,7 +10,7 @@ SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~mips ppc ppc64 ~riscv ~s390 sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~mips ppc ppc64 ~riscv ~s390 sparc x86"
 IUSE="dcron debug nls lm-sensors selinux static systemd"
 
 CDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-db/sqlite/

2021-07-13 Thread Sam James
commit: d06a958262e71b9bb32a38893969ab1a38135437
Author: Sam James  gentoo  org>
AuthorDate: Wed Jul 14 03:11:20 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jul 14 03:11:20 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d06a9582

dev-db/sqlite: Stabilize 3.35.5 arm, #799764

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

 dev-db/sqlite/sqlite-3.35.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-db/sqlite/sqlite-3.35.5.ebuild 
b/dev-db/sqlite/sqlite-3.35.5.ebuild
index 64fd3ed89e5..a9876482cab 100644
--- a/dev-db/sqlite/sqlite-3.35.5.ebuild
+++ b/dev-db/sqlite/sqlite-3.35.5.ebuild
@@ -22,7 +22,7 @@ fi
 
 LICENSE="public-domain"
 SLOT="3"
-KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="debug doc icu +readline secure-delete static-libs tcl test tools"
 if [[ "${PV}" == "" ]]; then
PROPERTIES="live"



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

2021-07-13 Thread Sam James
commit: 111e11291103d8eef322ee41e39959ba1ec9c62c
Author: Sam James  gentoo  org>
AuthorDate: Wed Jul 14 03:11:11 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jul 14 03:11:11 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=111e1129

dev-ruby/yard: Stabilize 0.9.26 arm, #799305

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

 dev-ruby/yard/yard-0.9.26.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/yard/yard-0.9.26.ebuild b/dev-ruby/yard/yard-0.9.26.ebuild
index b3a0d0931ab..2bceb2a0fe8 100644
--- a/dev-ruby/yard/yard-0.9.26.ebuild
+++ b/dev-ruby/yard/yard-0.9.26.ebuild
@@ -25,7 +25,7 @@ SRC_URI="https://github.com/lsegal/yard/archive/v${PV}.tar.gz 
-> ${P}-git.tgz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ppc ppc64 sparc x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ppc ppc64 sparc x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
 IUSE=""
 
 ruby_add_bdepend "doc? ( || ( dev-ruby/maruku dev-ruby/rdiscount 
dev-ruby/kramdown ) )"



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

2021-07-13 Thread Sam James
commit: d39138717d36160d7f6d532ea245cc89650c3129
Author: Sam James  gentoo  org>
AuthorDate: Wed Jul 14 03:04:06 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jul 14 03:04:34 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3913871

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

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

 sys-kernel/gentoo-kernel-bin/Manifest  |   3 +
 .../gentoo-kernel-bin-5.12.16-r1.ebuild| 115 +
 2 files changed, 118 insertions(+)

diff --git a/sys-kernel/gentoo-kernel-bin/Manifest 
b/sys-kernel/gentoo-kernel-bin/Manifest
index 8f35d83fdc1..798450ccc00 100644
--- a/sys-kernel/gentoo-kernel-bin/Manifest
+++ b/sys-kernel/gentoo-kernel-bin/Manifest
@@ -8,6 +8,8 @@ DIST genpatches-5.10-54.base.tar.xz 1652540 BLAKE2B 
37ecda0a4f76784572985be5073e
 DIST genpatches-5.10-54.extras.tar.xz 3416 BLAKE2B 
3602707190ed04f62c4b2e8e0e765a53cf436b437373e71b6afd392cf05a73ac9e24f89293aac17c3730cdd696485ebf9d98161b248c9acafbfbe0b0c2db8ab8
 SHA512 
e4aad3f799dbcf00f813e39c8b9b355f17914a33d1ef422b3e7ee48c48e77a69925cc5664f0f171d1a632f622417b9d7ec88e56b1575c8e5f82af94f64337f42
 DIST genpatches-5.12-16.base.tar.xz 707164 BLAKE2B 
05331662b6c219900a5d70aa3f9030e82cff6ca09de9645e178f5976daf8003335ac2a9163e405282096bba6057ca645f81fddda41eb7b10f1125524b4cadcc5
 SHA512 
dc8efddc386fc5350802edb5f95f62f61a8d3c2033a0efa0fe9450ff0ba84a65cbb4482a0de9fea6f67200fb938f3d73c27124f9bcf706485f32f25cf8e89cd9
 DIST genpatches-5.12-16.extras.tar.xz 3412 BLAKE2B 
d0e429e2c9e1a2733a216e57c32c73f55285edc74f801017261925f246e44148c58cd8745caa6afc9cafa9c090d01206acc3cb96dc0ab260a834a0b3dd0e8918
 SHA512 
24a1f8b2f2993c157fa0efe5649b7494084d925f8665a8c0727ad431da00fcc8bfa7e00ac1d2b308b1297c1c202eac687d753eed38f44e71a9cb94327ef6
+DIST genpatches-5.12-17.base.tar.xz 738268 BLAKE2B 
61336204dbaf80bb44c29927ff59ed6ccd6f29a1a139132364aa2ad7c89b0af4df6df75e800cc14b444edb9897f4474015369b9cea878fef487c8a3e2123a715
 SHA512 
f4b5773b9885817889895725ece76d50da95439769d96fd4058d690937027ee6baffec62941b15df04b7e12df29d1177257daba39c41418e2f2a400565aacaf9
+DIST genpatches-5.12-17.extras.tar.xz 3412 BLAKE2B 
abbc0dbb59a91d6733f5c56918aee4d0bedfaa9f87687979f0b2b01778e2a934396c5b797050d1d05e52c2432f6fd32891176b4cb64709273ba810a1b7166884
 SHA512 
d36015ad8ee2bf8efb5c0b0786a661326d7833ab1d185e9e06791474b03036022bc6d6d1a22c1d4d086922b9db43ecec97a8dd5ff9daafd591a7b3092f839e5f
 DIST genpatches-5.12-18.base.tar.xz 738968 BLAKE2B 
cf0e62aad4cbe5c00d09a47e901761762934f34257e7064e65e9e9a29203c80a88ce31d55bff7156d8a09070dd67c79c383b0f1516757fbec1f5c722e844bff4
 SHA512 
31283759d7bb2a9b674489f4074a3027d52b5276df9e574d2d040007cdf679237ced0466724ddd81cb20714c7676f12b09f7c0014c1335227dc3bcc0358da701
 DIST genpatches-5.12-18.extras.tar.xz 3420 BLAKE2B 
783c9491317343e26eb9a25b48486c8b9c47f80e2c3048cea50e17ef1e6dcd9e5ab40a3f02bd02b5949933ca6634ffaaeb507416534ca35308ba35e5bbcfcff3
 SHA512 
53f513fe4ab0bae00b69055f8962cb8200ea90bdfba9c4ab95bdcb58f6654f5739438a6540a18a530e8160375c8d5ee2a767054b509c3a79dbda02721857403a
 DIST genpatches-5.12-19.base.tar.xz 744220 BLAKE2B 
63163732eeff70cf0eb344950247f69992145a4e7cbbe966eadaffda3be3f0e645b3d7cfc9c2284156385e761c02613ceec331b777b282da77b3d169cf3fb807
 SHA512 
8689a4f3fec6c29a88f7389296659579c13a2b664b94dc8147bd1b266019c310c30d19198db01feb60a421b1362aa15e72feb4cb19ac2ac2136ce12c42a21915
@@ -33,6 +35,7 @@ DIST gentoo-kernel-5.12.15-1.amd64.xpak 66395917 BLAKE2B 
b77c5e26863dc1c10da3c82
 DIST gentoo-kernel-5.12.15-1.arm64.xpak 59971350 BLAKE2B 
4231ed09d6efd9acae82078d259bef241223770fc95c24145a940ff3e4d712cfe52677a358d4fe26a6bf74129feaa3abad67e2d17eedd1e04f34758fd7ac5e1e
 SHA512 
9eb582dab725c1716b777986e0adf90b353ca481763b27c65240d6b4d8e52d54ca394848b3ff7977651606341e39fbc19b0002caaa8174916f298bfe480087d9
 DIST gentoo-kernel-5.12.15-1.x86.xpak 58062337 BLAKE2B 
2ea33f13f41f6153e117dc99fdb805ff6a24071b6231730ff159ea2597e203655e5d6daa632f4fc8ace6444d8ffec7e624d222500b32e7b33035ac5a56b3efcb
 SHA512 
62cae2c8e1fb42b3cf2ab48ade6fcbffcc03fe3b48c0d00fa7f2d3229e43a615887907e70b3219c3b040061134134f95c11c9b2d33a1f0ae568df7ec47507395
 DIST gentoo-kernel-5.12.16-1.amd64.xpak 66344196 BLAKE2B 
bf0ee9d5f5186527a829b8c040167c176f5a26aeb24fe31522349b161ebb2e5007c0c993c6a99a1d224713522f82c2c235d0b40466952c2afccacddf87ed
 SHA512 
3f2d4b25c2978a54ed5ce384a902a782c757dd2edd627a08122d9d85c7e89f6d642ade287c66f751d5bae099a708c4852f3b853991ebbcb1dafad9162fcdbf56
+DIST gentoo-kernel-5.12.16-1.arm64.xpak 59977017 BLAKE2B 
86b31e93fc1f2314ba095632ee257a4dc4daa6eb98a64d6bcf4c18393f2b050bfba7fd7407b637e7d8e1a20eb85fca1b9d5f84e2fe74f04dbdbc3acc01140975
 SHA512 
667e8d094835b606d7871843dac991fec62331edd7ef0bc03c9f2dc2bb7183c0265a831f2076b23ffbc3a008e677368a369a815f04f51bc2529505fb3731caa9
 DIST gentoo-kernel-5.12.16-1.x86.xpak 58066447 BLAKE2B 

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

2021-07-13 Thread Sam James
commit: 2844c33e8644b031127adc4842fd6c591b94765e
Author: Sam James  gentoo  org>
AuthorDate: Wed Jul 14 03:03:32 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jul 14 03:04:32 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2844c33e

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

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

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

diff --git a/sys-kernel/gentoo-kernel-bin/Manifest 
b/sys-kernel/gentoo-kernel-bin/Manifest
index 513c24f6435..92bcba37f7d 100644
--- a/sys-kernel/gentoo-kernel-bin/Manifest
+++ b/sys-kernel/gentoo-kernel-bin/Manifest
@@ -40,6 +40,7 @@ DIST gentoo-kernel-5.4.130-1.amd64.xpak 61373618 BLAKE2B 
4431a12633d68d87e95826f
 DIST gentoo-kernel-5.4.130-1.arm64.xpak 56048219 BLAKE2B 
72e54faf0ed99e570e71504afe5b721875fc4d491d73cff91c6534abd612962d9360c1efb01c0757ba9764211b3030b5c6032d63106b7eee9d8fb9d55683da36
 SHA512 
4b7cab1a6fd68b9c46cf4f4d5d78eb6d66bff424af9c3d2a844a072ee2578f679d636c2f185b033a55ae12ee3d7cfec5aeb2accb87a3a5e6ae1e19601c620374
 DIST gentoo-kernel-5.4.130-1.x86.xpak 53128397 BLAKE2B 
a4183f65fe7bc2b869b3556342434b90f577c88266a4462cfe4fd080584c333b7c934649894d9c570f1949b018614b96e17cd6b118aad08fd22e48d3a44515ea
 SHA512 
2ec7337c2ca20eb43c0423318199e36b8d64454d0594910d84d965d725ac416509f8be2b60d70f76f8a8d40a8c17b0d928f6cf8e20b8271d3f7008921d4ca10d
 DIST gentoo-kernel-5.4.131-1.amd64.xpak 61358364 BLAKE2B 
198334bf55e0b55316d6e0373a5cfbcd707a7cae0492b5dd72befd10dac53bc9369dc85f47483e79abf4d8db0a56ccc79ee47b55ebcae49c3df93882a3c13db3
 SHA512 
2c4b41fa72283ba2d09d09254141e3f1b5aa1cfdf80d84efde927a54a0ce1b3d911cfdbbe065ad3983134eee8f68c3656a722b5236edd7cc5295fdd02f339bb4
+DIST gentoo-kernel-5.4.131-1.arm64.xpak 56106784 BLAKE2B 
927c175773ca2897140764a5d5558818b51de95596c7a87f8cf42127f0698735e06e34458537d334810287d020aba039fe57863d2f78691de5caa90f031cca9b
 SHA512 
205fd52209234d26857eb962e1ea956ea5e7c44852663cb1e0a63a095e35f30a0448eb15c8a5ebda53129b4054c5172fe9db88c544ab842c5611dc4150d535a4
 DIST gentoo-kernel-5.4.131-1.x86.xpak 53137168 BLAKE2B 
3b7a631de49d5ba7de28e839bb5c67218b7e2f13ad051efde3d9b70142be81636e21d0d3cf48b94911851e5dab38db523e552a52034aa8901bc331fea86127ae
 SHA512 
49a7e2eef8572a51c9cdf24f16908d4527fa5d27db4a673fcea03277864fde724d92e667d4cb4ae0dea0d92a783720c19d5a5160439dcbe404694236a02a5b90
 DIST linux-5.10.tar.xz 116606704 BLAKE2B 
b923d7b66309224f42f35f8a5fa219421b0a9362d2adacdadd8d96251f61f7230878ea297a269a7f3b3c56830f0b177e068691e1d7f88501a05653b0a13274d1
 SHA512 
95bc137d0cf9148da6a9d1f1a878698dc27b40f68e22c597544010a6c591ce1b256f083489d3ff45ff77753289b535135590194d88ef9f007d0ddab3d74de70e
 DIST linux-5.12.tar.xz 118112412 BLAKE2B 
842d921b9a73d2aaade763dbd2ec67bdfe0275baa6d628b775f5c87574ad7dc86f0419afcd48c10c1235f4bffa16084243f2cf4556e6afcd391e975fe8ba530b
 SHA512 
be03b6fee1d1ea8087b09874d27c0a602c0b04fd90ad38b975bd2c8455a07e83c29b56814aaf1389e82305fae0e4c2d1701075a7f0a7295dd28149f967ec5b3d

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

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

2021-07-13 Thread Sam James
commit: 9f39ff26daf49b4fd5896e5d753b81ef5a576fcb
Author: Sam James  gentoo  org>
AuthorDate: Wed Jul 14 03:03:49 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jul 14 03:04:33 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f39ff26

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

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

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

diff --git a/sys-kernel/gentoo-kernel-bin/Manifest 
b/sys-kernel/gentoo-kernel-bin/Manifest
index 92bcba37f7d..8f35d83fdc1 100644
--- a/sys-kernel/gentoo-kernel-bin/Manifest
+++ b/sys-kernel/gentoo-kernel-bin/Manifest
@@ -27,6 +27,7 @@ DIST gentoo-kernel-5.10.48-1.amd64.xpak 65536136 BLAKE2B 
be9827d86c0fe12b750aa5e
 DIST gentoo-kernel-5.10.48-1.arm64.xpak 59043938 BLAKE2B 
3747e7835e6d3ac4b0659d97a9d45eb9276a09258dac16488e7d701202d524a91406c179a388e215dea878614d66d01a5ffb4d45e898662d11dc597535993571
 SHA512 
167b5760026c6fff7bcc1ee4b5ae6e6befc287dab065495fdd712fef5249571ba6c72a270e54d9ff4ba41b81a08cced954994016b63e37813911372d686e3046
 DIST gentoo-kernel-5.10.48-1.x86.xpak 57223594 BLAKE2B 
cdaf9e1f4d49cfb1e772a5c5ad92bfcdca846a16a540032136845c1fc7256c6df405e2d1613377dc5046209a750bfb9b6d543203d604853b2f2d7dfb6e786c5e
 SHA512 
3c1e1895a89cff6f03fda61613c8bc1c62cce4c98992e354b9572965728ece2e7556121edc725a942a23b9eccdc52d6282ef3bd929cb79052ce2ff495a849db4
 DIST gentoo-kernel-5.10.49-1.amd64.xpak 65485861 BLAKE2B 
8968b059a030ec15baa34647f0738e7f7666e889feb070e6476a38fd4c13d60e30b0837b62e258dc74c8e8b936c7dc0c717c110e117750e79bb24980530d2ca8
 SHA512 
d3524763ee27f9529ea8dcc02335f59b04c2da8fcb9c093154b38632fdcee654e2641c888e4fcc9edfa54131763d2182d34df4ef8dc68a5033921130ecb87f9a
+DIST gentoo-kernel-5.10.49-1.arm64.xpak 59061383 BLAKE2B 
aaa58b2c6ffe3cba529597af8b6fffa0d4c091dda190a1e59f53787788b8884e36f0e0b56e48f12a861f97713992972f5cbfa1eecd6ca21ca1a4b2d21590d01f
 SHA512 
c8d05a0d7c5296de16c04c23ecbb290205a1fc502b7f923b83f8cc366f421a9bef20204977144d2ced491a705b0bc291da507861172514831b1e59db3921
 DIST gentoo-kernel-5.10.49-1.x86.xpak 57214239 BLAKE2B 
9f9740028a1c6498781a283f0fe823a137c9e49c3c51a217a89c54aaf9bd3ebf8c8c4205ac6c8e92c0a9b8c375b40b27d30054db05ce30908a9f40be17a3cfc4
 SHA512 
65626b07476e7d6c82643691f0197e63dd2756789b1a241c6918b305e1dc98500e27114fa781c93f46028aeff6f4194f0b84768d155829add3d50eb8febeebcd
 DIST gentoo-kernel-5.12.15-1.amd64.xpak 66395917 BLAKE2B 
b77c5e26863dc1c10da3c82904ef035f93c7bbbf60925f7c91836b7cfbb3d32335a8cad78a9b1a90a6d462f34fb798c393f7f992c54ffe6e1a5391b1e63652a4
 SHA512 
3efe58c6e9d948981fe51fc93ceb73de2f9a049cd396c62e743b3c5033eaf60b05d3100b2377060d1ba6245118281a49447bb5404dd4cc12b616a682fc4c252a
 DIST gentoo-kernel-5.12.15-1.arm64.xpak 59971350 BLAKE2B 
4231ed09d6efd9acae82078d259bef241223770fc95c24145a940ff3e4d712cfe52677a358d4fe26a6bf74129feaa3abad67e2d17eedd1e04f34758fd7ac5e1e
 SHA512 
9eb582dab725c1716b777986e0adf90b353ca481763b27c65240d6b4d8e52d54ca394848b3ff7977651606341e39fbc19b0002caaa8174916f298bfe480087d9

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

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

2021-07-13 Thread YOSHIOKA Takuma
commit: 5eae9fefb91c57a72d69958d63ed2e8c8825ad19
Author: YOSHIOKA Takuma  hard-wi  red>
AuthorDate: Tue Jul 13 20:47:56 2021 +
Commit: YOSHIOKA Takuma  hard-wi  red>
CommitDate: Tue Jul 13 20:47:56 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5eae9fef

app-misc/watchexec: bump deps to follow new archive

Source archive uploaded on GitHub is updated and dependencies seem to be
changed.

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: YOSHIOKA Takuma  hard-wi.red>

 app-misc/watchexec/Manifest| 14 ++
 app-misc/watchexec/watchexec-1.16.2.ebuild | 28 ++--
 2 files changed, 28 insertions(+), 14 deletions(-)

diff --git a/app-misc/watchexec/Manifest b/app-misc/watchexec/Manifest
index 899db161f..e878b7621 100644
--- a/app-misc/watchexec/Manifest
+++ b/app-misc/watchexec/Manifest
@@ -1,11 +1,13 @@
 DIST aho-corasick-0.7.15.crate 113071 BLAKE2B 
a22743be74f873b9545648db6a994250e3e39b92ac99601580e3b02194d205e921bff0b1952a4cca3399a3a7828555a1abfb0c1466f3930811c6b95c1a07ec5e
 SHA512 
e67816efa7305937a7cbbb0079b91b8afa3fdab52cfb8eeddeee156f18bbeed26f941cd4cb18ab2bdc1da5a9ff1dcbe9d2090deec68c00287bd99ace18ee8b24
 DIST aho-corasick-0.7.18.crate 112923 BLAKE2B 
4f6947d1aacf89ccfab0592cdc55fa61ef09cea38231d3f758765dbce328a810c0b588be4ba96e81d64955379ee005722d22a7aec39caea6e72342245d7ca34f
 SHA512 
7a23b16231a90d23ee60ad4c81bc225410599a4560d33d3a203138fc540c39cf1000100fed3aed40dcc371c3635656a3792545dca5dd1aefbde00d8774eebd00
 DIST assert_cmd-1.0.4.crate 26621 BLAKE2B 
0acd8a6c09cfe51594508fa7c4dc27e8831672c4e1ddbd6d392c3b439b21f3cffd8613c4abd379cc69ac500d640433aae61f5ae5a3e5908deaec193fecb70146
 SHA512 
125d792ab8078a205bdf5cb396c8ac4b0c7330b7773af0014c4f17e23af56dad30f14bee51a87cdf615bdf17c849274dcf7df1ebcd9c479cc8c2223c6203784a
+DIST assert_cmd-1.0.7.crate 26777 BLAKE2B 
a27a6c59969b6202ceebc72b50331e056f02e05befe710f3f1fe77622a61ed4ed11e258cc2df43f52a7f57c18e4bc9b33c72946d012a4fd6f5417c1a5fedddff
 SHA512 
9e0e67bdf14df8235cdd11d9c453bb2f0723188a39961d8aab26fd98f2c64629d085c8d3eb50ee88371ecdc2ea306bfe5dda1ca4872082b40f13a4cea99e05d1
 DIST bitflags-1.2.1.crate 16745 BLAKE2B 
0fa6d3ce44aad7616d5cd02aad8c1d0b0fed4022650eb43067c4a72e6fc88da05442674fa51826e4858a47c9de233e1ba2229820af094197cd11bb416ceffb2b
 SHA512 
ad89b3798845e23737a620bba581c2ff1ff3e15bac12555c765e201d2c0b90ecea0cdbc5b5b1a3fa9858c385e8e041f8226f5acfae5bbbe9925643fff2bf3f0b
 DIST bstr-0.2.15.crate 344206 BLAKE2B 
3a4f24d2a039f7aeee3b6fcbfcc2fa72f1ef8a06ff8bc039af055739436655851565a57e5a4f86a7984b00ee7598c1fbdf26f3302929f91d7efb1327fd36eb57
 SHA512 
6e464ca1aec722a283759ff6978bab1769dfc8d61aa683f8e4c59bd69c7be2fe86c5470f4c54457871c6640e2d50b6b882747ec567098eb78e62f7cb07cb93a2
 DIST bstr-0.2.16.crate 330346 BLAKE2B 
75a345f3a5d428ec7278cd10fa676f5bb72685c65c4fe68163943cf3142b43ac45d458bce9323447b201ffcc91aa82cd8c762cb1954c055e34b1a5cebc686ee8
 SHA512 
33e82e5637efdc2f404ab9405331ae135df12586785491c3e61e70ea8406c67e2109e550cc70a4ab8e95d054e8519c48257fd3b55ef0b67b2530914a9a0b0fac
 DIST byteorder-1.4.3.crate 22512 BLAKE2B 
d39c546ba7346df315297fc53da4bfc77ecb1f38567ddb788549ee31cae2719a8bc0b7d1f1705abb3cff033aa57af004987d90748f5a31765273b3223a011c0d
 SHA512 
8c8000eb8ecf40351c9ce36a3a8acd7a02f81786d1b11aab85adfeffa0f2267ed74df29b2ca5d1d38128484d1d3cad2b673aa0d0441dcd0620dfd3934bb888fa
 DIST cc-1.0.67.crate 53486 BLAKE2B 
42fd02a5886df50857075c909819c8afcf091cee6b7bc517848786f287f4559e70a07f0a0f42a742baa2665465dfdb2139ecac7e93f1a41b16eab30556eb0259
 SHA512 
f1ad4abdaad2667b190d1f8df8515f603107be1f69bdbdc02b5159764a6ed18b3f672d6b06af50c7f2fd3e6e3dad5df0fcd0dda762d909ba0922c769f1efbe05
+DIST cc-1.0.68.crate 55936 BLAKE2B 
9bbbeda78b8c3aca487e770cddbe11bf4686424bd33d023ad66e1fbdfc8dcbc17fd85c15905e0edbed8745202c01aea13d4f03a7f8f655e5806da152565419aa
 SHA512 
faca9aa91488808f920f1d88422cc8a69790aa6dbd7bd2cc5d08a579d248faafd0fd675e8499e56aef6715398c278db1fa2079511d211d41aa65741de5d5ac8c
 DIST cfg-if-0.1.10.crate 7933 BLAKE2B 
063a96ed176f34f788666b40adc483d147fc011dee941ab60569ddd0e57502b5dd06ed71090f4e14ce005d06e240500a286f74652615e9d068fba649610d8cf8
 SHA512 
9d22616bfb4a75770a828a0a3cddac6787297a5fdc53eb17e25811cc94de717f2de8bd66d53c5d65ba1c83d8892aefee5ae758cf56a1ef0a0c3120f70b244339
 DIST cfg-if-1.0.0.crate 7934 BLAKE2B 
e99a5589c11d79d77a4537b34ce0a45d37b981c123b79b807cea836c89fc3926d693458893baca2882448d3d44e3f64e06141f6d916b748daa10b8cc1ae16d1b
 SHA512 
0fb16a8882fd30e86b62c5143b1cb18ab564e84e75bd1f28fd12f24ffdc4a42e0d2e012a99abb606c12efe3c11061ff5bf8e24ab053e550ae083f7d90f6576ff
 DIST clap-2.33.3.crate 201925 BLAKE2B 
bec9c866481c5b3fddeb314f68af9bce38fc421e42816182de3209e8ea3447b72cf033e6251eea27fe974eff8085b7d98cdd2911b5cc0ec6b4bf4c750deb8a25
 SHA512 
3eb0fd648e2e3f9e5ff69a5e6cf0d867304fe18523accd036f28a86de368e4774088a6936c108ccc045092c539fe7f7494ea96420ebf6b4bec16880cea84bedf
@@ -19,14 +21,17 @@ DIST derive_builder-0.10.2.crate 29777 BLAKE2B 

[gentoo-commits] repo/gentoo:master commit in: games-board/gnuchess/

2021-07-13 Thread Sebastian Pipping
commit: bf8505de6ec2de62cbb79d02f4ce6d7e3770fce0
Author: Sebastian Pipping  gentoo  org>
AuthorDate: Wed Jul 14 00:29:49 2021 +
Commit: Sebastian Pipping  gentoo  org>
CommitDate: Wed Jul 14 00:29:49 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf8505de

games-board/gnuchess: 6.2.9

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

 games-board/gnuchess/Manifest  |  1 +
 games-board/gnuchess/gnuchess-6.2.9.ebuild | 17 +
 2 files changed, 18 insertions(+)

diff --git a/games-board/gnuchess/Manifest b/games-board/gnuchess/Manifest
index 9f86c69e766..86efcc4555b 100644
--- a/games-board/gnuchess/Manifest
+++ b/games-board/gnuchess/Manifest
@@ -1 +1,2 @@
 DIST gnuchess-6.2.8.tar.gz 804080 BLAKE2B 
7079c07ae7cd2f225c428a7bf14d53eec394382508544994918b87db35d5cbdeb9cf42a11f5bc2f9c0c7b778384d6cdb9aad4490bc9cfd40a513fc2e36cbdd67
 SHA512 
9146ee727c1eb8002eb3b1e762d71876b512eff0799eafec7019d5312766fe2bd6655c622e66f86e92f80d2f3666e48158a1245b42c30bd3221a8b379689ecdd
+DIST gnuchess-6.2.9.tar.gz 802697 BLAKE2B 
e450e1d77f3158f2a063a7fc80985ad6d59f26a17a86aa9d18d86f32ee1c01fba100e59b02ea65276a1ee480ed050fbafd68635d40bae75205763fd34bfd608a
 SHA512 
7e2ec9e14ab331ffaab2dd60da81b64b5c5a07cf14f9139d67c77886038512d15511939b8e683675ea6611e24ff2c38212a7f288540448c9225c263435f71963

diff --git a/games-board/gnuchess/gnuchess-6.2.9.ebuild 
b/games-board/gnuchess/gnuchess-6.2.9.ebuild
new file mode 100644
index 000..3d7f17e471b
--- /dev/null
+++ b/games-board/gnuchess/gnuchess-6.2.9.ebuild
@@ -0,0 +1,17 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Console based chess interface"
+HOMEPAGE="https://www.gnu.org/software/chess/chess.html;
+SRC_URI="mirror://gnu/chess/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+
+src_configure() {
+   # bug #491088
+   econf --without-readline
+}



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

2021-07-13 Thread YOSHIOKA Takuma
commit: 46b9416baf59a2829b011e9e95f6b1bb46af456e
Author: YOSHIOKA Takuma  hard-wi  red>
AuthorDate: Tue Jul 13 20:29:23 2021 +
Commit: YOSHIOKA Takuma  hard-wi  red>
CommitDate: Tue Jul 13 20:29:23 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=46b9416b

app-misc/watchexec: fix the manifest for 1.16.2

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: YOSHIOKA Takuma  hard-wi.red>

 app-misc/watchexec/Manifest | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/watchexec/Manifest b/app-misc/watchexec/Manifest
index f1511c82b..899db161f 100644
--- a/app-misc/watchexec/Manifest
+++ b/app-misc/watchexec/Manifest
@@ -118,7 +118,7 @@ DIST wasi-0.9.0+wasi-snapshot-preview1.crate 31521 BLAKE2B 
716bdd2ec46d0bc9911c5
 DIST watchexec-1.15.3.tar.gz 165411 BLAKE2B 
39ceec055886eb13c971a29cad4851042a0ecbb6d04b5d8b1a3e0b3ea098fcb06aca658fd3d3c6bb38aaa86c5f6c1bcf292ae5f2aa99932da86c1299ae7eb262
 SHA512 
4e8a16c96b7450a2af3f74c19a351a0eef35ff5841e6eab5f4591558b986ea9a5179c98a279d037845d1e771196d61768eab638d081ee3d27cd609904c436f53
 DIST watchexec-1.16.0.tar.gz 167728 BLAKE2B 
a9ff05f82bea185a5365052525a061d3d8602e87d637b41c0e1a0608d4790b5d251e08f92fba4475eed06b78227d5d49a51b633baf75074cb73ec1f8d4e20c58
 SHA512 
d3873c02fdec4e0f64b8325be828f12738d14ac5e7df8f849d40f03b70dd9c0a777ad658672e972d416f6d98a717e900fc873d07b58733d3a4b77ac8cacb6082
 DIST watchexec-1.16.1.tar.gz 170607 BLAKE2B 
76151d581f423f4234f0771bed8dfe02d1c37c9a9c265f380d3dee2ea9c846dcd00e6caa03aaf569c549934715099ab6aa3ef73fb5342bdf0c4252dd45c52250
 SHA512 
12f87ef006d96b7af9f519d80aa693e6edf0c9f0879ccc670ea428879d47fee6c0e2abb316bddd9e03e06c44bdf87a64c8aaa903f15ca83fc6fedc797e4c7f4c
-DIST watchexec-1.16.2.tar.gz 170984 BLAKE2B 
dab73d60b678208991fcc5fd8dfe7364695c4bcf1a17a2b14ade3c9c74342a1bad9ca6c892c9590d18f0482b600f01378f96b3086408bed1bfce34336dd7fa66
 SHA512 
5ed02f3ac2ff0f5e8e2859da690c9da9737bc377bc1e9a3fb222f4b65dfdf2678f366a2397261d764da39b8f473b50bca0b3224a7a7300a1fb48834617349dd0
+DIST watchexec-1.16.2.tar.gz 170954 BLAKE2B 
2fd21cdfe01d7f30c7c7a1b5d32ba94bb2a9f3127752a14577c7e381475292d50662fde53b875e0f35dafb8d71d90a9f73205f4e6daf3acbc8881c65b939d31c
 SHA512 
9184f9aef6a80b603b7cfe92447e0008028edfb0e8a9345737d477a5503b411b2b637350a63b656556eea341b567e262584880ac1785bbae5ab39238152976fc
 DIST which-4.1.0.crate 7684 BLAKE2B 
4d8eb0a263c14b506f446fa808d9326c6e4e781cc2d79a1f6efcf7b9bb9a294d3266a2f3de4526ac0ec08ca65a18622ac064e9ae1e86dd1b325b122f684371f8
 SHA512 
4fffd3dd4ac73f5c232ee8a53bbc948a7295a2a51ec3f792d5d0aa84ceb6c2322fc11b35d29f5d3181c763b34c434c5ea2807ae6cc3393cd30d68b0fd44c7a22
 DIST winapi-0.2.8.crate 455145 BLAKE2B 
50f3c2a0cf4eeedd6891b11392e520c1cca139a71f8f736eabaf43aa7e4b1b5d57697918978220459572d373940edf971eb8302f292cbff832283e905076319a
 SHA512 
115e6f027cdd4a56f77ca24f4ab249d2a6cac1e1f955c826a9b6ee05db4861790a533f5e674aebbb540370fff52ed41618c2cd7c906e73200e92df213109cebe
 DIST winapi-0.3.9.crate 1200382 BLAKE2B 
cb5799749ccd935ea2d7068d953cecf19f543d9db7dc16ad4584bb7005373ada34937a3ced7225544d8bc765da599911c7a3190efefb3a25b7c1bb7123b4f673
 SHA512 
ff8b7b78065f3d8999ec03c725a0460ebc059771bf071c7a3df3f0ecd733edf3b0a2450024d4e24e1aedddaecd9038ce1376c0d8bbf45132068cf45cf4a53a97



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

2021-07-13 Thread YOSHIOKA Takuma
commit: 06bdce4949dcd8810900a1fbabcd0a4ac258c3c2
Author: YOSHIOKA Takuma  hard-wi  red>
AuthorDate: Tue Jul 13 20:27:18 2021 +
Commit: YOSHIOKA Takuma  hard-wi  red>
CommitDate: Tue Jul 13 20:27:18 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=06bdce49

media-gfx/oxipng: version bump 5.0.0

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: YOSHIOKA Takuma  hard-wi.red>

 media-gfx/oxipng/Manifest|  32 +++
 media-gfx/oxipng/oxipng-5.0.0.ebuild | 101 +++
 2 files changed, 133 insertions(+)

diff --git a/media-gfx/oxipng/Manifest b/media-gfx/oxipng/Manifest
index b00e77105..43744c6aa 100644
--- a/media-gfx/oxipng/Manifest
+++ b/media-gfx/oxipng/Manifest
@@ -1,4 +1,5 @@
 DIST adler-0.2.3.crate 12168 BLAKE2B 
c7743569d700d7ec3185e0459a18181148f8cd7579f4da1fab30eb2e3c3cabbe5a7467f7760f0cba4b2fdeb62f8d988ee1f24637685d76db7acb56f679cfc996
 SHA512 
565849eba122eb94d240a0cba875035537058cc168f137a8a3b99392d753815d56fa0e1a1e851062632700b0e3d12caf67f5f768b9f727956a2e5b599029e9dc
+DIST adler-1.0.2.crate 12778 BLAKE2B 
a1dc17786adae945ac09d3525e609ed944e6465690787bbb831a1b9d53793cba1989793d0a5606d5d23ee20d36457923d451b1b3530c9ec7072a487aa3e55bbd
 SHA512 
7ab190d31890fc05b0b55d8e2c6527a505e06793d5496be0b3831e0513412f9ba97f8148f6f68ed0770fa9cd980a5092d885e058becf1d5506b7c74b82674aa1
 DIST adler32-1.1.0.crate 5442 BLAKE2B 
1a4d932402a584fa6edda414c0dedff4994afcee7bfc71f85f6e8b4568de835bb7a3eebad1b5ac0be7f59cdb0e5ce5dfad2c59d5ecf819d2a6abbbd7ea37
 SHA512 
57e3b3812e2747470c63edf64e13827c96ef8dd2311833b7f616ec63cf57ce8967636ec4d57464b607f570df06f6f648214d12ddc567e761b2de2ab16c8a7271
 DIST adler32-1.2.0.crate 6411 BLAKE2B 
51d44ccfd774158687b8244e83377e40ff896364e3d41e9015665131cc2a176d4ca0ab5a84df027dec0869ee735ee36f5687a06c1d2341de666070cdbab89483
 SHA512 
8ed72612fb78e213fc92963fdae0508ef26988656c939e6c9cddccbe2658d4a956a8ae934d9658262a8b2687dc446b3f1ee7614128b440487c81e606526dfda3
 DIST ansi_term-0.11.0.crate 17087 BLAKE2B 
9bd35c045a01ce4c6c4a5db1b4f15e9412bb97426eec19d4421dffbec633de8d13452c13c1dc1b30998690b78d7ed38311aca700087f13a81f66bd1d5d7300c4
 SHA512 
a637466a380748f939b3af090b8c0333f35581925bc03f4dda9b3f95d338836403cf5487ae3af9ff68f8245a837f8ab061aabe57a126a6a2c20f2e972c77d1fa
@@ -10,11 +11,15 @@ DIST bit-vec-0.6.2.crate 19630 BLAKE2B 
84580a6f99393e507f3fd76b543fd357fc018745e
 DIST bit-vec-0.6.3.crate 19927 BLAKE2B 
f5bd3bb9c87fdf3b206739b74df20cab50a1a45af3a58b2642a5a061c26207884be58ef8369a3cd06dfd3615bff0ce15915fdd4b6b6f03facc4a0f86c0b7e910
 SHA512 
b4b4a82c80d0ff13527ae4fff449ac9c1c7bc519c013af6ea3428348e0e5b9306b725c0a13a42d7d9dcf0f895a9eee0c63695a2503eb7fd2200083c9ea3a9aa8
 DIST bitflags-1.2.1.crate 16745 BLAKE2B 
0fa6d3ce44aad7616d5cd02aad8c1d0b0fed4022650eb43067c4a72e6fc88da05442674fa51826e4858a47c9de233e1ba2229820af094197cd11bb416ceffb2b
 SHA512 
ad89b3798845e23737a620bba581c2ff1ff3e15bac12555c765e201d2c0b90ecea0cdbc5b5b1a3fa9858c385e8e041f8226f5acfae5bbbe9925643fff2bf3f0b
 DIST build_const-0.2.1.crate 4499 BLAKE2B 
da7f1040560862b76447426be8884bf0ac62d2f2faca0a572b8cf566fcbbaaf27dd1f260fb1333c3cf9410251433239616aaf0ca1a2be644fd4cbcc2b908eeb1
 SHA512 
4e210078ad781bd645381f469285f0e4d20cc8c416818c27d98c0033f070b708a6ab27933f9c3660c83e6cbfb3afcb7ec753f9c186b0c75b99db37dff1cde658
+DIST build_const-0.2.2.crate 4511 BLAKE2B 
44316d3b468e73fbeedbaa1ae35705196f787707ea861355d926e7fbc97f759bc7fe0bf88d2e97fb9b981fc7347fe0e849ce2094f50ab53075b4dfe7522089f0
 SHA512 
47a9949b7196791af2507d6e3a28843da67621e5b56177d3b13477e070487cdd1059207588a55bf1a393df9118e71e3024b439a3c6281b6c12b5bdee66b237a6
 DIST bytemuck-1.2.0.crate 17957 BLAKE2B 
b033ed13bc59e13117b414f4b182105acbda408415ad99293308063704571a5fe1805245a1e7d021fcef81d8479bbc722adeb49d2584a7d76f78fa1297da292f
 SHA512 
b20f061231518c9268c7f2cbc7614e4ff84f8af017dfec9297c61dea6f4d75b41b345129eb137fbc35cb0e9e92f35fdaf15eadb87c1b99027284d30ebe8c7800
 DIST bytemuck-1.4.1.crate 23450 BLAKE2B 
dfa2dd2cf2861069238076d7986f0395297989d6f7838b5c6e7c7190287a533b61aa6fefacb73fc821ed281738ada6045966f8bb99bf89e604247494f6bbd7e1
 SHA512 
234f524538afd0e28049d1559d0aafbc2803b9461c6b7f65525a3a8d9a9042886acfbcc037dcc4837cc9c42d9f2208eec61536ce559939064d5b0cab73d9e1b3
+DIST bytemuck-1.7.0.crate 27057 BLAKE2B 
8ee0782cc080cae2c76738931be7076c0ab3529c07b1e03e2924e5e2940210ada4129731376016bafdceeff42984a5a3e5f9db7789071ef11d4e3902edac2857
 SHA512 
1512e461d17d65f9f462ea12151ebce82a84924a83422d213e690c68f41a024f99d825131a6f5de19994c5610f264c42ef8e09eca8378f5a99e325eecb2bdb00
 DIST byteorder-1.3.4.crate 21943 BLAKE2B 
278b24e036e920f84683f883991a967d997883bc80edefc5b69f52551794a37e5051786a1ac1b7a30bf2f5cad7318d781f189a7b2e496e2743df01262d5c33d6
 SHA512 
0618ce2cd6f3f6c586201d9aee8c8aaa08f99c9f9f215cf448b3cb6af1ac741845f5279953544caaec7fcf0beec1474bb991bee1ad0c0dac0c3f1d3ddd99e2d9
+DIST byteorder-1.4.3.crate 22512 BLAKE2B 

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

2021-07-13 Thread Sam James
commit: 3644068281654df2ff132ec09dd28b2bb0ec
Author: Sam James  gentoo  org>
AuthorDate: Tue Jul 13 23:19:34 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jul 13 23:23:00 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36440682

acct-user/opm: fix group membership

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

 acct-user/opm/{opm-0.ebuild => opm-0-r1.ebuild} | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/acct-user/opm/opm-0.ebuild b/acct-user/opm/opm-0-r1.ebuild
similarity index 73%
rename from acct-user/opm/opm-0.ebuild
rename to acct-user/opm/opm-0-r1.ebuild
index f01d1ef24cd..ed82e1d8a36 100644
--- a/acct-user/opm/opm-0.ebuild
+++ b/acct-user/opm/opm-0-r1.ebuild
@@ -6,4 +6,7 @@ EAPI=8
 inherit acct-user
 
 DESCRIPTION="User for an open proxy monitor"
-ACCT_USER_ID=272
+ACCT_USER_ID=127
+ACCT_USER_GROUPS=( opm )
+
+acct-user_add_deps



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

2021-07-13 Thread Sam James
commit: 7bde590d74b5967aa053cb7c65e2f28f835b35d1
Author: Sam James  gentoo  org>
AuthorDate: Tue Jul 13 23:25:10 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jul 13 23:25:10 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7bde590d

net-misc/bopm: fix group membership

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

 net-misc/bopm/{bopm-3.1.3-r5.ebuild => bopm-3.1.3-r6.ebuild} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/bopm/bopm-3.1.3-r5.ebuild 
b/net-misc/bopm/bopm-3.1.3-r6.ebuild
similarity index 96%
rename from net-misc/bopm/bopm-3.1.3-r5.ebuild
rename to net-misc/bopm/bopm-3.1.3-r6.ebuild
index ca2ffd15a08..ae8dd5a2d89 100644
--- a/net-misc/bopm/bopm-3.1.3-r5.ebuild
+++ b/net-misc/bopm/bopm-3.1.3-r6.ebuild
@@ -61,7 +61,7 @@ src_install() {
 
 pkg_postinst() {
if [[ -n "${REPLACING_VERSIONS}" ]] ; then
-   if has_version "<${CATEGORY}/${PF}" ; then
+   if has_version "<${CATEGORY}/${PN}-3.1.3-r6" ; then
ewarn "You need to update permissions on:"
ewarn "- /var/log/bopm"
ewarn "- /etc/bopm.conf"



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

2021-07-13 Thread Sam James
commit: 0d2a6147ff870e0da50c3cd41e45ba7d60a83401
Author: Sam James  gentoo  org>
AuthorDate: Tue Jul 13 23:22:29 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jul 13 23:23:01 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d2a6147

acct-group/opm: initial import

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

 acct-group/opm/metadata.xml | 8 
 acct-group/opm/opm-0.ebuild | 9 +
 2 files changed, 17 insertions(+)

diff --git a/acct-group/opm/metadata.xml b/acct-group/opm/metadata.xml
new file mode 100644
index 000..979bcc7aec9
--- /dev/null
+++ b/acct-group/opm/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   s...@gentoo.org
+   Sam James
+   
+

diff --git a/acct-group/opm/opm-0.ebuild b/acct-group/opm/opm-0.ebuild
new file mode 100644
index 000..a394950e580
--- /dev/null
+++ b/acct-group/opm/opm-0.ebuild
@@ -0,0 +1,9 @@
+# Copyright 2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit acct-group
+
+DESCRIPTION="Group for an open proxy monitor"
+ACCT_GROUP_ID=127



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

2021-07-13 Thread Sam James
commit: 0ebfbd8aa709618e2f53936fd93ff6486aa85e90
Author: Sam James  gentoo  org>
AuthorDate: Tue Jul 13 23:21:13 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jul 13 23:21:48 2021 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=0ebfbd8a

uid-gid.txt: fix UID/GID (127) for opm

Fixes: 8b0f399b52b6f3fd7a10ef9a753cceef0ccbb447
Signed-off-by: Sam James  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 f4a24a5..305b5b2 100644
--- a/files/uid-gid.txt
+++ b/files/uid-gid.txt
@@ -180,6 +180,7 @@ ntp 123 123 
acct
 fetchmail  124 124 
acct
 vacation   125 125 
acct
 rt 126 126 
acct
+opm127 127 
acct
 foldingathome  128 128 
acct
 rbot   129 129 
acct
 ros130 130 
acct
@@ -336,7 +337,6 @@ cvmfs   268 
268 acct
 kibana 269 269 
acct
 logstash   270 270 
acct
 spire  271 271 
acct
-opm272 -   
acct
 plugdev-   272 
acct
 bacula 273 273 
acct
 dnsmasq_exporter   274 274 
acct



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

2021-07-13 Thread Sam James
commit: e35051b40f2144e57ec65d6e2f606ccfed776095
Author: Robert Siebeck  r123  de>
AuthorDate: Tue Jul 13 16:53:14 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jul 13 23:14:30 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e35051b4

net-im/signal-desktop-bin: add new version 5.8.0

Signed-off-by: Robert Siebeck  r123.de>
Signed-off-by: Sam James  gentoo.org>

 net-im/signal-desktop-bin/Manifest |   1 +
 .../signal-desktop-bin-5.8.0.ebuild| 128 +
 2 files changed, 129 insertions(+)

diff --git a/net-im/signal-desktop-bin/Manifest 
b/net-im/signal-desktop-bin/Manifest
index ba57a650b5d..d6d8b86bfc7 100644
--- a/net-im/signal-desktop-bin/Manifest
+++ b/net-im/signal-desktop-bin/Manifest
@@ -1 +1,2 @@
 DIST signal-desktop_5.7.1_amd64.deb 111629162 BLAKE2B 
59166fbe11a92d15155af01f64dac541485dfe57e62925106495eb5111030943696b5d63958658ccb9f3f0c0acffd25e08f441f64748da9314962c0b802979b1
 SHA512 
be5f5df7579ef1641e96afe7315e5b687ad9cd622df0d601f351f218f7b4b0413499f925b2f349402027ef95ef67b116ef183ce5b8bee6cd730bbb04f947684b
+DIST signal-desktop_5.8.0_amd64.deb 111604106 BLAKE2B 
33a6e3a6cc57e193f4a5d85fee99f10a20a3eeacf39d8fc82bd23a7b62f43d17a605eb84ad1ded7292ca04f4cd1dcb367b5b44d69edc91fe32084a3ab7b1
 SHA512 
a85242647370913de2e623798f0851ff9c50c3dd67e7990637450537120ad75d8473424ef7c41efc08df549384392844df9e6851a19600bd3a436309db5da3b7

diff --git a/net-im/signal-desktop-bin/signal-desktop-bin-5.8.0.ebuild 
b/net-im/signal-desktop-bin/signal-desktop-bin-5.8.0.ebuild
new file mode 100644
index 000..4af36932f98
--- /dev/null
+++ b/net-im/signal-desktop-bin/signal-desktop-bin-5.8.0.ebuild
@@ -0,0 +1,128 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+MY_PN="${PN/-bin/}"
+
+inherit pax-utils unpacker xdg
+
+DESCRIPTION="Allows you to send and receive messages of Signal Messenger on 
your computer"
+HOMEPAGE="https://signal.org/
+   https://github.com/signalapp/Signal-Desktop;
+SRC_URI="https://updates.signal.org/desktop/apt/pool/main/s/${MY_PN}/${MY_PN}_${PV}_amd64.deb;
+
+LICENSE="GPL-3 MIT MIT-with-advertising BSD-1 BSD-2 BSD Apache-2.0 ISC openssl 
ZLIB APSL-2 icu Artistic-2 LGPL-2.1"
+SLOT="0"
+KEYWORDS="-* ~amd64"
+IUSE="+sound"
+
+RDEPEND="
+   app-accessibility/at-spi2-atk
+   app-accessibility/at-spi2-core
+   dev-libs/atk
+   dev-libs/expat
+   dev-libs/glib
+   dev-libs/nspr
+   dev-libs/nss
+   media-libs/alsa-lib
+   media-libs/mesa[X(+)]
+   net-print/cups
+   sys-apps/dbus[X]
+   x11-libs/cairo
+   x11-libs/gdk-pixbuf
+   x11-libs/gtk+:3[X]
+   x11-libs/libX11
+   x11-libs/libxcb
+   x11-libs/libxkbcommon
+   x11-libs/libXcomposite
+   x11-libs/libXcursor
+   x11-libs/libXdamage
+   x11-libs/libXext
+   x11-libs/libXfixes
+   x11-libs/libXi
+   x11-libs/libXrandr
+   x11-libs/libXrender
+   x11-libs/libXScrnSaver
+   x11-libs/libXtst
+   x11-libs/pango
+   sound? (
+   || (
+   media-sound/pulseaudio
+   media-sound/apulse
+   )
+   )
+"
+
+QA_PREBUILT="opt/Signal/signal-desktop
+   opt/Signal/chrome-sandbox
+   opt/Signal/crashpad_handler
+   opt/Signal/libEGL.so
+   opt/Signal/libffmpeg.so
+   opt/Signal/libGLESv2.so
+   opt/Signal/libnode.so
+   opt/Signal/libvulkan.so.1
+   opt/Signal/libVkICD_mock_icd.so
+   opt/Signal/libvk_swiftshader.so
+   opt/Signal/libvulkan.so
+   opt/Signal/swiftshader/libEGL.so
+   opt/Signal/swiftshader/libGLESv2.so
+   
opt/Signal/resources/app.asar.unpacked/node_modules/@journeyapps/sqlcipher/lib/binding/napi-v6-linux-x64/node_sqlite3.node
+   
opt/Signal/resources/app.asar.unpacked/node_modules/@signalapp/signal-client/prebuilds/linux-x64/node.napi.node
+   
opt/Signal/resources/app.asar.unpacked/node_modules/better-sqlite3/build/Release/better_sqlite3.node
+   
opt/Signal/resources/app.asar.unpacked/node_modules/curve25519-n/build/Release/curve.node
+   
opt/Signal/resources/app.asar.unpacked/node_modules/ffi-napi/build/Release/ffi_bindings.node
+   
opt/Signal/resources/app.asar.unpacked/node_modules/ffi-napi/node_modules/ref-napi/prebuilds/linux-x64/electron.napi.node
+   
opt/Signal/resources/app.asar.unpacked/node_modules/ffi-napi/node_modules/ref-napi/prebuilds/linux-x64/node.napi.node
+   
opt/Signal/resources/app.asar.unpacked/node_modules/ffi-napi/prebuilds/linux-x64/node.napi.uv1.node
+   
opt/Signal/resources/app.asar.unpacked/node_modules/libsignal-client/build/libsignal_client_linux.node
+   
opt/Signal/resources/app.asar.unpacked/node_modules/libsignal-client/build/libsignal_client_linux_x64.node
+   

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

2021-07-13 Thread Sam James
commit: 37d8abba4fe88f9417e51ed969ba649e62bcbd7a
Author: Robert Siebeck  r123  de>
AuthorDate: Tue Jul 13 16:53:14 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jul 13 23:14:31 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37d8abba

net-im/signal-desktop-bin: remove old version

Signed-off-by: Robert Siebeck  r123.de>
Closes: https://github.com/gentoo/gentoo/pull/21627
Signed-off-by: Sam James  gentoo.org>

 net-im/signal-desktop-bin/Manifest |   1 -
 .../signal-desktop-bin-5.7.1.ebuild| 125 -
 2 files changed, 126 deletions(-)

diff --git a/net-im/signal-desktop-bin/Manifest 
b/net-im/signal-desktop-bin/Manifest
index d6d8b86bfc7..72b1abb6465 100644
--- a/net-im/signal-desktop-bin/Manifest
+++ b/net-im/signal-desktop-bin/Manifest
@@ -1,2 +1 @@
-DIST signal-desktop_5.7.1_amd64.deb 111629162 BLAKE2B 
59166fbe11a92d15155af01f64dac541485dfe57e62925106495eb5111030943696b5d63958658ccb9f3f0c0acffd25e08f441f64748da9314962c0b802979b1
 SHA512 
be5f5df7579ef1641e96afe7315e5b687ad9cd622df0d601f351f218f7b4b0413499f925b2f349402027ef95ef67b116ef183ce5b8bee6cd730bbb04f947684b
 DIST signal-desktop_5.8.0_amd64.deb 111604106 BLAKE2B 
33a6e3a6cc57e193f4a5d85fee99f10a20a3eeacf39d8fc82bd23a7b62f43d17a605eb84ad1ded7292ca04f4cd1dcb367b5b44d69edc91fe32084a3ab7b1
 SHA512 
a85242647370913de2e623798f0851ff9c50c3dd67e7990637450537120ad75d8473424ef7c41efc08df549384392844df9e6851a19600bd3a436309db5da3b7

diff --git a/net-im/signal-desktop-bin/signal-desktop-bin-5.7.1.ebuild 
b/net-im/signal-desktop-bin/signal-desktop-bin-5.7.1.ebuild
deleted file mode 100644
index 31d7022a98d..000
--- a/net-im/signal-desktop-bin/signal-desktop-bin-5.7.1.ebuild
+++ /dev/null
@@ -1,125 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-MY_PN="${PN/-bin/}"
-
-inherit pax-utils unpacker xdg
-
-DESCRIPTION="Allows you to send and receive messages of Signal Messenger on 
your computer"
-HOMEPAGE="https://signal.org/
-   https://github.com/signalapp/Signal-Desktop;
-SRC_URI="https://updates.signal.org/desktop/apt/pool/main/s/${MY_PN}/${MY_PN}_${PV}_amd64.deb;
-
-LICENSE="GPL-3 MIT MIT-with-advertising BSD-1 BSD-2 BSD Apache-2.0 ISC openssl 
ZLIB APSL-2 icu Artistic-2 LGPL-2.1"
-SLOT="0"
-KEYWORDS="-* ~amd64"
-IUSE="+sound"
-
-RDEPEND="
-   app-accessibility/at-spi2-atk
-   app-accessibility/at-spi2-core
-   dev-libs/atk
-   dev-libs/expat
-   dev-libs/glib
-   dev-libs/nspr
-   dev-libs/nss
-   media-libs/alsa-lib
-   media-libs/mesa[X(+)]
-   net-print/cups
-   sys-apps/dbus[X]
-   x11-libs/cairo
-   x11-libs/gdk-pixbuf
-   x11-libs/gtk+:3[X]
-   x11-libs/libX11
-   x11-libs/libxcb
-   x11-libs/libxkbcommon
-   x11-libs/libXcomposite
-   x11-libs/libXcursor
-   x11-libs/libXdamage
-   x11-libs/libXext
-   x11-libs/libXfixes
-   x11-libs/libXi
-   x11-libs/libXrandr
-   x11-libs/libXrender
-   x11-libs/libXScrnSaver
-   x11-libs/libXtst
-   x11-libs/pango
-   sound? (
-   || (
-   media-sound/pulseaudio
-   media-sound/apulse
-   )
-   )
-"
-
-QA_PREBUILT="opt/Signal/signal-desktop
-   opt/Signal/chrome-sandbox
-   opt/Signal/crashpad_handler
-   opt/Signal/libEGL.so
-   opt/Signal/libffmpeg.so
-   opt/Signal/libGLESv2.so
-   opt/Signal/libnode.so
-   opt/Signal/libvulkan.so.1
-   opt/Signal/libVkICD_mock_icd.so
-   opt/Signal/libvk_swiftshader.so
-   opt/Signal/libvulkan.so
-   opt/Signal/swiftshader/libEGL.so
-   opt/Signal/swiftshader/libGLESv2.so
-   
opt/Signal/resources/app.asar.unpacked/node_modules/@journeyapps/sqlcipher/lib/binding/napi-v6-linux-x64/node_sqlite3.node
-   
opt/Signal/resources/app.asar.unpacked/node_modules/@signalapp/signal-client/prebuilds/linux-x64/node.napi.node
-   
opt/Signal/resources/app.asar.unpacked/node_modules/better-sqlite3/build/Release/better_sqlite3.node
-   
opt/Signal/resources/app.asar.unpacked/node_modules/curve25519-n/build/Release/curve.node
-   
opt/Signal/resources/app.asar.unpacked/node_modules/ffi-napi/build/Release/ffi_bindings.node
-   
opt/Signal/resources/app.asar.unpacked/node_modules/ffi-napi/prebuilds/linux-x64/node.napi.uv1.node
-   
opt/Signal/resources/app.asar.unpacked/node_modules/libsignal-client/build/libsignal_client_linux.node
-   
opt/Signal/resources/app.asar.unpacked/node_modules/libsignal-client/build/libsignal_client_linux_x64.node
-   
opt/Signal/resources/app.asar.unpacked/node_modules/ref-array-napi/node_modules/ref-napi/build/Release/binding.node
-   
opt/Signal/resources/app.asar.unpacked/node_modules/ref-napi/build/Release/binding.node
-   

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

2021-07-13 Thread Sam James
commit: 1095c83861c818ccde0cdd2df9aade11e3c9c057
Author: Sam James  gentoo  org>
AuthorDate: Tue Jul 13 22:54:58 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jul 13 23:06:00 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1095c838

net-misc/bopm: migrate to GLEP 81

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

 .../{bopm-3.1.3-r4.ebuild => bopm-3.1.3-r5.ebuild} | 23 +++---
 1 file changed, 16 insertions(+), 7 deletions(-)

diff --git a/net-misc/bopm/bopm-3.1.3-r4.ebuild 
b/net-misc/bopm/bopm-3.1.3-r5.ebuild
similarity index 78%
rename from net-misc/bopm/bopm-3.1.3-r4.ebuild
rename to net-misc/bopm/bopm-3.1.3-r5.ebuild
index d90d4d376cd..ca2ffd15a08 100644
--- a/net-misc/bopm/bopm-3.1.3-r4.ebuild
+++ b/net-misc/bopm/bopm-3.1.3-r5.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-inherit autotools user
+inherit autotools
 
 DESCRIPTION="Blitzed Open Proxy Monitor"
 HOMEPAGE="https://github.com/blitzed-org/bopm;
@@ -13,16 +13,14 @@ LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~alpha ~amd64 ~ppc ~x86"
 
+RDEPEND="acct-user/opm"
+
 PATCHES=(
"${FILESDIR}"/${P}-remove-njabl.patch
"${FILESDIR}"/${P}-autotools.patch
"${FILESDIR}"/${P}-quarantine-bad-pid-file.patch
 )
 
-pkg_setup() {
-   enewuser bopm
-}
-
 src_prepare() {
sed -i \
-e "s!/some/path/bopm.pid!/run/${PN}/${PN}.pid!" \
@@ -55,8 +53,19 @@ src_install() {
 
dodir /var/log/bopm
fperms 700 /var/log/bopm
-   fowners bopm:root /var/log/bopm
+   fowners opm:root /var/log/bopm
 
fperms 600 /etc/bopm.conf
-   fowners bopm:root /etc/bopm.conf
+   fowners opm:root /etc/bopm.conf
+}
+
+pkg_postinst() {
+   if [[ -n "${REPLACING_VERSIONS}" ]] ; then
+   if has_version "<${CATEGORY}/${PF}" ; then
+   ewarn "You need to update permissions on:"
+   ewarn "- /var/log/bopm"
+   ewarn "- /etc/bopm.conf"
+   ewarn "to be owned by opm:root"
+   fi
+   fi
 }



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

2021-07-13 Thread Sam James
commit: 170cea57f49c8374713292a55d90ac2d4bce87ef
Author: Sam James  gentoo  org>
AuthorDate: Tue Jul 13 22:54:04 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jul 13 23:05:59 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=170cea57

acct-user/opm: add 0

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

 acct-user/opm/metadata.xml | 8 
 acct-user/opm/opm-0.ebuild | 9 +
 2 files changed, 17 insertions(+)

diff --git a/acct-user/opm/metadata.xml b/acct-user/opm/metadata.xml
new file mode 100644
index 000..979bcc7aec9
--- /dev/null
+++ b/acct-user/opm/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   s...@gentoo.org
+   Sam James
+   
+

diff --git a/acct-user/opm/opm-0.ebuild b/acct-user/opm/opm-0.ebuild
new file mode 100644
index 000..f01d1ef24cd
--- /dev/null
+++ b/acct-user/opm/opm-0.ebuild
@@ -0,0 +1,9 @@
+# Copyright 2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit acct-user
+
+DESCRIPTION="User for an open proxy monitor"
+ACCT_USER_ID=272



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

2021-07-13 Thread Sam James
commit: 8b0f399b52b6f3fd7a10ef9a753cceef0ccbb447
Author: Sam James  gentoo  org>
AuthorDate: Tue Jul 13 22:49:15 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jul 13 22:52:23 2021 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=8b0f399b

uid-gid.txt: add uid/gid (272) opm

Use 'opm' (open proxy monitor) for future work like HOPM.

Bug: https://bugs.gentoo.org/591824
Bug: https://bugs.gentoo.org/781407
Signed-off-by: Sam James  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 3a4302e..f4a24a5 100644
--- a/files/uid-gid.txt
+++ b/files/uid-gid.txt
@@ -336,6 +336,7 @@ cvmfs   268 
268 acct
 kibana 269 269 
acct
 logstash   270 270 
acct
 spire  271 271 
acct
+opm272 -   
acct
 plugdev-   272 
acct
 bacula 273 273 
acct
 dnsmasq_exporter   274 274 
acct



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

2021-07-13 Thread Conrad Kostecki
commit: 0c3d1a9d7e1d873e64599b51ab2e5ffa56162e41
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Tue Jul 13 22:47:20 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Tue Jul 13 22:48:34 2021 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=0c3d1a9d

uid-gid.txt: drop uid/gid (127) chrony

The ntp user should be still used, so dropping.

Closes: https://bugs.gentoo.org/746116
Signed-off-by: Conrad Kostecki  gentoo.org>

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

diff --git a/files/uid-gid.txt b/files/uid-gid.txt
index 8790db7..3a4302e 100644
--- a/files/uid-gid.txt
+++ b/files/uid-gid.txt
@@ -180,7 +180,6 @@ ntp 123 123 
acct
 fetchmail  124 124 
acct
 vacation   125 125 
acct
 rt 126 126 
acct
-chrony 127 127 
acct
 foldingathome  128 128 
acct
 rbot   129 129 
acct
 ros130 130 
acct



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

2021-07-13 Thread Conrad Kostecki
commit: 5297b125d32eb6f3db10f9b7ae39321d41738921
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Tue Jul 13 22:32:38 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Tue Jul 13 22:37:59 2021 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=5297b125

uid-gid.txt: add uid/gid (92) uwsgi_exporter

Bug: https://bugs.gentoo.org/781254
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 dc5d832..8790db7 100644
--- a/files/uid-gid.txt
+++ b/files/uid-gid.txt
@@ -143,6 +143,7 @@ usb -   85  
acct
 nullmail   88  88  
acct
 vpopmail   89  89  
acctRemoved from baselayout in 
[r1319](https://sources.gentoo.org/cgi-bin/viewvc.cgi/baselayout/trunk/share.Linux/passwd?limit_changes=0=916=1319=2545)
 partimag   91  91  
user.eclass
+uwsgi_exporter 92  92  
acct
 fluentd93  93  
acct
 reg94  94  
acct
 radius 95  95  
acct



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

2021-07-13 Thread Conrad Kostecki
commit: f99b7ba754e41ef50fcab3546b3135cfdcec3e67
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Tue Jul 13 22:30:49 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Tue Jul 13 22:37:58 2021 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=f99b7ba7

uid-gid.txt: add uid/gid (93) fluentd

Bug: https://bugs.gentoo.org/781197
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 5f04208..fe93106 100644
--- a/files/uid-gid.txt
+++ b/files/uid-gid.txt
@@ -143,6 +143,7 @@ usb -   85  
acct
 nullmail   88  88  
acct
 vpopmail   89  89  
acctRemoved from baselayout in 
[r1319](https://sources.gentoo.org/cgi-bin/viewvc.cgi/baselayout/trunk/share.Linux/passwd?limit_changes=0=916=1319=2545)
 partimag   91  91  
user.eclass
+fluentd93  93  
acct
 reg94  94  
acct
 radius 95  95  
acct
 burrow_exporter96  96  
acct



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

2021-07-13 Thread Conrad Kostecki
commit: 617e961715d118cd4eeec11d01cb905b26abb6da
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Tue Jul 13 22:28:19 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Tue Jul 13 22:37:58 2021 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=617e9617

uid-gid.txt: add uid/gid (97) elasticsearch_exporter

Bug: https://bugs.gentoo.org/781224
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 a0c2c94..354da8a 100644
--- a/files/uid-gid.txt
+++ b/files/uid-gid.txt
@@ -147,6 +147,7 @@ radius  95  
95  acct
 dovecot97  97  
user.eclass
 input  -   97  
acct
 input  -   97  
baselayout
+elasticsearch_exporter 98  98  
acct
 maradns99  99  
acct
 users  -   100 
acct
 messagebus 101 101 
acct



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

2021-07-13 Thread Conrad Kostecki
commit: c42a109842ec61ae4ee304217ea0d26b6bf7657c
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Tue Jul 13 22:30:06 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Tue Jul 13 22:37:58 2021 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=c42a1098

uid-gid.txt: add uid/gid (94) reg

Bug: https://bugs.gentoo.org/781221
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 5919e5b..5f04208 100644
--- a/files/uid-gid.txt
+++ b/files/uid-gid.txt
@@ -143,6 +143,7 @@ usb -   85  
acct
 nullmail   88  88  
acct
 vpopmail   89  89  
acctRemoved from baselayout in 
[r1319](https://sources.gentoo.org/cgi-bin/viewvc.cgi/baselayout/trunk/share.Linux/passwd?limit_changes=0=916=1319=2545)
 partimag   91  91  
user.eclass
+reg94  94  
acct
 radius 95  95  
acct
 burrow_exporter96  96  
acct
 dovecot97  97  
user.eclass



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

2021-07-13 Thread Conrad Kostecki
commit: 6286da8e85f679a3da44a60adcfff91c9151acfe
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Tue Jul 13 22:31:42 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Tue Jul 13 22:37:58 2021 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=6286da8e

uid-gid.txt: add gid (202) speech

Bug: https://bugs.gentoo.org/755188
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 fe93106..dc5d832 100644
--- a/files/uid-gid.txt
+++ b/files/uid-gid.txt
@@ -258,6 +258,7 @@ nofiles -   
200 acctRemoved from baselayout in 
[r2445](https://sources.ge
 qmaild 201 -   
acctRemoved from baselayout in 
[r1397](https://sources.gentoo.org/cgi-bin/viewvc.cgi/baselayout/trunk/share.Linux/passwd?limit_changes=0=1369=1397=2545)
 qmail  -   201 
acctRemoved from baselayout in 
[r1397](https://sources.gentoo.org/cgi-bin/viewvc.cgi/baselayout/trunk/share.Linux/group?limit_changes=0=1369=1397=2545)
 qmaill 202 -   
acctRemoved from baselayout in 
[r1397](https://sources.gentoo.org/cgi-bin/viewvc.cgi/baselayout/trunk/share.Linux/passwd?limit_changes=0=1369=1397=2545)
+speech -   202 
acct
 qmailp 203 -   
acctRemoved from baselayout in 
[r1397](https://sources.gentoo.org/cgi-bin/viewvc.cgi/baselayout/trunk/share.Linux/passwd?limit_changes=0=1369=1397=2545)
 roccat -   203 
acct
 qmailq 204 -   
acctRemoved from baselayout in 
[r1397](https://sources.gentoo.org/cgi-bin/viewvc.cgi/baselayout/trunk/share.Linux/passwd?limit_changes=0=1369=1397=2545)



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

2021-07-13 Thread Conrad Kostecki
commit: 81e00448b2ddae711e97c2b7c01b3024f87c4725
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Tue Jul 13 22:29:12 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Tue Jul 13 22:37:58 2021 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=81e00448

uid-gid.txt: add uid/gid (96) app-metrics/burrow_exporter

Bug: https://bugs.gentoo.org/781221
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 354da8a..5919e5b 100644
--- a/files/uid-gid.txt
+++ b/files/uid-gid.txt
@@ -144,6 +144,7 @@ nullmail88  88  
acct
 vpopmail   89  89  
acctRemoved from baselayout in 
[r1319](https://sources.gentoo.org/cgi-bin/viewvc.cgi/baselayout/trunk/share.Linux/passwd?limit_changes=0=916=1319=2545)
 partimag   91  91  
user.eclass
 radius 95  95  
acct
+burrow_exporter96  96  
acct
 dovecot97  97  
user.eclass
 input  -   97  
acct
 input  -   97  
baselayout



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

2021-07-13 Thread Conrad Kostecki
commit: e591dffa966123b6bcd63ca0de7f77a86d1a5556
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Tue Jul 13 22:20:47 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Tue Jul 13 22:37:56 2021 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=e591dffa

uid-gid.txt: add uid/gid (116) badvpn

Bug: https://bugs.gentoo.org/781476
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 0d81387..9dd1169 100644
--- a/files/uid-gid.txt
+++ b/files/uid-gid.txt
@@ -158,6 +158,7 @@ rpc 111 111 
historical  Used by net-nds/portmap, removed in 
[36e60cce11d7]
 unifi  113 113 
acct
 snapserver 114 114 
requested
 snapclient 115 115 
requested
+badvpn 116 116 
acct
 mythtv 117 117 
acct
 karma  118 118 
acct
 trickster  119 119 
acct



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

2021-07-13 Thread Conrad Kostecki
commit: c15032994b28f5983f0d8d0266574dfdbb9173f6
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Tue Jul 13 22:25:57 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Tue Jul 13 22:37:57 2021 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=c1503299

uid-gid.txt: add uid/gid (107) rabbitmq_exporter

Bug: https://bugs.gentoo.org/781248
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 525609d..a3b327b 100644
--- a/files/uid-gid.txt
+++ b/files/uid-gid.txt
@@ -154,6 +154,7 @@ polkitd 102 
102 acct
 plex   103 103 
acct
 freenet105 105 
acct
 lpadmin-   106 
acct
+rabbitmq_exporter  107 107 
acct
 snmp_exporter  108 108 
acct
 rundeck109 109 
acct
 cockroach  110 110 
acct



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

2021-07-13 Thread Conrad Kostecki
commit: dcb034f629e9b800dd6931cf9561f0ee06ba968e
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Tue Jul 13 22:24:12 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Tue Jul 13 22:37:57 2021 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=dcb034f6

uid-gid.txt: add uid/gid (109) rundeck

Bug: https://bugs.gentoo.org/781263
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 6c0c2ad..9c4d996 100644
--- a/files/uid-gid.txt
+++ b/files/uid-gid.txt
@@ -154,6 +154,7 @@ polkitd 102 
102 acct
 plex   103 103 
acct
 freenet105 105 
acct
 lpadmin-   106 
acct
+rundeck109 109 
acct
 cockroach  110 110 
acct
 rpc111 111 
historical  Used by net-nds/portmap, removed in 
[36e60cce11d7](https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36e60cce11d780582196c42d6b692897455d7a27)
 drone  112 112 
acct



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

2021-07-13 Thread Conrad Kostecki
commit: 88741aeb5639c50357e548028d6c45d254e7e81b
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Tue Jul 13 22:25:01 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Tue Jul 13 22:37:57 2021 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=88741aeb

uid-gid.txt: add uid/gid (108) snmp_exporter

Bug: https://bugs.gentoo.org/781251
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 9c4d996..525609d 100644
--- a/files/uid-gid.txt
+++ b/files/uid-gid.txt
@@ -154,6 +154,7 @@ polkitd 102 
102 acct
 plex   103 103 
acct
 freenet105 105 
acct
 lpadmin-   106 
acct
+snmp_exporter  108 108 
acct
 rundeck109 109 
acct
 cockroach  110 110 
acct
 rpc111 111 
historical  Used by net-nds/portmap, removed in 
[36e60cce11d7](https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36e60cce11d780582196c42d6b692897455d7a27)



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

2021-07-13 Thread Conrad Kostecki
commit: a35f760c9725dcae0b8d75aa94aba7f6769d7d53
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Tue Jul 13 22:27:04 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Tue Jul 13 22:37:58 2021 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=a35f760c

uid-gid.txt: add uid/gid (104) grok_exporter

Bug: https://bugs.gentoo.org/781230
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 a3b327b..a0c2c94 100644
--- a/files/uid-gid.txt
+++ b/files/uid-gid.txt
@@ -152,6 +152,7 @@ users   -   
100 acct
 messagebus 101 101 
acct
 polkitd102 102 
acct
 plex   103 103 
acct
+grok_exporter  104 104 
acct
 freenet105 105 
acct
 lpadmin-   106 
acct
 rabbitmq_exporter  107 107 
acct



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

2021-07-13 Thread Conrad Kostecki
commit: 818ff1800bc6e2c251971cc653c329249400cda9
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Tue Jul 13 22:15:18 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Tue Jul 13 22:37:56 2021 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=818ff180

uid-gid.txt: add uid/gid (121) rabbitmq

Bug: https://bugs.gentoo.org/701252
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 21ad4e3..f24dde2 100644
--- a/files/uid-gid.txt
+++ b/files/uid-gid.txt
@@ -159,6 +159,7 @@ unifi   113 
113 acct
 snapserver 114 114 
requested
 snapclient 115 115 
requested
 mythtv 117 117 
acct
+rabbitmq   121 121 
acct
 murmur 122 122 
acct
 ntp123 123 
acct
 fetchmail  124 124 
acct



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

2021-07-13 Thread Conrad Kostecki
commit: 00af8f46d7d49cf2ed305638cdbe1df0bce80b4b
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Tue Jul 13 22:14:29 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Tue Jul 13 22:37:56 2021 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=00af8f46

uid-gid.txt: add uid/gid (125) vacation

Bug: https://bugs.gentoo.org/781524
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 4eb9edc..21ad4e3 100644
--- a/files/uid-gid.txt
+++ b/files/uid-gid.txt
@@ -162,6 +162,7 @@ mythtv  117 
117 acct
 murmur 122 122 
acct
 ntp123 123 
acct
 fetchmail  124 124 
acct
+vacation   125 125 
acct
 rt 126 126 
acct
 chrony 127 127 
acct
 foldingathome  128 128 
acct



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

2021-07-13 Thread Conrad Kostecki
commit: 96418502af2e3d462d835eb8e39a1ba26a14d4a3
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Tue Jul 13 22:19:00 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Tue Jul 13 22:37:56 2021 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=96418502

uid-gid.txt: add uid/gid (119) trickster

Bug: https://bugs.gentoo.org/781530
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 781b988..6ff1e22 100644
--- a/files/uid-gid.txt
+++ b/files/uid-gid.txt
@@ -159,6 +159,7 @@ unifi   113 
113 acct
 snapserver 114 114 
requested
 snapclient 115 115 
requested
 mythtv 117 117 
acct
+trickster  119 119 
acct
 fcron  120 120 
acct
 rabbitmq   121 121 
acct
 murmur 122 122 
acct



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

2021-07-13 Thread Conrad Kostecki
commit: acf4e9028580d201956e61f91724f7eaa1e6fedd
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Tue Jul 13 22:22:37 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Tue Jul 13 22:37:57 2021 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=acf4e902

uid-gid.txt: add uid/gid (112) drone

Bug: https://bugs.gentoo.org/781302
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 9dd1169..f39fb18 100644
--- a/files/uid-gid.txt
+++ b/files/uid-gid.txt
@@ -155,6 +155,7 @@ plex103 
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)
+drone  112 112 
acct
 unifi  113 113 
acct
 snapserver 114 114 
requested
 snapclient 115 115 
requested



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

2021-07-13 Thread Conrad Kostecki
commit: 08ea6f4bd9221eb4cc7fb4e4481affaf95951a66
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Tue Jul 13 22:23:32 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Tue Jul 13 22:37:57 2021 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=08ea6f4b

uid-gid.txt: add uid/gid (110) cockroach

Bug: https://bugs.gentoo.org/781272
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 f39fb18..6c0c2ad 100644
--- a/files/uid-gid.txt
+++ b/files/uid-gid.txt
@@ -154,6 +154,7 @@ polkitd 102 
102 acct
 plex   103 103 
acct
 freenet105 105 
acct
 lpadmin-   106 
acct
+cockroach  110 110 
acct
 rpc111 111 
historical  Used by net-nds/portmap, removed in 
[36e60cce11d7](https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36e60cce11d780582196c42d6b692897455d7a27)
 drone  112 112 
acct
 unifi  113 113 
acct



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

2021-07-13 Thread Conrad Kostecki
commit: 177ea3f6bf7a725d3dff28146b7871357070ccd4
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Tue Jul 13 22:19:51 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Tue Jul 13 22:37:56 2021 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=177ea3f6

uid-gid.txt: add uid/gid (118) karma

Bug: https://bugs.gentoo.org/781521
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 6ff1e22..0d81387 100644
--- a/files/uid-gid.txt
+++ b/files/uid-gid.txt
@@ -159,6 +159,7 @@ unifi   113 
113 acct
 snapserver 114 114 
requested
 snapclient 115 115 
requested
 mythtv 117 117 
acct
+karma  118 118 
acct
 trickster  119 119 
acct
 fcron  120 120 
acct
 rabbitmq   121 121 
acct



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

2021-07-13 Thread Conrad Kostecki
commit: b7bcaca6c0acc0c8e7a7bf99ae016ac851c1dfc3
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Tue Jul 13 22:08:41 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Tue Jul 13 22:37:55 2021 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=b7bcaca6

uid-gid.txt: add uid/gid (130) ros

Bug: https://bugs.gentoo.org/781296
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 eef9309..eccd050 100644
--- a/files/uid-gid.txt
+++ b/files/uid-gid.txt
@@ -162,6 +162,7 @@ mythtv  117 
117 acct
 murmur 122 122 
acct
 ntp123 123 
acct
 fetchmail  124 124 
acct
+ros130 130 
acct
 icecast131 131 
acct
 gopherd132 132 
acct
 rtkit  133 133 
acct



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

2021-07-13 Thread Conrad Kostecki
commit: b9acf0308212fcb54098bace048214194d17cded
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Tue Jul 13 22:12:43 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Tue Jul 13 22:37:55 2021 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=b9acf030

uid-gid.txt: add uid/gid (127) chrony

Bug: https://bugs.gentoo.org/746116
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 fa05f63..2565ce5 100644
--- a/files/uid-gid.txt
+++ b/files/uid-gid.txt
@@ -162,6 +162,7 @@ mythtv  117 
117 acct
 murmur 122 122 
acct
 ntp123 123 
acct
 fetchmail  124 124 
acct
+chrony 127 127 
acct
 foldingathome  128 128 
acct
 rbot   129 129 
acct
 ros130 130 
acct



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

2021-07-13 Thread Conrad Kostecki
commit: 6f2c33f6775652a5cbcf5aa70c0b049a75654844
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Tue Jul 13 22:17:53 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Tue Jul 13 22:37:56 2021 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=6f2c33f6

uid-gid.txt: add uid/gid (120) fcron

Bug: https://bugs.gentoo.org/781518
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 f24dde2..781b988 100644
--- a/files/uid-gid.txt
+++ b/files/uid-gid.txt
@@ -159,6 +159,7 @@ unifi   113 
113 acct
 snapserver 114 114 
requested
 snapclient 115 115 
requested
 mythtv 117 117 
acct
+fcron  120 120 
acct
 rabbitmq   121 121 
acct
 murmur 122 122 
acct
 ntp123 123 
acct



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

2021-07-13 Thread Conrad Kostecki
commit: f90f5780c375c1ed6176ac6542a28a9d9f53
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Tue Jul 13 22:09:26 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Tue Jul 13 22:37:55 2021 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=f90f5780

uid-gid.txt: add uid/gid (129) rbot

Bug: https://bugs.gentoo.org/781398
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 eccd050..596a1cb 100644
--- a/files/uid-gid.txt
+++ b/files/uid-gid.txt
@@ -162,6 +162,7 @@ mythtv  117 
117 acct
 murmur 122 122 
acct
 ntp123 123 
acct
 fetchmail  124 124 
acct
+rbot   129 129 
acct
 ros130 130 
acct
 icecast131 131 
acct
 gopherd132 132 
acct



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

2021-07-13 Thread Conrad Kostecki
commit: a6d7b8a2517157085aef81b699de58089e19f0f5
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Tue Jul 13 22:10:27 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Tue Jul 13 22:37:55 2021 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=a6d7b8a2

uid-gid.txt: add uid/gid (128) foldingathome

Bug: https://bugs.gentoo.org/781485
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 596a1cb..fa05f63 100644
--- a/files/uid-gid.txt
+++ b/files/uid-gid.txt
@@ -162,6 +162,7 @@ mythtv  117 
117 acct
 murmur 122 122 
acct
 ntp123 123 
acct
 fetchmail  124 124 
acct
+foldingathome  128 128 
acct
 rbot   129 129 
acct
 ros130 130 
acct
 icecast131 131 
acct



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

2021-07-13 Thread Conrad Kostecki
commit: fd7ecba69232f2718abd4c02b4ecd0bf25376857
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Tue Jul 13 22:06:41 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Tue Jul 13 22:37:54 2021 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=fd7ecba6

uid-gid.txt: add gid (203) roccat

Bug: https://bugs.gentoo.org/781581
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 e81cc7a..fd6b278 100644
--- a/files/uid-gid.txt
+++ b/files/uid-gid.txt
@@ -237,6 +237,7 @@ qmaild  201 
-   acctRemoved from baselayout in 
[r1397](https://sources.gen
 qmail  -   201 
acctRemoved from baselayout in 
[r1397](https://sources.gentoo.org/cgi-bin/viewvc.cgi/baselayout/trunk/share.Linux/group?limit_changes=0=1369=1397=2545)
 qmaill 202 -   
acctRemoved from baselayout in 
[r1397](https://sources.gentoo.org/cgi-bin/viewvc.cgi/baselayout/trunk/share.Linux/passwd?limit_changes=0=1369=1397=2545)
 qmailp 203 -   
acctRemoved from baselayout in 
[r1397](https://sources.gentoo.org/cgi-bin/viewvc.cgi/baselayout/trunk/share.Linux/passwd?limit_changes=0=1369=1397=2545)
+roccat -   203 
acct
 qmailq 204 -   
acctRemoved from baselayout in 
[r1397](https://sources.gentoo.org/cgi-bin/viewvc.cgi/baselayout/trunk/share.Linux/passwd?limit_changes=0=1369=1397=2545)
 haclient   -   204 
acct
 qmailr 205 -   
acctRemoved from baselayout in 
[r1397](https://sources.gentoo.org/cgi-bin/viewvc.cgi/baselayout/trunk/share.Linux/passwd?limit_changes=0=1369=1397=2545)



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

2021-07-13 Thread Conrad Kostecki
commit: 4534abc4cf90ea4acc8bbe02b057dcb3f527368b
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Tue Jul 13 22:07:37 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Tue Jul 13 22:37:54 2021 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=4534abc4

uid-gid.txt: add uid/gid (131) icecast

Bug: https://bugs.gentoo.org/781416
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 fd6b278..eef9309 100644
--- a/files/uid-gid.txt
+++ b/files/uid-gid.txt
@@ -162,6 +162,7 @@ mythtv  117 
117 acct
 murmur 122 122 
acct
 ntp123 123 
acct
 fetchmail  124 124 
acct
+icecast131 131 
acct
 gopherd132 132 
acct
 rtkit  133 133 
acct
 lightdm134 134 
acct



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

2021-07-13 Thread Conrad Kostecki
commit: e0c5d3483c018449db1e159c88465bbeed5d9f8c
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Tue Jul 13 22:13:46 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Tue Jul 13 22:37:55 2021 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=e0c5d348

uid-gid.txt: add uid/gid (126) rt

Bug: https://bugs.gentoo.org/781527
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 2565ce5..4eb9edc 100644
--- a/files/uid-gid.txt
+++ b/files/uid-gid.txt
@@ -162,6 +162,7 @@ mythtv  117 
117 acct
 murmur 122 122 
acct
 ntp123 123 
acct
 fetchmail  124 124 
acct
+rt 126 126 
acct
 chrony 127 127 
acct
 foldingathome  128 128 
acct
 rbot   129 129 
acct



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

2021-07-13 Thread Sam James
commit: a7aa790649741a0035f60cabf69ce57fa13adec7
Author: Sam James  gentoo  org>
AuthorDate: Tue Jul 13 21:55:18 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jul 13 21:55:18 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7aa7906

dev-util/uncrustify: fix Python dependency

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

 dev-util/uncrustify/uncrustify-0.71.0.ebuild | 6 +-
 dev-util/uncrustify/uncrustify-0.72.0.ebuild | 6 +-
 dev-util/uncrustify/uncrustify-.ebuild   | 6 +-
 3 files changed, 15 insertions(+), 3 deletions(-)

diff --git a/dev-util/uncrustify/uncrustify-0.71.0.ebuild 
b/dev-util/uncrustify/uncrustify-0.71.0.ebuild
index 2e266f8783d..5bd13fa5466 100644
--- a/dev-util/uncrustify/uncrustify-0.71.0.ebuild
+++ b/dev-util/uncrustify/uncrustify-0.71.0.ebuild
@@ -26,4 +26,8 @@ SLOT="0"
 IUSE="test"
 RESTRICT="!test? ( test )"
 
-DEPEND="test? ( ${PYTHON_DEPS} )"
+BDEPEND="test? ( ${PYTHON_DEPS} )"
+
+pkg_setup() {
+   use test && python-any-r1_pkg_setup
+}

diff --git a/dev-util/uncrustify/uncrustify-0.72.0.ebuild 
b/dev-util/uncrustify/uncrustify-0.72.0.ebuild
index 573dbcd833d..9e76b92aa67 100644
--- a/dev-util/uncrustify/uncrustify-0.72.0.ebuild
+++ b/dev-util/uncrustify/uncrustify-0.72.0.ebuild
@@ -24,4 +24,8 @@ SLOT="0"
 IUSE="test"
 RESTRICT="!test? ( test )"
 
-DEPEND="test? ( ${PYTHON_DEPS} )"
+BDEPEND="test? ( ${PYTHON_DEPS} )"
+
+pkg_setup() {
+   use test && python-any-r1_pkg_setup
+}

diff --git a/dev-util/uncrustify/uncrustify-.ebuild 
b/dev-util/uncrustify/uncrustify-.ebuild
index 8f51f156ef9..d078b64fab3 100644
--- a/dev-util/uncrustify/uncrustify-.ebuild
+++ b/dev-util/uncrustify/uncrustify-.ebuild
@@ -26,4 +26,8 @@ SLOT="0"
 IUSE="test"
 RESTRICT="!test? ( test )"
 
-DEPEND="test? ( ${PYTHON_DEPS} )"
+BDEPEND="test? ( ${PYTHON_DEPS} )"
+
+pkg_setup() {
+   use test && python-any-r1_pkg_setup
+}



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

2021-07-13 Thread Sam James
commit: 48fed74e5fac8920ef7abcd287770d8143860550
Author: Sam James  gentoo  org>
AuthorDate: Tue Jul 13 21:54:00 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jul 13 21:54:00 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48fed74e

dev-vcs/gitolite-gentoo: call default in src_prepare

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

 dev-vcs/gitolite-gentoo/gitolite-gentoo-2.3.1-r2.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/dev-vcs/gitolite-gentoo/gitolite-gentoo-2.3.1-r2.ebuild 
b/dev-vcs/gitolite-gentoo/gitolite-gentoo-2.3.1-r2.ebuild
index d86d7ba5294..05571da3b29 100644
--- a/dev-vcs/gitolite-gentoo/gitolite-gentoo-2.3.1-r2.ebuild
+++ b/dev-vcs/gitolite-gentoo/gitolite-gentoo-2.3.1-r2.ebuild
@@ -29,6 +29,8 @@ RDEPEND="
vim-syntax? ( app-vim/gitolite-syntax )"
 
 src_prepare() {
+   default
+
rm Makefile doc/COPYING || die
rm -rf contrib/{gitweb,vim} || die
 



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

2021-07-13 Thread Sam James
commit: 9a20a3a9e2db20d380c803c01e5f5ec0e19af2ab
Author: Randy Barlow  electronsweatshop  com>
AuthorDate: Sun Jun 27 01:31:56 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jul 13 21:49:06 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a20a3a9

app-admin/lnav: Backport to build with gcc-11

This commit partially[0] backports a patch from upstream[1][2] to
allow lnav to build with gcc-11.

This patch was tested with gcc-10.2.0-r5 and gcc-11.1.0.

[0] Only the changes to m4/ax_cxx_compile_stdcxx.m4 were necessary
to address the gcc-11 fix.
[1] https://github.com/tstack/lnav/issues/864
[2] 
https://github.com/tstack/lnav/commit/8f7b08c9c5d1b30ca2b91dbfdb13f4dfa5326f95

Closes: https://bugs.gentoo.org/786456
Package-Manager: Portage-3.0.18, Repoman-3.0.2
Signed-off-by: Randy Barlow  electronsweatshop.com>
Closes: https://github.com/gentoo/gentoo/pull/20975
Signed-off-by: Sam James  gentoo.org>

 app-admin/lnav/files/lnav-0.9.0-bug786456.patch | 561 
 app-admin/lnav/lnav-0.9.0-r1.ebuild |   3 +
 2 files changed, 564 insertions(+)

diff --git a/app-admin/lnav/files/lnav-0.9.0-bug786456.patch 
b/app-admin/lnav/files/lnav-0.9.0-bug786456.patch
new file mode 100644
index 000..e77dd17854e
--- /dev/null
+++ b/app-admin/lnav/files/lnav-0.9.0-bug786456.patch
@@ -0,0 +1,561 @@
+From e6d2e2d2b95c27cc85397d4af9528111c5304d02 Mon Sep 17 00:00:00 2001
+From: Timothy Stack 
+Date: Sun, 30 May 2021 13:33:05 -0700
+Subject: [PATCH] [logfile] add notes for automatic decisions and fix compile
+ errors
+
+Fixes #864
+
+Signed-off-by: Randy Barlow 
+---
+ m4/ax_cxx_compile_stdcxx.m4 | 462 +---
+ src/base/result.h   |   1 +
+ src/logfile.hh  |  13 +
+ src/optional.hpp|  45 +++-
+ src/pcrepp/pcrepp.hh|   1 +
+ 5 files changed, 482 insertions(+), 40 deletions(-)
+
+diff --git a/m4/ax_cxx_compile_stdcxx.m4 b/m4/ax_cxx_compile_stdcxx.m4
+index 2c18e49c..9413da62 100644
+--- a/m4/ax_cxx_compile_stdcxx.m4
 b/m4/ax_cxx_compile_stdcxx.m4
+@@ -1,5 +1,5 @@
+ # ===
+-#   http://www.gnu.org/software/autoconf-archive/ax_cxx_compile_stdcxx.html
++#  https://www.gnu.org/software/autoconf-archive/ax_cxx_compile_stdcxx.html
+ # ===
+ #
+ # SYNOPSIS
+@@ -16,7 +16,7 @@
+ #   The second argument, if specified, indicates whether you insist on an
+ #   extended mode (e.g. -std=gnu++11) or a strict conformance mode (e.g.
+ #   -std=c++11).  If neither is specified, you get whatever works, with
+-#   preference for an extended mode.
++#   preference for no added switch, and then for an extended mode.
+ #
+ #   The third argument, if specified 'mandatory' or if left unspecified,
+ #   indicates that baseline support for the specified C++ standard is
+@@ -33,21 +33,24 @@
+ #   Copyright (c) 2014, 2015 Google Inc.; contributed by Alexey Sokolov 

+ #   Copyright (c) 2015 Paul Norman 
+ #   Copyright (c) 2015 Moritz Klammler 
++#   Copyright (c) 2016, 2018 Krzesimir Nowak 
++#   Copyright (c) 2019 Enji Cooper 
++#   Copyright (c) 2020 Jason Merrill 
+ #
+ #   Copying and distribution of this file, with or without modification, are
+ #   permitted in any medium without royalty provided the copyright notice
+ #   and this notice are preserved.  This file is offered as-is, without any
+ #   warranty.
+ 
+-#serial 4
++#serial 12
+ 
+ dnl  This macro is based on the code from the AX_CXX_COMPILE_STDCXX_11 macro
+ dnl  (serial version number 13).
+ 
+ AC_DEFUN([AX_CXX_COMPILE_STDCXX], [dnl
+-  m4_if([$1], [11], [],
+-[$1], [14], [],
+-[$1], [17], [m4_fatal([support for C++17 not yet implemented in 
AX_CXX_COMPILE_STDCXX])],
++  m4_if([$1], [11], [ax_cxx_compile_alternatives="11 0x"],
++[$1], [14], [ax_cxx_compile_alternatives="14 1y"],
++[$1], [17], [ax_cxx_compile_alternatives="17 1z"],
+ [m4_fatal([invalid first argument `$1' to AX_CXX_COMPILE_STDCXX])])dnl
+   m4_if([$2], [], [],
+ [$2], [ext], [],
+@@ -59,18 +62,21 @@ AC_DEFUN([AX_CXX_COMPILE_STDCXX], [dnl
+ [m4_fatal([invalid third argument `$3' to AX_CXX_COMPILE_STDCXX])])
+   AC_LANG_PUSH([C++])dnl
+   ac_success=no
+-  AC_CACHE_CHECK(whether $CXX supports C++$1 features by default,
+-  ax_cv_cxx_compile_cxx$1,
+-  [AC_COMPILE_IFELSE([AC_LANG_SOURCE([_AX_CXX_COMPILE_STDCXX_testbody_$1])],
+-[ax_cv_cxx_compile_cxx$1=yes],
+-[ax_cv_cxx_compile_cxx$1=no])])
+-  if test x$ax_cv_cxx_compile_cxx$1 = xyes; then
+-ac_success=yes
+-  fi
++
++  m4_if([$2], [], [dnl
++AC_CACHE_CHECK(whether $CXX supports C++$1 features by default,
++ ax_cv_cxx_compile_cxx$1,
++  
[AC_COMPILE_IFELSE([AC_LANG_SOURCE([_AX_CXX_COMPILE_STDCXX_testbody_$1])],
++[ax_cv_cxx_compile_cxx$1=yes],
++

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

2021-07-13 Thread Sam James
commit: 919ec7ae4b3e1bb25a475eb6cd1210c2d4d7c7b4
Author: Randy Barlow  electronsweatshop  com>
AuthorDate: Fri May 28 03:49:53 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jul 13 21:49:05 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=919ec7ae

app-admin/lnav: Backport to fix a segfault

lnav was segfaulting when the right arrow key was pressed. This
commit backports a patch from the main development branch to
address the crash.

Closes: https://bugs.gentoo.org/792582
Package-Manager: Portage-3.0.18, Repoman-3.0.2
Signed-off-by: Randy Barlow  electronsweatshop.com>
Signed-off-by: Sam James  gentoo.org>

 app-admin/lnav/files/lnav-0.9.0-bug792582.patch | 97 +
 app-admin/lnav/lnav-0.9.0-r1.ebuild | 49 +
 2 files changed, 146 insertions(+)

diff --git a/app-admin/lnav/files/lnav-0.9.0-bug792582.patch 
b/app-admin/lnav/files/lnav-0.9.0-bug792582.patch
new file mode 100644
index 000..9059712242a
--- /dev/null
+++ b/app-admin/lnav/files/lnav-0.9.0-bug792582.patch
@@ -0,0 +1,97 @@
+From 141436933a8d30edfd33aa5fcfb0c93cfa3ae9d5 Mon Sep 17 00:00:00 2001
+From: Timothy Stack 
+Date: Wed, 9 Dec 2020 15:35:06 -0800
+Subject: [PATCH] [view_curses] use VC_ROLE instead of VC_STYLE where possible
+ and fix segv in mvwattrline
+
+Fixes #806
+
+Signed-off-by: Randy Barlow 
+---
+ src/highlighter.cc|  4 +++-
+ src/logfile_sub_source.cc | 17 ++---
+ src/view_curses.cc|  9 ++---
+ 3 files changed, 19 insertions(+), 11 deletions(-)
+
+diff --git a/src/highlighter.cc b/src/highlighter.cc
+index 24aafebd..110ca03f 100644
+--- a/src/highlighter.cc
 b/src/highlighter.cc
+@@ -115,7 +115,9 @@ void highlighter::annotate(attr_line_t , int start) 
const
+ vc.match_color(this->h_bg));
+ }
+ if (this->h_role != view_colors::VCR_NONE) {
+-attrs |= vc.attrs_for_role(this->h_role);
++sa.emplace_back(lr,
++_curses::VC_ROLE,
++this->h_role);
+ }
+ sa.emplace_back(lr, _curses::VC_STYLE, attrs);
+ 
+diff --git a/src/logfile_sub_source.cc b/src/logfile_sub_source.cc
+index 14e87002..dce0d4ae 100644
+--- a/src/logfile_sub_source.cc
 b/src/logfile_sub_source.cc
+@@ -468,25 +468,28 @@ void 
logfile_sub_source::text_attrs_for_line(textview_curses ,
+ 
+ shift_string_attrs(value_out, 0, time_offset_end);
+ 
+-attrs = vc.attrs_for_role(view_colors::VCR_OFFSET_TIME);
+-value_out.emplace_back(lr, _curses::VC_STYLE, attrs);
++value_out.emplace_back(lr,
++   _curses::VC_ROLE,
++   view_colors::VCR_OFFSET_TIME);
+ value_out.emplace_back(line_range(12, 13),
+ _curses::VC_GRAPHIC, ACS_VLINE);
+ 
+-int bar_attrs = 0;
++view_colors::role_t bar_role = view_colors::VCR_NONE;
+ 
+ switch (this->get_line_accel_direction(vis_line_t(row))) {
+ case log_accel::A_STEADY:
+ break;
+ case log_accel::A_DECEL:
+-bar_attrs = vc.attrs_for_role(view_colors::VCR_DIFF_DELETE);
++bar_role = view_colors::VCR_DIFF_DELETE;
+ break;
+ case log_accel::A_ACCEL:
+-bar_attrs = vc.attrs_for_role(view_colors::VCR_DIFF_ADD);
++bar_role = view_colors::VCR_DIFF_ADD;
+ break;
+ }
+-value_out.push_back(
+-string_attr(line_range(12, 13), _curses::VC_STYLE, 
bar_attrs));
++if (bar_role != view_colors::VCR_NONE) {
++value_out.emplace_back(
++line_range(12, 13), _curses::VC_ROLE, bar_role);
++}
+ }
+ 
+ lr.lr_start = 0;
+diff --git a/src/view_curses.cc b/src/view_curses.cc
+index 4a36a3ad..2456d53d 100644
+--- a/src/view_curses.cc
 b/src/view_curses.cc
+@@ -402,13 +402,16 @@ void view_curses::mvwattrline(WINDOW *window,
+ }
+ }
+ 
++if (attr_range.lr_end == -1) {
++attr_range.lr_end = line_width_chars;
++}
++if (attr_range.lr_end < lr_chars.lr_start) {
++continue;
++}
+ attr_range.lr_start = max(0, attr_range.lr_start - lr_chars.lr_start);
+ if (attr_range.lr_start > line_width_chars) {
+ continue;
+ }
+-if (attr_range.lr_end == -1) {
+-attr_range.lr_end = lr_chars.lr_start + line_width_chars;
+-}
+ 
+ attr_range.lr_end = min(line_width_chars, attr_range.lr_end - 
lr_chars.lr_start);
+ 
+-- 
+2.31.1
+

diff --git a/app-admin/lnav/lnav-0.9.0-r1.ebuild 
b/app-admin/lnav/lnav-0.9.0-r1.ebuild
new file mode 100644
index 000..dbadbc3f293
--- /dev/null
+++ b/app-admin/lnav/lnav-0.9.0-r1.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the 

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

2021-07-13 Thread Sam James
commit: 82f52bae544d9659015fe2ebf8c1098aec191b8e
Author: Randy Barlow  electronsweatshop  com>
AuthorDate: Tue May 25 03:09:04 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jul 13 21:49:04 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82f52bae

app-admin/lnav: Backport patches to fix tests

This commit backports two patches from upstream to fix test
failures in tests/test_sql.sh.

Closes: https://bugs.gentoo.org/713600
Package-Manager: Portage-3.0.18, Repoman-3.0.2
Signed-off-by: Randy Barlow  electronsweatshop.com>
Signed-off-by: Sam James  gentoo.org>

 app-admin/lnav/files/lnav-0.9.0-bug713600_0.patch | 36 +++
 app-admin/lnav/files/lnav-0.9.0-bug713600_1.patch | 32 
 app-admin/lnav/lnav-0.9.0.ebuild  |  3 ++
 3 files changed, 71 insertions(+)

diff --git a/app-admin/lnav/files/lnav-0.9.0-bug713600_0.patch 
b/app-admin/lnav/files/lnav-0.9.0-bug713600_0.patch
new file mode 100644
index 000..47aef6d593d
--- /dev/null
+++ b/app-admin/lnav/files/lnav-0.9.0-bug713600_0.patch
@@ -0,0 +1,36 @@
+From 60dde499ac87c2399ac24ae85c98ed8cce564858 Mon Sep 17 00:00:00 2001
+From: Timothy Stack 
+Date: Thu, 31 Dec 2020 23:23:56 -0800
+Subject: [PATCH] [tests] fix test to make it insensitive to the current date
+
+Signed-off-by: Randy Barlow 
+---
+ test/test_sql.sh | 10 +-
+ 1 file changed, 5 insertions(+), 5 deletions(-)
+
+diff --git a/test/test_sql.sh b/test/test_sql.sh
+index c7480ecc..bbb98dce 100644
+--- a/test/test_sql.sh
 b/test/test_sql.sh
+@@ -1012,13 +1012,13 @@ EOF
+ 
+ 
+ cat ${test_dir}/logfile_syslog.0 | run_test ${lnav_test} -n \
+--c ";select log_time from syslog_log where log_procname = 'automount'"
++-c ";select log_body from syslog_log where log_procname = 'automount'"
+ 
+ check_output "querying against stdin is not working?" <
+Date: Thu, 31 Dec 2020 23:26:57 -0800
+Subject: [PATCH] [tests] update another date-sensitive test
+
+Signed-off-by: Randy Barlow 
+---
+ test/test_sql.sh | 6 +++---
+ 1 file changed, 3 insertions(+), 3 deletions(-)
+
+diff --git a/test/test_sql.sh b/test/test_sql.sh
+index bbb98dce..22941c2a 100644
+--- a/test/test_sql.sh
 b/test/test_sql.sh
+@@ -1023,11 +1023,11 @@ EOF
+ 
+ 
+ cat ${test_dir}/logfile_syslog.0 | run_test ${lnav_test} -n \
+--c ";select log_time from syslog_log where log_procname = 'sudo'"
++-c ";select log_body from syslog_log where log_procname = 'sudo'"
+ 
+ check_output "single result is not working?" <

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

2021-07-13 Thread James Le Cuirot
commit: 8b60b0c57ec7326dfc8529b6452f83ea1dd5803e
Author: James Le Cuirot  gentoo  org>
AuthorDate: Tue Jul 13 21:48:30 2021 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Tue Jul 13 21:48:30 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b60b0c5

x11-wm/xpra: Version bump to 4.2.1

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

 x11-wm/xpra/Manifest  |   1 +
 x11-wm/xpra/xpra-4.2.1.ebuild | 170 ++
 2 files changed, 171 insertions(+)

diff --git a/x11-wm/xpra/Manifest b/x11-wm/xpra/Manifest
index addfc19c3ae..59734fa8ff1 100644
--- a/x11-wm/xpra/Manifest
+++ b/x11-wm/xpra/Manifest
@@ -1,3 +1,4 @@
 DIST xpra-3.0.5.tar.xz 2752016 BLAKE2B 
a36d6a4ebb0b14665014da92d510c0d5f978c96db653709ddc09a1015426d6ac6f71f9a221db68ee1114c95eeaca6600f9e49102ce9f936d9b0ee298ac432647
 SHA512 
3dbc122ebc8c4aa67154acfe92668ac364d8469022b03e28946d763e4d396f8c707690b2a4dbf07b55545259a53b46c9dd94e6e40131289ccc3dce6a88107681
 DIST xpra-4.1.3.tar.gz 3850971 BLAKE2B 
b5f5a0546c785762974f27650408cb83fdfa2ac8a5b5dd8c6b08a9978ff17a0dfc85f95fde405689a19517ef66bcc7aefc1dad71acc2dda7883ed38d3c22b91c
 SHA512 
e401793ae9a4539d39bc161be4d34af2dca81c78f189664d8ebdefff99d413d364d4ceb37dd776b027b206119da81957ef7436a727c00d3ad5895a3c90742e39
+DIST xpra-4.2.1.tar.gz 3878766 BLAKE2B 
c537b54b8ea5cc1ad2909eeccf61eba59a518165eb72c7d4984d26f378e4babca997c2f6cf78f5ba947edbc4ad6c4085c86793aad9b01f1fca2b22b1daaabda9
 SHA512 
553d8c11f1a77a2a58cbad7df0d899c611e21eb01dad3516f99f1fb9cc7a4507ba7557807b62ddea7101ca01bab123962a34b9c3369db06d1bb318debd91dc55
 DIST xpra-4.2.tar.gz 4057304 BLAKE2B 
17b6a95f7ce24a311c39d09291d9570285c30f25c2d935389cb380c2fce698acd984821e69acaabd66368e76b5beddd01803a68d6a16dd930dd2fa3289532f10
 SHA512 
261d46c04ce70686f41873c5c0c115e462e3b2501c58ab05fb2904f4700454c5fb8124d0faf86fe5e982872f19a4b90b941f8aff4790f7206602d6030c005353

diff --git a/x11-wm/xpra/xpra-4.2.1.ebuild b/x11-wm/xpra/xpra-4.2.1.ebuild
new file mode 100644
index 000..1f8dc0a75fa
--- /dev/null
+++ b/x11-wm/xpra/xpra-4.2.1.ebuild
@@ -0,0 +1,170 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7,8,9} )
+DISTUTILS_SINGLE_IMPL=yes
+DISTUTILS_USE_SETUPTOOLS=no
+inherit xdg distutils-r1 tmpfiles prefix udev
+
+DESCRIPTION="X Persistent Remote Apps (xpra) and Partitioning WM (parti) based 
on wimpiggy"
+HOMEPAGE="https://xpra.org/;
+SRC_URI="https://xpra.org/src/${P}.tar.gz;
+
+LICENSE="GPL-2 BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="brotli +client +clipboard csc cups dbus doc ffmpeg jpeg ibus +lz4 lzo 
minimal opengl pillow pinentry pulseaudio server sound test vpx webcam webp"
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}
+   || ( client server )
+   cups? ( dbus )
+   opengl? ( client )
+"
+
+DEPEND="
+   ${PYTHON_DEPS}
+   $(python_gen_cond_dep '
+   dev-python/pygobject:3[${PYTHON_USEDEP},cairo]
+   opengl? ( dev-python/pyopengl[${PYTHON_USEDEP}] )
+   sound? ( dev-python/gst-python:1.0[${PYTHON_USEDEP}] )
+   ')
+   x11-libs/gtk+:3[introspection]
+   x11-libs/libX11
+   x11-libs/libXcomposite
+   x11-libs/libXdamage
+   x11-libs/libXfixes
+   x11-libs/libXrandr
+   x11-libs/libXtst
+   x11-libs/libxkbfile
+   brotli? ( app-arch/brotli )
+   csc? ( >=media-video/ffmpeg-1.2.2:0= )
+   ffmpeg? ( >=media-video/ffmpeg-3.2.2:0=[x264,x265] )
+   jpeg? ( media-libs/libjpeg-turbo )
+   pulseaudio? (
+   media-sound/pulseaudio
+   media-plugins/gst-plugins-pulse:1.0
+   )
+   sound? (
+   media-libs/gstreamer:1.0
+   media-libs/gst-plugins-base:1.0
+   )
+   vpx? ( media-libs/libvpx media-video/ffmpeg )
+   webp? ( media-libs/libwebp )
+"
+RDEPEND="
+   ${DEPEND}
+   $(python_gen_cond_dep '
+   dev-python/netifaces[${PYTHON_USEDEP}]
+   dev-python/rencode[${PYTHON_USEDEP}]
+   dev-python/pillow[jpeg?,${PYTHON_USEDEP}]
+   cups? ( dev-python/pycups[${PYTHON_USEDEP}] )
+   dbus? ( dev-python/dbus-python[${PYTHON_USEDEP}] )
+   lz4? ( dev-python/lz4[${PYTHON_USEDEP}] )
+   lzo? ( >=dev-python/python-lzo-0.7.0[${PYTHON_USEDEP}] )
+   opengl? (
+   client? ( 
dev-python/pyopengl_accelerate[${PYTHON_USEDEP}] )
+   )
+   webcam? (
+   dev-python/numpy[${PYTHON_USEDEP}]
+   dev-python/pyinotify[${PYTHON_USEDEP}]
+   media-libs/opencv[${PYTHON_USEDEP},python]
+   )
+   ')
+   acct-group/xpra
+   virtual/ssh
+   x11-apps/xmodmap
+   ibus? ( app-i18n/ibus )
+   pinentry? ( app-crypt/pinentry )
+   server? (
+   

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

2021-07-13 Thread Thomas Deutschmann
commit: ded2164de75e8bbb7be5f4c01cf4f10ee4a87da7
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Jul 13 21:33:07 2021 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Jul 13 21:33:07 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ded2164d

sys-kernel/gentoo-sources: amd64 stable (bug #793167)

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

 sys-kernel/gentoo-sources/gentoo-sources-4.14.239.ebuild   | 2 +-
 sys-kernel/gentoo-sources/gentoo-sources-4.19.197.ebuild   | 2 +-
 sys-kernel/gentoo-sources/gentoo-sources-4.4.275.ebuild| 2 +-
 sys-kernel/gentoo-sources/gentoo-sources-4.9.275.ebuild| 2 +-
 sys-kernel/gentoo-sources/gentoo-sources-5.10.49-r1.ebuild | 2 +-
 sys-kernel/gentoo-sources/gentoo-sources-5.4.131.ebuild| 2 +-
 6 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.14.239.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.14.239.ebuild
index 86634bed284..ab80c5af742 100644
--- a/sys-kernel/gentoo-sources/gentoo-sources-4.14.239.ebuild
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.14.239.ebuild
@@ -10,7 +10,7 @@ inherit kernel-2
 detect_version
 detect_arch
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc 
x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc 
x86"
 HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
 IUSE="experimental"
 

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.19.197.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.19.197.ebuild
index 53156a388ba..7d6bd89dbca 100644
--- a/sys-kernel/gentoo-sources/gentoo-sources-4.19.197.ebuild
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.19.197.ebuild
@@ -10,7 +10,7 @@ inherit kernel-2
 detect_version
 detect_arch
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc 
x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc 
x86"
 HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
 IUSE="experimental"
 

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.4.275.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.4.275.ebuild
index e21f154c03c..7e6ffb81321 100644
--- a/sys-kernel/gentoo-sources/gentoo-sources-4.4.275.ebuild
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.4.275.ebuild
@@ -10,7 +10,7 @@ inherit kernel-2
 detect_version
 detect_arch
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc 
x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc 
x86"
 HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
 IUSE="experimental"
 

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.9.275.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.9.275.ebuild
index 6c1bde78234..ac8cffa097e 100644
--- a/sys-kernel/gentoo-sources/gentoo-sources-4.9.275.ebuild
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.9.275.ebuild
@@ -10,7 +10,7 @@ inherit kernel-2
 detect_version
 detect_arch
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc 
x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc 
x86"
 HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
 IUSE="experimental"
 

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-5.10.49-r1.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-5.10.49-r1.ebuild
index 9a1fc005051..c1ca84a1b9b 100644
--- a/sys-kernel/gentoo-sources/gentoo-sources-5.10.49-r1.ebuild
+++ b/sys-kernel/gentoo-sources/gentoo-sources-5.10.49-r1.ebuild
@@ -10,7 +10,7 @@ inherit kernel-2
 detect_version
 detect_arch
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
sparc x86"
 HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
 IUSE="experimental"
 

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-5.4.131.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-5.4.131.ebuild
index 633c3656958..6e6818924e5 100644
--- a/sys-kernel/gentoo-sources/gentoo-sources-5.4.131.ebuild
+++ b/sys-kernel/gentoo-sources/gentoo-sources-5.4.131.ebuild
@@ -10,7 +10,7 @@ inherit kernel-2
 detect_version
 detect_arch
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc 
x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc 
x86"
 HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
 IUSE="experimental"
 



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

2021-07-13 Thread Thomas Deutschmann
commit: d925831d3441e6b2895c02ec830d9fbcf9f5ca17
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Jul 13 21:31:43 2021 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Jul 13 21:31:43 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d925831d

sys-kernel/gentoo-sources: x86 stable (bug #793167)

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

 sys-kernel/gentoo-sources/gentoo-sources-4.14.239.ebuild   | 2 +-
 sys-kernel/gentoo-sources/gentoo-sources-4.19.197.ebuild   | 2 +-
 sys-kernel/gentoo-sources/gentoo-sources-4.4.275.ebuild| 2 +-
 sys-kernel/gentoo-sources/gentoo-sources-4.9.275.ebuild| 2 +-
 sys-kernel/gentoo-sources/gentoo-sources-5.10.49-r1.ebuild | 2 +-
 sys-kernel/gentoo-sources/gentoo-sources-5.4.131.ebuild| 2 +-
 6 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.14.239.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.14.239.ebuild
index df6a814d363..86634bed284 100644
--- a/sys-kernel/gentoo-sources/gentoo-sources-4.14.239.ebuild
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.14.239.ebuild
@@ -10,7 +10,7 @@ inherit kernel-2
 detect_version
 detect_arch
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc 
~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc 
x86"
 HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
 IUSE="experimental"
 

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.19.197.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.19.197.ebuild
index fdeab9eb013..53156a388ba 100644
--- a/sys-kernel/gentoo-sources/gentoo-sources-4.19.197.ebuild
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.19.197.ebuild
@@ -10,7 +10,7 @@ inherit kernel-2
 detect_version
 detect_arch
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc 
~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc 
x86"
 HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
 IUSE="experimental"
 

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.4.275.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.4.275.ebuild
index 3ca0eb4b62b..e21f154c03c 100644
--- a/sys-kernel/gentoo-sources/gentoo-sources-4.4.275.ebuild
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.4.275.ebuild
@@ -10,7 +10,7 @@ inherit kernel-2
 detect_version
 detect_arch
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc 
~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc 
x86"
 HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
 IUSE="experimental"
 

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.9.275.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.9.275.ebuild
index 0261c50b863..6c1bde78234 100644
--- a/sys-kernel/gentoo-sources/gentoo-sources-4.9.275.ebuild
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.9.275.ebuild
@@ -10,7 +10,7 @@ inherit kernel-2
 detect_version
 detect_arch
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc 
~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc 
x86"
 HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
 IUSE="experimental"
 

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-5.10.49-r1.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-5.10.49-r1.ebuild
index 1b594598ed7..9a1fc005051 100644
--- a/sys-kernel/gentoo-sources/gentoo-sources-5.10.49-r1.ebuild
+++ b/sys-kernel/gentoo-sources/gentoo-sources-5.10.49-r1.ebuild
@@ -10,7 +10,7 @@ inherit kernel-2
 detect_version
 detect_arch
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
sparc x86"
 HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
 IUSE="experimental"
 

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-5.4.131.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-5.4.131.ebuild
index 049ccf632ad..633c3656958 100644
--- a/sys-kernel/gentoo-sources/gentoo-sources-5.4.131.ebuild
+++ b/sys-kernel/gentoo-sources/gentoo-sources-5.4.131.ebuild
@@ -10,7 +10,7 @@ inherit kernel-2
 detect_version
 detect_arch
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc 
~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc 
x86"
 HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
 IUSE="experimental"
 



[gentoo-commits] repo/gentoo:master commit in: mail-client/thunderbird/

2021-07-13 Thread Thomas Deutschmann
commit: 0de7f487d1b46bbccdc654cd303685d7d6a8fb64
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Jul 13 21:07:53 2021 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Jul 13 21:25:49 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0de7f487

mail-client/thunderbird: bump to v78.12.0

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

 mail-client/thunderbird/Manifest   |   66 ++
 mail-client/thunderbird/thunderbird-78.12.0.ebuild | 1108 
 2 files changed, 1174 insertions(+)

diff --git a/mail-client/thunderbird/Manifest b/mail-client/thunderbird/Manifest
index 8dcfa1ab656..009590040c2 100644
--- a/mail-client/thunderbird/Manifest
+++ b/mail-client/thunderbird/Manifest
@@ -1,4 +1,5 @@
 DIST firefox-78esr-patches-14.tar.xz 82976 BLAKE2B 
08cc3618c8069f4169b7647e7eb699153d558bb89f8a4f1ed74d5ccd339f77119cd8f253df011f0c2f255ad889b65e843171d7559f469788463ca7e9aa2e96aa
 SHA512 
1611c6f9d2c7d586e7b53810c1cfdb2682f5d289b1b019b71694b1ab2d8bbdfe827a73cfaf59f7e4808c0b90409ca4fa57e27655d8cdf0c578ffdbad33659f26
+DIST firefox-78esr-patches-15.tar.xz 65604 BLAKE2B 
86e421e555ffd5f7f201d0f1a1c446c649739c67cdf8dca536efa115e09d9c357ce1551b7270c77e8bfe7dd53e0f3e6386496283879cf5e0c59b3c864951ebb3
 SHA512 
b229e895f083a0404cda1da0d8ae937429d5975ac52ab20e8b15611d9c737381a1076ebfa8c8a127dacac0e12a2a905ffd579facde2d80c6facc911e5739e34b
 DIST thunderbird-78.11.0-af.xpi 548343 BLAKE2B 
5eb0f8bde98e845046980bfa098b9749113cd4a95cff2ebcf7d387769bf407fb4f59926fea905dc293f916a91e0e0aaf78e1f4b2aac60dc1a38684a7293bbbef
 SHA512 
2978a9f8d81d936495207e9ecd45e67e9073037ffb9481e5dbfaa73a776a7787970bbde9ba9790c6ad53998fa391d251bc6b8eb5a3a04dd3bae791b8b426e73e
 DIST thunderbird-78.11.0-ar.xpi 648611 BLAKE2B 
d41906f09fb0522199e74ac0a7823f3769e23fb310c9d62a0332d288fb7cf46f7d1d97321f4cba6fe03b53c5e254e2ce27cb8606c58a9c1559b152d2be70d681
 SHA512 
595415279e9f14abc678d652bb58c3b7a5b4907dd979b86320aa4ea5c499bc02034c5fad4ffb388719ac8795923e9eb7936f9700b5655457cfb3942fddf6b821
 DIST thunderbird-78.11.0-ast.xpi 561258 BLAKE2B 
156729fe4b59c1594c35dc4e1bf198638cf361a679a95470fe495833c518c583abfbd69f358bba04f2c58d5a0d941603c969d640f9c18a26126a78f48e9b64d1
 SHA512 
d5821cf2aba5c3df1dac2d4310ba77aa7b5c1a69067216404944eff8b06bfb4eab2816aafbc490cf365c90aba850e6766092d9ae96dfb74ee9bb0452b591c21c
@@ -64,3 +65,68 @@ DIST thunderbird-78.11.0-vi.xpi 674611 BLAKE2B 
67834c7860979a438ed61056080b32c7b
 DIST thunderbird-78.11.0-zh-CN.xpi 687183 BLAKE2B 
9a18986ed58dec976e82f533a8a08cd6f374f20f3fe016ca8dff71fc01be7de0cebeb2cc311791bd41cee66f53f8f275a16cec376efe70848cb761daebdc87db
 SHA512 
53f81f5e5bfd20c3a6dd144d780e76016a58c0c60c034e7b7738a81d9ee6e702652ea8fb3e40861918e7606c6159ed09dd2e6ad7522a1d25f6c648fcc6c908f3
 DIST thunderbird-78.11.0-zh-TW.xpi 687626 BLAKE2B 
4822fd23fc0864238bbb85742fd9f9ce6a9f13384270a738d95f33defa5b07f453cd490d9df771a8fed594007512e40bbebf3434d29dad61319b35230d0e7229
 SHA512 
95eaa27e5877a3203ae0976bb349b38fd3d6ec0b44e0cc333e2573877d5482897d5ad4c888d8947c6d55ab3e6c2e17c21fe69c3aff3d3c81549e8f19918c0153
 DIST thunderbird-78.11.0.source.tar.xz 352417996 BLAKE2B 
8c8c972df68468a13c33526d076f40b02ef2b1568ae24a3b496cfca65647ff079c27117092c3e856f4b8ac535802619f7f01e14fd2804a37586006c4f6a12158
 SHA512 
c669439ae671a0a589f69902cced5685b8bab346c0ca3eeabd58d0449af338fb7a7a9189d6c2ef784f660c32278fee70766169d91293447eedef2e18a84f116a
+DIST thunderbird-78.12.0-af.xpi 548341 BLAKE2B 
5dedd311ca5b467353cf5da0dd7b671eaafef8f7828abe1aa917003b38174fb6bfd6fa5efd6509ed14604477bb2e80a6691aa83ba2aed060295e51330f5d50df
 SHA512 
ad216562bb63440c0728177f73d853994d2b395a13fcf9f7f20ddc81226b9747c407368e843d42aa60c09d1d8489aded879c4080022463346fe5b489ea1a8d3b
+DIST thunderbird-78.12.0-ar.xpi 648606 BLAKE2B 
dc040d99fbc37da4533c6a9a62204233544f2310b685d353ee10277410c83b37acde3aab8193475a470fe955eafb776c05ef833d7c83a80b11f400113f6d
 SHA512 
cee52db711b68ac973bf07678c35d6d3a130704e3206f811a1331d165c5c421f61030b589b95f412955525ae3cd9a0381a241692870db4ef6d557df9c289cad0
+DIST thunderbird-78.12.0-ast.xpi 561255 BLAKE2B 
28be146998718180da9ef397f7a7ddeb7799d1906b142ab1868e2e6048d1d38a4b5a583d2f51b86d7f688e06e6c3c45593882b580ad75a4bc0637f2fe88dacd6
 SHA512 
794103871e796a14fa7f6d1eda7058f1d3939692ee2604c79b4af744735fafb934289e0d95abf6e62eb82e8e8836b8ed7a74253b99b2d0bc68f0a4224a31e1ef
+DIST thunderbird-78.12.0-be.xpi 66 BLAKE2B 
f779ce4759ebd531f47df82e600955445d2d3bf7d17fac11d9b63ecfe257c250154d3afebf9083023f87961cf0e3748ad8457085228b83c20b546daa2b2c332a
 SHA512 
22cc5dadcd8b874a80be261c2989aff5d414e911bac8535bec860aae622c8ebe9d21b8c376edd4d09c983893eebafa9936e581cb173f1b931d7e9948c50e4542
+DIST thunderbird-78.12.0-bg.xpi 672416 BLAKE2B 
ce6bb67eb105547ac37e60ab5697042a333f2f14bd752e428fc8465258500bf7464a47dceda543962b44b82b18f6f35c9f88be56acc6355da5b583f3be8d9a8a
 SHA512 

[gentoo-commits] repo/gentoo:master commit in: mail-client/thunderbird/

2021-07-13 Thread Thomas Deutschmann
commit: 9398e90f9e5a9b7d50de53c03bf416a8cdf4067a
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Jul 13 21:10:04 2021 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Jul 13 21:25:51 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9398e90f

mail-client/thunderbird: downgrading ewarn to einfo in llvm_check_deps

Bug: https://bugs.gentoo.org/795351
Package-Manager: Portage-3.0.21, Repoman-3.0.3
Signed-off-by: Thomas Deutschmann  gentoo.org>

 mail-client/thunderbird/thunderbird-78.12.0.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/mail-client/thunderbird/thunderbird-78.12.0.ebuild 
b/mail-client/thunderbird/thunderbird-78.12.0.ebuild
index 782510d30b9..d5a0e95087d 100644
--- a/mail-client/thunderbird/thunderbird-78.12.0.ebuild
+++ b/mail-client/thunderbird/thunderbird-78.12.0.ebuild
@@ -193,19 +193,19 @@ S="${WORKDIR}/${PN}-${PV%_*}"
 
 llvm_check_deps() {
if ! has_version -b "sys-devel/clang:${LLVM_SLOT}" ; then
-   ewarn "sys-devel/clang:${LLVM_SLOT} is missing! Cannot use LLVM 
slot ${LLVM_SLOT} ..." >&2
+   einfo "sys-devel/clang:${LLVM_SLOT} is missing! Cannot use LLVM 
slot ${LLVM_SLOT} ..." >&2
return 1
fi
 
if use clang ; then
if ! has_version -b "=sys-devel/lld-${LLVM_SLOT}*" ; then
-   ewarn "=sys-devel/lld-${LLVM_SLOT}* is missing! Cannot 
use LLVM slot ${LLVM_SLOT} ..." >&2
+   einfo "=sys-devel/lld-${LLVM_SLOT}* is missing! Cannot 
use LLVM slot ${LLVM_SLOT} ..." >&2
return 1
fi
 
if use pgo ; then
if ! has_version -b 
"=sys-libs/compiler-rt-sanitizers-${LLVM_SLOT}*" ; then
-   ewarn 
"=sys-libs/compiler-rt-sanitizers-${LLVM_SLOT}* is missing! Cannot use LLVM 
slot ${LLVM_SLOT} ..." >&2
+   einfo 
"=sys-libs/compiler-rt-sanitizers-${LLVM_SLOT}* is missing! Cannot use LLVM 
slot ${LLVM_SLOT} ..." >&2
return 1
fi
fi



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

2021-07-13 Thread Conrad Kostecki
commit: 6ba60807f547e3591a53965978266895a2ee54a6
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Tue Jul 13 21:23:31 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Tue Jul 13 21:23:31 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ba60807

media-sound/gnump3d: drop old version

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

 media-sound/gnump3d/files/gnump3d.init.d  | 36 --
 media-sound/gnump3d/gnump3d-3.0-r3.ebuild | 78 ---
 2 files changed, 114 deletions(-)

diff --git a/media-sound/gnump3d/files/gnump3d.init.d 
b/media-sound/gnump3d/files/gnump3d.init.d
deleted file mode 100644
index 730fc0cdb2d..000
--- a/media-sound/gnump3d/files/gnump3d.init.d
+++ /dev/null
@@ -1,36 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-extra_commands="index"
-
-depend() {
-   need net
-   after netmount nfsmount
-}
-
-start() {
-   ebegin "Starting gnump3d"
-
-   if [ ${DO_INDEX} -eq 1 ]; then
-   ebegin "Updating index of music files (may take a while for the 
first time)"
-   /usr/bin/gnump3d-index
-   eend $?
-   fi
-
-   start-stop-daemon --start --quiet --exec /usr/bin/gnump3d2 
--make-pidfile \
-   --pidfile /var/run/gnump3d.pid --background -- --quiet
-   eend $?
-}
-
-stop() {
-   ebegin "Stopping gnump3d"
-   start-stop-daemon --stop --quiet --pidfile /var/run/gnump3d.pid
-   eend $?
-}
-
-index() {
-   ebegin "Indexing music files"
-   /usr/bin/gnump3d-index
-   eend $?
-}

diff --git a/media-sound/gnump3d/gnump3d-3.0-r3.ebuild 
b/media-sound/gnump3d/gnump3d-3.0-r3.ebuild
deleted file mode 100644
index 67661e9529e..000
--- a/media-sound/gnump3d/gnump3d-3.0-r3.ebuild
+++ /dev/null
@@ -1,78 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit multilib perl-module
-
-DESCRIPTION="A streaming server for MP3, OGG vorbis and other streamable files"
-HOMEPAGE="https://www.gnu.org/software/gnump3d/;
-SRC_URI="https://savannah.gnu.org/download/${PN}/${P}.tar.bz2;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~ppc ppc64 sparc x86"
-IUSE="sox"
-
-DEPEND="
-   acct-group/gnump3d
-   acct-user/gnump3d
-"
-
-RDEPEND="
-   ${DEPEND}
-   sox? ( media-sound/sox )
-"
-
-RESTRICT="test"
-
-pkg_setup() {
-   LIBDIR=/usr/$(get_libdir)
-}
-
-src_compile() { :; }
-
-src_install() {
-   perl_set_version
-
-   insinto "${VENDOR_LIB}"/gnump3d
-   doins lib/gnump3d/*.pm
-   insinto "${VENDOR_LIB}"/gnump3d/plugins
-   doins lib/gnump3d/plugins/*.pm
-   insinto "${VENDOR_LIB}"/gnump3d/lang
-   doins lib/gnump3d/lang/*.pm
-
-   dobin bin/gnump3d2 bin/gnump3d-top bin/gnump3d-index
-   dosym /usr/bin/gnump3d2 /usr/bin/gnump3d
-   doman man/*.1
-
-   insinto /usr/share/gnump3d
-   doins -r templates/*
-
-   insinto /etc/gnump3d
-   doins etc/gnump3d.conf etc/mime.types etc/file.types
-   sed -e "s,PLUGINDIR,${VENDOR_LIB},g" -i 
"${ED}/etc/gnump3d/gnump3d.conf" || die
-   sed -e 's,^user *= *\(.*\)$,user = gnump3d,g' -i 
"${ED}/etc/gnump3d/gnump3d.conf" || die
-
-   dodoc AUTHORS ChangeLog DOWNSAMPLING PLUGINS README SUPPORT TODO
-
-   newinitd "${FILESDIR}"/${PN}.init.d gnump3d
-   newconfd "${FILESDIR}"/${PN}.conf.d gnump3d
-
-   keepdir /var/log/gnump3d
-   keepdir /var/cache/gnump3d/serving
-
-   fowners gnump3d:gnump3d /var/log/gnump3d /var/cache/gnump3d
-}
-
-pkg_postinst() {
-   elog "Please edit your /etc/gnump3d/gnump3d.conf before running"
-   elog "/etc/init.d/gnump3d start"
-   elog ""
-   elog "At the very least, you will need to change the root directory"
-   elog "where music is found.  By default, gnump3d will also listen"
-   elog "to any address on port "
-   elog ""
-   elog "You can optionally use sox to downmix the quality of streamed"
-   elog "music in realtime for slow connections."
-}



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

2021-07-13 Thread Conrad Kostecki
commit: 0cde6b189cfc5e0128f52e517a8a7868cf8278d0
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Tue Jul 13 19:08:47 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Tue Jul 13 21:15:13 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0cde6b18

net-libs/libslirp: remove unused patch(es)

Closes: https://github.com/gentoo/gentoo/pull/21628
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>

 .../libslirp-4.3.1-bug-756910-check-pkt_len.patch  | 48 --
 1 file changed, 48 deletions(-)

diff --git 
a/net-libs/libslirp/files/libslirp-4.3.1-bug-756910-check-pkt_len.patch 
b/net-libs/libslirp/files/libslirp-4.3.1-bug-756910-check-pkt_len.patch
deleted file mode 100644
index aef7f19ba13..000
--- a/net-libs/libslirp/files/libslirp-4.3.1-bug-756910-check-pkt_len.patch
+++ /dev/null
@@ -1,48 +0,0 @@
-From: Prasad J Pandit 
-Date: Thu, 26 Nov 2020 13:57:06 +
-Subject: [PATCH] slirp: check pkt_len before reading protocol header
-
-While processing ARP/NCSI packets in 'arp_input' or 'ncsi_input'
-routines, ensure that pkt_len is large enough to accommodate the
-respective protocol headers, lest it should do an OOB access.
-Add check to avoid it.
-
-Reported-by: Qiuhao Li @outlook.com;
-Signed-off-by: Prasad J Pandit 

- src/ncsi.c  | 4 
- src/slirp.c | 4 
- 2 files changed, 8 insertions(+)
-
-diff --git a/src/ncsi.c b/src/ncsi.c
-index 3c1dfef..75dcc08 100644
 a/src/ncsi.c
-+++ b/src/ncsi.c
-@@ -148,6 +148,10 @@ void ncsi_input(Slirp *slirp, const uint8_t *pkt, int 
pkt_len)
- uint32_t checksum;
- uint32_t *pchecksum;
- 
-+if (pkt_len < ETH_HLEN + sizeof(struct ncsi_pkt_hdr)) {
-+return; /* packet too short */
-+}
-+
- memset(ncsi_reply, 0, sizeof(ncsi_reply));
- 
- memset(reh->h_dest, 0xff, ETH_ALEN);
-diff --git a/src/slirp.c b/src/slirp.c
-index 9bead0c..abb6f9a 100644
 a/src/slirp.c
-+++ b/src/slirp.c
-@@ -860,6 +860,10 @@ static void arp_input(Slirp *slirp, const uint8_t *pkt, 
int pkt_len)
- return;
- }
- 
-+if (pkt_len < ETH_HLEN + sizeof(struct slirp_arphdr)) {
-+return; /* packet too short */
-+}
-+
- ar_op = ntohs(ah->ar_op);
- switch (ar_op) {
- case ARPOP_REQUEST:
--- 
-2.28.0



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

2021-07-13 Thread Conrad Kostecki
commit: 90df404c0b5d87b409245a35464e0e708479e73e
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Mon Jul 12 18:14:32 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Tue Jul 13 21:14:42 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90df404c

media-video/handbrake: remove unused patch

Closes: https://github.com/gentoo/gentoo/pull/21615
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>

 media-video/handbrake/files/handbrake-1.3.2-x265-link.patch | 12 
 1 file changed, 12 deletions(-)

diff --git a/media-video/handbrake/files/handbrake-1.3.2-x265-link.patch 
b/media-video/handbrake/files/handbrake-1.3.2-x265-link.patch
deleted file mode 100644
index 589a204cc19..000
--- a/media-video/handbrake/files/handbrake-1.3.2-x265-link.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -Naru a/test/module.defs b/test/module.defs
 a/test/module.defs 2020-05-23 17:23:21.912103481 +0200
-+++ b/test/module.defs 2020-05-23 17:23:36.106103799 +0200
-@@ -16,7 +16,7 @@
- TEST.GCC.l = \
- ass avformat avfilter avcodec avutil swresample postproc mp3lame 
dvdnav \
- dvdread fribidi \
--swscale vpx theoraenc theoradec vorbis vorbisenc ogg x264 \
-+swscale vpx theoraenc theoradec vorbis vorbisenc ogg x264 x265 \
- bluray freetype xml2 bz2 z jansson harfbuzz opus speex lzma dav1d
- 
- ifeq (,$(filter $(HOST.system),darwin cygwin mingw))



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

2021-07-13 Thread Conrad Kostecki
commit: 4c492d4d300bdc3d6a56cd0f3067447e22d52280
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Mon Jul 12 18:15:17 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Tue Jul 13 21:14:27 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c492d4d

net-analyzer/icinga2: remove unused patch

Closes: https://github.com/gentoo/gentoo/pull/21614
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/icinga2-2.12.1-boost-1.74.0.patch| 436 -
 1 file changed, 436 deletions(-)

diff --git a/net-analyzer/icinga2/files/icinga2-2.12.1-boost-1.74.0.patch 
b/net-analyzer/icinga2/files/icinga2-2.12.1-boost-1.74.0.patch
deleted file mode 100644
index e6ad4807993..000
--- a/net-analyzer/icinga2/files/icinga2-2.12.1-boost-1.74.0.patch
+++ /dev/null
@@ -1,436 +0,0 @@
-From c30bae2994f1e5f33f6da51eb96d423e9bf0f75c Mon Sep 17 00:00:00 2001
-From: Louis Sautier 
-Date: Thu, 20 Aug 2020 18:25:48 +0200
-Subject: [PATCH] =?UTF-8?q?Fix=20=E2=80=98fs::copy=5Foption=E2=80=99=20has?=
- =?UTF-8?q?=20not=20been=20declared=20with=20boost=201.74.0?=
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-It was deprecated in
-https://github.com/boostorg/filesystem/commit/f199152b7df036ff1606c85e4ea1b28edfeda6cc

- lib/base/utility.cpp | 4 
- 1 file changed, 4 insertions(+)
-
-diff --git a/lib/base/utility.cpp b/lib/base/utility.cpp
-index 1add7616c6..d8e6f20b0c 100644
 a/lib/base/utility.cpp
-+++ b/lib/base/utility.cpp
-@@ -725,7 +725,11 @@ void Utility::CopyFile(const String& source, const 
String& target)
- {
-   namespace fs = boost::filesystem;
- 
-+#if BOOST_VERSION >= 107400
-+  fs::copy_file(fs::path(source.Begin(), source.End()), 
fs::path(target.Begin(), target.End()), fs::copy_options::overwrite_existing);
-+#else /* BOOST_VERSION */
-   fs::copy_file(fs::path(source.Begin(), source.End()), 
fs::path(target.Begin(), target.End()), fs::copy_option::overwrite_if_exists);
-+#endif /* BOOST_VERSION */
- }
- 
- /*
-From 45dd71e0f9a93369e08d6cb26f97940f9c9594aa Mon Sep 17 00:00:00 2001
-From: "Alexander A. Klimov" 
-Date: Wed, 26 Aug 2020 13:56:26 +0200
-Subject: [PATCH] Introduce HttpUtility::Set()
-
-refs #8185

- lib/cli/consolecommand.cpp   |  9 ---
- lib/perfdata/elasticsearchwriter.cpp | 13 -
- lib/perfdata/influxdbwriter.cpp  |  7 ++---
- lib/remote/configfileshandler.cpp|  4 +--
- lib/remote/eventshandler.cpp |  2 +-
- lib/remote/httpserverconnection.cpp  | 40 ++--
- lib/remote/httputility.cpp   |  4 +--
- lib/remote/httputility.hpp   | 28 +++
- lib/remote/infohandler.cpp   |  6 ++---
- plugins/check_nscp_api.cpp   |  9 ---
- 10 files changed, 77 insertions(+), 45 deletions(-)
-
-diff --git a/lib/cli/consolecommand.cpp b/lib/cli/consolecommand.cpp
-index 41b6590e4c..42c5c63133 100644
 a/lib/cli/consolecommand.cpp
-+++ b/lib/cli/consolecommand.cpp
-@@ -3,6 +3,7 @@
- #include "cli/consolecommand.hpp"
- #include "config/configcompiler.hpp"
- #include "remote/consolehandler.hpp"
-+#include "remote/httputility.hpp"
- #include "remote/url.hpp"
- #include "base/configwriter.hpp"
- #include "base/serializer.hpp"
-@@ -580,11 +581,11 @@ Dictionary::Ptr ConsoleCommand::SendRequest()
- 
-   http::request request(http::verb::post, 
std::string(l_Url->Format(false)), 10);
- 
--  request.set(http::field::user_agent, "Icinga/DebugConsole/" + 
Application::GetAppVersion());
--  request.set(http::field::host, l_Url->GetHost() + ":" + 
l_Url->GetPort());
-+  HttpUtility::Set(request, http::field::user_agent, 
"Icinga/DebugConsole/" + Application::GetAppVersion());
-+  HttpUtility::Set(request, http::field::host, l_Url->GetHost() + ":" + 
l_Url->GetPort());
- 
--  request.set(http::field::accept, "application/json");
--  request.set(http::field::authorization, "Basic " + 
Base64::Encode(l_Url->GetUsername() + ":" + l_Url->GetPassword()));
-+  HttpUtility::Set(request, http::field::accept, "application/json");
-+  HttpUtility::Set(request, http::field::authorization, "Basic " + 
Base64::Encode(l_Url->GetUsername() + ":" + l_Url->GetPassword()));
- 
-   try {
-   http::write(*l_TlsStream, request);
-diff --git a/lib/perfdata/elasticsearchwriter.cpp 
b/lib/perfdata/elasticsearchwriter.cpp
-index 6870198e45..3764bf536b 100644
 a/lib/perfdata/elasticsearchwriter.cpp
-+++ b/lib/perfdata/elasticsearchwriter.cpp
-@@ -2,6 +2,7 @@
- 
- #include "perfdata/elasticsearchwriter.hpp"
- #include "perfdata/elasticsearchwriter-ti.cpp"
-+#include "remote/httputility.hpp"
- #include "remote/url.hpp"
- #include "icinga/compatutility.hpp"
- #include "icinga/service.hpp"
-@@ -474,27 +475,27 @@ void ElasticsearchWriter::SendRequest(const 

[gentoo-commits] repo/gentoo:master commit in: net-print/cups-filters/files/

2021-07-13 Thread Conrad Kostecki
commit: b00cb4c5941e41693ff01b541acb8c3cc4b56af7
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Tue Jul 13 19:11:57 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Tue Jul 13 21:15:46 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b00cb4c5

net-print/cups-filters: remove unused patch

Closes: https://github.com/gentoo/gentoo/pull/21630
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>

 .../cups-filters-1.27.4-make-missing-testfont-non-fatal.patch | 11 ---
 1 file changed, 11 deletions(-)

diff --git 
a/net-print/cups-filters/files/cups-filters-1.27.4-make-missing-testfont-non-fatal.patch
 
b/net-print/cups-filters/files/cups-filters-1.27.4-make-missing-testfont-non-fatal.patch
deleted file mode 100644
index 50866e4a729..000
--- 
a/net-print/cups-filters/files/cups-filters-1.27.4-make-missing-testfont-non-fatal.patch
+++ /dev/null
@@ -1,11 +0,0 @@
 a/configure.ac
-+++ b/configure.ac
-@@ -789,7 +789,7 @@ AC_ARG_WITH([test-font-path],
-   [with_test_font_path=`find /usr/share/fonts -name DejaVuSans.ttf || 
echo /usr/share/fonts/dejavu/DejaVuSans.ttf`]
- )
- AC_CHECK_FILE("$with_test_font_path", [], [
--  AC_MSG_ERROR([Requested font file is missing. Please install a package 
providing it.])
-+  AC_MSG_WARN([Specified font for tests not found. Expect test failures!])
- ])
- AC_DEFINE_UNQUOTED([TESTFONT], ["$with_test_font_path"], [Path to font used 
in tests])
- 



[gentoo-commits] repo/gentoo:master commit in: net-mail/courier-imap/files/

2021-07-13 Thread Conrad Kostecki
commit: ef203260775720b6fc1139357f51ba8488d3bdf8
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Tue Jul 13 19:10:46 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Tue Jul 13 21:15:28 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef203260

net-mail/courier-imap: remove unused patch

Closes: https://github.com/gentoo/gentoo/pull/21629
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>

 ...ourier-imap-4.17-disable-fam-configure.ac.patch | 27 --
 1 file changed, 27 deletions(-)

diff --git 
a/net-mail/courier-imap/files/courier-imap-4.17-disable-fam-configure.ac.patch 
b/net-mail/courier-imap/files/courier-imap-4.17-disable-fam-configure.ac.patch
deleted file mode 100644
index 6d26895c0d7..000
--- 
a/net-mail/courier-imap/files/courier-imap-4.17-disable-fam-configure.ac.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-Bug #48838. Patch to enable/disable FAM support (20 Aug 2004
-langth...@gentoo.org). This patch should fix bug #51540. The fam USE
-flag is not needed for shared folder support.
-
 a/libs/maildir/configure.ac.orig   2004-06-08 15:44:23.0 -0700
-+++ b/libs/maildir/configure.ac2004-08-14 15:28:20.525714876 -0700
-@@ -73,6 +73,12 @@
- dnl Checks for library functions.
- AC_CHECK_HEADER(fam.h, :, :)
- AC_CHECK_FUNCS(symlink readlink strcasecmp utime utimes)
-+AC_ARG_WITH(fam, [  --with-fam  Compile with FAM support],
-+   fam="$withval",
-+   fam="no")
-+
-+if test "$fam" != "no"
-+then
- AC_CHECK_LIB(fam, FAMOpen,  [
-   LIBFAM=-lfam
-   AC_DEFINE_UNQUOTED(HAVE_FAM,1,
-@@ -87,6 +93,7 @@
- AC_MSG_ERROR([[FAM development libraries not found.]]) ]
-   )
- ])
-+fi
- 
- AC_SUBST(LIBFAM)
- 



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

2021-07-13 Thread Conrad Kostecki
commit: 7d8754c2bfe3ac71c69d42faf587a2f4f5435ac8
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Mon Jul 12 18:16:05 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Tue Jul 13 21:14:11 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d8754c2

net-analyzer/nfdump: remove unused patch

Closes: https://github.com/gentoo/gentoo/pull/21613
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>

 ...mp-1.6.21-remove-strict-rfc-7011-handling.patch | 49 --
 1 file changed, 49 deletions(-)

diff --git 
a/net-analyzer/nfdump/files/nfdump-1.6.21-remove-strict-rfc-7011-handling.patch 
b/net-analyzer/nfdump/files/nfdump-1.6.21-remove-strict-rfc-7011-handling.patch
deleted file mode 100644
index a36af2242d4..000
--- 
a/net-analyzer/nfdump/files/nfdump-1.6.21-remove-strict-rfc-7011-handling.patch
+++ /dev/null
@@ -1,49 +0,0 @@
-From f5ae2b821c22ebe0c96f3516d4e90f4255633828 Mon Sep 17 00:00:00 2001
-From: Peter Haag 
-Date: Sat, 8 Aug 2020 16:46:04 +0200
-Subject: [PATCH] Re-address issue #231 - remove strict rule rfc 7011
-

- ChangeLog   | 3 +++
- bin/ipfix.c | 3 ---
- 2 files changed, 3 insertions(+), 3 deletions(-)
-
-diff --git a/ChangeLog b/ChangeLog
-index a0b2b67..8b92e58 100755
 a/ChangeLog
-+++ b/ChangeLog
-@@ -1,3 +1,6 @@
-+2020-08-02
-+- Re-address issue #231 - remove strict rule rfc 7011
-+
- 2020-08-02
- - Release 1.6.21
- - Address issue #159. Implement rfc 7011 and include sender UDP port into 
unique template identification
-diff --git a/bin/ipfix.c b/bin/ipfix.c
-index a730a8b..19c9d63 100644
 a/bin/ipfix.c
-+++ b/bin/ipfix.c
-@@ -158,7 +158,6 @@ typedef struct exporterDomain_s {
- 
-   // exporter information
-   exporter_info_record_t info;
--  in_port_t   port;   // follow rfc 7011 - 
matching src port
- 
-   uint64_tpackets;// number of packets 
sent by this exporter
-   uint64_tflows;  // number of flow 
records sent by this exporter
-@@ -383,7 +382,6 @@ uint32_t ObservationDomain = 
ntohl(ipfix_header->ObservationDomain);
- 
-   while ( *e ) {
-   if ( (*e)->info.id == ObservationDomain && (*e)->info.version 
== 10 && 
--   (*e)->port == fs->port &&
-(*e)->info.ip.V6[0] == fs->ip.V6[0] && 
(*e)->info.ip.V6[1] == fs->ip.V6[1]) 
-   return *e;
-   e = &((*e)->next);
-@@ -412,7 +410,6 @@ uint32_t ObservationDomain = 
ntohl(ipfix_header->ObservationDomain);
-   (*e)->info.header.size  = sizeof(exporter_info_record_t);
-   (*e)->info.id   = ObservationDomain;
-   (*e)->info.ip   = fs->ip;
--  (*e)->port  = fs->port;
-   (*e)->info.sa_family= fs->sa_family;
-   (*e)->info.version  = 10;
-   (*e)->info.sysid= 0;



[gentoo-commits] repo/gentoo:master commit in: net-im/teams/files/

2021-07-13 Thread Conrad Kostecki
commit: 75df6207fe5af45e40623edc215d2b5d1619537b
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Mon Jul 12 18:16:44 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Tue Jul 13 21:14:57 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75df6207

net-im/teams: remove unused patch(es)

Closes: https://github.com/gentoo/gentoo/pull/21616
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>

 net-im/teams/files/fix-url-opening-1.4.00.4855.patch | 9 -
 1 file changed, 9 deletions(-)

diff --git a/net-im/teams/files/fix-url-opening-1.4.00.4855.patch 
b/net-im/teams/files/fix-url-opening-1.4.00.4855.patch
deleted file mode 100644
index 9ff55530511..000
--- a/net-im/teams/files/fix-url-opening-1.4.00.4855.patch
+++ /dev/null
@@ -1,9 +0,0 @@
 a/usr/bin/teams2021-03-12 09:58:20.095552303 +0100
-+++ b/usr/bin/teams2021-03-12 09:58:41.938137585 +0100
-@@ -8,5 +8,5 @@ TEAMS_LOGS="$HOME/.config/Microsoft/Micr
- 
- mkdir -p "$TEAMS_LOGS"
- 
--nohup "$TEAMS_PATH" --disable-namespace-sandbox --disable-setuid-sandbox "$@" 
> "$TEAMS_LOGS/teams-startup.log" 2>&1 &
-+nohup "$TEAMS_PATH" "$@" --disable-namespace-sandbox --disable-setuid-sandbox 
> "$TEAMS_LOGS/teams-startup.log" 2>&1 &
- 



[gentoo-commits] repo/gentoo:master commit in: games-server/bedrock-server/

2021-07-13 Thread Conrad Kostecki
commit: bc4dbb63e2dbe988fd795e7c3bcc36a5a9b6a22e
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Tue Jul 13 21:08:46 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Tue Jul 13 21:09:31 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc4dbb63

games-server/bedrock-server: bump to version 1.17.10.04

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

 games-server/bedrock-server/Manifest   |  1 +
 .../bedrock-server-1.17.10.04.ebuild   | 54 ++
 2 files changed, 55 insertions(+)

diff --git a/games-server/bedrock-server/Manifest 
b/games-server/bedrock-server/Manifest
index 3c9ee9e2f60..4264aca1ab6 100644
--- a/games-server/bedrock-server/Manifest
+++ b/games-server/bedrock-server/Manifest
@@ -1,2 +1,3 @@
 DIST bedrock-server-1.16.220.02.zip 54271561 BLAKE2B 
41d1a082299220952960231bf40601043d81129bc168aec75c73eeb14707ae5c7d94498cbdf49a2bac73c700d06bd80c1e5245e49958702e8651239eb0f20f56
 SHA512 
caee2c9932157f2dd68fb8cd72a1442c95b36ad333762b84979ac8625a758a6c78d776787ac67a0b479c0918d008d288cfaee32a5a2ba426448f4cd4c64ed3a0
 DIST bedrock-server-1.17.1.01.zip 29789544 BLAKE2B 
3d5f192777f4a0508f29271bd81c1ece9af32257168313d2d8b0a214db2233b0be21b4ec20538e4f8650a781688f32ab6dc604cf1a7c2915ef1b9c4dea8eec61
 SHA512 
6f32847ea6d0cb7d109a2fa2c7ab98049948a2f974d9ad00e45e2cad040e9787f2aff819a2922accad18d5d55b189ceefa82da144d9adb830a16112a78c28971
+DIST bedrock-server-1.17.10.04.zip 60012827 BLAKE2B 
09e42d79f693525857a4bbe4aa51d2df0a467490cef21dbb8fb02ec79bf7346700eb80ef438b48bd29232000b439e9d84c06c8fb2da168483922cb294e428838
 SHA512 
102fa38e64dfbd97cbe151fcf5b9d2b1087f8cc4373e72da46f2b8d34d1926e7b0dfe5075834e317474087ef05187feb065e6c02262ea4b6710e4d584b2d5567

diff --git a/games-server/bedrock-server/bedrock-server-1.17.10.04.ebuild 
b/games-server/bedrock-server/bedrock-server-1.17.10.04.ebuild
new file mode 100644
index 000..8b3bf146f77
--- /dev/null
+++ b/games-server/bedrock-server/bedrock-server-1.17.10.04.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="The official bedrock (non-java) based server for the sandbox 
video game"
+HOMEPAGE="https://www.minecraft.net/;
+SRC_URI="https://minecraft.azureedge.net/bin-linux/${P}.zip;
+S="${WORKDIR}"
+
+LICENSE="Mojang"
+SLOT="0"
+KEYWORDS="-* ~amd64"
+
+RDEPEND="
+   acct-group/bedrock
+   acct-user/bedrock
+   app-misc/dtach
+   dev-libs/openssl:0/1.1
+   net-misc/curl[ssl]
+   sys-libs/zlib
+"
+
+BDEPEND="app-arch/unzip"
+
+RESTRICT="bindist mirror"
+
+DOCS=(
+   "bedrock_server_how_to.html"
+   "release-notes.txt"
+)
+
+QA_PREBUILT="opt/bedrock-server/bedrock_server"
+
+src_compile() {
+   :;
+}
+
+src_install() {
+   exeinto /opt/bedrock-server
+   doexe bedrock_server
+
+   insinto /opt/bedrock-server
+   doins {permissions,whitelist}.json server.properties
+   doins -r {behavior,resource}_packs definitions structures
+
+   dodir /opt/bin
+   dosym ../bedrock-server/bedrock_server /opt/bin/bedrock-server
+
+   newinitd "${FILESDIR}"/bedrock-server.initd-r2 bedrock-server
+   newconfd "${FILESDIR}"/bedrock-server.confd bedrock-server
+
+   einstalldocs
+}



[gentoo-commits] repo/gentoo:master commit in: games-server/minecraft-server/

2021-07-13 Thread Conrad Kostecki
commit: 6e5f283decbd9388a95cc7245de23ca736714cf8
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Tue Jul 13 21:07:19 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Tue Jul 13 21:09:30 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e5f283d

games-server/minecraft-server: drop old version

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

 games-server/minecraft-server/Manifest |  1 -
 .../minecraft-server/minecraft-server-1.17.ebuild  | 54 --
 2 files changed, 55 deletions(-)

diff --git a/games-server/minecraft-server/Manifest 
b/games-server/minecraft-server/Manifest
index aea403c85b0..f752d9b2383 100644
--- a/games-server/minecraft-server/Manifest
+++ b/games-server/minecraft-server/Manifest
@@ -1,3 +1,2 @@
 DIST minecraft-server-1.16.5.jar 37962360 BLAKE2B 
355715b809c09581e457f54618bd6ddab91b1c488d709d402fa6690d32244298d44191d439b8d9f27f4853f7e7658bfa2db88b61697a1caeb66da76ab211d9f8
 SHA512 
8321c50d788c6a3a3e8b2146bf1b20f6a3da87dd21ec4bd1fda0031d26f728d64e56a6a230ba5d857f4d500d7ba281eb4e3c28b6715f29d8dcba79d8c0ddf03f
 DIST minecraft-server-1.17.1.jar 43626592 BLAKE2B 
f926c01890faf6904eb38ea14f1affddd32dbe992c4df9d125507325fa11ec98eeaa63622387a3608d89bbf2602a447efc8560a49b24ba517ed55bf2fd18fac9
 SHA512 
fe6e48e2cee38224d2c88f04c19afca9c21fddbe6077b5538e0a0581c2f6c4478ec99bc369bec5131d709b89273dbd769659f149163f0c284b518a38e58a5bcc
-DIST minecraft-server-1.17.jar 43621201 BLAKE2B 
f92b43e33e17e0cdada880e969ff05cdf79af7ff96c2e8043010bfff303ffad702fa9aa3cd8247e6092e64f4ba87562c458d95e38b26f7e52306fefbe5b2c30b
 SHA512 
d8c7658f2fedeb0ce60be24935e5543135200feae53bcaec510fcb86b93a18ac3464527a4d657c886f5ecaca89f1a7701cb03d6656efcb5c19e2156e59feef5a

diff --git a/games-server/minecraft-server/minecraft-server-1.17.ebuild 
b/games-server/minecraft-server/minecraft-server-1.17.ebuild
deleted file mode 100644
index 4eb5c360d41..000
--- a/games-server/minecraft-server/minecraft-server-1.17.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-EGIT_COMMIT="0a269b5f2c5b93b1712d0f5dc43b6182b9ab254e"
-README_GENTOO_SUFFIX="-r1"
-
-inherit readme.gentoo-r1 java-pkg-2 systemd
-
-DESCRIPTION="The official server for the sandbox video game"
-HOMEPAGE="https://www.minecraft.net/;
-SRC_URI="https://launcher.mojang.com/v1/objects/${EGIT_COMMIT}/server.jar -> 
${P}.jar"
-
-LICENSE="Mojang"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-
-RDEPEND="
-   acct-group/minecraft
-   acct-user/minecraft
-   app-misc/dtach
-   || (
-   >=virtual/jre-1.8
-   >=virtual/jdk-1.8
-   )
-"
-
-RESTRICT="bindist mirror"
-
-S="${WORKDIR}"
-
-src_unpack() {
-   cp "${DISTDIR}/${A}" "${WORKDIR}" || die
-}
-
-src_compile() {
-   :;
-}
-
-src_install() {
-   java-pkg_newjar minecraft-server-${PV}.jar minecraft-server.jar
-   java-pkg_dolauncher minecraft-server --jar minecraft-server.jar 
--java_args "\${JAVA_OPTS}"
-
-   newinitd "${FILESDIR}"/minecraft-server.initd-r4 minecraft-server
-   newconfd "${FILESDIR}"/minecraft-server.confd-r1 minecraft-server
-   systemd_newunit "${FILESDIR}"/minecraft-server.service 
minecraft-server@.service
-
-   readme.gentoo_create_doc
-}
-
-pkg_postinst() {
-   readme.gentoo_print_elog
-}



[gentoo-commits] repo/gentoo:master commit in: games-server/minecraft-server/

2021-07-13 Thread Conrad Kostecki
commit: 2bb75e7a61e9952e29c6d1dd575965ccf3514a5a
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Tue Jul 13 21:06:35 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Tue Jul 13 21:09:29 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2bb75e7a

games-server/minecraft-server: bump to version 1.17.1

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

 games-server/minecraft-server/Manifest |  1 +
 .../minecraft-server-1.17.1.ebuild | 54 ++
 2 files changed, 55 insertions(+)

diff --git a/games-server/minecraft-server/Manifest 
b/games-server/minecraft-server/Manifest
index 3ebdf77a9b1..aea403c85b0 100644
--- a/games-server/minecraft-server/Manifest
+++ b/games-server/minecraft-server/Manifest
@@ -1,2 +1,3 @@
 DIST minecraft-server-1.16.5.jar 37962360 BLAKE2B 
355715b809c09581e457f54618bd6ddab91b1c488d709d402fa6690d32244298d44191d439b8d9f27f4853f7e7658bfa2db88b61697a1caeb66da76ab211d9f8
 SHA512 
8321c50d788c6a3a3e8b2146bf1b20f6a3da87dd21ec4bd1fda0031d26f728d64e56a6a230ba5d857f4d500d7ba281eb4e3c28b6715f29d8dcba79d8c0ddf03f
+DIST minecraft-server-1.17.1.jar 43626592 BLAKE2B 
f926c01890faf6904eb38ea14f1affddd32dbe992c4df9d125507325fa11ec98eeaa63622387a3608d89bbf2602a447efc8560a49b24ba517ed55bf2fd18fac9
 SHA512 
fe6e48e2cee38224d2c88f04c19afca9c21fddbe6077b5538e0a0581c2f6c4478ec99bc369bec5131d709b89273dbd769659f149163f0c284b518a38e58a5bcc
 DIST minecraft-server-1.17.jar 43621201 BLAKE2B 
f92b43e33e17e0cdada880e969ff05cdf79af7ff96c2e8043010bfff303ffad702fa9aa3cd8247e6092e64f4ba87562c458d95e38b26f7e52306fefbe5b2c30b
 SHA512 
d8c7658f2fedeb0ce60be24935e5543135200feae53bcaec510fcb86b93a18ac3464527a4d657c886f5ecaca89f1a7701cb03d6656efcb5c19e2156e59feef5a

diff --git a/games-server/minecraft-server/minecraft-server-1.17.1.ebuild 
b/games-server/minecraft-server/minecraft-server-1.17.1.ebuild
new file mode 100644
index 000..3d1fcc0bad1
--- /dev/null
+++ b/games-server/minecraft-server/minecraft-server-1.17.1.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+EGIT_COMMIT="a16d67e5807f57fc4e550299cf20226194497dc2"
+README_GENTOO_SUFFIX="-r1"
+
+inherit readme.gentoo-r1 java-pkg-2 systemd
+
+DESCRIPTION="The official server for the sandbox video game"
+HOMEPAGE="https://www.minecraft.net/;
+SRC_URI="https://launcher.mojang.com/v1/objects/${EGIT_COMMIT}/server.jar -> 
${P}.jar"
+
+LICENSE="Mojang"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+
+RDEPEND="
+   acct-group/minecraft
+   acct-user/minecraft
+   app-misc/dtach
+   || (
+   >=virtual/jre-1.8
+   >=virtual/jdk-1.8
+   )
+"
+
+RESTRICT="bindist mirror"
+
+S="${WORKDIR}"
+
+src_unpack() {
+   cp "${DISTDIR}/${A}" "${WORKDIR}" || die
+}
+
+src_compile() {
+   :;
+}
+
+src_install() {
+   java-pkg_newjar minecraft-server-${PV}.jar minecraft-server.jar
+   java-pkg_dolauncher minecraft-server --jar minecraft-server.jar 
--java_args "\${JAVA_OPTS}"
+
+   newinitd "${FILESDIR}"/minecraft-server.initd-r4 minecraft-server
+   newconfd "${FILESDIR}"/minecraft-server.confd-r1 minecraft-server
+   systemd_newunit "${FILESDIR}"/minecraft-server.service 
minecraft-server@.service
+
+   readme.gentoo_create_doc
+}
+
+pkg_postinst() {
+   readme.gentoo_print_elog
+}



[gentoo-commits] repo/gentoo:master commit in: games-server/bedrock-server/

2021-07-13 Thread Conrad Kostecki
commit: 30a4669bceab259c741ae2458c9240a1484b1d8c
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Tue Jul 13 21:09:17 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Tue Jul 13 21:09:32 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30a4669b

games-server/bedrock-server: drop old version

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

 games-server/bedrock-server/Manifest   |  1 -
 .../bedrock-server/bedrock-server-1.17.1.01.ebuild | 54 --
 2 files changed, 55 deletions(-)

diff --git a/games-server/bedrock-server/Manifest 
b/games-server/bedrock-server/Manifest
index 4264aca1ab6..28f38e50112 100644
--- a/games-server/bedrock-server/Manifest
+++ b/games-server/bedrock-server/Manifest
@@ -1,3 +1,2 @@
 DIST bedrock-server-1.16.220.02.zip 54271561 BLAKE2B 
41d1a082299220952960231bf40601043d81129bc168aec75c73eeb14707ae5c7d94498cbdf49a2bac73c700d06bd80c1e5245e49958702e8651239eb0f20f56
 SHA512 
caee2c9932157f2dd68fb8cd72a1442c95b36ad333762b84979ac8625a758a6c78d776787ac67a0b479c0918d008d288cfaee32a5a2ba426448f4cd4c64ed3a0
-DIST bedrock-server-1.17.1.01.zip 29789544 BLAKE2B 
3d5f192777f4a0508f29271bd81c1ece9af32257168313d2d8b0a214db2233b0be21b4ec20538e4f8650a781688f32ab6dc604cf1a7c2915ef1b9c4dea8eec61
 SHA512 
6f32847ea6d0cb7d109a2fa2c7ab98049948a2f974d9ad00e45e2cad040e9787f2aff819a2922accad18d5d55b189ceefa82da144d9adb830a16112a78c28971
 DIST bedrock-server-1.17.10.04.zip 60012827 BLAKE2B 
09e42d79f693525857a4bbe4aa51d2df0a467490cef21dbb8fb02ec79bf7346700eb80ef438b48bd29232000b439e9d84c06c8fb2da168483922cb294e428838
 SHA512 
102fa38e64dfbd97cbe151fcf5b9d2b1087f8cc4373e72da46f2b8d34d1926e7b0dfe5075834e317474087ef05187feb065e6c02262ea4b6710e4d584b2d5567

diff --git a/games-server/bedrock-server/bedrock-server-1.17.1.01.ebuild 
b/games-server/bedrock-server/bedrock-server-1.17.1.01.ebuild
deleted file mode 100644
index 8b3bf146f77..000
--- a/games-server/bedrock-server/bedrock-server-1.17.1.01.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="The official bedrock (non-java) based server for the sandbox 
video game"
-HOMEPAGE="https://www.minecraft.net/;
-SRC_URI="https://minecraft.azureedge.net/bin-linux/${P}.zip;
-S="${WORKDIR}"
-
-LICENSE="Mojang"
-SLOT="0"
-KEYWORDS="-* ~amd64"
-
-RDEPEND="
-   acct-group/bedrock
-   acct-user/bedrock
-   app-misc/dtach
-   dev-libs/openssl:0/1.1
-   net-misc/curl[ssl]
-   sys-libs/zlib
-"
-
-BDEPEND="app-arch/unzip"
-
-RESTRICT="bindist mirror"
-
-DOCS=(
-   "bedrock_server_how_to.html"
-   "release-notes.txt"
-)
-
-QA_PREBUILT="opt/bedrock-server/bedrock_server"
-
-src_compile() {
-   :;
-}
-
-src_install() {
-   exeinto /opt/bedrock-server
-   doexe bedrock_server
-
-   insinto /opt/bedrock-server
-   doins {permissions,whitelist}.json server.properties
-   doins -r {behavior,resource}_packs definitions structures
-
-   dodir /opt/bin
-   dosym ../bedrock-server/bedrock_server /opt/bin/bedrock-server
-
-   newinitd "${FILESDIR}"/bedrock-server.initd-r2 bedrock-server
-   newconfd "${FILESDIR}"/bedrock-server.confd bedrock-server
-
-   einstalldocs
-}



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

2021-07-13 Thread Patrick McLean
commit: cf1ef9d692a509052c5ef64a6c34bec7000c4bf5
Author: Patrick McLean  gentoo  org>
AuthorDate: Tue Jul 13 21:07:27 2021 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Tue Jul 13 21:07:38 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf1ef9d6

dev-util/bpftrace-0.13.0-r1: revbump, install lib (bug #801472)

Closes: https://bugs.gentoo.org/801472
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Patrick McLean  gentoo.org>

 .../bpftrace/{bpftrace-0.13.0.ebuild => bpftrace-0.13.0-r1.ebuild}  | 0
 dev-util/bpftrace/files/bpftrace-0.13.0-install-libs.patch  | 6 --
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/dev-util/bpftrace/bpftrace-0.13.0.ebuild 
b/dev-util/bpftrace/bpftrace-0.13.0-r1.ebuild
similarity index 100%
rename from dev-util/bpftrace/bpftrace-0.13.0.ebuild
rename to dev-util/bpftrace/bpftrace-0.13.0-r1.ebuild

diff --git a/dev-util/bpftrace/files/bpftrace-0.13.0-install-libs.patch 
b/dev-util/bpftrace/files/bpftrace-0.13.0-install-libs.patch
index 03fd2d13e60..fb75f9db1ba 100644
--- a/dev-util/bpftrace/files/bpftrace-0.13.0-install-libs.patch
+++ b/dev-util/bpftrace/files/bpftrace-0.13.0-install-libs.patch
@@ -52,10 +52,10 @@ index 0361cdaa..f9c536a3 100644
  if (LIBBPF_BTF_DUMP_FOUND)
target_include_directories(libbpftrace PUBLIC ${LIBBPF_INCLUDE_DIRS})
 diff --git a/src/arch/CMakeLists.txt b/src/arch/CMakeLists.txt
-index 76bb217e..6d243a7e 100644
+index 76bb217e..4ad0f626 100644
 --- a/src/arch/CMakeLists.txt
 +++ b/src/arch/CMakeLists.txt
-@@ -1,15 +1,15 @@
+@@ -1,15 +1,17 @@
  if(CMAKE_SYSTEM_PROCESSOR STREQUAL "aarch64")
 -add_library(arch aarch64.cpp)
 +add_library(bpftracearch aarch64.cpp)
@@ -76,6 +76,8 @@ index 76bb217e..6d243a7e 100644
  else()
message(FATAL_ERROR "Unsupported architecture: ${CMAKE_SYSTEM_PROCESSOR}")
  endif()
++
++install(TARGETS bpftracearch LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR})
 diff --git a/src/ast/CMakeLists.txt b/src/ast/CMakeLists.txt
 index 5234388c..8b40faaa 100644
 --- a/src/ast/CMakeLists.txt



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

2021-07-13 Thread Michał Górny
commit: b68e153116a67cf06fe39b614c36923556561603
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Jul 13 21:05:07 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Jul 13 21:05:51 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b68e1531

sys-kernel/gentoo-kernel: Remove old

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

 sys-kernel/gentoo-kernel/Manifest  |  30 --
 .../gentoo-kernel/gentoo-kernel-5.10.38.ebuild |  90 --
 .../gentoo-kernel/gentoo-kernel-5.10.43.ebuild | 105 -
 .../gentoo-kernel/gentoo-kernel-5.10.44.ebuild | 105 -
 .../gentoo-kernel/gentoo-kernel-5.10.45.ebuild | 105 -
 .../gentoo-kernel/gentoo-kernel-5.10.46.ebuild | 105 -
 .../gentoo-kernel/gentoo-kernel-5.12.10.ebuild | 105 -
 .../gentoo-kernel/gentoo-kernel-5.12.11.ebuild | 105 -
 .../gentoo-kernel/gentoo-kernel-5.12.12.ebuild | 105 -
 .../gentoo-kernel/gentoo-kernel-5.12.13.ebuild | 105 -
 .../gentoo-kernel/gentoo-kernel-5.12.14.ebuild | 105 -
 .../gentoo-kernel/gentoo-kernel-5.4.120.ebuild |  97 ---
 .../gentoo-kernel/gentoo-kernel-5.4.125.ebuild |  97 ---
 .../gentoo-kernel/gentoo-kernel-5.4.126.ebuild |  97 ---
 .../gentoo-kernel/gentoo-kernel-5.4.127.ebuild |  97 ---
 .../gentoo-kernel/gentoo-kernel-5.4.128.ebuild |  97 ---
 16 files changed, 1550 deletions(-)

diff --git a/sys-kernel/gentoo-kernel/Manifest 
b/sys-kernel/gentoo-kernel/Manifest
index e260a4fa259..581813c81d8 100644
--- a/sys-kernel/gentoo-kernel/Manifest
+++ b/sys-kernel/gentoo-kernel/Manifest
@@ -1,13 +1,3 @@
-DIST genpatches-5.10-41.base.tar.xz 1421952 BLAKE2B 
513d7aac0ee791d615fdaf336a29e677a6ef43411dc04e86173eec95322b3d01b658fdbde8dcd6bd9a195bc95a8f86e9d895d5825a4898d608a156a6cc26faec
 SHA512 
8566ae1faf7812c52a29844365a0ef8f026b845a7a7e85a04a4ddb490cbb00748b6ddc843244aa1871abcc23c3dc9095d43cfa14efaee14b7d58564a87870d57
-DIST genpatches-5.10-41.extras.tar.xz 1768 BLAKE2B 
70b1c510506b1df8ef210b10a203711d07d0b170bb40a4619cfcb99754f20fc14b648f1c2f4516f3baebf327706444d6d8e375bc3277c03b2f623c959c863791
 SHA512 
198db6b840eb22deb594e336a3c64bb32c13a12ad682b5d431d0365d276b6412ada9594c85d274ecfb20ee2bf2045bc60dc244edf7d0c8d0ac1f21ecab4f9748
-DIST genpatches-5.10-47.base.tar.xz 1555884 BLAKE2B 
a4078ace7edfd91eb3ec2f63cb121571b2d5137837a33c96ed5e09201f34cf82fe3b7e88c6684f40a2125d88aeebe275e826ccb2d63b8bc96863edba5055643d
 SHA512 
eea3cbb4b0a9c5979f4a7504eab5eb7e041601c78d3c1f4037c2eb91fe54e7e73c7bcbd88f6e69dc859f9eb7d029bc9f55b6ffa652bf6bc742013fa8d3b0c71a
-DIST genpatches-5.10-47.extras.tar.xz 3412 BLAKE2B 
779b0a8bb908156bc902106a98e4308b3ebfe42ecfd5d651aab4dbb95c0ee890e353d26d51e1fdb7c7305419e8eda5103a01405be5b015ebeccde869798c68a4
 SHA512 
dadec8511140903f38e7d6657f3e8b750382cbb18271448d3d23a03962b0ceb4b70950d6dfdb643fc2223f53254b824a04d2eec540626a20a50b998a9ddfdc13
-DIST genpatches-5.10-48.base.tar.xz 1580692 BLAKE2B 
85f19398f7a3967b471077c1957aa21ee6b34c1a0876ae6a64e5aaecec7a9c91274eeab73574e22961dd8f8e19bc4a69f4fcfb26e9809287ef0da964f64bd69c
 SHA512 
20b894e85f002b057377b7685bc4a957ff1a2990ee6bf94d1db9e8ea1a3e9d20478445ae5aaaf005269505599c4a9b9b26a4ea7129d3c5e2ad18a530c4b6f5eb
-DIST genpatches-5.10-48.extras.tar.xz 3408 BLAKE2B 
6f347e53aa1eabf134fdd4f234d794820d9aedf126084615fe5eaf29c8e8f30828678b9df544ed39a9ea47e9bd9e5b1a93ea94a90a7aaf1234354cdd011cbabb
 SHA512 
3d19cb7079c56c7675a16302c272a1da1b72b902d66f341428747aa12d1fbf949366e12ed5501bc15d92ca89eb93b32eea283156ac5317a75f11806907e55cad
-DIST genpatches-5.10-49.base.tar.xz 1588092 BLAKE2B 
d31ab75b6106e81654a69d1d0cb1d765cad83fcdb20a4cad9bf44749146aeb4c19cb6c8bb743b26ec48cb6439c64f8b3af9011468ba6b140dfcdd00adf14286f
 SHA512 
cf6973eed088a99b9e9bc5822f87e75bec61f94207a783f25ec5e835fde565dfbc04fe3dc5c6709f213479b86bbfab26003661108607a17df0169ee2ae5f43c3
-DIST genpatches-5.10-49.extras.tar.xz 3412 BLAKE2B 
3feb28c887152586b0e5c282e898d447451cdc7b0dcd0749d69890b72fc1d38f9a0a9dfe62d09c8f37ee198ff809edd949137503dafbd63120b566a837c83e32
 SHA512 
dc916a8848358891c749ab2853d49a2e5a3e7cc0c696b4f523902c5526fe3463730209bcd9a229dea86ed628a8da63b16316b565752e4eba6ee68381af92b6c7
-DIST genpatches-5.10-50.base.tar.xz 1622300 BLAKE2B 
edc737c022aa9855ce8afa6120618376dc1fed512f34a8269fb209389abb8292d14ee1c3020a33af181d099b6acbe970f960921790f5b356d742ee61750d34f8
 SHA512 
c543389c2cb737b874d91b4dba700c7709aa3997a3bf7c6831bd0b543f8611f37a5d87c4b3f9b775dee2bc3a3856ff0b34dd35ad8cd8ced60d00a880e7e7bc75
-DIST genpatches-5.10-50.extras.tar.xz 3412 BLAKE2B 
cb86ec70bae4b4260f973dbb23251e0c9f9841b12cd3e1e405215e9d54828ed4f7e32aeed131000f7ee467c3b23068f1dc6ca7e056a8b0308add810a0d6bc7c4
 SHA512 

[gentoo-commits] repo/gentoo:master commit in: virtual/dist-kernel/

2021-07-13 Thread Michał Górny
commit: f384fcbf05a5b8359b3bae2a72dead2c60fe4030
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Jul 13 21:04:50 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Jul 13 21:05:49 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f384fcbf

virtual/dist-kernel: Remove old

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

 virtual/dist-kernel/dist-kernel-5.10.38.ebuild | 19 ---
 virtual/dist-kernel/dist-kernel-5.10.43.ebuild | 19 ---
 virtual/dist-kernel/dist-kernel-5.10.44.ebuild | 19 ---
 virtual/dist-kernel/dist-kernel-5.10.45.ebuild | 19 ---
 virtual/dist-kernel/dist-kernel-5.10.46.ebuild | 19 ---
 virtual/dist-kernel/dist-kernel-5.12.10.ebuild | 19 ---
 virtual/dist-kernel/dist-kernel-5.12.11.ebuild | 19 ---
 virtual/dist-kernel/dist-kernel-5.12.12.ebuild | 19 ---
 virtual/dist-kernel/dist-kernel-5.12.13.ebuild | 19 ---
 virtual/dist-kernel/dist-kernel-5.12.14.ebuild | 19 ---
 virtual/dist-kernel/dist-kernel-5.4.120.ebuild | 19 ---
 virtual/dist-kernel/dist-kernel-5.4.125.ebuild | 19 ---
 virtual/dist-kernel/dist-kernel-5.4.126.ebuild | 19 ---
 virtual/dist-kernel/dist-kernel-5.4.127.ebuild | 19 ---
 virtual/dist-kernel/dist-kernel-5.4.128.ebuild | 19 ---
 15 files changed, 285 deletions(-)

diff --git a/virtual/dist-kernel/dist-kernel-5.10.38.ebuild 
b/virtual/dist-kernel/dist-kernel-5.10.38.ebuild
deleted file mode 100644
index 340ca7eb117..000
--- a/virtual/dist-kernel/dist-kernel-5.10.38.ebuild
+++ /dev/null
@@ -1,19 +0,0 @@
-# Copyright 2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="Virtual to depend on any Distribution Kernel"
-HOMEPAGE=""
-SRC_URI=""
-
-LICENSE=""
-SLOT="0/${PV}"
-KEYWORDS="amd64 ~arm arm64 ppc64 x86"
-
-RDEPEND="
-   || (
-   ~sys-kernel/gentoo-kernel-${PV}
-   ~sys-kernel/gentoo-kernel-bin-${PV}
-   ~sys-kernel/vanilla-kernel-${PV}
-   )"

diff --git a/virtual/dist-kernel/dist-kernel-5.10.43.ebuild 
b/virtual/dist-kernel/dist-kernel-5.10.43.ebuild
deleted file mode 100644
index 3df38272de3..000
--- a/virtual/dist-kernel/dist-kernel-5.10.43.ebuild
+++ /dev/null
@@ -1,19 +0,0 @@
-# Copyright 2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="Virtual to depend on any Distribution Kernel"
-HOMEPAGE=""
-SRC_URI=""
-
-LICENSE=""
-SLOT="0/${PV}"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
-
-RDEPEND="
-   || (
-   ~sys-kernel/gentoo-kernel-${PV}
-   ~sys-kernel/gentoo-kernel-bin-${PV}
-   ~sys-kernel/vanilla-kernel-${PV}
-   )"

diff --git a/virtual/dist-kernel/dist-kernel-5.10.44.ebuild 
b/virtual/dist-kernel/dist-kernel-5.10.44.ebuild
deleted file mode 100644
index 3df38272de3..000
--- a/virtual/dist-kernel/dist-kernel-5.10.44.ebuild
+++ /dev/null
@@ -1,19 +0,0 @@
-# Copyright 2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="Virtual to depend on any Distribution Kernel"
-HOMEPAGE=""
-SRC_URI=""
-
-LICENSE=""
-SLOT="0/${PV}"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
-
-RDEPEND="
-   || (
-   ~sys-kernel/gentoo-kernel-${PV}
-   ~sys-kernel/gentoo-kernel-bin-${PV}
-   ~sys-kernel/vanilla-kernel-${PV}
-   )"

diff --git a/virtual/dist-kernel/dist-kernel-5.10.45.ebuild 
b/virtual/dist-kernel/dist-kernel-5.10.45.ebuild
deleted file mode 100644
index 3df38272de3..000
--- a/virtual/dist-kernel/dist-kernel-5.10.45.ebuild
+++ /dev/null
@@ -1,19 +0,0 @@
-# Copyright 2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="Virtual to depend on any Distribution Kernel"
-HOMEPAGE=""
-SRC_URI=""
-
-LICENSE=""
-SLOT="0/${PV}"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
-
-RDEPEND="
-   || (
-   ~sys-kernel/gentoo-kernel-${PV}
-   ~sys-kernel/gentoo-kernel-bin-${PV}
-   ~sys-kernel/vanilla-kernel-${PV}
-   )"

diff --git a/virtual/dist-kernel/dist-kernel-5.10.46.ebuild 
b/virtual/dist-kernel/dist-kernel-5.10.46.ebuild
deleted file mode 100644
index 3df38272de3..000
--- a/virtual/dist-kernel/dist-kernel-5.10.46.ebuild
+++ /dev/null
@@ -1,19 +0,0 @@
-# Copyright 2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="Virtual to depend on any Distribution Kernel"
-HOMEPAGE=""
-SRC_URI=""
-
-LICENSE=""
-SLOT="0/${PV}"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
-
-RDEPEND="
-   || (
-   ~sys-kernel/gentoo-kernel-${PV}
-   ~sys-kernel/gentoo-kernel-bin-${PV}
-   

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

2021-07-13 Thread Michał Górny
commit: 67b5628f4e30d3b408b29070544da489821f1991
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Jul 13 21:05:02 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Jul 13 21:05:50 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67b5628f

sys-kernel/gentoo-kernel-bin: Remove old

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

 sys-kernel/gentoo-kernel-bin/Manifest  |  77 --
 .../gentoo-kernel-bin-5.10.38-r1.ebuild| 114 
 .../gentoo-kernel-bin-5.10.38.ebuild   | 117 -
 .../gentoo-kernel-bin-5.10.43-r1.ebuild| 114 
 .../gentoo-kernel-bin-5.10.43.ebuild   | 117 -
 .../gentoo-kernel-bin-5.10.44-r1.ebuild| 114 
 .../gentoo-kernel-bin-5.10.44.ebuild   | 117 -
 .../gentoo-kernel-bin-5.10.45-r1.ebuild| 114 
 .../gentoo-kernel-bin-5.10.45.ebuild   | 117 -
 .../gentoo-kernel-bin-5.10.46-r2.ebuild| 114 
 .../gentoo-kernel-bin-5.10.46.ebuild   | 117 -
 .../gentoo-kernel-bin-5.12.10-r1.ebuild| 115 
 .../gentoo-kernel-bin-5.12.10.ebuild   | 117 -
 .../gentoo-kernel-bin-5.12.11-r1.ebuild| 115 
 .../gentoo-kernel-bin-5.12.11.ebuild   | 117 -
 .../gentoo-kernel-bin-5.12.12-r1.ebuild| 115 
 .../gentoo-kernel-bin-5.12.12.ebuild   | 117 -
 .../gentoo-kernel-bin-5.12.13-r2.ebuild| 115 
 .../gentoo-kernel-bin-5.12.13.ebuild   | 117 -
 .../gentoo-kernel-bin-5.12.14-r1.ebuild| 115 
 .../gentoo-kernel-bin-5.12.14.ebuild   | 117 -
 .../gentoo-kernel-bin-5.4.120-r1.ebuild| 114 
 .../gentoo-kernel-bin-5.4.120.ebuild   | 117 -
 .../gentoo-kernel-bin-5.4.125-r1.ebuild| 114 
 .../gentoo-kernel-bin-5.4.125.ebuild   | 117 -
 .../gentoo-kernel-bin-5.4.126-r1.ebuild| 114 
 .../gentoo-kernel-bin-5.4.126.ebuild   | 117 -
 .../gentoo-kernel-bin-5.4.127-r1.ebuild| 114 
 .../gentoo-kernel-bin-5.4.127.ebuild   | 117 -
 .../gentoo-kernel-bin-5.4.128-r2.ebuild| 114 
 .../gentoo-kernel-bin-5.4.128.ebuild   | 117 -
 31 files changed, 3547 deletions(-)

diff --git a/sys-kernel/gentoo-kernel-bin/Manifest 
b/sys-kernel/gentoo-kernel-bin/Manifest
index 852e6486292..513c24f6435 100644
--- a/sys-kernel/gentoo-kernel-bin/Manifest
+++ b/sys-kernel/gentoo-kernel-bin/Manifest
@@ -1,13 +1,3 @@
-DIST genpatches-5.10-41.base.tar.xz 1421952 BLAKE2B 
513d7aac0ee791d615fdaf336a29e677a6ef43411dc04e86173eec95322b3d01b658fdbde8dcd6bd9a195bc95a8f86e9d895d5825a4898d608a156a6cc26faec
 SHA512 
8566ae1faf7812c52a29844365a0ef8f026b845a7a7e85a04a4ddb490cbb00748b6ddc843244aa1871abcc23c3dc9095d43cfa14efaee14b7d58564a87870d57
-DIST genpatches-5.10-41.extras.tar.xz 1768 BLAKE2B 
70b1c510506b1df8ef210b10a203711d07d0b170bb40a4619cfcb99754f20fc14b648f1c2f4516f3baebf327706444d6d8e375bc3277c03b2f623c959c863791
 SHA512 
198db6b840eb22deb594e336a3c64bb32c13a12ad682b5d431d0365d276b6412ada9594c85d274ecfb20ee2bf2045bc60dc244edf7d0c8d0ac1f21ecab4f9748
-DIST genpatches-5.10-46.base.tar.xz 1555716 BLAKE2B 
51ecab1f2ea13578ff938e82338654560f9d2bd76dc1be42611a325a02cd715dd3388c1ba648d9a54eea9fc1a7bc5d5a9022d9b2cb85eeefe6bb36b0486ac365
 SHA512 
1d63725fd225a8b83977cd224a6db73c2163d0ea977b92f9b8c7e6a47c8d68bbbf6e1abb7bcfc7f25724717e34edd132a550920f48c87f169c7614253a4c9cda
-DIST genpatches-5.10-46.extras.tar.xz 3404 BLAKE2B 
d03f28caa10fc24b4623e0c19c5dd1161f653a70868b0990c75a4beb72f8755b086f4e36da5806c3d6fa269e547f1aa557dea25f6dc94bb74d295ecdcfe33815
 SHA512 
dc6cbe9433e8e7620cbb39245249c8f318e6e40ed5bcee1aace03981b15d9ccde5eb0ede9ca2ab881944a27ac1e480fb3991dd183cd292e74bcc43370e5e667a
-DIST genpatches-5.10-47.base.tar.xz 1555884 BLAKE2B 
a4078ace7edfd91eb3ec2f63cb121571b2d5137837a33c96ed5e09201f34cf82fe3b7e88c6684f40a2125d88aeebe275e826ccb2d63b8bc96863edba5055643d
 SHA512 
eea3cbb4b0a9c5979f4a7504eab5eb7e041601c78d3c1f4037c2eb91fe54e7e73c7bcbd88f6e69dc859f9eb7d029bc9f55b6ffa652bf6bc742013fa8d3b0c71a
-DIST genpatches-5.10-47.extras.tar.xz 3412 BLAKE2B 
779b0a8bb908156bc902106a98e4308b3ebfe42ecfd5d651aab4dbb95c0ee890e353d26d51e1fdb7c7305419e8eda5103a01405be5b015ebeccde869798c68a4
 SHA512 

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

2021-07-13 Thread Michał Górny
commit: f2ffea576625a319ce80478eb80878130b8fb3ba
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Jul 13 21:05:11 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Jul 13 21:05:52 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2ffea57

sys-kernel/vanilla-kernel: Remove old

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

 sys-kernel/vanilla-kernel/Manifest |  28 --
 .../vanilla-kernel/vanilla-kernel-5.10.43.ebuild   | 102 ---
 .../vanilla-kernel/vanilla-kernel-5.10.44.ebuild   | 102 ---
 .../vanilla-kernel/vanilla-kernel-5.10.45.ebuild   | 102 ---
 .../vanilla-kernel/vanilla-kernel-5.10.46.ebuild   | 102 ---
 .../vanilla-kernel/vanilla-kernel-5.12.10.ebuild   | 102 ---
 .../vanilla-kernel/vanilla-kernel-5.12.11.ebuild   | 102 ---
 .../vanilla-kernel/vanilla-kernel-5.12.12.ebuild   | 102 ---
 .../vanilla-kernel/vanilla-kernel-5.12.13.ebuild   | 102 ---
 .../vanilla-kernel/vanilla-kernel-5.12.14.ebuild   | 102 ---
 .../vanilla-kernel/vanilla-kernel-5.4.120.ebuild   | 108 -
 .../vanilla-kernel/vanilla-kernel-5.4.125.ebuild   | 108 -
 .../vanilla-kernel/vanilla-kernel-5.4.126.ebuild   | 108 -
 .../vanilla-kernel/vanilla-kernel-5.4.127.ebuild   | 108 -
 .../vanilla-kernel/vanilla-kernel-5.4.128.ebuild   | 108 -
 15 files changed, 1486 deletions(-)

diff --git a/sys-kernel/vanilla-kernel/Manifest 
b/sys-kernel/vanilla-kernel/Manifest
index 54f99062be2..46b951597c2 100644
--- a/sys-kernel/vanilla-kernel/Manifest
+++ b/sys-kernel/vanilla-kernel/Manifest
@@ -12,44 +12,16 @@ DIST kernel-ppc64le.config.5.4.21 172003 BLAKE2B 
b53887cb44f7c378cb3866780f8e556
 DIST kernel-x86_64-fedora.config.5.10.12 206357 BLAKE2B 
0eda9d4f3f973336cabd67c1ac78f100aabde926354743e8dcb7ff84496f0de49210d45f99bc850a2096078b0b4687aa7fd965d999248559506004f2b29dac0c
 SHA512 
b12f43d3c1a52a4915cd73db98874ce9ae6c425672c0f1c19ed1b1101341c868ebf1c9620bef5449752ec0d7342c1ce38fb9d0f89b9267096a605ebf7a26
 DIST kernel-x86_64-fedora.config.5.12.5 211204 BLAKE2B 
6276cd8eca1d82933cbd3e95608e334730b739936c27a922ac0a7319f64acbe46294c5920b67213b694ff9ccda5b0ca99e6e2519b496e608ddaa35b27e26ed3f
 SHA512 
c6955e7cc1ad874a3af42136b7ed958f04905de8f337d83fc36d59fdde5a469f260f8f29e9f6ac516b3c138679de0e37949b144773e24a4892ebcc8f729845de
 DIST kernel-x86_64.config.5.4.21 184907 BLAKE2B 
0eb2b07c14cea7545350fcdf3a94f2a531f0137c502ebda9299cacf44da5385686e2049b480b28bc153c9d413d453cfe682b9655eefe70428cb720f57c7bd200
 SHA512 
f3b3ee6841555ac3a9cc11536a7d44e1a5a8df2bab14ba341fda7df1ceb0de45cf1c799a1d54a64f2858fd1272d348bb52cf269ffa396878c5402baf2730237f
-DIST linux-5.10.43.tar.sign 991 BLAKE2B 
d114489e69719cf29bdb0d9407b68fb1fcb7a3396c1fcf1a4717a928c59ceca184a81e06d284e1f94f93f283b4c24bb5e86d9087309b279cc1bd887ddcc94f1f
 SHA512 
fe03dabd070a06176541953d3e8fc640af77a7485e1861b11968dc124118ab95b0a2eb7a3081e94faf62c6165d8752c84fbddd4f65513b17ab9e78e583d9f2ad
-DIST linux-5.10.43.tar.xz 116339780 BLAKE2B 
5a49e2c876fa175eae6a206353eb4946e44424db75958c0e9470ae6945e5f590483036464819ac8dd94041f6f466da0779ba797b4ef389de8185f9a16878a8a4
 SHA512 
e55a656f7c4e6a8c738c0d5ab18e84e3b832bad564b0f96b76dc1bcc3e4e7c5f3971d16fd42ad61770a1e6f5e55ed4b505f84890cfb9b9e5be90691eff7ae2cf
-DIST linux-5.10.44.tar.sign 991 BLAKE2B 
4070d508a3391e98616cc61318b466657aa06d3c8cc6bf1fcca3538460e3b41f634f8378a0cee4a0c95cca5145d17e89057df98fb9f4d8455046833783a74286
 SHA512 
2d23c8b86b8d9cf1ef787b94f8ac176e0da73dc0e4620ed19908d00f40f2246be1f8a98e79015b075e7b2c886f3ffe5d3699fe4f11f765c5961d6906031a48d7
-DIST linux-5.10.44.tar.xz 116348264 BLAKE2B 
b99c0fa5d0f5fc800156efcbc26adff40c2cef83a2c1d68ad009c767651392e137dd5a47b95e591078c18b8db6a9540829bb4dfaf799fe8915a691ddbf34
 SHA512 
444f4a57ebf77ad5a856c6fa2563948c594f4b2238ac1b3c78eddb89084fc888f634f9f61af309b6d146216dbdb4c10bbc06dfab4ccde0c1ce69ffa580558fbc
-DIST linux-5.10.45.tar.sign 991 BLAKE2B 
8ae31db4144f20edac3c980887aaf0516ac65621b0f36a0a9bfc716f1a3c42f4252c872574f4ddcff4dd9e95827c473d13570c9f5c9cb2ddc4150453d588758a
 SHA512 
6dc26ae65b896e21c48724848e08fd92690d79b4cea6aa81463e0f56c2750f2357ec41c14a38b2e82fb1e87ab7bb781ba8106fba1c5f5887d23a1ec7f2890610
-DIST linux-5.10.45.tar.xz 116351768 BLAKE2B 
5b5c04201f8b77a3154b874c0321d6e7c526b2f2d663bdb7878faf8b2d80b2f4a4324f5a2cc0161f42b6e72c8bc546b62162ee6c1bcd33c61d02ccea330a5d37
 SHA512 
08f4760c72a0971d92990bb8015ef56b7a58390ef88d72d0b38c73e52ea474ca6890140fb2d102e3f8ed0af5903d9ba4f606bc500bb96d53dac311a268e8126e
-DIST linux-5.10.46.tar.sign 991 BLAKE2B 
59c326a6c54fead30828fdfc17759ec883136b8d135b8b40bcf221b607a749b0c953ebf84cd2648822cddfbac61bb866905aa3ad17a33de91d3ee21fbc0182fd
 SHA512 

  1   2   3   4   5   >