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

2022-08-31 Thread Sam James
commit: d01b9fd7db93a28e7fc5ade8a498b86e4679ec64
Author: Sam James  gentoo  org>
AuthorDate: Thu Sep  1 02:22:43 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Sep  1 02:22:43 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d01b9fd7

net-im/neochat: Keyword 22.06 arm64, #857270

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

 net-im/neochat/neochat-22.06.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-im/neochat/neochat-22.06.ebuild 
b/net-im/neochat/neochat-22.06.ebuild
index 82c85a0163c7..75af865040e0 100644
--- a/net-im/neochat/neochat-22.06.ebuild
+++ b/net-im/neochat/neochat-22.06.ebuild
@@ -12,7 +12,7 @@ DESCRIPTION="Client for Matrix, the decentralized 
communication protocol"
 HOMEPAGE="https://apps.kde.org/neochat/";
 
 if [[ ${KDE_BUILD_TYPE} = release ]]; then
-   KEYWORDS="~amd64"
+   KEYWORDS="~amd64 ~arm64"
 fi
 
 LICENSE="GPL-3"



[gentoo-commits] repo/gentoo:master commit in: sci-libs/vtk/files/, sci-libs/vtk/

2022-08-31 Thread Sam James
commit: 2e02cfbf0edd45b41747e2707fc56b7512c6aef6
Author: Bernd Waibel  posteo  net>
AuthorDate: Tue Aug 23 16:54:15 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Sep  1 02:23:53 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e02cfbf

sci-libs/vtk: build with LTO enabled

Closes: https://bugs.gentoo.org/863038
Signed-off-by: Bernd Waibel  posteo.net>
Closes: https://github.com/gentoo/gentoo/pull/27010
Signed-off-by: Sam James  gentoo.org>

 ...-or-scope-struct-names-to-avoid-conflicts.patch | 126 +
 sci-libs/vtk/vtk-9.1.0-r2.ebuild   |   1 +
 2 files changed, 127 insertions(+)

diff --git 
a/sci-libs/vtk/files/vtk-9.1.0-Change-or-scope-struct-names-to-avoid-conflicts.patch
 
b/sci-libs/vtk/files/vtk-9.1.0-Change-or-scope-struct-names-to-avoid-conflicts.patch
new file mode 100644
index ..e06c786db9ab
--- /dev/null
+++ 
b/sci-libs/vtk/files/vtk-9.1.0-Change-or-scope-struct-names-to-avoid-conflicts.patch
@@ -0,0 +1,126 @@
+From 
https://gitlab.kitware.com/vtk/vtk/-/commit/0322b938968eebee585ad7efb93bbdade7106355
+From: Aron Helser 
+Date: Mon, 15 Aug 2022 10:06:13 -0400
+Subject: [PATCH 16/30] Change or scope struct names to avoid conflicts.
+
+(cherry picked from commit b79eb46bf5a4277cafc1ed2bd47fd3ffc28a5b3f)
+--- a/IO/AMR/vtkAMRFlashReader.cxx
 b/IO/AMR/vtkAMRFlashReader.cxx
+@@ -153,7 +153,7 @@ void vtkAMRFlashReader::ComputeStats(
+ 
+   for (int i = 0; i < internal->NumberOfBlocks; ++i)
+   {
+-Block& theBlock = internal->Blocks[i];
++FlashReaderBlock& theBlock = internal->Blocks[i];
+ double* gridMin = theBlock.MinBounds;
+ if (gridMin[0] < min[0])
+ {
+@@ -193,7 +193,7 @@ int vtkAMRFlashReader::FillMetaData()
+ 
+   for (int i = 0; i < this->Internal->NumberOfBlocks; ++i)
+   {
+-Block& theBlock = this->Internal->Blocks[i];
++FlashReaderBlock& theBlock = this->Internal->Blocks[i];
+ 
+ // Start numbering levels from 0!
+ int level = this->Internal->Blocks[i].Level - 1;
+--- a/IO/AMR/vtkAMRFlashReaderInternal.cxx
 b/IO/AMR/vtkAMRFlashReaderInternal.cxx
+@@ -692,7 +692,7 @@ void 
vtkFlashReaderInternal::GetBlockMinMaxGlobalDivisionIds()
+ 
+   for (int b = 0; b < this->NumberOfBlocks; b++)
+   {
+-Block& B = this->Blocks[b];
++FlashReaderBlock& B = this->Blocks[b];
+ 
+ for (int d = 0; d < 3; d++)
+ {
+--- a/IO/AMR/vtkAMRFlashReaderInternal.h
 b/IO/AMR/vtkAMRFlashReaderInternal.h
+@@ -74,7 +74,7 @@ typedef struct tagFlashReaderSimulationParameters
+   double RedShift;
+ } FlashReaderSimulationParameters;
+ 
+-typedef struct tagBlock
++typedef struct tagFlashReaderBlock
+ {
+   int Index;   // Id of the block
+   int Level;   // LOD level
+@@ -88,7 +88,7 @@ typedef struct tagBlock
+   double Center[3];// center of the block
+   double MinBounds[3]; // lower left  of the bounding box
+   double MaxBounds[3]; // upper right of the bounding box
+-} Block;
++} FlashReaderBlock;
+ 
+ typedef struct tagFlashReaderSimulationInformation
+ {
+@@ -152,7 +152,7 @@ public:
+   FlashReaderSimulationInformation SimulationInformation; // CFD simulation
+ 
+   // blocks
+-  std::vector Blocks;
++  std::vector Blocks;
+   std::vector LeafBlocks;
+   std::vector AttributeNames;
+ 
+--- a/IO/AMR/vtkAMRVelodyneReader.cxx
 b/IO/AMR/vtkAMRVelodyneReader.cxx
+@@ -219,7 +219,7 @@ int vtkAMRVelodyneReader::FillMetaData()
+   double spacing[3];
+   for (int i = 0; i < this->Internal->nBlocks; i++)
+   {
+-Block& theBlock = this->Internal->Blocks[i];
++vtkAMRVelodyneReaderInternal::Block& theBlock = this->Internal->Blocks[i];
+ int level = theBlock.Level;
+ int id = theBlock.Index;
+ CalculateBlockDims(this->Internal->blockDims.data(), theBlock.isFull, 
dims);
+@@ -243,7 +243,7 @@ vtkUniformGrid* vtkAMRVelodyneReader::GetAMRGrid(const int 
blockIdx)
+   {
+ return nullptr;
+   }
+-  Block& theBlock = this->Internal->Blocks[blockIdx];
++  vtkAMRVelodyneReaderInternal::Block& theBlock = 
this->Internal->Blocks[blockIdx];
+   int dims[3];
+   CalculateBlockDims(this->Internal->blockDims.data(), theBlock.isFull, dims);
+   vtkUniformGrid* ug = vtkUniformGrid::New();
+--- a/IO/AMR/vtkAMRVelodyneReaderInternal.h
 b/IO/AMR/vtkAMRVelodyneReaderInternal.h
+@@ -48,24 +48,20 @@
+ 
//
+ //  INTERNAL VELODYNE READER
+ 
//
+-typedef struct tagVelodyneSimParameters
+-{
+-  double Time;
+-  int CycleTime;
+-} VelodneSimParameters;
+ 
+-typedef struct tagBlock
+-{
+-  int Index;
+-  int dSetLoc;
+-  int Level;
+-  double Origin[3];
+-  bool isFull;
+-  bool isLeaf;
+-} Block;
+ class vtkAMRVelodyneReaderInternal
+ {
+ public:
++  typedef struct tagVelodyneBlock
++  {
++int Index;
++int dSetLoc;
++int 

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

2022-08-31 Thread Sam James
commit: f7aa9f54fed8aa3b557e9329b0833060ec76a4a9
Author: Sam James  gentoo  org>
AuthorDate: Thu Sep  1 02:24:25 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Sep  1 02:24:30 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7aa9f54

sci-libs/vtk: add more references to patch

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

 ...vtk-9.1.0-Change-or-scope-struct-names-to-avoid-conflicts.patch | 7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git 
a/sci-libs/vtk/files/vtk-9.1.0-Change-or-scope-struct-names-to-avoid-conflicts.patch
 
b/sci-libs/vtk/files/vtk-9.1.0-Change-or-scope-struct-names-to-avoid-conflicts.patch
index e06c786db9ab..24804ca2dc0a 100644
--- 
a/sci-libs/vtk/files/vtk-9.1.0-Change-or-scope-struct-names-to-avoid-conflicts.patch
+++ 
b/sci-libs/vtk/files/vtk-9.1.0-Change-or-scope-struct-names-to-avoid-conflicts.patch
@@ -1,4 +1,8 @@
 From 
https://gitlab.kitware.com/vtk/vtk/-/commit/0322b938968eebee585ad7efb93bbdade7106355
+
+https://bugs.gentoo.org/863038
+https://gitlab.kitware.com/vtk/vtk/-/issues/18638
+
 From: Aron Helser 
 Date: Mon, 15 Aug 2022 10:06:13 -0400
 Subject: [PATCH 16/30] Change or scope struct names to avoid conflicts.
@@ -121,6 +125,3 @@ Subject: [PATCH 16/30] Change or scope struct names to 
avoid conflicts.
vtkAMRVelodyneReaderInternal();
~vtkAMRVelodyneReaderInternal();
void SetFileName(VTK_FILEPATH VTK_FUTURE_CONST char* fileName);
--- 
-2.37.2
-



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

2022-08-31 Thread Matt Turner
commit: b21d3fce99b4495ce74180758cad34194146934c
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Sep  1 02:19:05 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Sep  1 02:25:01 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b21d3fce

app-misc/gnote: Version bump to 42.1

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

 app-misc/gnote/Manifest  |  1 +
 app-misc/gnote/gnote-42.1.ebuild | 66 
 2 files changed, 67 insertions(+)

diff --git a/app-misc/gnote/Manifest b/app-misc/gnote/Manifest
index 9b96edce9c8d..1e1e06ea01d9 100644
--- a/app-misc/gnote/Manifest
+++ b/app-misc/gnote/Manifest
@@ -1 +1,2 @@
 DIST gnote-42.0.tar.xz 3330504 BLAKE2B 
847c1c66b86902c13a7e9cd349e0b1e565f046ba81809dca002bfdc07d1e3dc4e12797da90e7689d8fde886ced580da9b744ca736697d1fd933a93cc344304bd
 SHA512 
fcdd653a29ae957faf177bacbe1bbdced186416c04a8f45f194a055914544b0679019935f482834e515a20865f358dfdfc32aa846c0fd24596cf5e569e21b997
+DIST gnote-42.1.tar.xz 3330824 BLAKE2B 
0bfd6276ab8446acfd925dd44fad7bbc94afe770bd4395ad2cfa1b20e4635da681d44db13b20b65262f80959d5cecaf044bc75cc6ea4fed84c79c87d8cda0ad1
 SHA512 
2ff3218b571edc1dcbba1cb5db5127ecfd184883a70bc6bd88391a9679989527680abe4ffb46620e73285fb1caacc23787e2500a867886924b540dfdd7f28d87

diff --git a/app-misc/gnote/gnote-42.1.ebuild b/app-misc/gnote/gnote-42.1.ebuild
new file mode 100644
index ..ffd488033aaf
--- /dev/null
+++ b/app-misc/gnote/gnote-42.1.ebuild
@@ -0,0 +1,66 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit gnome2 meson readme.gentoo-r1
+
+DESCRIPTION="Desktop note-taking application"
+HOMEPAGE="https://wiki.gnome.org/Apps/Gnote";
+
+LICENSE="GPL-3+ FDL-1.1"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+DEPEND="
+   >=dev-libs/glib-2.62:2[dbus]
+   >=dev-cpp/glibmm-2.62.0:2
+   >=dev-cpp/gtkmm-3.22.20:3.0
+   >=app-crypt/libsecret-0.8
+   >=dev-libs/libxml2-2:2
+   dev-libs/libxslt
+   >=sys-apps/util-linux-2.16:=
+   >=app-text/gspell-1.6.0:=
+   test? ( dev-libs/unittest++ )
+"
+RDEPEND="${DEPEND}
+   gnome-base/gsettings-desktop-schemas
+"
+BDEPEND="
+   app-text/docbook-xml-dtd:4.1.2
+   >=dev-util/intltool-0.35.0
+   dev-util/itstool
+   virtual/pkgconfig
+"
+
+src_prepare() {
+   default
+
+   # Build system requires UnitTest++ >=1.5.1, but the .pc file doesn't
+   # specify a version
+   sed -i -e "/UnitTest++/ s/version: [^,]*,//" meson.build || die
+   if ! use test; then
+   sed -i -e "/unit_test_pp/ s/ = .*/ = disabler()/" meson.build 
|| die
+   fi
+
+   if has_version net-fs/wdfs; then
+   DOC_CONTENTS="You have net-fs/wdfs installed. app-misc/gnote 
will use it to
+   synchronize notes."
+   else
+   DOC_CONTENTS="Gnote can use net-fs/wdfs to synchronize notes.
+   If you want to use that functionality just emerge net-fs/wdfs.
+   Gnote will automatically detect that you did and let you use 
it."
+   fi
+}
+
+src_install() {
+   meson_src_install
+   readme.gentoo_create_doc
+}
+
+pkg_postinst() {
+   gnome2_pkg_postinst
+   readme.gentoo_print_elog
+}



[gentoo-commits] repo/gentoo:master commit in: app-accessibility/speech-dispatcher/

2022-08-31 Thread Sam James
commit: 99eb47fad4a8da37ae719b47d290c2e6703c9fcb
Author: orbea  riseup  net>
AuthorDate: Thu Sep  1 02:45:50 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Sep  1 02:56:51 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99eb47fa

app-accessibility/speech-dispatcher: Add 0.11.2

Upstream added a --disable-ltdl configure argument which avoids the
dev-libs/libltdl dependency and the related build issue with slibtool.

Closes: https://bugs.gentoo.org/778434
Closes: https://github.com/gentoo/gentoo/pull/27100
Signed-off-by: Sam James  gentoo.org>

 app-accessibility/speech-dispatcher/Manifest   |   1 +
 .../speech-dispatcher-0.11.2.ebuild| 122 +
 2 files changed, 123 insertions(+)

diff --git a/app-accessibility/speech-dispatcher/Manifest 
b/app-accessibility/speech-dispatcher/Manifest
index 27a152842bb7..158a24b2f38f 100644
--- a/app-accessibility/speech-dispatcher/Manifest
+++ b/app-accessibility/speech-dispatcher/Manifest
@@ -1,2 +1,3 @@
 DIST speech-dispatcher-0.11.1.tar.gz 6548489 BLAKE2B 
fd4e05c51b80991bdd5d27ecf967946cfde98f978462e909f193c14eab51f3cae047d281c3e2896b3ddeeb4e045ceb72f51e5dbfaf3f9ea8a818f8146cb5e625
 SHA512 
859911d7db5660423bc7911eacbe8e7a9c3104df97478cbbca48ca5fd6ec018113172d49bc66781680433c77b4d2af43578c9b0f11409e2ba7ac618deb31d7cf
+DIST speech-dispatcher-0.11.2.tar.gz 7147526 BLAKE2B 
6b11949736275d900e5e1d3909fab51fc04fbb45baf470a4c98aed19f61b7adb8cedf6b11f1a1aa69d9625383627beab4122c74ec78d9c07a5d0ddf4646669d6
 SHA512 
038ecaa5b9d56e3f915ec49fe7768cb4eebe1c8be79b95635f09fb3f6067e4c0ade13d2dd355e0b326579dcdf509dd180889b27282410b6bb252a2f642f028d4
 DIST speech-dispatcher-0.9.1.tar.gz 166 BLAKE2B 
03c3d79a9cbbe7e549f638992fb276ab2270a45a057708721666257699479b3feb81daddf26d8032ba3f7b9ab6b836c7f582ee22a532ff018c99820af3864d87
 SHA512 
35adb353d22b8dff8884cb20f3836f96f4f74b272bbd442d522a10a3d3b91a0da6705e6c216764f295208b5446c2077da620de2a81cafe5a0c4dd826e33753c2

diff --git 
a/app-accessibility/speech-dispatcher/speech-dispatcher-0.11.2.ebuild 
b/app-accessibility/speech-dispatcher/speech-dispatcher-0.11.2.ebuild
new file mode 100644
index ..6509abcd7d1b
--- /dev/null
+++ b/app-accessibility/speech-dispatcher/speech-dispatcher-0.11.2.ebuild
@@ -0,0 +1,122 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit python-r1 systemd
+
+DESCRIPTION="Speech synthesis interface"
+HOMEPAGE="https://freebsoft.org/speechd";
+SRC_URI="https://github.com/brailcom/speechd/releases/download/${PV}/${P}.tar.gz";
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv 
~sparc ~x86"
+IUSE="alsa ao espeak +espeak-ng flite nas pulseaudio python"
+
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+DEPEND="python? ( ${PYTHON_DEPS} )
+   >=dev-libs/dotconf-1.3
+   >=dev-libs/glib-2.36:2
+   >=media-libs/libsndfile-1.0.2
+   alsa? ( media-libs/alsa-lib )
+   ao? ( media-libs/libao )
+   espeak? ( app-accessibility/espeak )
+   espeak-ng? ( app-accessibility/espeak-ng )
+   flite? ( app-accessibility/flite )
+   nas? ( media-libs/nas )
+   pulseaudio? ( media-sound/pulseaudio )"
+RDEPEND="${DEPEND}
+   python? ( dev-python/pyxdg[${PYTHON_USEDEP}] )"
+BDEPEND="
+   sys-apps/help2man
+   >=sys-devel/gettext-0.19.8
+   virtual/pkgconfig"
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-0.11.1-include-pthread_h.patch
+)
+
+src_configure() {
+   # bug 573732
+   export GIT_CEILING_DIRECTORIES="${WORKDIR}"
+
+   local myeconfargs=(
+   --disable-ltdl
+   --disable-python
+   --disable-static
+   --with-baratinoo=no
+   --with-ibmtts=no
+   --with-kali=no
+   --with-pico=no
+   --with-voxin=no
+   $(use_with alsa)
+   $(use_with ao libao)
+   $(use_with espeak)
+   $(use_with espeak-ng)
+   $(use_with flite)
+   $(use_with nas)
+   $(use_with pulseaudio pulse)
+   --with-systemdsystemunitdir="$(systemd_get_systemunitdir)"
+   )
+   econf "${myeconfargs[@]}"
+}
+
+src_compile() {
+   use python && python_copy_sources
+
+   emake
+
+   if use python; then
+   building() {
+   cd src/api/python || die
+   emake \
+   pyexecdir="$(python_get_sitedir)" \
+   pythondir="$(python_get_sitedir)"
+   }
+   python_foreach_impl run_in_build_dir building
+   fi
+}
+
+src_install() {
+   default
+
+   if use python; then
+   installation() {
+   cd src/api/python || die
+   emake \
+   

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

2022-08-31 Thread Sam James
commit: 9dd58013d6288b5180c374229a8bb0fbc1008996
Author: Sam James  gentoo  org>
AuthorDate: Thu Sep  1 03:06:39 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Sep  1 03:06:39 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9dd58013

sys-fs/mp3fs: Stabilize 1.1.1-r2 x86, #732764

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

 sys-fs/mp3fs/mp3fs-1.1.1-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/mp3fs/mp3fs-1.1.1-r2.ebuild 
b/sys-fs/mp3fs/mp3fs-1.1.1-r2.ebuild
index 91cf99c844be..5f8ebd3e819e 100644
--- a/sys-fs/mp3fs/mp3fs-1.1.1-r2.ebuild
+++ b/sys-fs/mp3fs/mp3fs-1.1.1-r2.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="https://github.com/khenriks/mp3fs/releases/download/v${PV}/${P}.tar.gz";
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE="+flac vorbis"
 
 REQUIRED_USE="|| ( flac vorbis )"



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

2022-08-31 Thread Sam James
commit: 24d795c53ac1ab73da4d8a1ac578fba910d2d34a
Author: Sam James  gentoo  org>
AuthorDate: Thu Sep  1 03:12:51 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Sep  1 03:12:51 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24d795c5

sys-fs/mp3fs: Stabilize 1.1.1-r2 amd64, #732764

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

 sys-fs/mp3fs/mp3fs-1.1.1-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/mp3fs/mp3fs-1.1.1-r2.ebuild 
b/sys-fs/mp3fs/mp3fs-1.1.1-r2.ebuild
index 5f8ebd3e819e..9d1c983aed61 100644
--- a/sys-fs/mp3fs/mp3fs-1.1.1-r2.ebuild
+++ b/sys-fs/mp3fs/mp3fs-1.1.1-r2.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="https://github.com/khenriks/mp3fs/releases/download/v${PV}/${P}.tar.gz";
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 IUSE="+flac vorbis"
 
 REQUIRED_USE="|| ( flac vorbis )"



[gentoo-commits] repo/gentoo:master commit in: www-client/opera-beta/

2022-08-31 Thread Sam James
commit: d4cec1d7a05f4eef47939e05724c694fd42cfb45
Author: Sam James  gentoo  org>
AuthorDate: Thu Sep  1 03:39:40 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Sep  1 03:39:40 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4cec1d7

www-client/opera-beta: automated bump (91.0.4516.6)

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

 www-client/opera-beta/Manifest |   1 +
 .../opera-beta/opera-beta-91.0.4516.6.ebuild   | 158 +
 2 files changed, 159 insertions(+)

diff --git a/www-client/opera-beta/Manifest b/www-client/opera-beta/Manifest
index 3f7bc7239ecf..645895b943b4 100644
--- a/www-client/opera-beta/Manifest
+++ b/www-client/opera-beta/Manifest
@@ -1,5 +1,6 @@
 DIST opera-beta_90.0.4480.37_amd64.deb 87760936 BLAKE2B 
893e91922235c24601f9e071f688179baefc7d646aa39714edfe33b44a3d5d44b9095ea1cbf886c9ff54cb692d78f9faa61d7f1ae47be1e938415d6696d3e6a8
 SHA512 
d3a956881dcaa99e14befa95b1e9c2a07fc6ec3c0937ff2d74b6e1523e6566c14c5e3c308478f58307e91bb343c11f40ab4c0f64b45a93e9f973e270d47e0677
 DIST opera-beta_90.0.4480.41_amd64.deb 87713760 BLAKE2B 
593769d761aa180917729fe794db2c0a6bf1044c7e163b0eba64a80e0afb091f6ceefb9358371062db40137f85c04448cc0deb7b72b1a10fb35ab7aa4b13c521
 SHA512 
81d7e84424f040af6d85f3bdfb3f0456a92895f2a7e510cfa68dcda7323a608e0fa065004c542de49d6d9a933b81c9140d48c83128b44a7e0602f5d669a4b4c9
 DIST opera-beta_91.0.4516.3_amd64.deb 88063968 BLAKE2B 
36bb20ff01d6d5a9a442fca497974fa8f43ffb6cd011e873acbc1ca6d1c4642d971ecfe949a6c905e78c48e47d20e0de29afafc5dc02ab6948bfd7ff60726b94
 SHA512 
cfaa8be684bf2fc003bd8ed6d05c377554581b47273bc6dcecbf3bda18a2b72d9e26aa201a58ab2e3545c32f8d9f7c7ee1f7b5bb6aa5c9fa4aac86b92f48b0bf
+DIST opera-beta_91.0.4516.6_amd64.deb 88110388 BLAKE2B 
9e032b21cd19161178441942f5a525507b3ac61abcc5b6409fd0d4b5d6d9ff08399e2461684fdeb922ebb52c99a974a031ea4365a0f78396c2f48075eb8973d9
 SHA512 
937bc3fb40db72f53824c06f1e4884bd42a022c594d64bc87975535f68b7d5e63e1ea8fb31e5d090021a85bfe3a15b14698217f8d5631dde615b02229dcb472d
 DIST opera-ffmpeg-codecs-104.0.5083.0.tar.xz 1431840 BLAKE2B 
172ba55d6f390eaea644803ddae8c3cee4ee2d585de873db438d43b9e7f6d07f5b0e9b659f06c126f65148148d889948cc3287ee21da00eec08f2e665be47dbc
 SHA512 
9ca7fe8a244b634d65a28602f9e1173694faaab6de95cd0a44aeedc29dffb75b14adf842c69d5ba5631fb40e51f021fce190dc8307148d8e9218230b7cde29b8
 DIST opera-ffmpeg-codecs-105.0.5195.19.tar.xz 1413912 BLAKE2B 
52e951eb93b2ed91b4053002a43e79884c46aab7b2218a08717927e3f43bc247b340bafc18488fcf6596d4441c318d6fe734869c8daad047107aeff0fade4c71
 SHA512 
f29bc9146fa67b71fa2df83a9b731e9cb4ce7827a573b63fa1c10baba5980f0375cfab2c6e1edce01415753b6f3e0b65de7d361d9400550d7a2d637236e2e414

diff --git a/www-client/opera-beta/opera-beta-91.0.4516.6.ebuild 
b/www-client/opera-beta/opera-beta-91.0.4516.6.ebuild
new file mode 100644
index ..b7c51e095689
--- /dev/null
+++ b/www-client/opera-beta/opera-beta-91.0.4516.6.ebuild
@@ -0,0 +1,158 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+CHROMIUM_LANGS="
+   bg bn ca cs da de el en-GB en-US es-419 es fil fi fr hi hr hu id
+   it ja ko lt lv ms nb nl pl pt-BR pt-PT ro ru sk sr sv sw ta te th tr uk 
vi
+   zh-CN zh-TW
+"
+
+# These are intended for ebuild maintainer use to force RPM if DEB is not 
available.
+: ${OPERA_FORCE_RPM=no}
+
+inherit chromium-2 pax-utils xdg
+
+if [[ ${OPERA_FORCE_RPM} == yes ]]; then
+   inherit rpm
+   OPERA_ARCHIVE_EXT="rpm"
+else
+   inherit unpacker
+   OPERA_ARCHIVE_EXT="deb"
+fi
+
+DESCRIPTION="A fast and secure web browser"
+HOMEPAGE="https://www.opera.com/";
+LICENSE="OPERA-2018"
+SLOT="0"
+
+SRC_URI_BASE=(
+   "https://download1.operacdn.com/pub/${PN}";
+   "https://download2.operacdn.com/pub/${PN}";
+   "https://download3.operacdn.com/pub/${PN}";
+   "https://download4.operacdn.com/pub/${PN}";
+)
+
+if [[ ${PN} == opera ]]; then
+   MY_PN=${PN}-stable
+   SRC_URI_BASE=( "${SRC_URI_BASE[@]/%//desktop}" )
+else
+   MY_PN=${PN}
+fi
+
+KEYWORDS="-* ~amd64"
+
+FFMPEG_VERSION="105.0.5195.19"
+
+SRC_URI="${SRC_URI_BASE[@]/%//${PV}/linux/${MY_PN}_${PV}_amd64.${OPERA_ARCHIVE_EXT}}
+   proprietary-codecs? (
+   
mirror+https://dev.gentoo.org/~sultan/distfiles/www-client/opera/opera-ffmpeg-codecs-${FFMPEG_VERSION}.tar.xz
+   )"
+
+IUSE="+proprietary-codecs suid"
+RESTRICT="bindist mirror strip"
+
+RDEPEND="
+   app-accessibility/at-spi2-atk:2
+   app-accessibility/at-spi2-core:2
+   dev-libs/atk
+   dev-libs/expat
+   dev-libs/glib:2
+   dev-libs/nspr
+   dev-libs/nss
+   gnome-base/gsettings-desktop-schemas
+   media-libs/alsa-lib
+   media-libs/mesa[gbm(+)]
+   net-misc/curl
+   net-print/cups
+   sys-apps/dbus
+   sys-libs/glibc
+   x11-libs/cairo
+   x11-libs/gdk-pixbuf
+   x11-libs/gtk+:3
+   x11-libs/libdrm
+   x11-li

[gentoo-commits] repo/gentoo:master commit in: www-client/opera-beta/

2022-08-31 Thread Sam James
commit: 160760c9efea9fde13de8898d585568a2bb375a0
Author: Sam James  gentoo  org>
AuthorDate: Thu Sep  1 03:39:44 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Sep  1 03:39:44 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=160760c9

www-client/opera-beta: remove old

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

 www-client/opera-beta/Manifest |   1 -
 .../opera-beta/opera-beta-90.0.4480.37.ebuild  | 158 -
 2 files changed, 159 deletions(-)

diff --git a/www-client/opera-beta/Manifest b/www-client/opera-beta/Manifest
index 645895b943b4..e730794cdb3e 100644
--- a/www-client/opera-beta/Manifest
+++ b/www-client/opera-beta/Manifest
@@ -1,4 +1,3 @@
-DIST opera-beta_90.0.4480.37_amd64.deb 87760936 BLAKE2B 
893e91922235c24601f9e071f688179baefc7d646aa39714edfe33b44a3d5d44b9095ea1cbf886c9ff54cb692d78f9faa61d7f1ae47be1e938415d6696d3e6a8
 SHA512 
d3a956881dcaa99e14befa95b1e9c2a07fc6ec3c0937ff2d74b6e1523e6566c14c5e3c308478f58307e91bb343c11f40ab4c0f64b45a93e9f973e270d47e0677
 DIST opera-beta_90.0.4480.41_amd64.deb 87713760 BLAKE2B 
593769d761aa180917729fe794db2c0a6bf1044c7e163b0eba64a80e0afb091f6ceefb9358371062db40137f85c04448cc0deb7b72b1a10fb35ab7aa4b13c521
 SHA512 
81d7e84424f040af6d85f3bdfb3f0456a92895f2a7e510cfa68dcda7323a608e0fa065004c542de49d6d9a933b81c9140d48c83128b44a7e0602f5d669a4b4c9
 DIST opera-beta_91.0.4516.3_amd64.deb 88063968 BLAKE2B 
36bb20ff01d6d5a9a442fca497974fa8f43ffb6cd011e873acbc1ca6d1c4642d971ecfe949a6c905e78c48e47d20e0de29afafc5dc02ab6948bfd7ff60726b94
 SHA512 
cfaa8be684bf2fc003bd8ed6d05c377554581b47273bc6dcecbf3bda18a2b72d9e26aa201a58ab2e3545c32f8d9f7c7ee1f7b5bb6aa5c9fa4aac86b92f48b0bf
 DIST opera-beta_91.0.4516.6_amd64.deb 88110388 BLAKE2B 
9e032b21cd19161178441942f5a525507b3ac61abcc5b6409fd0d4b5d6d9ff08399e2461684fdeb922ebb52c99a974a031ea4365a0f78396c2f48075eb8973d9
 SHA512 
937bc3fb40db72f53824c06f1e4884bd42a022c594d64bc87975535f68b7d5e63e1ea8fb31e5d090021a85bfe3a15b14698217f8d5631dde615b02229dcb472d

diff --git a/www-client/opera-beta/opera-beta-90.0.4480.37.ebuild 
b/www-client/opera-beta/opera-beta-90.0.4480.37.ebuild
deleted file mode 100644
index bf2f16f337f7..
--- a/www-client/opera-beta/opera-beta-90.0.4480.37.ebuild
+++ /dev/null
@@ -1,158 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-CHROMIUM_LANGS="
-   bg bn ca cs da de el en-GB en-US es-419 es fil fi fr hi hr hu id
-   it ja ko lt lv ms nb nl pl pt-BR pt-PT ro ru sk sr sv sw ta te th tr uk 
vi
-   zh-CN zh-TW
-"
-
-# These are intended for ebuild maintainer use to force RPM if DEB is not 
available.
-: ${OPERA_FORCE_RPM=no}
-
-inherit chromium-2 pax-utils xdg
-
-if [[ ${OPERA_FORCE_RPM} == yes ]]; then
-   inherit rpm
-   OPERA_ARCHIVE_EXT="rpm"
-else
-   inherit unpacker
-   OPERA_ARCHIVE_EXT="deb"
-fi
-
-DESCRIPTION="A fast and secure web browser"
-HOMEPAGE="https://www.opera.com/";
-LICENSE="OPERA-2018"
-SLOT="0"
-
-SRC_URI_BASE=(
-   "https://download1.operacdn.com/pub/${PN}";
-   "https://download2.operacdn.com/pub/${PN}";
-   "https://download3.operacdn.com/pub/${PN}";
-   "https://download4.operacdn.com/pub/${PN}";
-)
-
-if [[ ${PN} == opera ]]; then
-   MY_PN=${PN}-stable
-   SRC_URI_BASE=( "${SRC_URI_BASE[@]/%//desktop}" )
-else
-   MY_PN=${PN}
-fi
-
-KEYWORDS="-* ~amd64"
-
-FFMPEG_VERSION="104.0.5083.0"
-
-SRC_URI="${SRC_URI_BASE[@]/%//${PV}/linux/${MY_PN}_${PV}_amd64.${OPERA_ARCHIVE_EXT}}
-   proprietary-codecs? (
-   
mirror+https://dev.gentoo.org/~sultan/distfiles/www-client/opera/opera-ffmpeg-codecs-${FFMPEG_VERSION}.tar.xz
-   )"
-
-IUSE="+proprietary-codecs suid"
-RESTRICT="bindist mirror strip"
-
-RDEPEND="
-   app-accessibility/at-spi2-atk:2
-   app-accessibility/at-spi2-core:2
-   dev-libs/atk
-   dev-libs/expat
-   dev-libs/glib:2
-   dev-libs/nspr
-   dev-libs/nss
-   gnome-base/gsettings-desktop-schemas
-   media-libs/alsa-lib
-   media-libs/mesa[gbm(+)]
-   net-misc/curl
-   net-print/cups
-   sys-apps/dbus
-   sys-libs/glibc
-   x11-libs/cairo
-   x11-libs/gdk-pixbuf
-   x11-libs/gtk+:3
-   x11-libs/libdrm
-   x11-libs/libxcb
-   x11-libs/libxkbcommon
-   x11-libs/libxshmfence
-   x11-libs/libX11
-   x11-libs/libXcomposite
-   x11-libs/libXdamage
-   x11-libs/libXext
-   x11-libs/libXfixes
-   x11-libs/libXrandr
-   x11-libs/pango
-"
-
-QA_PREBUILT="*"
-S=${WORKDIR}
-OPERA_HOME="opt/opera${PN#opera}"
-
-pkg_pretend() {
-   # Protect against people using autounmask overzealously
-   use amd64 || die "opera only works on amd64"
-}
-
-pkg_setup() {
-   chromium_suid_sandbox_check_kernel_config
-}
-
-src_unpack() {
-   :
-}
-
-src_install() {
-   dodir /
-   cd "${ED}" || die
-   if [[ ${OPERA_FORCE_RPM} == yes ]]; the

[gentoo-commits] repo/gentoo:master commit in: www-client/microsoft-edge-beta/

2022-08-31 Thread Sam James
commit: 8947215b3c03780b021e6ad0797230f5f9849744
Author: Sam James  gentoo  org>
AuthorDate: Thu Sep  1 03:39:18 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Sep  1 03:39:18 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8947215b

www-client/microsoft-edge-beta: remove old

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

 www-client/microsoft-edge-beta/Manifest|   1 -
 .../microsoft-edge-beta-105.0.1343.7.ebuild| 116 -
 2 files changed, 117 deletions(-)

diff --git a/www-client/microsoft-edge-beta/Manifest 
b/www-client/microsoft-edge-beta/Manifest
index ccf92a36ae3d..c4b6fe7d5f56 100644
--- a/www-client/microsoft-edge-beta/Manifest
+++ b/www-client/microsoft-edge-beta/Manifest
@@ -1,4 +1,3 @@
 DIST microsoft-edge-beta_105.0.1343.10-1_amd64.deb 133455132 BLAKE2B 
0298c5ebe1e281f3744021430be3a3a7ac9ca7abb3912c1a4e0b6c6668238f8da60798cbda66ee7be386a9fbf435a8b3f9b73d2738451c77f4a4d5cd97e726e4
 SHA512 
644c137a42244397542c4831fcc6e48e20775704c1ba0cb5c336b646f32036448a61407432c94dd9fcbfd981ee383f37f4b7c0537a1bf045c46a7e7691f24019
 DIST microsoft-edge-beta_105.0.1343.17-1_amd64.deb 133544696 BLAKE2B 
eade924c0b5026c7bf8274f893d6e5cb6b8da3ba870042b633aaaf724249b42d19cd66609299e51e44001669920ed9ed198dcc99080b600e176c9468e483ac5b
 SHA512 
d02bc2cabdef30b468ebf20817cea390b9c1eecf09bbb5157829950def6f4a49aabc57495d38ca733ad9dfe87dcc2682f33c85ae495734fe1435415364400cc2
 DIST microsoft-edge-beta_105.0.1343.23-1_amd64.deb 133597848 BLAKE2B 
27ec884119f9d7429d132c5300477c1745fdd8ebc43a6d113eda0881a7ea7e325e2d0004c2460a7df0b925033aba2569b7f6272d4f695aae5321bd06a58ec10e
 SHA512 
a96c4cf11ae7bb9c0280afb2a65e843c88fdfaf916bdee536e0cc024e93c4c87154b9946587197c1a47797acf358537510dc20b99b21b66ca0fb0a4ac1f308a7
-DIST microsoft-edge-beta_105.0.1343.7-1_amd64.deb 133483224 BLAKE2B 
9d16ab3e35b5b897c5d18576ac2ef6511735e4b239bf97ef4403026c9d08c42bfe10808f96a5ca69b4265b797c68d700de6d90b88393364a42d2e6ac1cc71258
 SHA512 
213c07e4e67194284a84ecb66d2cac2957051483dcf1701a38bb0c295abbf1447cfa4eedcc1e61921e28359fd9646e7a25c9de919f808899e641eccfef8600b1

diff --git 
a/www-client/microsoft-edge-beta/microsoft-edge-beta-105.0.1343.7.ebuild 
b/www-client/microsoft-edge-beta/microsoft-edge-beta-105.0.1343.7.ebuild
deleted file mode 100644
index a8cc7e730ebf..
--- a/www-client/microsoft-edge-beta/microsoft-edge-beta-105.0.1343.7.ebuild
+++ /dev/null
@@ -1,116 +0,0 @@
-# Copyright 2011-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="8"
-
-inherit chromium-2 desktop pax-utils unpacker xdg
-
-DESCRIPTION="The web browser from Microsoft"
-HOMEPAGE="https://www.microsoft.com/en-us/edge";
-
-if [[ ${PN} == microsoft-edge ]]; then
-   MY_PN=${PN}-stable
-else
-   MY_PN=${PN}
-fi
-
-KEYWORDS="-* ~amd64"
-
-MY_P="${MY_PN}_${PV}-1"
-
-SRC_URI="https://packages.microsoft.com/repos/edge/pool/main/m/${MY_PN}/${MY_P}_amd64.deb";
-
-LICENSE="microsoft-edge"
-SLOT="0"
-RESTRICT="bindist mirror strip"
-IUSE="+mip"
-
-RDEPEND="
-   app-accessibility/at-spi2-atk:2
-   app-accessibility/at-spi2-core:2
-   app-misc/ca-certificates
-   dev-libs/atk
-   dev-libs/expat
-   dev-libs/glib:2
-   dev-libs/nspr
-   dev-libs/nss
-   media-fonts/liberation-fonts
-   media-libs/alsa-lib
-   media-libs/mesa[gbm(+)]
-   net-misc/curl[ssl]
-   net-print/cups
-   sys-apps/dbus
-   sys-apps/util-linux
-   sys-libs/glibc
-   x11-libs/cairo
-   x11-libs/gdk-pixbuf:2
-   x11-libs/gtk+:3[X]
-   x11-libs/libdrm
-   x11-libs/libX11
-   x11-libs/libXcomposite
-   x11-libs/libXdamage
-   x11-libs/libXext
-   x11-libs/libXfixes
-   x11-libs/libXrandr
-   x11-libs/libxcb
-   x11-libs/libxkbcommon
-   x11-libs/libxshmfence
-   x11-libs/pango
-   x11-misc/xdg-utils
-   mip? ( app-crypt/libsecret )
-"
-
-QA_PREBUILT="*"
-QA_DESKTOP_FILE="usr/share/applications/microsoft-edge.*\\.desktop"
-S=${WORKDIR}
-EDGE_HOME="opt/microsoft/msedge${PN#microsoft-edge}"
-
-pkg_nofetch() {
-   eerror "Please wait 24 hours and sync your tree before reporting a bug 
for microsoft-edge fetch failures."
-}
-
-pkg_pretend() {
-   # Protect against people using autounmask overzealously
-   use amd64 || die "microsoft-edge only works on amd64"
-}
-
-pkg_setup() {
-   chromium_suid_sandbox_check_kernel_config
-}
-
-src_unpack() {
-   :
-}
-
-src_install() {
-   dodir /
-   cd "${ED}" || die
-   unpacker
-
-   rm _gpgorigin || die
-
-   rm -r etc usr/share/menu || die
-   mv usr/share/doc/${MY_PN} usr/share/doc/${PF} || die
-
-   gzip -d usr/share/doc/${PF}/changelog.gz || die
-   gzip -d usr/share/man/man1/${MY_PN}.1.gz || die
-   if [[ -L usr/share/man/man1/${PN}.1.gz ]]; then
-   rm usr/share/man/man1/${PN}.1.gz || die
-   dosym ${MY_PN}.1 usr/share/man/man1/${P

[gentoo-commits] repo/gentoo:master commit in: www-client/microsoft-edge-beta/

2022-08-31 Thread Sam James
commit: 6511df8328f8f81132088d81b9c83c96f9b17213
Author: Sam James  gentoo  org>
AuthorDate: Thu Sep  1 03:39:15 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Sep  1 03:39:15 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6511df83

www-client/microsoft-edge-beta: automated bump (105.0.1343.23)

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

 www-client/microsoft-edge-beta/Manifest|   1 +
 .../microsoft-edge-beta-105.0.1343.23.ebuild   | 116 +
 2 files changed, 117 insertions(+)

diff --git a/www-client/microsoft-edge-beta/Manifest 
b/www-client/microsoft-edge-beta/Manifest
index 4e0a6b6a2898..ccf92a36ae3d 100644
--- a/www-client/microsoft-edge-beta/Manifest
+++ b/www-client/microsoft-edge-beta/Manifest
@@ -1,3 +1,4 @@
 DIST microsoft-edge-beta_105.0.1343.10-1_amd64.deb 133455132 BLAKE2B 
0298c5ebe1e281f3744021430be3a3a7ac9ca7abb3912c1a4e0b6c6668238f8da60798cbda66ee7be386a9fbf435a8b3f9b73d2738451c77f4a4d5cd97e726e4
 SHA512 
644c137a42244397542c4831fcc6e48e20775704c1ba0cb5c336b646f32036448a61407432c94dd9fcbfd981ee383f37f4b7c0537a1bf045c46a7e7691f24019
 DIST microsoft-edge-beta_105.0.1343.17-1_amd64.deb 133544696 BLAKE2B 
eade924c0b5026c7bf8274f893d6e5cb6b8da3ba870042b633aaaf724249b42d19cd66609299e51e44001669920ed9ed198dcc99080b600e176c9468e483ac5b
 SHA512 
d02bc2cabdef30b468ebf20817cea390b9c1eecf09bbb5157829950def6f4a49aabc57495d38ca733ad9dfe87dcc2682f33c85ae495734fe1435415364400cc2
+DIST microsoft-edge-beta_105.0.1343.23-1_amd64.deb 133597848 BLAKE2B 
27ec884119f9d7429d132c5300477c1745fdd8ebc43a6d113eda0881a7ea7e325e2d0004c2460a7df0b925033aba2569b7f6272d4f695aae5321bd06a58ec10e
 SHA512 
a96c4cf11ae7bb9c0280afb2a65e843c88fdfaf916bdee536e0cc024e93c4c87154b9946587197c1a47797acf358537510dc20b99b21b66ca0fb0a4ac1f308a7
 DIST microsoft-edge-beta_105.0.1343.7-1_amd64.deb 133483224 BLAKE2B 
9d16ab3e35b5b897c5d18576ac2ef6511735e4b239bf97ef4403026c9d08c42bfe10808f96a5ca69b4265b797c68d700de6d90b88393364a42d2e6ac1cc71258
 SHA512 
213c07e4e67194284a84ecb66d2cac2957051483dcf1701a38bb0c295abbf1447cfa4eedcc1e61921e28359fd9646e7a25c9de919f808899e641eccfef8600b1

diff --git 
a/www-client/microsoft-edge-beta/microsoft-edge-beta-105.0.1343.23.ebuild 
b/www-client/microsoft-edge-beta/microsoft-edge-beta-105.0.1343.23.ebuild
new file mode 100644
index ..a8cc7e730ebf
--- /dev/null
+++ b/www-client/microsoft-edge-beta/microsoft-edge-beta-105.0.1343.23.ebuild
@@ -0,0 +1,116 @@
+# Copyright 2011-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="8"
+
+inherit chromium-2 desktop pax-utils unpacker xdg
+
+DESCRIPTION="The web browser from Microsoft"
+HOMEPAGE="https://www.microsoft.com/en-us/edge";
+
+if [[ ${PN} == microsoft-edge ]]; then
+   MY_PN=${PN}-stable
+else
+   MY_PN=${PN}
+fi
+
+KEYWORDS="-* ~amd64"
+
+MY_P="${MY_PN}_${PV}-1"
+
+SRC_URI="https://packages.microsoft.com/repos/edge/pool/main/m/${MY_PN}/${MY_P}_amd64.deb";
+
+LICENSE="microsoft-edge"
+SLOT="0"
+RESTRICT="bindist mirror strip"
+IUSE="+mip"
+
+RDEPEND="
+   app-accessibility/at-spi2-atk:2
+   app-accessibility/at-spi2-core:2
+   app-misc/ca-certificates
+   dev-libs/atk
+   dev-libs/expat
+   dev-libs/glib:2
+   dev-libs/nspr
+   dev-libs/nss
+   media-fonts/liberation-fonts
+   media-libs/alsa-lib
+   media-libs/mesa[gbm(+)]
+   net-misc/curl[ssl]
+   net-print/cups
+   sys-apps/dbus
+   sys-apps/util-linux
+   sys-libs/glibc
+   x11-libs/cairo
+   x11-libs/gdk-pixbuf:2
+   x11-libs/gtk+:3[X]
+   x11-libs/libdrm
+   x11-libs/libX11
+   x11-libs/libXcomposite
+   x11-libs/libXdamage
+   x11-libs/libXext
+   x11-libs/libXfixes
+   x11-libs/libXrandr
+   x11-libs/libxcb
+   x11-libs/libxkbcommon
+   x11-libs/libxshmfence
+   x11-libs/pango
+   x11-misc/xdg-utils
+   mip? ( app-crypt/libsecret )
+"
+
+QA_PREBUILT="*"
+QA_DESKTOP_FILE="usr/share/applications/microsoft-edge.*\\.desktop"
+S=${WORKDIR}
+EDGE_HOME="opt/microsoft/msedge${PN#microsoft-edge}"
+
+pkg_nofetch() {
+   eerror "Please wait 24 hours and sync your tree before reporting a bug 
for microsoft-edge fetch failures."
+}
+
+pkg_pretend() {
+   # Protect against people using autounmask overzealously
+   use amd64 || die "microsoft-edge only works on amd64"
+}
+
+pkg_setup() {
+   chromium_suid_sandbox_check_kernel_config
+}
+
+src_unpack() {
+   :
+}
+
+src_install() {
+   dodir /
+   cd "${ED}" || die
+   unpacker
+
+   rm _gpgorigin || die
+
+   rm -r etc usr/share/menu || die
+   mv usr/share/doc/${MY_PN} usr/share/doc/${PF} || die
+
+   gzip -d usr/share/doc/${PF}/changelog.gz || die
+   gzip -d usr/share/man/man1/${MY_PN}.1.gz || die
+   if [[ -L usr/share/man/man1/${PN}.1.gz ]]; then
+   rm usr/share/man/man1/${PN}.1.gz || die
+   dosym ${MY_PN}.1 us

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

2022-08-31 Thread Miroslav Šulc
commit: d2af537f556491644dfa283c5e6bb273daf4aebf
Author: Volkmar W. Pogatzki  pogatzki  net>
AuthorDate: Wed Aug 31 06:52:42 2022 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Thu Sep  1 04:31:17 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2af537f

dev-java/reflections: drop 0.9.12-r2

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

 dev-java/reflections/reflections-0.9.12-r2.ebuild | 99 ---
 1 file changed, 99 deletions(-)

diff --git a/dev-java/reflections/reflections-0.9.12-r2.ebuild 
b/dev-java/reflections/reflections-0.9.12-r2.ebuild
deleted file mode 100644
index f55973dea4e9..
--- a/dev-java/reflections/reflections-0.9.12-r2.ebuild
+++ /dev/null
@@ -1,99 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-# Skeleton command:
-# java-ebuilder --generate-ebuild --workdir . --pom pom.xml --download-uri 
https://github.com/ronmamo/reflections/archive/0.9.12.tar.gz --slot 0 
--keywords "~amd64 ~arm ~arm64 ~ppc64 ~x86" --ebuild reflections-0.9.12.ebuild
-
-EAPI=8
-
-JAVA_PKG_IUSE="doc source test"
-MAVEN_ID="org.reflections:reflections:0.9.12"
-JAVA_TESTING_FRAMEWORKS="junit-4"
-
-inherit java-pkg-2 java-pkg-simple
-
-DESCRIPTION="Reflections - a Java runtime metadata analysis"
-HOMEPAGE="https://github.com/ronmamo/reflections";
-SRC_URI="https://github.com/ronmamo/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="WTFPL-2 BSD-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ppc64 x86"
-
-# Common dependencies
-# POM: pom.xml
-# com.google.code.gson:gson:2.8.6 -> >=dev-java/gson-2.8.8:2.6
-# org.dom4j:dom4j:2.1.1 -> >=dev-java/dom4j-2.1.3:1
-# org.javassist:javassist:3.26.0-GA -> !!!suitable-mavenVersion-not-found!!!
-# org.slf4j:slf4j-api:1.7.30 -> >=dev-java/slf4j-api-1.7.30:0
-# org.slf4j:slf4j-simple:1.7.24 -> >=dev-java/slf4j-simple-1.7.30:0
-
-CP_DEPEND="
-   dev-java/dom4j:1
-   dev-java/gson:2.9
-   dev-java/javassist:3
-   dev-java/slf4j-api:0
-   dev-java/slf4j-simple:0
-"
-
-# Compile dependencies
-# POM: pom.xml
-# javax.servlet:servlet-api:2.5 -> java-virtuals/servlet-api:2.5
-# POM: pom.xml
-# test? junit:junit:4.13 -> >=dev-java/junit-4.13.2:4
-
-DEPEND="
-   dev-java/tomcat-servlet-api:2.5
-   >=virtual/jdk-1.8:*
-   ${CP_DEPEND}
-"
-
-RDEPEND="
-   >=virtual/jre-1.8:*
-   ${CP_DEPEND}"
-
-S="${WORKDIR}/${P}"
-
-JAVA_CLASSPATH_EXTRA="tomcat-servlet-api-2.5"
-JAVA_SRC_DIR=( "src/main/java" )
-
-JAVA_TEST_GENTOO_CLASSPATH="junit-4"
-JAVA_TEST_SRC_DIR=( "src/test/java" )
-JAVA_TEST_RESOURCE_DIRS=( "src/test/resources" )
-JAVA_TEST_EXCLUDES=(
-   # Upstream does not run this test
-   "org.reflections.TestModel"
-   # 1) testMethodParameterNames(org.reflections.ReflectionsCollectTest)
-   # org.reflections.ReflectionsException: Scanner 
MethodParameterNamesScanner was not configured
-   # at org.reflections.Store.get(Store.java:39)
-   # at org.reflections.Store.get(Store.java:61)
-   # at org.reflections.Store.get(Store.java:46)
-   # at 
org.reflections.Reflections.getMethodParamNames(Reflections.java:579)
-   # at 
org.reflections.ReflectionsTest.testMethodParameterNames(ReflectionsTest.java:239)
-   org.reflections.ReflectionsCollectTest
-   # 2) testMethodParameterNames(org.reflections.ReflectionsParallelTest)
-   # org.reflections.ReflectionsException: Scanner 
MethodParameterNamesScanner was not configured
-   # at org.reflections.Store.get(Store.java:39)
-   # at org.reflections.Store.get(Store.java:61)
-   # at org.reflections.Store.get(Store.java:46)
-   # at 
org.reflections.Reflections.getMethodParamNames(Reflections.java:579)
-   # at 
org.reflections.ReflectionsTest.testMethodParameterNames(ReflectionsTest.java:239)
-   org.reflections.ReflectionsParallelTest
-   # 3) testMethodParameterNames(org.reflections.ReflectionsTest)
-   # org.reflections.ReflectionsException: Scanner 
MethodParameterNamesScanner was not configured
-   # at org.reflections.Store.get(Store.java:39)
-   # at org.reflections.Store.get(Store.java:61)
-   # at org.reflections.Store.get(Store.java:46)
-   # at 
org.reflections.Reflections.getMethodParamNames(Reflections.java:579)
-   # at 
org.reflections.ReflectionsTest.testMethodParameterNames(ReflectionsTest.java:239)
-   org.reflections.ReflectionsTest
-   #
-   # 
https://github.com/ronmamo/reflections/issues/277#issuecomment-927152981
-   # scanner was not configured exception - this is a known issue in 
0.9.12, a simple workaround is to
-   # check if the getStore() contains index for the scanner before 
querying. next version 0.10 fixes this.
-)
-
-src_install() {
-   default # https://bu

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

2022-08-31 Thread Miroslav Šulc
commit: daf9c9c945d535b59eb4b943dd6cb0f10da1ff2f
Author: Volkmar W. Pogatzki  pogatzki  net>
AuthorDate: Wed Aug 31 06:55:31 2022 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Thu Sep  1 04:31:17 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=daf9c9c9

dev-java/gson: drop 2.9.0-r1

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

 dev-java/gson/gson-2.9.0-r1.ebuild | 63 --
 1 file changed, 63 deletions(-)

diff --git a/dev-java/gson/gson-2.9.0-r1.ebuild 
b/dev-java/gson/gson-2.9.0-r1.ebuild
deleted file mode 100644
index b6821636dfbf..
--- a/dev-java/gson/gson-2.9.0-r1.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-# Skeleton command:
-# java-ebuilder --generate-ebuild --workdir . --pom pom.xml --download-uri 
https://github.com/google/gson/archive/gson-parent-2.9.0.tar.gz --slot 2.6 
--keywords "~amd64 ~arm ~arm64 ~ppc64 ~x86" --ebuild gson-2.9.0.ebuild
-
-EAPI=8
-
-JAVA_PKG_IUSE="doc source test"
-MAVEN_ID="com.google.code.gson:gson:2.9.0"
-JAVA_TESTING_FRAMEWORKS="junit-4"
-
-inherit java-pkg-2 java-pkg-simple
-
-DESCRIPTION="Gson JSON library"
-HOMEPAGE="https://github.com/google/gson";
-SRC_URI="https://github.com/google/${PN}/archive/${PN}-parent-${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="2.9"
-KEYWORDS="amd64 ~arm arm64 ppc64 x86"
-
-DEPEND="
-   virtual/jdk:11
-"
-
-# Set to jre-11:* since jre-1.8:* causes errors:
-# error: Invalid SafeVarargs annotation. Instance method 
assertIterationOrder(Iterable,T...) is not final.
-# in src/test/java/com/google/gson/internal/LinkedTreeMapTest.java:164:
-RDEPEND="
-   >=virtual/jre-11:*
-"
-
-S="${WORKDIR}/${PN}-${PN}-parent-${PV}/${PN}"
-
-JAVA_SRC_DIR=(
-   "src/main/java"
-   "src/main/java-templates"
-)
-
-JAVA_TEST_GENTOO_CLASSPATH="junit-4"
-JAVA_TEST_SRC_DIR="src/test/java"
-JAVA_TEST_RESOURCE_DIRS=(
-   "src/test/resources"
-)
-
-JAVA_TEST_EXCLUDES=(
-   # requires the test class to be obfuscated using proguard which we do 
not have atm
-   "com.google.gson.functional.EnumWithObfuscatedTest"
-   # FAILURES!!!
-   # Tests run: 1090,  Failures: 3
-   # 
testComGoogleGsonAnnotationsPackage(com.google.gson.regression.OSGiTest)
-   # junit.framework.AssertionFailedError: Cannot find com.google.gson 
OSGi bundle manifest
-   "com.google.gson.regression.OSGiTest"
-   # 
testSerializeInternalImplementationObject(com.google.gson.functional.ReflectionAccessTest)
-   # java.lang.IllegalStateException: Expected BEGIN_ARRAY but was 
BEGIN_OBJECT at line 1 column 2 path $
-   "com.google.gson.functional.ReflectionAccessTest"
-)
-
-src_prepare() {
-   default
-   sed -i "s/\${project.version}/${PV}/g" 
src/main/java-templates/com/google/gson/internal/GsonBuildConfig.java || die 
"Failed to set version"
-}



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

2022-08-31 Thread William Hubbs
commit: 48190abbd112e78d45d94e154dd5983fffe6837d
Author: William Hubbs  gentoo  org>
AuthorDate: Thu Sep  1 04:44:01 2022 +
Commit: William Hubbs  gentoo  org>
CommitDate: Thu Sep  1 04:44:52 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48190abb

dev-util/shfmt: new package, add 3.5.1

This is a shell script formatter.
Signed-off-by: William Hubbs  gentoo.org>

 dev-util/shfmt/Manifest   |  2 ++
 dev-util/shfmt/metadata.xml   |  8 
 dev-util/shfmt/shfmt-3.5.1.ebuild | 28 
 3 files changed, 38 insertions(+)

diff --git a/dev-util/shfmt/Manifest b/dev-util/shfmt/Manifest
new file mode 100644
index ..d9ae472b4101
--- /dev/null
+++ b/dev-util/shfmt/Manifest
@@ -0,0 +1,2 @@
+DIST shfmt-3.5.1-deps.tar.xz 3156352 BLAKE2B 
b7285570bfaad915097e608afeca239efb705b8db8fa6ad62cc0ffa2d22d9e8b99776ae47c522399f0a398deb49f347d98d7ab7805e386682e46c6b63605503b
 SHA512 
deb91699446c5399a58416dc864ec5c4e581733b498401e342d2f0ebe16a95119d6c669104e0f1f974fa9bfdde952ae4bd57b4b9966c57551b5501ed8985d6f8
+DIST shfmt-3.5.1.tar.gz 222608 BLAKE2B 
a81af092d0f8d0ee7c05240d816a99f044bce3e35d242a815a238a27893db5bfc320efc4a0237ca9ecfa0276e4687152c87f6e0170f5326e2d0a8604f94f6adb
 SHA512 
fd1084921254b70376b3ac47b97e2108308252fa6bd23aff1e59aaefb45a7e01c1738a46ae6f4eb255ecade77fb9659fbc8184d2473e8e4f70e520757bad506d

diff --git a/dev-util/shfmt/metadata.xml b/dev-util/shfmt/metadata.xml
new file mode 100644
index ..db463f3eeb66
--- /dev/null
+++ b/dev-util/shfmt/metadata.xml
@@ -0,0 +1,8 @@
+
+https://www.gentoo.org/dtd/metadata.dtd";>
+
+   
+   willi...@gentoo.org
+   William Hubbs
+   
+

diff --git a/dev-util/shfmt/shfmt-3.5.1.ebuild 
b/dev-util/shfmt/shfmt-3.5.1.ebuild
new file mode 100644
index ..862a019cbef5
--- /dev/null
+++ b/dev-util/shfmt/shfmt-3.5.1.ebuild
@@ -0,0 +1,28 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+inherit go-module
+
+DESCRIPTION="shell script formatter"
+HOMEPAGE="https://github.com/mvdan/sh";
+SRC_URI="https://github.com/mvdan/sh/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+SRC_URI+=" https://dev.gentoo.org/~williamh/dist/${P}-deps.tar.xz";
+
+LICENSE="Clear-BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+
+BDEPEND="app-text/scdoc"
+
+S="${WORKDIR}/sh-${PV}"
+
+src_compile() {
+   ego build ./cmd/shfmt
+   scdoc < ./cmd/shfmt/shfmt.1.scd > shfmt.1 || die
+}
+
+src_install() {
+   dobin shfmt
+   doman shfmt.1
+}



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

2022-08-31 Thread Joonas Niilola
commit: 3d7dea6f201a88cd51829251930f560e74035871
Author: Joonas Niilola  gentoo  org>
AuthorDate: Thu Sep  1 05:49:45 2022 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Thu Sep  1 05:49:45 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d7dea6f

mail-client/thunderbird-bin: add 102.2.1, drop 102.2.0

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

 mail-client/thunderbird-bin/Manifest   | 132 ++---
 ...2.2.0.ebuild => thunderbird-bin-102.2.1.ebuild} |   0
 2 files changed, 66 insertions(+), 66 deletions(-)

diff --git a/mail-client/thunderbird-bin/Manifest 
b/mail-client/thunderbird-bin/Manifest
index b0080ae4cb8b..438346c1748b 100644
--- a/mail-client/thunderbird-bin/Manifest
+++ b/mail-client/thunderbird-bin/Manifest
@@ -1,67 +1,67 @@
-DIST thunderbird-102.2.0-af.xpi 543820 BLAKE2B 
c240bcb5f3128ae95e0864efc98a3e71fd18c2968b97f95f206269f9b18021e0c30a758bb4f2d120b1292c9ceb0cf07e0089c828ac780bbaee2b5dd86c24c8da
 SHA512 
9b91fdd7f27106185f9b84debce5fcddd2c68829491f5e772b30d5e978a5fbe0b37f8fdd5e151a9b2db0a655893fe012f096dfae55d50c6bdef37ff9d298027a
-DIST thunderbird-102.2.0-ar.xpi 651968 BLAKE2B 
18435157fd58fbef1ef1f111e3d24d6a538a23d68a9180f86006f35f36103cffa4fe46881ef6db291c0320631dfd8bfce90c2e4a21f9aa8c4771168bb7da6017
 SHA512 
0e454a561323d68b22bc7fe48f4c03bce225549f6e208bd2977e4adc2f8ed783654e9cc340fdd20cb3fd4bc8fa9f9ae2a409e5f893b72cdefb71961e2b8eab9b
-DIST thunderbird-102.2.0-ast.xpi 568944 BLAKE2B 
d54a65e3282073acb5f11f2b7d4c2e63fa759532d663a8bf565d726d1be3df36e525d1685620b6c1462259dffa615fad4ff2369f635266f9bd4c4ae2f439771e
 SHA512 
e87f4776dcb67afb2b06e5e6c72ec5454250608bf5a3194bbfb5f98a0a1af7e90a7fda8e15b61c7b6f918f4015429529acef14e16852f2bb55719086033657fd
-DIST thunderbird-102.2.0-be.xpi 683057 BLAKE2B 
86ca76020c1456fc04e800663c3bd2840753fee8674415220b88e4b07e1c5cfe034188e4fa0288a2d463d9d1f518e94886f111511fe69ddde4d1a008803c1dd0
 SHA512 
42a853381981ea17653e09fe59a97e6644e51eae53d44b623705a0c63e828f2a1a3d157d0ee45eac75a2e1e0d2eeb60879ad78d618b504a0c58e837cac328f55
-DIST thunderbird-102.2.0-bg.xpi 679942 BLAKE2B 
35921b2303d56a5b6e855e42e57af7f8ebc7a776ee45b318a0e02755a51675abbe618f5e48e0f7edd9266704505a72cb72c95882e8fc40244cf5b9ad55212623
 SHA512 
15b0b5225fcc97569694b43a549867409abcccba2432759c9350a8fe0b2886dc3abee1ba2e4e6d237f57967f00c36863ab043b7c98a0c1bcfcd98ab5e0deee42
-DIST thunderbird-102.2.0-br.xpi 610581 BLAKE2B 
64a7bf69f1e8f53d599ca512aa83c3e6eaee9f48f0685ddcef332e65ff6ec3e6bc20afec50303c65192f8c0eafe8a32612aa066107da956d1635a8b88fdfb55d
 SHA512 
904826116a903d8a6e7787a4eb43adcd627630218eb72c22203a65ed39c769f47ae4c59de566624a2f2618e0184913135fa5a149d57991b7cf7051f360755395
-DIST thunderbird-102.2.0-ca.xpi 633909 BLAKE2B 
e3be362cec459bbe427a59b1d4e140419595fd269c51fbb18b8b3c0417853c6f71fa12c630cc2651aef8b266231841c3e9a91e7e921f9edff7df07884f84e9f7
 SHA512 
5369b59eb81824ebb12c90cec799318f5c5af9973dcbdc845423bbded06f3954bdbaa20d1032338fa64a088b7461efcf7c43861c095e1f39ba781c7064353b92
-DIST thunderbird-102.2.0-cak.xpi 640359 BLAKE2B 
ac5817aa65e21dfc9e19a4cce4184bde719f462a2ede5452c3c2ed01152e08bf67cb10b5813fc855fc817a9ba6b8280e3ba91f78f591e0a39d58a3f24afab787
 SHA512 
e134b723945fb841795e3efef8094b61e335e3562e2b00bad4f753e0a4ca30b36afaf2861dc7775eb651d2757b2bb1c919e3a2e2900dd0b4b92f5a58c868ed02
-DIST thunderbird-102.2.0-cs.xpi 705051 BLAKE2B 
84c30527ea1a35e76c4e2635cef94fad2211a231cb6afce75ef30705dbde3881fe1493e7f2ecd4a66cc23d05593db0fa4e957389efea46b2aef9690ea3fc195a
 SHA512 
44336cfd4f4c27379dd72fdf4e4cbbec32118a5ad30830fbdb51fd172ee0ce78528440ea2f0273de9053792e187d0c62e288ae0ce3810ac32e2aca14ffd4e9e3
-DIST thunderbird-102.2.0-cy.xpi 681282 BLAKE2B 
33035b28ebb681cf52ada4652b6be602adbdfd8356f129ce6b09c51e4783a70b5d9cffad60a9b90e0db9a690acd1532441b3586c7ca249e345f3c06a13fd3b6d
 SHA512 
56e89bdb1628f6c08d1261db2d031281c0e3a789acdcfc104a053cebce030b68586955aeb7b49d4a37d0a1f2ab88b9345f6c424314792c3d3f5f26c6efd44e82
-DIST thunderbird-102.2.0-da.xpi 666139 BLAKE2B 
0b2379b0b40fa06b74c8c49937a3d7f5295800f9fd20dd7658c6acea2d87c181fe67eafc7b6613415c5238676c9f6c00ce6d6ba81fae13710d6be21d563819c2
 SHA512 
3170488ad32c0559e321fd9f07f41f2b274ddabb0794c08eaabfd849656810471fbcface2ab11c8ca39b12f8bcb908d2eb6c92a9df17474d8c33ba1305fec714
-DIST thunderbird-102.2.0-de.xpi 700979 BLAKE2B 
05f1302b2e92636f767b0eef05b7134449966b74877dae9c636959ae21da5fd96fae0c181ed094a8e7ce626b44b3c266b0aedf2b2f2751e842762e2260d57fea
 SHA512 
ec9e5255071750eeaf53a913f4f3cf3d0c8b4a7e3fd4aa2d2c1e7472cb472e9131d7b8b0710185973ff823fa3ffc30ed64f9f9db8a22d758630668a447639d2d
-DIST thunderbird-102.2.0-dsb.xpi 714625 BLAKE2B 
ab037d2f91325fe35159d661fd14446819e959680de71e1edc82fbb98f41ee2a6dd70900fdf6ff4cad87812b9709bf7cde3a66a97a2a1a3528d9e305670d3642
 SHA512 
18fab34ceaab60c5d7d0737793f5d7443c5ee2f240ef99d7616f1ff0ab4f51c902af647b4cc4e4c479b0d49627a6fd8e362f0037cc18db470e53aec31bb8c17b
-DIST thunderbird-102.2.0-el.xpi 810797 BLAKE2B 
c9883aa10fd611e6fe

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

2022-08-31 Thread Michał Górny
commit: 477a506350db80d62e230c3a8ec1ccf8871f
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Sep  1 06:15:21 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Sep  1 06:15:21 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=477a5063

package.mask: Unmask dev-python/peewee

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

 profiles/package.mask | 1 -
 1 file changed, 1 deletion(-)

diff --git a/profiles/package.mask b/profiles/package.mask
index 746ae1127393..eb6d85239498 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -49,7 +49,6 @@ dev-python/flask-mail
 dev-python/flask-principal
 dev-python/flask-wtf
 dev-python/mongomock
-dev-python/peewee
 dev-python/pony
 dev-python/pyqrcode
 dev-python/sentinels



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

2022-08-31 Thread Michał Górny
commit: a0121a21342b31d13eb0aa24a392ee2d5f04f05c
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Sep  1 06:20:24 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Sep  1 06:20:24 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0121a21

virtual/dist-kernel: Remove vulnerable versions

Bug: https://bugs.gentoo.org/867781
Signed-off-by: Michał Górny  gentoo.org>

 virtual/dist-kernel/dist-kernel-5.18.19.ebuild | 19 ---
 virtual/dist-kernel/dist-kernel-5.19.4.ebuild  | 19 ---
 2 files changed, 38 deletions(-)

diff --git a/virtual/dist-kernel/dist-kernel-5.18.19.ebuild 
b/virtual/dist-kernel/dist-kernel-5.18.19.ebuild
deleted file mode 100644
index c2caefd6cfca..
--- a/virtual/dist-kernel/dist-kernel-5.18.19.ebuild
+++ /dev/null
@@ -1,19 +0,0 @@
-# Copyright 2021-2022 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 ~hppa ~ppc ~ppc64 ~riscv ~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.19.4.ebuild 
b/virtual/dist-kernel/dist-kernel-5.19.4.ebuild
deleted file mode 100644
index c2caefd6cfca..
--- a/virtual/dist-kernel/dist-kernel-5.19.4.ebuild
+++ /dev/null
@@ -1,19 +0,0 @@
-# Copyright 2021-2022 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 ~hppa ~ppc ~ppc64 ~riscv ~x86"
-
-RDEPEND="
-   || (
-   ~sys-kernel/gentoo-kernel-${PV}
-   ~sys-kernel/gentoo-kernel-bin-${PV}
-   ~sys-kernel/vanilla-kernel-${PV}
-   )"



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

2022-08-31 Thread Michał Górny
commit: 81e08bdf0f3be24c248d7ff14bba1df4afdac1c8
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Sep  1 06:20:42 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Sep  1 06:20:42 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81e08bdf

sys-kernel/gentoo-kernel-bin: Remove vulnerable versions

Bug: https://bugs.gentoo.org/867781
Signed-off-by: Michał Górny  gentoo.org>

 sys-kernel/gentoo-kernel-bin/Manifest  |  13 --
 .../gentoo-kernel-bin-5.18.19.ebuild   | 135 -
 .../gentoo-kernel-bin-5.19.4.ebuild| 135 -
 3 files changed, 283 deletions(-)

diff --git a/sys-kernel/gentoo-kernel-bin/Manifest 
b/sys-kernel/gentoo-kernel-bin/Manifest
index 14e156700611..c8f8e7798af1 100644
--- a/sys-kernel/gentoo-kernel-bin/Manifest
+++ b/sys-kernel/gentoo-kernel-bin/Manifest
@@ -6,10 +6,6 @@ DIST genpatches-5.15-67.base.tar.xz 2856328 BLAKE2B 
a92c3afb5e0a6605587744c68b3b
 DIST genpatches-5.15-67.extras.tar.xz 3936 BLAKE2B 
168a92a9db40e6014864a96aff71fb87b351d7127c5eedc8e062e753ae65d7ebc628e9b0eded328f17e88562592d80522ccdd31a549c8104aee51e2833f81134
 SHA512 
0f2bdfa87ec2a610870089c903b301dc86dac52f4969386074a439be90674c4835800cf9250d8844b1ec3df88cc8dc0b31e4582ea309b7c817066a1341c692b2
 DIST genpatches-5.15-68.base.tar.xz 2897744 BLAKE2B 
e1aebd74737e787df999aabb0153b7aab4b5df05d049e9a6260a3bacf8e827b4f767fe6fe8d07bea71a0e5ee7655d864da67736c17756ec1119a66fc58a4b82a
 SHA512 
79996709882f76cae25639f273f2829d5ae671714f699008d7fbed68595e7cdd93e9d79c801e9f1eaf6ea89fbfe9df3302773e6f728f8cb5de4bd69b36fea65d
 DIST genpatches-5.15-68.extras.tar.xz 3932 BLAKE2B 
34fd77b8464322ad369de5b86dd8dc83ce7510bca139d4e6036b0b2ab34d1c80698b5f965e44a09dd25ee3b4d80abbccc5920e7984803be2451281c74ff735ea
 SHA512 
970a1e5a03f786d05bb1ae9217a467442f16344fffcf2c77a2572c6db656b0fcd5b3329eae193999c47bbb45c8b02f0fd9010760ef74a6aacc474729f0ee9369
-DIST genpatches-5.18-23.base.tar.xz 1206204 BLAKE2B 
12a7b9aa7d72f27e64c4cb8f5607529dcc7d535a9375768e065d97d0b70b0726271b70dfa4ea019bb42606ddfd513b70357b2bd5ad95548c9eba9f91041f27b0
 SHA512 
9a459e3e8cb4a3285f782516fbc176a4a73c151281bea2258f049ec0662b806eefc54cb6e9151cc968e3a9c39789062c207d514920559954db9a10b53a1c2f0e
-DIST genpatches-5.18-23.extras.tar.xz 3924 BLAKE2B 
fad401fd783c72bd695425a106813ce8396c6d15154fc627fb456b16f6ddff1f6326f54e1399c1369b6da5e3f57da89bc9e769bcbb5d4b612465fe187145ea17
 SHA512 
c25a09e1e2ad091e5f8480419e921e8eede512dcc6aeb46792a92844948eea5890c5ae8d164ae9834356e00216d3978cefe5f07b046cbaa30dfd4af73a1ddaa3
-DIST genpatches-5.19-6.base.tar.xz 595780 BLAKE2B 
87db7f493d421ed3f0991278f16aeb984485ef5f5ef390d18cc37b27e2dec27704c1575e5ef0a475da6a5e87d68a119899d4a827c81a368c255d45887ea8a681
 SHA512 
2af94e970216f5297ad791496d6245fab8a0c037d5dd57161f2428dcc9c742414f0073c35be515bf6714a4962f7cc13a023e590e15902c6d68921e93a8bfeec3
-DIST genpatches-5.19-6.extras.tar.xz 3772 BLAKE2B 
48f01ce8b863f73dd12e06d51e9716e6b5ca6694ed0612aabfd51e6a05a4289cdccddc6061c84a5c0c32878f6b030343e31bc29dc77161226b70d1b09448337b
 SHA512 
550123defebfd2a2d0651840cdf6ce5b47f7b79c874fd97c766e758c72f7412053f682f1d3187788ed15a59b73e09356937329d1ca49b90fa0565cf25dec44d2
 DIST genpatches-5.19-8.base.tar.xz 643396 BLAKE2B 
c383c7efc908fa3e8ebdfb750d92df6adfa1e0d00f253eae40fb5db5b84f8848a5c1a4fdcda693da998b1ba9d1afb1019cbc2574ceff2b099d2125ead515efc3
 SHA512 
ebd5eaaefbd362d85fa8cb95b0ca4192bf7a0835ec58ea25def13e502f87f74bcc29219083f39b85462b262f526f771270b5a8d93ff49126e1653d948a9ccb9d
 DIST genpatches-5.19-8.extras.tar.xz 3808 BLAKE2B 
8cad0dd5deaca8f8b379c96cfad02add0cfe7498f17e84d11e6b809e366ae0476734bd003b287456459febe2ff4c1fa7b3e54c47243cd571a34ffb1cd927a1ea
 SHA512 
a183d09ba7b1fc3f89b7754709df8d093ba70b09f71e237844214d65bc5821b6328c436c7ef697c30bfd38fc833bd178497190a2e73914a03ec0dfa4cbcdf7f2
 DIST genpatches-5.4-216.base.tar.xz 5015752 BLAKE2B 
fd736588b9cbf9ba0a48ad838a17eda669e56d9d0ec4dd903f5bcd31ffa2c428d14ebc7bc35a709b3da7bf7f22403c5b01a9314dda60ef955d7674af836e2481
 SHA512 
62cd9deb29f863babbc9dc5116e5c5bcb34c0f29325276da80fc9b040004ba9fcfcde380779bf8ea8039f3098da88c59e7fdcd2d0f6d6aa5034df59ac9b55914
@@ -30,14 +26,6 @@ DIST gentoo-kernel-5.15.64-1.amd64.xpak 70812783 BLAKE2B 
8e48507ad47fe72a7a45286
 DIST gentoo-kernel-5.15.64-1.arm64.xpak 64210219 BLAKE2B 
dd3fac15e4753ddb900750c83747d1216c487f9dd0c69e3a4f0af98f1aa81dec8502ca8be33b2d015abf4633b160ef87523904f549882006b12f0deb4314e0ab
 SHA512 
167aa3868086fc411d3d6bfe493f46d5f8f675a04b3ae8f1940c8ac439f1ec127657f2f7f6c3530ea6319b016491edb2a2fe0d50de2a4569ac7427b1db5a8b98
 DIST gentoo-kernel-5.15.64-1.ppc64le.xpak 58139911 BLAKE2B 
b882b0f9f391d15d1e11305d853bb20ff5cd014b45671811fcd2346429e15cf4e14a207433eebd1bd148d1c2a2fd696e3c7e8d44b654ae9333fa2b46e422bd0f
 SHA512 
ba9e5c0141f44661dfd5c680116f53c01e36349c38f58db7c5599f080e8a26d53a6513ef4ccfab82b5d61d7f941ca71f77e4e244b76a337df43aa3d81a63b6b0
 DIST gentoo-kernel-5.15.64-1.x86.xpak 60

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

2022-08-31 Thread Michał Górny
commit: d4475f09a8b9d986f7b131ad011f06774c1a1193
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Sep  1 06:21:13 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Sep  1 06:21:41 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4475f09

sys-kernel/vanilla-kernel: Remove vulnerable versions

Bug: https://bugs.gentoo.org/867781
Signed-off-by: Michał Górny  gentoo.org>

 sys-kernel/vanilla-kernel/Manifest |   8 --
 .../vanilla-kernel/vanilla-kernel-5.18.19.ebuild   | 134 -
 .../vanilla-kernel/vanilla-kernel-5.19.4.ebuild| 134 -
 3 files changed, 276 deletions(-)

diff --git a/sys-kernel/vanilla-kernel/Manifest 
b/sys-kernel/vanilla-kernel/Manifest
index 0138d8bb24f9..68e674ea6b5e 100644
--- a/sys-kernel/vanilla-kernel/Manifest
+++ b/sys-kernel/vanilla-kernel/Manifest
@@ -2,22 +2,18 @@ DIST gentoo-kernel-config-g1.tar.gz 4283 BLAKE2B 
44dd51ec45ebc71bffcd6d85a2fefba
 DIST gentoo-kernel-config-g2.tar.gz 4359 BLAKE2B 
965392fb5b3c1290c596d3e8593cfcf54e76cedd47de335c1b9658c1b35649af18a94639bf3df84507c797e6d7ea074f7f2a2579d2d01073478b30a4f167b2aa
 SHA512 
d1bdef2e817799fcebbcdae1f3b1666f8ca70b0d5adca74014dd665f6b02c81b839220d8fe3794ea1202e1f2589d281344699864207c98b95d23a1d1f03bd42d
 DIST kernel-aarch64-fedora.config.5.10.12 223184 BLAKE2B 
a0246dac2f7a4ad6a55b611538d24382ac87a8960077811a859c9595ac67f961b4bccb7e139a89abc7c0e26e80832da5c94211fc658082f2e7dde984f14dd29d
 SHA512 
7d803b347b136331db1ad6e22e0445fe0224c3e26cd7c034cbe9794915d457b492e05f77664865079874ec001351553652646e2e08d0fee31e30b841b0008f52
 DIST kernel-aarch64-fedora.config.5.15.19 242615 BLAKE2B 
94e59440681535e38137b71814e1ae53f57a347f62cf31e0c1c8571ae43d9ae9be9957743c8cbc9ec74850c964eaabefe6799a28bc311ea7b99ee31391b47fb1
 SHA512 
fb77d3b73a215f97d70cd6d8c96ed20e497786b99ed7d7a7f2ed60cc1251289c1a4c7e058c41b5efac62e4a9b4b3d917dbdb11585955bba2b6584981430f4ddb
-DIST kernel-aarch64-fedora.config.5.18.18-gentoo 242571 BLAKE2B 
fdc6876156c2a280d94551e64ba9427f634573390717558326d7afca34b8f5dc331929aa1cd4097d66b3ea916d3dd6c91977b70bbdb259ae4b95139f38f2334e
 SHA512 
33b4ce891feea2dbb76c42a8ec24fcb7082e453e87ec7eafb56763f4778af6e460a9a9e92b18dabcd284741cd0856ffbf8069417a130190a0443e054ab83c76c
 DIST kernel-aarch64-fedora.config.5.19.3-gentoo 246249 BLAKE2B 
9c6a0a428e6ac283fe1ab8b114f90f52486bb7c299197ccfa1033f35b703496879f1d3a1303ab620c131d729dcef68040ad7b736f0064ac9bff7efd4628d4650
 SHA512 
eacac74d846b32204ed6c3ded61280648b8de084c38aad3916b92fe6208e6d1797f7aa42e8f0a3d3c2f1b21b60fd8c91873bd17e3cd70339074e68ccef1a496b
 DIST kernel-aarch64.config.5.4.21 199104 BLAKE2B 
578ad451a76204df2a9bbbe34b5cb27051d2ac5e2c33967f562b01338c43f35da6dc33a4c2cc67ea6c3b32b155729360d3748ec28dcaa750f18449245b2e8a09
 SHA512 
66e9a437beb350fdc59512c17b8f72c5b5bfacf2b35070d810d77e66f49cf7929026cc28ad44b04a016d61e65d9fb4a10af6996ba09b604bf97e9c467d08f8ff
 DIST kernel-i686-fedora.config.5.10.12 205412 BLAKE2B 
92c715b7e2cd7dd74da7970c05981f520597d3e403ce82c8cf4eee31c9f1f50b638792a6bdb256ef5bfdc99f1bcd594e819e8f44dc6febb2ad9a854bad817f2b
 SHA512 
69d8db11723ae1b40fdedfaace74d15bb63198cdb0485e0a1e5eba95b31217110c93a93e39cc7370cf45f1d3a8bc7f75ec096d6db5ea9ecb28ac6b56702ebb10
 DIST kernel-i686-fedora.config.5.15.19 33 BLAKE2B 
9e0f4dd37058f59610e46a87d3165039e76299d3c186fbfc3312101bac1b8b198de404075f5bbc6f5e2ba04cfd45f9d02bdf94b01c3ed11b9275f37f11ee7617
 SHA512 
49ffc39de86763e707a5c0c07c1367d34e9249615f29fdf97904d7b61a375a86fc4ba37a2f02b5f61e4c76ad65d9ba12716d2523af6faa003f6336d7ae61a953
-DIST kernel-i686-fedora.config.5.18.18-gentoo 221018 BLAKE2B 
d317cd62903839c19bc8a601c67016b9663ecba640df353a6d161175de84b7154da7cc316c06c7a2765543989933066a26c3b257a1db30a1d726d5a57959bf2b
 SHA512 
4cdfb0a0c9d6c8152f2c7f5aae3aa31bdbcabeaa8d3400d96407fa462ad8d922908520f804cb6db434012a1048e4bfdfe9ea6aa70bf1e456f6137b1a7a99726f
 DIST kernel-i686-fedora.config.5.19.3-gentoo 223498 BLAKE2B 
e93f7c8ffc5131aaae8842e854df4eba19b0e8a2e8a200403d51a9e1a59be9a6a74e5376ab901064ff2b7f8234e0ff5a20bb1eeb50275f9ed1032301ebcd446a
 SHA512 
ead866d21c79f135e477ca77b045ceaa98a2b673a96affe19bb31b895311b9c17d5b9de4a6a492dcfd3dffb533a67ed98e751c20a63536d4ffeb8c5e6320f7ed
 DIST kernel-i686.config.5.4.21 183910 BLAKE2B 
185126ffb85718bb73761d01683def80b6f002d7a7a6eddd8e858a30d8eadc863fb378d83a1cd2ed82b3540337fa66ae44475e31fb41ebc46d77005b6f54e5c0
 SHA512 
6307afc2295902e44fe65b1cccaa7a0260b295a5f21f1d67ec66197bd972bd3f5675b624f08d9da8b224cb3ec987d5c21cbd743599aeab9ac6214bc651f43476
 DIST kernel-ppc64le-fedora.config.5.10.12 192105 BLAKE2B 
889141debb0656a358a3381bae14b5216b982acdfce0bc758f9445c16647807a68a788fb290199c2a1a23627bda1ef4c9405b3f5ac2a4176d1d2b55c71fb7db9
 SHA512 
3ab0f1401d9f50a61477c71369dede438f575d9d2c3a2f5c2cf36d624c2b59a938efca9c981b075511b3860c983eaaf5e5a9f877d659277f09ceba45edd43770
 DIST kernel-ppc64le-fedora.config.5.15.19 213339 BLAKE2B 
db6bbc9f402b8b48a2441e39d1a78dc112656ae842bc5594065

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

2022-08-31 Thread Michał Górny
commit: 65659337d60e26297e76a777d64da32a40d11979
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Sep  1 06:16:20 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Sep  1 06:16:20 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65659337

dev-python/pypy: Remove old

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

 dev-python/pypy/pypy-7.3.9.ebuild | 183 --
 1 file changed, 183 deletions(-)

diff --git a/dev-python/pypy/pypy-7.3.9.ebuild 
b/dev-python/pypy/pypy-7.3.9.ebuild
deleted file mode 100644
index 5d7b787836fc..
--- a/dev-python/pypy/pypy-7.3.9.ebuild
+++ /dev/null
@@ -1,183 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit pax-utils python-utils-r1
-
-PYPY_PV=${PV%_p*}
-MY_P=pypy2.7-v${PYPY_PV/_}
-PATCHSET="pypy2.7-gentoo-patches-${PV/_rc/rc}"
-
-DESCRIPTION="A fast, compliant alternative implementation of the Python 
language"
-HOMEPAGE="https://www.pypy.org/";
-SRC_URI="
-   https://buildbot.pypy.org/pypy/${MY_P}-src.tar.bz2
-   https://dev.gentoo.org/~mgorny/dist/python/${PATCHSET}.tar.xz
-"
-S="${WORKDIR}/${MY_P}-src"
-
-LICENSE="MIT"
-# pypy -c 'import sysconfig; print sysconfig.get_config_var("SOABI")'
-SLOT="0/73"
-KEYWORDS="amd64 ~arm64 ~ppc64 x86 ~amd64-linux ~x86-linux"
-IUSE="bzip2 gdbm +jit ncurses sqlite tk"
-
-RDEPEND="
-   || (
-   >=dev-python/pypy-exe-${PYPY_PV}:${PYPY_PV}[bzip2?,ncurses?]
-   >=dev-python/pypy-exe-bin-${PYPY_PV}:${PYPY_PV}
-   )
-   dev-libs/openssl:0=
-   gdbm? ( sys-libs/gdbm:0= )
-   sqlite? ( dev-db/sqlite:3= )
-   tk? (
-   dev-lang/tk:0=
-   dev-tcltk/tix:0=
-   )
-   ! epython.py || die
-   python_moduleinto /usr/lib/pypy2.7/site-packages
-   python_domodule epython.py
-
-   einfo "Byte-compiling Python standard library..."
-   python_optimize "${ED}${dest}"
-
-   # remove to avoid collisions
-   rm "${PYTHON}" || die
-}



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

2022-08-31 Thread Michał Górny
commit: a0f1865b0440057621bd73fe2232a12835aab2a8
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Sep  1 06:20:59 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Sep  1 06:21:40 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0f1865b

sys-kernel/gentoo-kernel: Remove vulnerable versions

Bug: https://bugs.gentoo.org/867781
Signed-off-by: Michał Górny  gentoo.org>

 sys-kernel/gentoo-kernel/Manifest  |   9 --
 .../gentoo-kernel/gentoo-kernel-5.18.19.ebuild | 137 -
 .../gentoo-kernel/gentoo-kernel-5.19.4.ebuild  | 137 -
 3 files changed, 283 deletions(-)

diff --git a/sys-kernel/gentoo-kernel/Manifest 
b/sys-kernel/gentoo-kernel/Manifest
index ee0fcdfc638d..fb042329fbff 100644
--- a/sys-kernel/gentoo-kernel/Manifest
+++ b/sys-kernel/gentoo-kernel/Manifest
@@ -6,10 +6,6 @@ DIST genpatches-5.15-67.base.tar.xz 2856328 BLAKE2B 
a92c3afb5e0a6605587744c68b3b
 DIST genpatches-5.15-67.extras.tar.xz 3936 BLAKE2B 
168a92a9db40e6014864a96aff71fb87b351d7127c5eedc8e062e753ae65d7ebc628e9b0eded328f17e88562592d80522ccdd31a549c8104aee51e2833f81134
 SHA512 
0f2bdfa87ec2a610870089c903b301dc86dac52f4969386074a439be90674c4835800cf9250d8844b1ec3df88cc8dc0b31e4582ea309b7c817066a1341c692b2
 DIST genpatches-5.15-68.base.tar.xz 2897744 BLAKE2B 
e1aebd74737e787df999aabb0153b7aab4b5df05d049e9a6260a3bacf8e827b4f767fe6fe8d07bea71a0e5ee7655d864da67736c17756ec1119a66fc58a4b82a
 SHA512 
79996709882f76cae25639f273f2829d5ae671714f699008d7fbed68595e7cdd93e9d79c801e9f1eaf6ea89fbfe9df3302773e6f728f8cb5de4bd69b36fea65d
 DIST genpatches-5.15-68.extras.tar.xz 3932 BLAKE2B 
34fd77b8464322ad369de5b86dd8dc83ce7510bca139d4e6036b0b2ab34d1c80698b5f965e44a09dd25ee3b4d80abbccc5920e7984803be2451281c74ff735ea
 SHA512 
970a1e5a03f786d05bb1ae9217a467442f16344fffcf2c77a2572c6db656b0fcd5b3329eae193999c47bbb45c8b02f0fd9010760ef74a6aacc474729f0ee9369
-DIST genpatches-5.18-23.base.tar.xz 1206204 BLAKE2B 
12a7b9aa7d72f27e64c4cb8f5607529dcc7d535a9375768e065d97d0b70b0726271b70dfa4ea019bb42606ddfd513b70357b2bd5ad95548c9eba9f91041f27b0
 SHA512 
9a459e3e8cb4a3285f782516fbc176a4a73c151281bea2258f049ec0662b806eefc54cb6e9151cc968e3a9c39789062c207d514920559954db9a10b53a1c2f0e
-DIST genpatches-5.18-23.extras.tar.xz 3924 BLAKE2B 
fad401fd783c72bd695425a106813ce8396c6d15154fc627fb456b16f6ddff1f6326f54e1399c1369b6da5e3f57da89bc9e769bcbb5d4b612465fe187145ea17
 SHA512 
c25a09e1e2ad091e5f8480419e921e8eede512dcc6aeb46792a92844948eea5890c5ae8d164ae9834356e00216d3978cefe5f07b046cbaa30dfd4af73a1ddaa3
-DIST genpatches-5.19-6.base.tar.xz 595780 BLAKE2B 
87db7f493d421ed3f0991278f16aeb984485ef5f5ef390d18cc37b27e2dec27704c1575e5ef0a475da6a5e87d68a119899d4a827c81a368c255d45887ea8a681
 SHA512 
2af94e970216f5297ad791496d6245fab8a0c037d5dd57161f2428dcc9c742414f0073c35be515bf6714a4962f7cc13a023e590e15902c6d68921e93a8bfeec3
-DIST genpatches-5.19-6.extras.tar.xz 3772 BLAKE2B 
48f01ce8b863f73dd12e06d51e9716e6b5ca6694ed0612aabfd51e6a05a4289cdccddc6061c84a5c0c32878f6b030343e31bc29dc77161226b70d1b09448337b
 SHA512 
550123defebfd2a2d0651840cdf6ce5b47f7b79c874fd97c766e758c72f7412053f682f1d3187788ed15a59b73e09356937329d1ca49b90fa0565cf25dec44d2
 DIST genpatches-5.19-8.base.tar.xz 643396 BLAKE2B 
c383c7efc908fa3e8ebdfb750d92df6adfa1e0d00f253eae40fb5db5b84f8848a5c1a4fdcda693da998b1ba9d1afb1019cbc2574ceff2b099d2125ead515efc3
 SHA512 
ebd5eaaefbd362d85fa8cb95b0ca4192bf7a0835ec58ea25def13e502f87f74bcc29219083f39b85462b262f526f771270b5a8d93ff49126e1653d948a9ccb9d
 DIST genpatches-5.19-8.extras.tar.xz 3808 BLAKE2B 
8cad0dd5deaca8f8b379c96cfad02add0cfe7498f17e84d11e6b809e366ae0476734bd003b287456459febe2ff4c1fa7b3e54c47243cd571a34ffb1cd927a1ea
 SHA512 
a183d09ba7b1fc3f89b7754709df8d093ba70b09f71e237844214d65bc5821b6328c436c7ef697c30bfd38fc833bd178497190a2e73914a03ec0dfa4cbcdf7f2
 DIST genpatches-5.4-216.base.tar.xz 5015752 BLAKE2B 
fd736588b9cbf9ba0a48ad838a17eda669e56d9d0ec4dd903f5bcd31ffa2c428d14ebc7bc35a709b3da7bf7f22403c5b01a9314dda60ef955d7674af836e2481
 SHA512 
62cd9deb29f863babbc9dc5116e5c5bcb34c0f29325276da80fc9b040004ba9fcfcde380779bf8ea8039f3098da88c59e7fdcd2d0f6d6aa5034df59ac9b55914
@@ -18,26 +14,21 @@ DIST gentoo-kernel-config-g1.tar.gz 4283 BLAKE2B 
44dd51ec45ebc71bffcd6d85a2fefba
 DIST gentoo-kernel-config-g2.tar.gz 4359 BLAKE2B 
965392fb5b3c1290c596d3e8593cfcf54e76cedd47de335c1b9658c1b35649af18a94639bf3df84507c797e6d7ea074f7f2a2579d2d01073478b30a4f167b2aa
 SHA512 
d1bdef2e817799fcebbcdae1f3b1666f8ca70b0d5adca74014dd665f6b02c81b839220d8fe3794ea1202e1f2589d281344699864207c98b95d23a1d1f03bd42d
 DIST kernel-aarch64-fedora.config.5.10.12 223184 BLAKE2B 
a0246dac2f7a4ad6a55b611538d24382ac87a8960077811a859c9595ac67f961b4bccb7e139a89abc7c0e26e80832da5c94211fc658082f2e7dde984f14dd29d
 SHA512 
7d803b347b136331db1ad6e22e0445fe0224c3e26cd7c034cbe9794915d457b492e05f77664865079874ec001351553652646e2e08d0fee31e30b841b0008f52
 DIST kernel-aarch64-fedora.config.5.15.19 242615 BLAKE2B 
94e59440681

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

2022-08-31 Thread Joonas Niilola
commit: 56b02bac67542ea1e378ac3d529aecaa4d380111
Author: Joonas Niilola  gentoo  org>
AuthorDate: Thu Sep  1 06:24:13 2022 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Thu Sep  1 06:27:52 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56b02bac

net-misc/seafile-client: add minimum libsearpc version requirement

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

 net-misc/seafile-client/seafile-client-8.0.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/seafile-client/seafile-client-8.0.8.ebuild 
b/net-misc/seafile-client/seafile-client-8.0.8.ebuild
index 27a73db04bbe..e7086c331bca 100644
--- a/net-misc/seafile-client/seafile-client-8.0.8.ebuild
+++ b/net-misc/seafile-client/seafile-client-8.0.8.ebuild
@@ -27,7 +27,7 @@ RDEPEND="dev-db/sqlite:3
dev-qt/qtgui:5
dev-qt/qtnetwork:5
dev-qt/qtwidgets:5
-   net-libs/libsearpc
+   >=net-libs/libsearpc-3.2.0_p1
~net-misc/seafile-${PV}
sys-libs/zlib
virtual/opengl



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

2022-08-31 Thread Joonas Niilola
commit: 0490be31096593a1e9734b7f07a37364a87784a3
Author: Joonas Niilola  gentoo  org>
AuthorDate: Thu Sep  1 06:27:25 2022 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Thu Sep  1 06:27:53 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0490be31

net-im/telegram-desktop: add some missing deps to 4.1.1-r1

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

 net-im/telegram-desktop/telegram-desktop-4.1.1-r1.ebuild | 6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/net-im/telegram-desktop/telegram-desktop-4.1.1-r1.ebuild 
b/net-im/telegram-desktop/telegram-desktop-4.1.1-r1.ebuild
index ea8aea70d791..c8bf06c96a79 100644
--- a/net-im/telegram-desktop/telegram-desktop-4.1.1-r1.ebuild
+++ b/net-im/telegram-desktop/telegram-desktop-4.1.1-r1.ebuild
@@ -28,18 +28,22 @@ RDEPEND="
!net-im/telegram-desktop-bin
app-arch/lz4:=
dev-cpp/abseil-cpp:=
+   dev-libs/glib:2
dev-libs/libdispatch
+   dev-libs/libsigc++:2
dev-libs/openssl:=
dev-libs/xxhash
media-fonts/open-sans
media-libs/fontconfig:=
+   media-libs/libjpeg-turbo:=
~media-libs/libtgvoip-2.4.4_p20220503
media-libs/openal
media-libs/opus:=
media-libs/rnnoise
-   ~media-libs/tg_owt-0_pre20220507[screencast=,X=]
+   ~media-libs/tg_owt-0_pre20220507:=[screencast=,X=]
media-video/ffmpeg:=[opus]
sys-libs/zlib:=[minizip]
+   x11-libs/xcb-util-keysyms
dbus? ( dev-cpp/glibmm:2 )
enchant? ( app-text/enchant:= )
hunspell? ( >=app-text/hunspell-1.7:= )



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

2022-08-31 Thread Joonas Niilola
commit: ff21849c5934e7dcd624f432c1fa8b84dd538a04
Author: Esteve Varela Colominas  gmail  com>
AuthorDate: Tue Aug 23 15:43:44 2022 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Thu Sep  1 06:27:53 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff21849c

net-im/telegram-desktop: Hotfix for proper Qt selection

They changed the variable for this, causing the build to prefer qt6 when
it's available.

Closes: https://bugs.gentoo.org/866157
Thanks-to: Agostino Sarubbo  gentoo.org>
Signed-off-by: Esteve Varela Colominas  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/26980
Signed-off-by: Joonas Niilola  gentoo.org>

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

diff --git a/net-im/telegram-desktop/telegram-desktop-4.1.1.ebuild 
b/net-im/telegram-desktop/telegram-desktop-4.1.1-r1.ebuild
similarity index 99%
rename from net-im/telegram-desktop/telegram-desktop-4.1.1.ebuild
rename to net-im/telegram-desktop/telegram-desktop-4.1.1-r1.ebuild
index 363e89f23081..ea8aea70d791 100644
--- a/net-im/telegram-desktop/telegram-desktop-4.1.1.ebuild
+++ b/net-im/telegram-desktop/telegram-desktop-4.1.1-r1.ebuild
@@ -117,7 +117,7 @@ src_configure() {
local mycmakeargs=(
-DTDESKTOP_LAUNCHER_BASENAME="${PN}"
-DCMAKE_DISABLE_FIND_PACKAGE_tl-expected=ON  # header only lib, 
some git version. prevents warnings.
-   -DDESKTOP_APP_QT6=$(usex qt6)
+   -DQT_VERSION_MAJOR=$(usex qt6 6 5)
 
-DDESKTOP_APP_DISABLE_DBUS_INTEGRATION=$(usex !dbus)
-DDESKTOP_APP_DISABLE_X11_INTEGRATION=$(usex !X)



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

2022-08-31 Thread Joonas Niilola
commit: 9c855235c377ffb1dae61ab36569c776d85099f2
Author: Quentin Retornaz  retornaz  com>
AuthorDate: Sun Aug 21 03:00:38 2022 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Thu Sep  1 06:27:52 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c855235

net-misc/seafile: version bump to 8.0.8

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Quentin Retornaz  retornaz.com>
Signed-off-by: Joonas Niilola  gentoo.org>

 net-misc/seafile/Manifest |  1 +
 net-misc/seafile/seafile-8.0.8.ebuild | 60 +++
 2 files changed, 61 insertions(+)

diff --git a/net-misc/seafile/Manifest b/net-misc/seafile/Manifest
index 078407655d46..984406234294 100644
--- a/net-misc/seafile/Manifest
+++ b/net-misc/seafile/Manifest
@@ -1,3 +1,4 @@
 DIST seafile-8.0.5.tar.gz 738268 BLAKE2B 
a142acd9613b4a4aba62640486ee3e79de13274f068e8db69693d93092123f73150e579a38e2aaffc0144cb03a88c56cdac20ca33c0c9a5d09bb8684f184e193
 SHA512 
712a5d445f586beb9cbd425298734181f2eef302dc2f1f7634c4182bd113a7818c948475e9981ce32af218fcc635254e4d5fea28d514ad6eafe169c4a41eb6f9
 DIST seafile-8.0.6.tar.gz 738248 BLAKE2B 
c36904c459429985bf5a6b34546be7af2ba913b4dc5df860858cf73c0d0fe4797fc1fd64a70d8feb3ac2888404e30705540672cdbcc7cea4b91e6229939ed1e4
 SHA512 
261e1c58018f3e427e79a811f67322a2d0ce4cc8bfa913f029bd42bdfa5498f35ec5003cafc8eaf583b0b0ef9cd7159bc4f57136f4fd4270b38327a79e0f95cd
 DIST seafile-8.0.7.tar.gz 738238 BLAKE2B 
edb6ab4f1e61455a24ed43c4b516b58f0cd44fd57f63ebb7aca6daaa206888689c9139fd443acfb2fb35ace100921470e207c338ae5bcdd093e02e79ab57ef80
 SHA512 
4ce16b2abed36ff33237df1119be7ecb3a01caa9d29c954a6618dfbc94d4ba32c0e30bcf259a6f05bf6bfe0e2aaca7d394c6b6adf69c37447e27a9ed5ac0d3df
+DIST seafile-8.0.8.tar.gz 738321 BLAKE2B 
ec8719890c5945c1dab0433c86e5e2b7ec7dc45ce9edb0b82760a4fffaf719892c1a650d2eb5df463f413df1c09c8062e45f35b13669fbc2c6312e0056590016
 SHA512 
a531acd582ce1f80918979305a2c822e37e25ad8cd80551359834ddb22434f2de5c63b9a364886bd12fe3aa8307087f85238271dbe9e3258e9e9c65f18ea9307

diff --git a/net-misc/seafile/seafile-8.0.8.ebuild 
b/net-misc/seafile/seafile-8.0.8.ebuild
new file mode 100644
index ..d49b3cf8f204
--- /dev/null
+++ b/net-misc/seafile/seafile-8.0.8.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{8..10} )
+
+# Upstream is moving tags repeatedly, then we use commit hash.
+RELEASE_COMMIT="f57dae37854acab74b08b0891584cb7ecb98cd18"
+
+inherit autotools python-single-r1 vala
+
+DESCRIPTION="File syncing and sharing software with file encryption and group 
sharing"
+HOMEPAGE="https://www.seafile.com/ https://github.com/haiwen/seafile/";
+SRC_URI="https://github.com/haiwen/${PN}/archive/${RELEASE_COMMIT}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-2+-with-openssl-exception"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+RDEPEND="${PYTHON_DEPS}
+   $(python_gen_cond_dep '
+   dev-python/future[${PYTHON_USEDEP}]
+   ')
+   dev-libs/openssl:=
+   dev-db/sqlite:3
+   dev-libs/glib:2
+   dev-libs/jansson:=
+   dev-libs/libevent:=
+   net-libs/libsearpc[${PYTHON_SINGLE_USEDEP}]
+   net-misc/curl
+   sys-apps/util-linux
+   sys-libs/zlib
+   elibc_musl? ( sys-libs/fts-standalone )"
+DEPEND="${RDEPEND}"
+BDEPEND="${PYTHON_DEPS}
+   $(vala_depend)"
+
+S="${WORKDIR}/${PN}-${RELEASE_COMMIT}"
+
+src_prepare() {
+   default
+   eautoreconf
+   vala_src_prepare
+}
+
+src_configure() {
+   local myeconfargs=(
+   --disable-static
+   )
+   econf "${myeconfargs[@]}"
+}
+
+src_install() {
+   default
+   # Remove unnecessary .la files
+   find "${ED}" -name '*.la' -delete || die
+   python_fix_shebang "${ED}"/usr/bin/seaf-cli
+}



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

2022-08-31 Thread Joonas Niilola
commit: ba8d0af76670991b7279541bc0582d1d4885c09e
Author: Quentin Retornaz  retornaz  com>
AuthorDate: Thu Sep  1 00:08:51 2022 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Thu Sep  1 06:27:51 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba8d0af7

net-libs/libsearpc: version bump to 3.2.0_p1

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Quentin Retornaz  retornaz.com>
Signed-off-by: Joonas Niilola  gentoo.org>

 net-libs/libsearpc/Manifest  |  1 +
 net-libs/libsearpc/libsearpc-3.2.0_p1.ebuild | 42 
 2 files changed, 43 insertions(+)

diff --git a/net-libs/libsearpc/Manifest b/net-libs/libsearpc/Manifest
index 7198ca76ba6d..fb2501075b90 100644
--- a/net-libs/libsearpc/Manifest
+++ b/net-libs/libsearpc/Manifest
@@ -1 +1,2 @@
 DIST libsearpc-3.2.0.tar.gz 52303 BLAKE2B 
34707b504b4e63017549e5ed04e8e1e8d1e98b873aebe2ad3f675fe88e209bb73d8b56d1aef137bc4bead2a2fbcf7410dfdf1d02a92a8f37efbaaf0d56d79a4c
 SHA512 
071784b6d34f6ddf947748474c210f0f803e3451373e351b6a768b0cf4a17ddcdaf415ff4ce5f020f1a68df3f6f0a0e53a78ad9e2df286fafea870e303c8f6dd
+DIST libsearpc-3.2.0_p1.tar.gz 54011 BLAKE2B 
9bdfa72b207eb57d1242384e5581eea9083f4f30616a9bc8da1255b281c0a847ec1fc6d23db7510dc7988a67d7c836762b8343ac4fdffe07ce6296b65d9cf8c8
 SHA512 
2e1580ffa54e233b078385a94d2d9a7e080bfb2f8ccbaf96645c94f86d0eda686bd84277341cff39840afa03fc67abd05cb2f57a81d117fff4773280f9da265a

diff --git a/net-libs/libsearpc/libsearpc-3.2.0_p1.ebuild 
b/net-libs/libsearpc/libsearpc-3.2.0_p1.ebuild
new file mode 100644
index ..b9dac0542a45
--- /dev/null
+++ b/net-libs/libsearpc/libsearpc-3.2.0_p1.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+
+# Upstream is moving tags repeatedly, then we use commit hash.
+RELEASE_COMMIT="54145b03f4240222e336a9a2f402e93facefde65" #tag v3.2_latest
+
+inherit autotools python-single-r1
+
+DESCRIPTION="A simple C language RPC framework"
+HOMEPAGE="https://github.com/haiwen/libsearpc/ http://seafile.com/";
+SRC_URI="https://github.com/haiwen/${PN}/archive/${RELEASE_COMMIT}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+DEPEND="${PYTHON_DEPS}
+   >=dev-libs/glib-2.26.0
+   >=dev-libs/jansson-2.2.1:="
+RDEPEND="${DEPEND}
+   $(python_gen_cond_dep '
+   dev-python/simplejson[${PYTHON_USEDEP}]
+   ')"
+
+S="${WORKDIR}/${PN}-${RELEASE_COMMIT}"
+
+src_prepare() {
+   default
+   sed -i -e "s/(DESTDIR)//" ${PN}.pc.in || die
+   eautoreconf
+}
+
+src_install() {
+   default
+   # Remove unnecessary .la files
+   find "${ED}" -name '*.la' -delete || die
+}



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

2022-08-31 Thread Joonas Niilola
commit: ca6a1e392f2f18cd3e84d3d3c08f182a00d37a2e
Author: Quentin Retornaz  retornaz  com>
AuthorDate: Sun Aug 21 03:03:48 2022 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Thu Sep  1 06:27:52 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca6a1e39

net-misc/seafile-client: version bump to 8.0.8

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Quentin Retornaz  retornaz.com>
Closes: https://github.com/gentoo/gentoo/pull/26936
Signed-off-by: Joonas Niilola  gentoo.org>

 net-misc/seafile-client/Manifest   |  1 +
 .../seafile-client/seafile-client-8.0.8.ebuild | 52 ++
 2 files changed, 53 insertions(+)

diff --git a/net-misc/seafile-client/Manifest b/net-misc/seafile-client/Manifest
index 5fcbcff2f867..e1718be31d25 100644
--- a/net-misc/seafile-client/Manifest
+++ b/net-misc/seafile-client/Manifest
@@ -1,3 +1,4 @@
 DIST seafile-client-8.0.5.tar.gz 11701650 BLAKE2B 
c9c436f53cf7effa6c2e1cdbb09f5cffd53f7ef8fa6f6b12bb92c0d3c2e54b38858c95a3ab4c511d16774a973c8c2a7e66842825e9535d1332e8589dc201d22a
 SHA512 
1f3eb643dce980a1aa0ff71e0ecca83b3db0848f9983bf7782adae6d181ddc28454a6cd75ebfcf439c17eb2008a5e0d4a684e5cee60fe7b83297e9fce1fcfec9
 DIST seafile-client-8.0.6.tar.gz 11702726 BLAKE2B 
bcba073b9ec17c33f653ae89e518f30f96ec8f9bdb780a9e06ae75d565c223c6b0505fd1ec9475b66bcd8d26f84846a99968fc006514d1eccb4a72b8600f0ae4
 SHA512 
fceb272fa521a7343609285ff5b299f66886b2ea53a1395178c3f05313e9439853422de65d20902669034c4edacdf32eb5674e16e64218b0444221c77cd4256c
 DIST seafile-client-8.0.7.tar.gz 11718265 BLAKE2B 
a48e259d809644cb1949f35e80459aa2267c9772438eb09ba894a795553368935c8b63c78fbabbea2202d3f23eb001836acce0975b086f66ec6d804405c5b534
 SHA512 
b4a6d5896f828e0e8ac4b202c5cc933e0ade4c373074e48e76e3b4ffe670faec0ef62bfcc72607891fb2c8b066fc448976285985077c48c6e3763619f35f4629
+DIST seafile-client-8.0.8.tar.gz 11716136 BLAKE2B 
1e8a25e0ce7ddf3347790cb614e725349c7cdb1b881bba4f229676f9f2e6ba86ed4958fb18c09b63e9c6fbf57c73f3bda68bd39f11ac374c4715bd4f5d036cf2
 SHA512 
9d569152c3e3db2fc142a082a3ca75fb020117eb5a79e7c0daa31207d1b04571ef38782c3afc1dbb205a65b8dd54e4b1ee4aab0715b0bda4bdd308474ce4e51c

diff --git a/net-misc/seafile-client/seafile-client-8.0.8.ebuild 
b/net-misc/seafile-client/seafile-client-8.0.8.ebuild
new file mode 100644
index ..27a73db04bbe
--- /dev/null
+++ b/net-misc/seafile-client/seafile-client-8.0.8.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+# Upstream is moving tags repeatedly, then we use commit hash.
+RELEASE_COMMIT="c8a33cc8f39dd67cf9458585ab19d20ef4656fe9"
+
+inherit xdg cmake
+
+DESCRIPTION="Seafile desktop client"
+HOMEPAGE="https://www.seafile.com/ https://github.com/haiwen/seafile-client/";
+SRC_URI="https://github.com/haiwen/${PN}/archive/${RELEASE_COMMIT}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="shibboleth test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="dev-db/sqlite:3
+   dev-libs/glib:2
+   dev-libs/jansson:=
+   dev-libs/openssl:=
+   dev-qt/qtcore:5
+   dev-qt/qtdbus:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5
+   dev-qt/qtwidgets:5
+   net-libs/libsearpc
+   ~net-misc/seafile-${PV}
+   sys-libs/zlib
+   virtual/opengl
+   shibboleth? ( dev-qt/qtwebengine:5[widgets] )"
+DEPEND="${RDEPEND}
+   test? ( dev-qt/qttest:5 )"
+BDEPEND="dev-qt/linguist-tools:5"
+
+PATCHES=(
+   "${FILESDIR}/${PN}-8.0.6-select-qt5.patch"
+   "${FILESDIR}/${PN}-7.0.9-qt-5.15.patch"
+)
+
+S="${WORKDIR}/${PN}-${RELEASE_COMMIT}"
+
+src_configure() {
+   local mycmakeargs=(
+   -DBUILD_SHIBBOLETH_SUPPORT="$(usex shibboleth)"
+   -DBUILD_TESTING="$(usex test)"
+   )
+   cmake_src_configure
+}



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

2022-08-31 Thread Ionen Wolkens
commit: f06ee4edb1cf699590a39b1bdc86e84eb73edf7c
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Thu Sep  1 06:15:13 2022 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Thu Sep  1 06:46:57 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f06ee4ed

gui-libs/egl-wayland: add 1.1.11

Nearly identical to previous snapshot, but properly tagged.

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

 gui-libs/egl-wayland/Manifest  |  1 +
 gui-libs/egl-wayland/egl-wayland-1.1.11.ebuild | 43 ++
 2 files changed, 44 insertions(+)

diff --git a/gui-libs/egl-wayland/Manifest b/gui-libs/egl-wayland/Manifest
index 93cb058a71af..c7f5f78db09f 100644
--- a/gui-libs/egl-wayland/Manifest
+++ b/gui-libs/egl-wayland/Manifest
@@ -1,3 +1,4 @@
 DIST egl-wayland-1.1.10_p20220805.tar.gz 60283 BLAKE2B 
14c272e4cc084892cc9eb822b85168e420c7cfd5472c9f24fd9aa6cc6a5aef2c75411c8c06e148c48e45c6ee4aa3179784b9e432905f41753840bf1ef576e634
 SHA512 
ce7aa6cc738dc392dfa9a6cf2c24253968404e011b4e921c6e3bf723fd4bc0eae63ef2050bef025a0726601e5ce2a08987293fd1674fb6c6b6c207969fd15bcb
+DIST egl-wayland-1.1.11.tar.gz 60459 BLAKE2B 
3b9bb4da117da2494bc07667fcab56dba8fafc32b6a4f68ad85ffefd37087f67372852d8320d3a47dc83c9cb85173774d77d53873e4a016a138cd6ca68a1ffb9
 SHA512 
a9bb3e284cf1c90358ec7569cc7a9d01509b640e1313033116d0f10c18f9cbc5eb9d7f8aadfc3613beaa0c1d7c074ba32721f1f85f3e103c2dd1e3be7bf97f72
 DIST egl-wayland-1.1.7.tar.gz 48681 BLAKE2B 
eebbd0e36045c50b39ef70292156f5cd137a51af2169b56a35d318d90ade3d4a5b94206d86246d52fda0c6c093ff25e389b1a3ccbe60595dc9661d199e30f33b
 SHA512 
edc81d9f2c617587044d5f9d35b3e355db8544e8fa1d861c1b92a5a11bc1af7d994ca8abd49ce6f462a1971f20296b4c757bdf1df0d2bfc981cdafaa839f12af
 DIST egl-wayland-1.1.9_p20211123.tar.gz 58900 BLAKE2B 
a5a08df06e302b573f1036264495e7b29ec4d3def9be0e9b8037206a42aab5c18d78b79cc3f3ffeede9708916e644f8090fadf34318429cf0040c3623da28ce1
 SHA512 
8de18c8c0c38ca672688a5197be20534cc90b0fecae9ea2f3d3bc851d5b50d3f148a4ce97b835a9576251c8273ea21f82f2c9694cf2b7bba28fa3b53850c43b2

diff --git a/gui-libs/egl-wayland/egl-wayland-1.1.11.ebuild 
b/gui-libs/egl-wayland/egl-wayland-1.1.11.ebuild
new file mode 100644
index ..15f3bab74424
--- /dev/null
+++ b/gui-libs/egl-wayland/egl-wayland-1.1.11.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit meson
+
+DESCRIPTION="EGLStream-based Wayland external platform"
+HOMEPAGE="https://github.com/NVIDIA/egl-wayland";
+SRC_URI="https://github.com/NVIDIA/egl-wayland/archive/refs/tags/${PV}.tar.gz 
-> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64"
+
+RDEPEND="
+   dev-libs/wayland
+   !

[gentoo-commits] repo/gentoo:master commit in: gui-libs/egl-wayland/, gui-libs/egl-wayland/files/

2022-08-31 Thread Ionen Wolkens
commit: ac6473a8db862b387072ebc9bb12447e12daffcb
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Thu Sep  1 06:07:29 2022 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Thu Sep  1 06:46:57 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac6473a8

gui-libs/egl-wayland: drop 1.1.10-r1

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

 gui-libs/egl-wayland/Manifest  |  1 -
 gui-libs/egl-wayland/egl-wayland-1.1.10-r1.ebuild  | 44 --
 .../egl-wayland-1.1.10-revert-defer-resizes.patch  | 96 --
 3 files changed, 141 deletions(-)

diff --git a/gui-libs/egl-wayland/Manifest b/gui-libs/egl-wayland/Manifest
index ce969c6ed6b9..93cb058a71af 100644
--- a/gui-libs/egl-wayland/Manifest
+++ b/gui-libs/egl-wayland/Manifest
@@ -1,4 +1,3 @@
-DIST egl-wayland-1.1.10.tar.gz 60058 BLAKE2B 
c24cc0d6e45e43868140d4e16ad5092a951bebb71fa0d65e11ef8d4273d85589a435e6d29b73b665630b5a7e28fdbd8e1e02e5eb43eed7d06862caabae7146e9
 SHA512 
163ee1ae1e629c5d32ffdf335b35ba309d35c009f93a8391e78dcb710a86f64e017a37c1e77325c6f4782c8a5fe048ae44ad1456bd3a20ea651b4192c9102e3c
 DIST egl-wayland-1.1.10_p20220805.tar.gz 60283 BLAKE2B 
14c272e4cc084892cc9eb822b85168e420c7cfd5472c9f24fd9aa6cc6a5aef2c75411c8c06e148c48e45c6ee4aa3179784b9e432905f41753840bf1ef576e634
 SHA512 
ce7aa6cc738dc392dfa9a6cf2c24253968404e011b4e921c6e3bf723fd4bc0eae63ef2050bef025a0726601e5ce2a08987293fd1674fb6c6b6c207969fd15bcb
 DIST egl-wayland-1.1.7.tar.gz 48681 BLAKE2B 
eebbd0e36045c50b39ef70292156f5cd137a51af2169b56a35d318d90ade3d4a5b94206d86246d52fda0c6c093ff25e389b1a3ccbe60595dc9661d199e30f33b
 SHA512 
edc81d9f2c617587044d5f9d35b3e355db8544e8fa1d861c1b92a5a11bc1af7d994ca8abd49ce6f462a1971f20296b4c757bdf1df0d2bfc981cdafaa839f12af
 DIST egl-wayland-1.1.9_p20211123.tar.gz 58900 BLAKE2B 
a5a08df06e302b573f1036264495e7b29ec4d3def9be0e9b8037206a42aab5c18d78b79cc3f3ffeede9708916e644f8090fadf34318429cf0040c3623da28ce1
 SHA512 
8de18c8c0c38ca672688a5197be20534cc90b0fecae9ea2f3d3bc851d5b50d3f148a4ce97b835a9576251c8273ea21f82f2c9694cf2b7bba28fa3b53850c43b2

diff --git a/gui-libs/egl-wayland/egl-wayland-1.1.10-r1.ebuild 
b/gui-libs/egl-wayland/egl-wayland-1.1.10-r1.ebuild
deleted file mode 100644
index d3d107c293bf..
--- a/gui-libs/egl-wayland/egl-wayland-1.1.10-r1.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit meson
-
-DESCRIPTION="EGLStream-based Wayland external platform"
-HOMEPAGE="https://github.com/NVIDIA/egl-wayland";
-SRC_URI="https://github.com/NVIDIA/egl-wayland/archive/refs/tags/${PV}.tar.gz 
-> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64"
-
-RDEPEND="
-   dev-libs/wayland
-   !=515.57 for working vulkan on wayland but
-carries a major regression that can make applications half-displayed
-and unusable after a resize.
-
-Official drivers seem to do something similar, they ship a modified
-1.1.9 with vulkan fixes rather than 1.1.10.
-
-https://github.com/NVIDIA/egl-wayland/issues/57
-Revert of https://github.com/NVIDIA/egl-wayland/commit/ddaa272
 a/src/wayland-eglsurface.c
-+++ b/src/wayland-eglsurface.c
-@@ -1612,17 +1612,30 @@
- }
- 
--void
--wlEglResizeSurfaceIfRequired(WlEglDisplay *display, WlEglPlatformData *pData, 
WlEglSurface *surface)
-+static void
-+resize_callback(struct wl_egl_window *window, void *data)
- {
-+WlEglDisplay  *display = NULL;
-+WlEglPlatformData *pData   = NULL;
-+WlEglSurface  *surface = (WlEglSurface *)data;
- EGLint err = EGL_SUCCESS;
- 
--if (!surface) {
-+if (!window || !surface) {
-+return;
-+}
-+
-+display = surface->wlEglDpy;
-+if (!wlEglIsWaylandDisplay(display->nativeDpy) ||
-+!wlEglIsWaylandWindowValid(surface->wlEglWin)) {
- return;
- }
-+pData = display->data;
- 
- pthread_mutex_lock(&surface->mutexLock);
- 
- /* Resize stream only if window geometry has changed */
--if (surface->isResized) {
-+if ((surface->width != window->width) ||
-+(surface->height != window->height) ||
-+(surface->dx != window->dx) ||
-+(surface->dy != window->dy)) {
- // If a damage thread is in use, wait for it to finish processing all
- //   pending frames
-@@ -1630,5 +1643,4 @@
- 
- discard_surface_context(surface);
--surface->isResized = EGL_FALSE;
- surface->ctx.wlStreamResource = NULL;
- surface->ctx.isAttached = EGL_FALSE;
-@@ -1655,34 +1667,4 @@
- pthread_mutex_unlock(&surface->mutexLock);
- }
--
--static void
--resize_callback(struct wl_egl_window *window, void *data)
--{
--WlEglDisplay  *display = NULL;
--WlEglSurface  *surface = (WlEglSurface *)data;
--
--if (!window || !surface) {
--return;
--}
--
--display = surface->wlEglDpy;
--if (!wlEglIsWaylandDisplay(display->nativeDpy) ||
--!w

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

2022-08-31 Thread Ionen Wolkens
commit: 5d6f5bc52df5d2289085c09d568b36fd3c27b39f
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Thu Sep  1 06:24:59 2022 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Thu Sep  1 06:46:57 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d6f5bc5

app-emulation/ruffle: use the newer unicode license

Formerly thought these were the same but upon closer look
it's a 2008 edition vs the 2016 edition.

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

 app-emulation/ruffle/ruffle-0_p20220816.ebuild | 2 +-
 app-emulation/ruffle/ruffle-.ebuild| 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-emulation/ruffle/ruffle-0_p20220816.ebuild 
b/app-emulation/ruffle/ruffle-0_p20220816.ebuild
index a2e6ccb92ee8..14ca1dfdb98e 100644
--- a/app-emulation/ruffle/ruffle-0_p20220816.ebuild
+++ b/app-emulation/ruffle/ruffle-0_p20220816.ebuild
@@ -443,7 +443,7 @@ SRC_URI="
$(ruffle_uris)"
 S="${WORKDIR}/${MY_P}"
 
-LICENSE="Apache-2.0 BSD BSD-2 CC0-1.0 ISC MIT MPL-2.0 ZLIB curl unicode"
+LICENSE="Apache-2.0 BSD BSD-2 CC0-1.0 ISC MIT MPL-2.0 Unicode-DFS-2016 ZLIB 
curl"
 SLOT="0"
 KEYWORDS="~amd64"
 

diff --git a/app-emulation/ruffle/ruffle-.ebuild 
b/app-emulation/ruffle/ruffle-.ebuild
index 0db98eda49d5..7661aa2806f0 100644
--- a/app-emulation/ruffle/ruffle-.ebuild
+++ b/app-emulation/ruffle/ruffle-.ebuild
@@ -12,7 +12,7 @@ DESCRIPTION="Flash Player emulator written in Rust"
 HOMEPAGE="https://ruffle.rs/";
 EGIT_REPO_URI="https://github.com/ruffle-rs/ruffle.git";
 
-LICENSE="Apache-2.0 BSD BSD-2 CC0-1.0 ISC MIT MPL-2.0 ZLIB curl unicode"
+LICENSE="Apache-2.0 BSD BSD-2 CC0-1.0 ISC MIT MPL-2.0 Unicode-DFS-2016 ZLIB 
curl"
 SLOT="0"
 
 RDEPEND="



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

2022-08-31 Thread Ionen Wolkens
commit: 91bb83568a7f7011cb54340bb571f1385bc07cbd
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Thu Sep  1 06:17:22 2022 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Thu Sep  1 06:46:57 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91bb8356

app-emulation/ruffle: drop 0_p20220731

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

 app-emulation/ruffle/Manifest  |  28 --
 app-emulation/ruffle/ruffle-0_p20220731.ebuild | 512 -
 2 files changed, 540 deletions(-)

diff --git a/app-emulation/ruffle/Manifest b/app-emulation/ruffle/Manifest
index 0548d2c8586f..ed8977befde4 100644
--- a/app-emulation/ruffle/Manifest
+++ b/app-emulation/ruffle/Manifest
@@ -29,9 +29,7 @@ DIST block-buffer-0.10.2.crate 10258 BLAKE2B 
d3ad2f9f0379e04320e954e1a2226949d83
 DIST bstr-0.2.17.crate 330350 BLAKE2B 
90c3a48d78b73d7e36a3da9fda0beae6e91ce534d17198ea8ceee0b613d03297f9dd8bca30e1ec5da01d1da359a1da72b2c2771b77c82bebab5006cafd665192
 SHA512 
883eac8210d14f89517b4dd5e25d02c97cf31602ec74498b5e186112ba0f154d47de8d1c41a8f4e5503f3b53c064e2c976b60bbfd63fc28b186bc006e00f20c2
 DIST build_const-0.2.2.crate 4511 BLAKE2B 
44316d3b468e73fbeedbaa1ae35705196f787707ea861355d926e7fbc97f759bc7fe0bf88d2e97fb9b981fc7347fe0e849ce2094f50ab53075b4dfe7522089f0
 SHA512 
47a9949b7196791af2507d6e3a28843da67621e5b56177d3b13477e070487cdd1059207588a55bf1a393df9118e71e3024b439a3c6281b6c12b5bdee66b237a6
 DIST bumpalo-3.10.0.crate 78915 BLAKE2B 
94515190837765b47feaf94946c7e4da5b84e6faf7975bd5452bd9388d34e51c84315b80bc15b37c7f4ea8b4aaa0112707cdfc82d0651eeb8b63d2e7bd247660
 SHA512 
60c686534588524250ea7cb43510dba69d24999769b719127ee07f6015530ac2c5778d9b93477ab075bfc15c13e3ef9adc29ac24059067ac32e109347cd509f8
-DIST bytemuck-1.11.0.crate 37041 BLAKE2B 
6b73ecde5bf10b1ac81ea97904285197dc550cbcac4649804c5c50cc32308a28064fd6f28bbcac44f2dd97d0719b7da4e15e981253612d54790802febf4bd732
 SHA512 
cb11396b35a3d783a1f44278b1372d51268089561e4e16c662dfb17cffb6645be4fd66e5532683bcc964451a65f4a9deeb72537d3d84da45491d4545f2c8435c
 DIST bytemuck-1.12.0.crate 38248 BLAKE2B 
9233579e344dead7bfbea2e7ca5f905900768334c0ac53a593de98fa210d87fd799bd61f3171f69127faaebe7e2c01f1fc01698885fd042727a9342ecc21cd83
 SHA512 
0f1fa19fc49e941795009d864061fc171ad7cb28ebfd9c1056730121ce918afdb7d7bb5921a900ef74dd34f1a1e6c84a769c4e8396fda54af8ae59b73eddfba2
-DIST bytemuck_derive-1.1.1.crate 11906 BLAKE2B 
cfed39b897882e04aff180dc09967b7f08de906d049e0828ac14531e2cabebe0db1f5cb40fc602d14fff1a1b228caef690a3f5cb0f5bf1710020a74cb06bcb27
 SHA512 
6d60a871743ef1e1cf89c77ab8d079e1c6841d448c192b73cdd46738d0132a3081abd4820b14738f9884ceb208a44cfc1bf713489701decec2a5a82f557e87de
 DIST bytemuck_derive-1.2.0.crate 13511 BLAKE2B 
900f94cd1d65a793811d7a29e90c3b80bb301b31b3371640b9d417ae9fa1937d98904977dcc69a9291fe740e44896ef3f47a89cc9fd340d2f8ab0d943f4fbd6b
 SHA512 
96d1efd4c7826130c57841343f26bf120d980ed9280ee8fa46e029bb500547278b6801d2d1d91f08bbd523b5c2c7a7c7f2ea0ad1a3a916fa5454977680353ec7
 DIST byteorder-1.4.3.crate 22512 BLAKE2B 
d39c546ba7346df315297fc53da4bfc77ecb1f38567ddb788549ee31cae2719a8bc0b7d1f1705abb3cff033aa57af004987d90748f5a31765273b3223a011c0d
 SHA512 
8c8000eb8ecf40351c9ce36a3a8acd7a02f81786d1b11aab85adfeffa0f2267ed74df29b2ca5d1d38128484d1d3cad2b673aa0d0441dcd0620dfd3934bb888fa
 DIST bytes-1.2.0.crate 54688 BLAKE2B 
7691bdd170be8b7bf77b52078d547c1d007fbd97c5465672cfb558bcc8934377313de06e7dcc7d6ecd3f9e7c9fcb232c8a80b933591f7c160fa07600872b80ec
 SHA512 
91ecb2ffab68ed7ee91112ab1462a036e627470e75077d00ea163e9f91a920404f502fb55c4ba7d7941f799a6077990170a15f69a4df3cd8cb73dfb677eab7fa
@@ -46,12 +44,9 @@ DIST cfg-expr-0.10.3.crate 39502 BLAKE2B 
8945634ccd463a54991a8f8f7249a0ebce6e0a9
 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 cfg_aliases-0.1.1.crate 6009 BLAKE2B 
6acfae9a89d3479f7ce1f0b5dbb13bfe27c006b936a96685606a61a06f69d17ab754a8a0d96c54213f758281c2fb32ac74d03a34e0f836dc7e438387955aac37
 SHA512 
238828445c5b48ca41ff88825af0a1ad30494e423bb6f89b6d5e4d26042afaa1ceb0e32041f7cddd79c3e15c6c82a1ddb9469c4b63a1ac52d4bcc1174900f880
-DIST chrono-0.4.19.crate 155663 BLAKE2B 
c92c273fb6475bbb2546dfb75eaa23321bc8f9a5fa8a7c652f527649b96ff8718fa932f52b500b02a4acae7837df5bdb14f69cb821d4962be2790dbd1d023a54
 SHA512 
a119349bfc2243a249f1d18b1ae548a04b30fecb75913a56f26d1ff8c0eb53097a2674d9141e2094018191cbbc1620843fbddaf52999824e077c1157f0907980
 DIST chrono-0.4.20.crate 185054 

<    1   2   3   4