[gentoo-commits] repo/proj/wine:master commit in: /

2022-05-19 Thread Nick Sarnie
commit: 4164185d5398fbbb1623da3e697e9142043a365a
Author: Nick Sarnie  gentoo  org>
AuthorDate: Fri May 20 03:54:32 2022 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Fri May 20 03:55:12 2022 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=4164185d

Deprecate this repo

Signed-off-by: Nick Sarnie  gentoo.org>

 overlay.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/overlay.xml b/overlay.xml
index 06f8b67..7c17dee 100644
--- a/overlay.xml
+++ b/overlay.xml
@@ -3,7 +3,7 @@
 
 
wine
-   All supported Wine ebuilds from the Gentoo Wine 
Project
+   NOTE: This repo is no longer updated, ::gentoo has the 
latest changes. All previous Wine ebuilds from the Gentoo Wine 
Project
https://github.com/NP-Hardass/wine-overlay

w...@gentoo.org



[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-d3d9/

2022-05-19 Thread Sam James
commit: 5d5b469904109980759a77e2cdd737efa14c0bc7
Author: Sam James  gentoo  org>
AuthorDate: Fri May 20 01:13:06 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Fri May 20 01:13:06 2022 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=5d5b4699

app-emulation/wine-d3d9: [QA] drop (very) stale GCC version checks

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

 app-emulation/wine-d3d9/wine-d3d9-3.11.ebuild | 23 ---
 app-emulation/wine-d3d9/wine-d3d9-3.4.ebuild  | 23 ---
 2 files changed, 46 deletions(-)

diff --git a/app-emulation/wine-d3d9/wine-d3d9-3.11.ebuild 
b/app-emulation/wine-d3d9/wine-d3d9-3.11.ebuild
index 7d7d9e8..5266089 100644
--- a/app-emulation/wine-d3d9/wine-d3d9-3.11.ebuild
+++ b/app-emulation/wine-d3d9/wine-d3d9-3.11.ebuild
@@ -175,29 +175,6 @@ wine_compiler_check() {
 wine_build_environment_check() {
[[ ${MERGE_TYPE} = "binary" ]] && return 0
 
-   if use abi_x86_64; then
-   if tc-is-gcc && [[ $(gcc-major-version) -lt 4 || ( 
$(gcc-major-version) -eq 4 && $(gcc-minor-version) -lt 4 ) ]]; then
-   eerror "You need gcc-4.4+ to compile 64-bit wine"
-   die
-   elif tc-is-clang && [[ $(clang-major-version) -lt 3 || ( 
$(clang-major-version) -eq 3 && $(clang-minor-version) -lt 8 ) ]]; then
-   eerror "You need clang-3.8+ to compile 64-bit wine"
-   die
-   fi
-   fi
-   if tc-is-gcc && [[ $(gcc-major-version) -eq 5 && $(gcc-minor-version) 
-le 3 ]]; then
-   ewarn "GCC-5.0-5.3 suffered from compiler bugs and are no 
longer supported by"
-   ewarn "Gentoo's Toolchain Team. If your ebuild fails the 
compiler checks in"
-   ewarn "the configure phase, either update your compiler or 
switch to <5.0 || >=5.4"
-   fi
-   if tc-is-gcc && [[ $(gcc-major-version) -eq 5 && $(gcc-minor-version) 
-eq 4 ]]; then
-   if has "-march=i686" ${CFLAGS} && ! has "-mtune=generic" 
${CFLAGS}; then
-   ewarn "Compilation can hang with 
CFLAGS=\"-march=i686\".  You can temporarily work"
-   ewarn "around this by adding \"-mtune=generic\" to your 
CFLAGS for wine."
-   ewarn "See package.env in man 5 portage for more 
information on how to do this."
-   ewarn "See 
https://bugs.gentoo.org/show_bug.cgi?id=613128 for more details"
-   fi
-   fi
-
if use abi_x86_32 && use opencl && [[ "$(eselect opencl show 2> 
/dev/null)" == "intel" ]]; then
eerror "You cannot build wine with USE=opencl because 
intel-ocl-sdk is 64-bit only."
eerror "See https://bugs.gentoo.org/487864 for more details."

diff --git a/app-emulation/wine-d3d9/wine-d3d9-3.4.ebuild 
b/app-emulation/wine-d3d9/wine-d3d9-3.4.ebuild
index 22ba9f5..7186adf 100644
--- a/app-emulation/wine-d3d9/wine-d3d9-3.4.ebuild
+++ b/app-emulation/wine-d3d9/wine-d3d9-3.4.ebuild
@@ -173,29 +173,6 @@ wine_compiler_check() {
 wine_build_environment_check() {
[[ ${MERGE_TYPE} = "binary" ]] && return 0
 
-   if use abi_x86_64; then
-   if tc-is-gcc && [[ $(gcc-major-version) -lt 4 || ( 
$(gcc-major-version) -eq 4 && $(gcc-minor-version) -lt 4 ) ]]; then
-   eerror "You need gcc-4.4+ to compile 64-bit wine"
-   die
-   elif tc-is-clang && [[ $(clang-major-version) -lt 3 || ( 
$(clang-major-version) -eq 3 && $(clang-minor-version) -lt 8 ) ]]; then
-   eerror "You need clang-3.8+ to compile 64-bit wine"
-   die
-   fi
-   fi
-   if tc-is-gcc && [[ $(gcc-major-version) -eq 5 && $(gcc-minor-version) 
-le 3 ]]; then
-   ewarn "GCC-5.0-5.3 suffered from compiler bugs and are no 
longer supported by"
-   ewarn "Gentoo's Toolchain Team. If your ebuild fails the 
compiler checks in"
-   ewarn "the configure phase, either update your compiler or 
switch to <5.0 || >=5.4"
-   fi
-   if tc-is-gcc && [[ $(gcc-major-version) -eq 5 && $(gcc-minor-version) 
-eq 4 ]]; then
-   if has "-march=i686" ${CFLAGS} && ! has "-mtune=generic" 
${CFLAGS}; then
-   ewarn "Compilation can hang with 
CFLAGS=\"-march=i686\".  You can temporarily work"
-   ewarn "around this by adding \"-mtune=generic\" to your 
CFLAGS for wine."
-   ewarn "See package.env in man 5 portage for more 
information on how to do this."
-   ewarn "See 
https://bugs.gentoo.org/show_bug.cgi?id=613128 for more details"
-   fi
-   fi
-
if use abi_x86_32 && use opencl && [[ "$(eselect opencl show 2> 
/dev/null)" == "intel" ]]; then
eerror "You cannot build wine with USE=opencl because 
intel-ocl-sdk is 64-bit only."
eerror 

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-vanilla/

2022-05-19 Thread Sam James
commit: 8d0d9f0ab26cf26f68f011374b4ec773d73b930e
Author: Sam James  gentoo  org>
AuthorDate: Fri May 20 01:11:18 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Fri May 20 01:11:43 2022 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=8d0d9f0a

app-emulation/wine-vanilla: [QA] drop (very) stale GCC version checks

Ionen pointed out I left out a bunch of the ebuilds somehow.

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

 .../wine-vanilla/wine-vanilla-6.10.ebuild  | 70 +-
 .../wine-vanilla/wine-vanilla-6.11.ebuild  | 70 +-
 .../wine-vanilla/wine-vanilla-6.12.ebuild  | 70 +-
 .../wine-vanilla/wine-vanilla-6.13.ebuild  | 70 +-
 .../wine-vanilla/wine-vanilla-6.14.ebuild  | 70 +-
 .../wine-vanilla/wine-vanilla-6.15.ebuild  | 70 +-
 .../wine-vanilla/wine-vanilla-6.16.ebuild  | 70 +-
 .../wine-vanilla/wine-vanilla-6.17.ebuild  | 70 +-
 .../wine-vanilla/wine-vanilla-6.18.ebuild  | 70 +-
 .../wine-vanilla/wine-vanilla-6.19.ebuild  | 70 +-
 .../wine-vanilla/wine-vanilla-6.20.ebuild  | 70 +-
 .../wine-vanilla/wine-vanilla-6.21.ebuild  | 70 +-
 .../wine-vanilla/wine-vanilla-6.22.ebuild  | 70 +-
 .../wine-vanilla/wine-vanilla-6.23.ebuild  | 70 +-
 app-emulation/wine-vanilla/wine-vanilla-6.4.ebuild | 70 +-
 app-emulation/wine-vanilla/wine-vanilla-6.5.ebuild | 70 +-
 app-emulation/wine-vanilla/wine-vanilla-6.6.ebuild | 70 +-
 app-emulation/wine-vanilla/wine-vanilla-6.7.ebuild | 70 +-
 app-emulation/wine-vanilla/wine-vanilla-6.8.ebuild | 70 +-
 app-emulation/wine-vanilla/wine-vanilla-6.9.ebuild | 70 +-
 .../wine-vanilla/wine-vanilla-7.0-r2.ebuild| 70 +-
 app-emulation/wine-vanilla/wine-vanilla-7.0.ebuild | 70 +-
 app-emulation/wine-vanilla/wine-vanilla-7.1.ebuild | 70 +-
 app-emulation/wine-vanilla/wine-vanilla-7.2.ebuild | 70 +-
 .../wine-vanilla/wine-vanilla-7.3-r1.ebuild| 70 +-
 .../wine-vanilla/wine-vanilla-7.4-r1.ebuild| 70 +-
 .../wine-vanilla/wine-vanilla-7.5-r1.ebuild| 70 +-
 .../wine-vanilla/wine-vanilla-7.6-r1.ebuild| 70 +-
 app-emulation/wine-vanilla/wine-vanilla-7.7.ebuild | 70 +-
 app-emulation/wine-vanilla/wine-vanilla-7.8.ebuild | 70 +-
 .../wine-vanilla/wine-vanilla-.ebuild  | 70 +-
 31 files changed, 93 insertions(+), 2077 deletions(-)

diff --git a/app-emulation/wine-vanilla/wine-vanilla-6.10.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-6.10.ebuild
index e8e05b6..5a577bd 100644
--- a/app-emulation/wine-vanilla/wine-vanilla-6.10.ebuild
+++ b/app-emulation/wine-vanilla/wine-vanilla-6.10.ebuild
@@ -152,80 +152,16 @@ if [[ ${#PATCHES_BIN[@]} -ge 1 ]] || [[ ${PV} ==  ]]; 
then
 fi
 
 wine_compiler_check() {
-   # GCC-specific bugs
-   if tc-is-gcc; then
-   # bug #549768
-   if use abi_x86_64 && [[ $(gcc-major-version) = 5 && 
$(gcc-minor-version) -le 2 ]]; then
-   ebegin "Checking for gcc-5 ms_abi compiler bug"
-   $(tc-getCC) -O2 "${PATCHDIR}/files/pr66838.c" -o 
"${T}"/pr66838 || die
-   # Run in subshell to prevent "Aborted" message
-   ( "${T}"/pr66838 || false ) >/dev/null 2>&1
-   if ! eend $?; then
-   eerror "64-bit wine cannot be built with 
gcc-5.1 or initial patchset of 5.2.0"
-   eerror "due to compiler bugs; please re-emerge 
the latest gcc-5.2.x ebuild,"
-   eerror "or use gcc-config to select a different 
compiler version."
-   eerror "See https://bugs.gentoo.org/549768;
-   eerror
-   return 1
-   fi
-   fi
-   # bug #574044
-   if use abi_x86_64 && [[ $(gcc-major-version) = 5 && 
$(gcc-minor-version) = 3 ]]; then
-   ebegin "Checking for gcc-5-3 stack realignment compiler 
bug"
-   # Compile in subshell to prevent "Aborted" message
-   ( $(tc-getCC) -O2 -mincoming-stack-boundary=3 
"${PATCHDIR}/files/pr69140.c" -o "${T}"/pr69140 ) >/dev/null 2>&1
-   if ! eend $?; then
-   eerror "Wine cannot be built with this version 

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-staging/

2022-05-19 Thread Sam James
commit: eb4c78091f550ddd477a04dfcc48d897cc7efd58
Author: Sam James  gentoo  org>
AuthorDate: Fri May 20 01:10:24 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Fri May 20 01:11:31 2022 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=eb4c7809

app-emulation/wine-staging: [QA] drop (very) stale GCC version checks

Ionen pointed out I left out a bunch of the ebuilds somehow.

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

 .../wine-staging/wine-staging-6.10.ebuild  | 70 +-
 .../wine-staging/wine-staging-6.11.ebuild  | 70 +-
 .../wine-staging/wine-staging-6.12.ebuild  | 70 +-
 .../wine-staging/wine-staging-6.13.ebuild  | 70 +-
 .../wine-staging/wine-staging-6.14.ebuild  | 70 +-
 .../wine-staging/wine-staging-6.15.ebuild  | 70 +-
 .../wine-staging/wine-staging-6.16.ebuild  | 70 +-
 .../wine-staging/wine-staging-6.17.ebuild  | 70 +-
 .../wine-staging/wine-staging-6.18.ebuild  | 70 +-
 .../wine-staging/wine-staging-6.19.ebuild  | 70 +-
 .../wine-staging/wine-staging-6.20.ebuild  | 70 +-
 .../wine-staging/wine-staging-6.21.ebuild  | 70 +-
 .../wine-staging/wine-staging-6.22.ebuild  | 70 +-
 .../wine-staging/wine-staging-6.23.ebuild  | 70 +-
 app-emulation/wine-staging/wine-staging-6.4.ebuild | 70 +-
 app-emulation/wine-staging/wine-staging-6.5.ebuild | 70 +-
 app-emulation/wine-staging/wine-staging-6.6.ebuild | 70 +-
 app-emulation/wine-staging/wine-staging-6.7.ebuild | 70 +-
 app-emulation/wine-staging/wine-staging-6.8.ebuild | 70 +-
 app-emulation/wine-staging/wine-staging-6.9.ebuild | 70 +-
 app-emulation/wine-staging/wine-staging-7.0.ebuild | 70 +-
 app-emulation/wine-staging/wine-staging-7.1.ebuild | 70 +-
 app-emulation/wine-staging/wine-staging-7.2.ebuild | 70 +-
 .../wine-staging/wine-staging-7.3-r1.ebuild| 70 +-
 .../wine-staging/wine-staging-7.4-r1.ebuild| 70 +-
 .../wine-staging/wine-staging-7.5-r1.ebuild| 70 +-
 .../wine-staging/wine-staging-7.6-r1.ebuild| 70 +-
 app-emulation/wine-staging/wine-staging-7.7.ebuild | 70 +-
 app-emulation/wine-staging/wine-staging-7.8.ebuild | 70 +-
 .../wine-staging/wine-staging-.ebuild  | 70 +-
 30 files changed, 90 insertions(+), 2010 deletions(-)

diff --git a/app-emulation/wine-staging/wine-staging-6.10.ebuild 
b/app-emulation/wine-staging/wine-staging-6.10.ebuild
index ac47f8d..96dfa1d 100644
--- a/app-emulation/wine-staging/wine-staging-6.10.ebuild
+++ b/app-emulation/wine-staging/wine-staging-6.10.ebuild
@@ -180,80 +180,16 @@ if [[ ${#PATCHES_BIN[@]} -ge 1 ]] || [[ ${MY_PV} ==  
]]; then
 fi
 
 wine_compiler_check() {
-   # GCC-specific bugs
-   if tc-is-gcc; then
-   # bug #549768
-   if use abi_x86_64 && [[ $(gcc-major-version) = 5 && 
$(gcc-minor-version) -le 2 ]]; then
-   ebegin "Checking for gcc-5 ms_abi compiler bug"
-   $(tc-getCC) -O2 "${PATCHDIR}/files/pr66838.c" -o 
"${T}"/pr66838 || die
-   # Run in subshell to prevent "Aborted" message
-   ( "${T}"/pr66838 || false ) >/dev/null 2>&1
-   if ! eend $?; then
-   eerror "64-bit wine cannot be built with 
gcc-5.1 or initial patchset of 5.2.0"
-   eerror "due to compiler bugs; please re-emerge 
the latest gcc-5.2.x ebuild,"
-   eerror "or use gcc-config to select a different 
compiler version."
-   eerror "See https://bugs.gentoo.org/549768;
-   eerror
-   return 1
-   fi
-   fi
-   # bug #574044
-   if use abi_x86_64 && [[ $(gcc-major-version) = 5 && 
$(gcc-minor-version) = 3 ]]; then
-   ebegin "Checking for gcc-5-3 stack realignment compiler 
bug"
-   # Compile in subshell to prevent "Aborted" message
-   ( $(tc-getCC) -O2 -mincoming-stack-boundary=3 
"${PATCHDIR}/files/pr69140.c" -o "${T}"/pr69140 ) >/dev/null 2>&1
-   if ! eend $?; then
-   eerror "Wine cannot be built with this version 
of gcc-5.3"
-   eerror "due to compiler bugs; 

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-any/

2022-05-16 Thread Sam James
commit: 7a171d3dea0bf7f45240701b8224f42bd86ee28f
Author: Sam James  gentoo  org>
AuthorDate: Tue May 17 03:52:33 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue May 17 03:52:33 2022 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=7a171d3d

app-emulation/wine-any: drop prelink

Removed from ::gentoo and newer glibcs.

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

 app-emulation/wine-any/metadata.xml| 2 --
 app-emulation/wine-any/wine-any-2.0-r1.ebuild  | 3 +--
 app-emulation/wine-any/wine-any-2.1-r1.ebuild  | 3 +--
 app-emulation/wine-any/wine-any-2.10-r1.ebuild | 3 +--
 app-emulation/wine-any/wine-any-2.11-r1.ebuild | 3 +--
 app-emulation/wine-any/wine-any-2.12-r1.ebuild | 3 +--
 app-emulation/wine-any/wine-any-2.13-r1.ebuild | 3 +--
 app-emulation/wine-any/wine-any-2.14-r1.ebuild | 3 +--
 app-emulation/wine-any/wine-any-2.15-r1.ebuild | 3 +--
 app-emulation/wine-any/wine-any-2.16-r1.ebuild | 3 +--
 app-emulation/wine-any/wine-any-2.17-r1.ebuild | 3 +--
 app-emulation/wine-any/wine-any-2.18.ebuild| 3 +--
 app-emulation/wine-any/wine-any-2.19.ebuild| 3 +--
 app-emulation/wine-any/wine-any-2.2-r1.ebuild  | 3 +--
 app-emulation/wine-any/wine-any-2.20.ebuild| 3 +--
 app-emulation/wine-any/wine-any-2.21.ebuild| 3 +--
 app-emulation/wine-any/wine-any-2.3-r1.ebuild  | 3 +--
 app-emulation/wine-any/wine-any-2.4-r1.ebuild  | 3 +--
 app-emulation/wine-any/wine-any-2.5-r1.ebuild  | 3 +--
 app-emulation/wine-any/wine-any-2.6-r1.ebuild  | 3 +--
 app-emulation/wine-any/wine-any-2.7-r1.ebuild  | 3 +--
 app-emulation/wine-any/wine-any-2.8-r1.ebuild  | 3 +--
 app-emulation/wine-any/wine-any-2.9-r1.ebuild  | 3 +--
 app-emulation/wine-any/wine-any-3.10.ebuild| 3 +--
 app-emulation/wine-any/wine-any-3.11.ebuild| 3 +--
 app-emulation/wine-any/wine-any-3.12.ebuild| 3 +--
 app-emulation/wine-any/wine-any-3.13-r1.ebuild | 3 +--
 app-emulation/wine-any/wine-any-3.13.ebuild| 3 +--
 app-emulation/wine-any/wine-any-3.14.ebuild| 3 +--
 app-emulation/wine-any/wine-any-3.15.ebuild| 3 +--
 app-emulation/wine-any/wine-any-3.16.ebuild| 3 +--
 app-emulation/wine-any/wine-any-3.17.ebuild| 3 +--
 app-emulation/wine-any/wine-any-3.18.ebuild| 3 +--
 app-emulation/wine-any/wine-any-3.19.ebuild| 3 +--
 app-emulation/wine-any/wine-any-3.20.ebuild| 3 +--
 app-emulation/wine-any/wine-any-3.21.ebuild| 3 +--
 app-emulation/wine-any/wine-any-3.3.ebuild | 3 +--
 app-emulation/wine-any/wine-any-3.4.ebuild | 3 +--
 app-emulation/wine-any/wine-any-3.5.ebuild | 3 +--
 app-emulation/wine-any/wine-any-3.6.ebuild | 3 +--
 app-emulation/wine-any/wine-any-3.7.ebuild | 3 +--
 app-emulation/wine-any/wine-any-3.8.ebuild | 3 +--
 app-emulation/wine-any/wine-any-3.9.ebuild | 3 +--
 app-emulation/wine-any/wine-any-4.0.ebuild | 3 +--
 app-emulation/wine-any/wine-any-4.1.ebuild | 3 +--
 app-emulation/wine-any/wine-any-.ebuild| 3 +--
 46 files changed, 45 insertions(+), 92 deletions(-)

diff --git a/app-emulation/wine-any/metadata.xml 
b/app-emulation/wine-any/metadata.xml
index 009f5d7..96472a5 100644
--- a/app-emulation/wine-any/metadata.xml
+++ b/app-emulation/wine-any/metadata.xml
@@ -33,8 +33,6 @@ This variant of the wine packaging allows for the use of the 
Wine-Staging patchs
Support packet capture software (e.g. 
wireshark)
Install helpers written in perl 
(winedump/winemaker)
Apply Wine-Staging patches for 
Pipelight/Silverlight support
-   Run prelink on DLLs during build;
-   For Gentoo hardened, do not disable if you do not know 
what this means as it can break things at runtime
Pull in sys-auth/rtkit for 
low-latency pulseaudio support
Use Wine to open and run .EXE and .MSI 
files
Pull in media-libs/libtxc_dxtn for 
DXTn texture compression, needed for many games

diff --git a/app-emulation/wine-any/wine-any-2.0-r1.ebuild 
b/app-emulation/wine-any/wine-any-2.0-r1.ebuild
index e6fb12a..22d70d5 100644
--- a/app-emulation/wine-any/wine-any-2.0-r1.ebuild
+++ b/app-emulation/wine-any/wine-any-2.0-r1.ebuild
@@ -48,7 +48,7 @@ fi
 
 LICENSE="LGPL-2.1"
 SLOT="${PV}"
-IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags d3d9 dos 
+fontconfig +gecko gphoto2 gsm gstreamer +jpeg +lcms ldap +mono mp3 ncurses 
netapi nls odbc openal opencl +opengl osmesa oss +perl pcap pipelight +png 
prelink pulseaudio +realtime +run-exes s3tc samba scanner selinux +ssl staging 
test themes +threads +truetype udev +udisks v4l vaapi +X +xcomposite xinerama 
+xml"
+IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags d3d9 dos 
+fontconfig +gecko gphoto2 gsm gstreamer +jpeg +lcms ldap +mono mp3 ncurses 
netapi nls odbc openal opencl +opengl osmesa oss +perl pcap pipelight +png 
pulseaudio +realtime +run-exes s3tc samba scanner selinux +ssl staging test 
themes +threads +truetype udev +udisks 

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-d3d9/

2022-05-16 Thread Sam James
commit: 2f9af1d50f7deb5453589269293f65a51c719ec5
Author: Sam James  gentoo  org>
AuthorDate: Tue May 17 03:53:01 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue May 17 03:53:01 2022 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=2f9af1d5

app-emulation/wine-d3d9: drop prelink

Removed from ::gentoo and newer glibcs.

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

 app-emulation/wine-d3d9/metadata.xml | 2 --
 app-emulation/wine-d3d9/wine-d3d9-2.0-r1.ebuild  | 3 +--
 app-emulation/wine-d3d9/wine-d3d9-2.1-r1.ebuild  | 3 +--
 app-emulation/wine-d3d9/wine-d3d9-2.10-r1.ebuild | 3 +--
 app-emulation/wine-d3d9/wine-d3d9-2.11-r1.ebuild | 3 +--
 app-emulation/wine-d3d9/wine-d3d9-2.12-r1.ebuild | 3 +--
 app-emulation/wine-d3d9/wine-d3d9-2.13-r1.ebuild | 3 +--
 app-emulation/wine-d3d9/wine-d3d9-2.14-r1.ebuild | 3 +--
 app-emulation/wine-d3d9/wine-d3d9-2.15-r1.ebuild | 3 +--
 app-emulation/wine-d3d9/wine-d3d9-2.16-r1.ebuild | 3 +--
 app-emulation/wine-d3d9/wine-d3d9-2.17-r1.ebuild | 3 +--
 app-emulation/wine-d3d9/wine-d3d9-2.18.ebuild| 3 +--
 app-emulation/wine-d3d9/wine-d3d9-2.19.ebuild| 3 +--
 app-emulation/wine-d3d9/wine-d3d9-2.2-r1.ebuild  | 3 +--
 app-emulation/wine-d3d9/wine-d3d9-2.20.ebuild| 3 +--
 app-emulation/wine-d3d9/wine-d3d9-2.21.ebuild| 3 +--
 app-emulation/wine-d3d9/wine-d3d9-2.3-r1.ebuild  | 3 +--
 app-emulation/wine-d3d9/wine-d3d9-2.4-r1.ebuild  | 3 +--
 app-emulation/wine-d3d9/wine-d3d9-2.5-r1.ebuild  | 3 +--
 app-emulation/wine-d3d9/wine-d3d9-2.6-r1.ebuild  | 3 +--
 app-emulation/wine-d3d9/wine-d3d9-2.7-r1.ebuild  | 3 +--
 app-emulation/wine-d3d9/wine-d3d9-2.8-r1.ebuild  | 3 +--
 app-emulation/wine-d3d9/wine-d3d9-2.9-r1.ebuild  | 3 +--
 app-emulation/wine-d3d9/wine-d3d9-3.10.ebuild| 3 +--
 app-emulation/wine-d3d9/wine-d3d9-3.11.ebuild| 3 +--
 app-emulation/wine-d3d9/wine-d3d9-3.12.ebuild| 3 +--
 app-emulation/wine-d3d9/wine-d3d9-3.13-r1.ebuild | 3 +--
 app-emulation/wine-d3d9/wine-d3d9-3.13.ebuild| 3 +--
 app-emulation/wine-d3d9/wine-d3d9-3.14.ebuild| 3 +--
 app-emulation/wine-d3d9/wine-d3d9-3.15.ebuild| 3 +--
 app-emulation/wine-d3d9/wine-d3d9-3.16.ebuild| 3 +--
 app-emulation/wine-d3d9/wine-d3d9-3.17.ebuild| 3 +--
 app-emulation/wine-d3d9/wine-d3d9-3.18.ebuild| 3 +--
 app-emulation/wine-d3d9/wine-d3d9-3.19.ebuild| 3 +--
 app-emulation/wine-d3d9/wine-d3d9-3.20.ebuild| 3 +--
 app-emulation/wine-d3d9/wine-d3d9-3.21.ebuild| 3 +--
 app-emulation/wine-d3d9/wine-d3d9-3.3.ebuild | 3 +--
 app-emulation/wine-d3d9/wine-d3d9-3.4.ebuild | 3 +--
 app-emulation/wine-d3d9/wine-d3d9-3.5.ebuild | 3 +--
 app-emulation/wine-d3d9/wine-d3d9-3.6.ebuild | 3 +--
 app-emulation/wine-d3d9/wine-d3d9-3.7.ebuild | 3 +--
 app-emulation/wine-d3d9/wine-d3d9-3.8.ebuild | 3 +--
 app-emulation/wine-d3d9/wine-d3d9-3.9.ebuild | 3 +--
 app-emulation/wine-d3d9/wine-d3d9-4.0.ebuild | 3 +--
 app-emulation/wine-d3d9/wine-d3d9-4.1.ebuild | 3 +--
 app-emulation/wine-d3d9/wine-d3d9-.ebuild| 3 +--
 46 files changed, 45 insertions(+), 92 deletions(-)

diff --git a/app-emulation/wine-d3d9/metadata.xml 
b/app-emulation/wine-d3d9/metadata.xml
index 3116c6d..d9232a6 100644
--- a/app-emulation/wine-d3d9/metadata.xml
+++ b/app-emulation/wine-d3d9/metadata.xml
@@ -35,8 +35,6 @@ This variant of the Wine packaging includes the Gallium Nine 
patchset.
Add support for OpenGL in bitmaps using 
libOSMesa
Support packet capture software (e.g. 
wireshark)
Install helpers written in perl 
(winedump/winemaker)
-   Run prelink on DLLs during build;
-   For Gentoo hardened, do not disable if you do not know 
what this means as it can break things at runtime
Pull in sys-auth/rtkit for 
low-latency pulseaudio support
Use Wine to open and run .EXE and .MSI 
files
Add support for NTLM auth. See:

diff --git a/app-emulation/wine-d3d9/wine-d3d9-2.0-r1.ebuild 
b/app-emulation/wine-d3d9/wine-d3d9-2.0-r1.ebuild
index 3e49740..f25dd8b 100644
--- a/app-emulation/wine-d3d9/wine-d3d9-2.0-r1.ebuild
+++ b/app-emulation/wine-d3d9/wine-d3d9-2.0-r1.ebuild
@@ -44,7 +44,7 @@ fi
 
 LICENSE="LGPL-2.1"
 SLOT="${PV}"
-IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags d3d9 dos 
+fontconfig +gecko gphoto2 gsm gstreamer +jpeg +lcms ldap +mono mp3 ncurses 
netapi nls odbc openal opencl +opengl osmesa oss +perl pcap +png prelink 
pulseaudio +realtime +run-exes samba scanner selinux +ssl test +threads 
+truetype udev +udisks v4l +X +xcomposite xinerama +xml"
+IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags d3d9 dos 
+fontconfig +gecko gphoto2 gsm gstreamer +jpeg +lcms ldap +mono mp3 ncurses 
netapi nls odbc openal opencl +opengl osmesa oss +perl pcap +png pulseaudio 
+realtime +run-exes samba scanner selinux +ssl test +threads +truetype udev 
+udisks v4l +X +xcomposite xinerama +xml"
 

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-vanilla/

2022-05-14 Thread Nick Sarnie
commit: 20aae5e8172dd93351e46c635dcc549e9a8a8952
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sat May 14 15:05:06 2022 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sat May 14 15:06:23 2022 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=20aae5e8

app-emulation/wine-vanilla: Build hal

Closes: https://bugs.gentoo.org/844043
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-vanilla/wine-vanilla-7.8.ebuild  | 2 +-
 app-emulation/wine-vanilla/wine-vanilla-.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-emulation/wine-vanilla/wine-vanilla-7.8.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-7.8.ebuild
index 8816e88..d50aedd 100644
--- a/app-emulation/wine-vanilla/wine-vanilla-7.8.ebuild
+++ b/app-emulation/wine-vanilla/wine-vanilla-7.8.ebuild
@@ -398,7 +398,7 @@ multilib_src_configure() {
$(use_with gphoto2 gphoto)
$(use_with gssapi)
$(use_with gstreamer)
-   --disable-hal
+   --enable-hal
$(use_with kerberos krb5)
$(use_with ldap)
# TODO: Will bug 685172 still need special handling?

diff --git a/app-emulation/wine-vanilla/wine-vanilla-.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-.ebuild
index 8816e88..d50aedd 100644
--- a/app-emulation/wine-vanilla/wine-vanilla-.ebuild
+++ b/app-emulation/wine-vanilla/wine-vanilla-.ebuild
@@ -398,7 +398,7 @@ multilib_src_configure() {
$(use_with gphoto2 gphoto)
$(use_with gssapi)
$(use_with gstreamer)
-   --disable-hal
+   --enable-hal
$(use_with kerberos krb5)
$(use_with ldap)
# TODO: Will bug 685172 still need special handling?



[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-staging/

2022-05-14 Thread Nick Sarnie
commit: 2f820d2d2ff42a505bd3bb368dd1a2b04e5d4982
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sat May 14 15:05:56 2022 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sat May 14 15:06:26 2022 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=2f820d2d

app-emulation/wine-staging: Build hal

Bug: https://bugs.gentoo.org/844043
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-staging/wine-staging-7.8.ebuild  | 2 +-
 app-emulation/wine-staging/wine-staging-.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-emulation/wine-staging/wine-staging-7.8.ebuild 
b/app-emulation/wine-staging/wine-staging-7.8.ebuild
index 4929984..a19da0c 100644
--- a/app-emulation/wine-staging/wine-staging-7.8.ebuild
+++ b/app-emulation/wine-staging/wine-staging-7.8.ebuild
@@ -461,7 +461,7 @@ multilib_src_configure() {
$(use_with gphoto2 gphoto)
$(use_with gssapi)
$(use_with gstreamer)
-   --disable-hal
+   --enable-hal
$(use_with kerberos krb5)
$(use_with ldap)
# TODO: Will bug 685172 still need special handling?

diff --git a/app-emulation/wine-staging/wine-staging-.ebuild 
b/app-emulation/wine-staging/wine-staging-.ebuild
index 4929984..a19da0c 100644
--- a/app-emulation/wine-staging/wine-staging-.ebuild
+++ b/app-emulation/wine-staging/wine-staging-.ebuild
@@ -461,7 +461,7 @@ multilib_src_configure() {
$(use_with gphoto2 gphoto)
$(use_with gssapi)
$(use_with gstreamer)
-   --disable-hal
+   --enable-hal
$(use_with kerberos krb5)
$(use_with ldap)
# TODO: Will bug 685172 still need special handling?



[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-vanilla/

2022-05-09 Thread Nick Sarnie
commit: cd8f90b7efd1ea89956a0aa81cf12e223cbaab9e
Author: Nick Sarnie  gentoo  org>
AuthorDate: Mon May  9 22:04:17 2022 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Mon May  9 22:04:17 2022 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=cd8f90b7

app-emulation/wine-vanilla: Remove vkd3d USE

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-vanilla/wine-vanilla-7.8.ebuild  | 7 ++-
 app-emulation/wine-vanilla/wine-vanilla-.ebuild | 7 ++-
 2 files changed, 4 insertions(+), 10 deletions(-)

diff --git a/app-emulation/wine-vanilla/wine-vanilla-7.8.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-7.8.ebuild
index 6376228..8816e88 100644
--- a/app-emulation/wine-vanilla/wine-vanilla-7.8.ebuild
+++ b/app-emulation/wine-vanilla/wine-vanilla-7.8.ebuild
@@ -35,13 +35,12 @@ SRC_URI="${SRC_URI}
 
 LICENSE="LGPL-2.1"
 SLOT="${PV}"
-IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos +fontconfig 
+gecko gphoto2 gssapi gstreamer kerberos ldap mingw +mono mp3 netapi nls odbc 
openal opencl +opengl osmesa oss +perl pcap pulseaudio +realtime +run-exes 
samba scanner sdl selinux +ssl test +threads +truetype udev +udisks +unwind usb 
v4l vkd3d vulkan +X +xcomposite xinerama"
+IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos +fontconfig 
+gecko gphoto2 gssapi gstreamer kerberos ldap mingw +mono mp3 netapi nls odbc 
openal opencl +opengl osmesa oss +perl pcap pulseaudio +realtime +run-exes 
samba scanner sdl selinux +ssl test +threads +truetype udev +udisks +unwind usb 
v4l vulkan +X +xcomposite xinerama"
 REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 )
X? ( truetype )
elibc_glibc? ( threads )
osmesa? ( opengl )
-   test? ( abi_x86_32 )
-   vkd3d? ( vulkan )" # osmesa-opengl #286560 # X-truetype #551124
+   test? ( abi_x86_32 )" # osmesa-opengl #286560 # X-truetype #551124
 
 # FIXME: the test suite is unsuitable for us; many tests require net access
 # or fail due to Xvfb's opengl limitations.
@@ -95,7 +94,6 @@ COMMON_DEPEND="
unwind? ( sys-libs/libunwind[${MULTILIB_USEDEP}] )
usb? ( virtual/libusb:1[${MULTILIB_USEDEP}]  )
v4l? ( media-libs/libv4l[${MULTILIB_USEDEP}] )
-   vkd3d? ( >=app-emulation/vkd3d-1.2[${MULTILIB_USEDEP}] )
vulkan? ( media-libs/vulkan-loader[${MULTILIB_USEDEP}] )
xcomposite? ( x11-libs/libXcomposite[${MULTILIB_USEDEP}] )
xinerama? ( x11-libs/libXinerama[${MULTILIB_USEDEP}] )"
@@ -424,7 +422,6 @@ multilib_src_configure() {
$(use_with unwind)
$(use_with usb)
$(use_with v4l v4l2)
-#  $(use_enable vkd3d)
$(use_with vulkan)
$(use_with X x)
$(use_with X xfixes)

diff --git a/app-emulation/wine-vanilla/wine-vanilla-.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-.ebuild
index 6376228..8816e88 100644
--- a/app-emulation/wine-vanilla/wine-vanilla-.ebuild
+++ b/app-emulation/wine-vanilla/wine-vanilla-.ebuild
@@ -35,13 +35,12 @@ SRC_URI="${SRC_URI}
 
 LICENSE="LGPL-2.1"
 SLOT="${PV}"
-IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos +fontconfig 
+gecko gphoto2 gssapi gstreamer kerberos ldap mingw +mono mp3 netapi nls odbc 
openal opencl +opengl osmesa oss +perl pcap pulseaudio +realtime +run-exes 
samba scanner sdl selinux +ssl test +threads +truetype udev +udisks +unwind usb 
v4l vkd3d vulkan +X +xcomposite xinerama"
+IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos +fontconfig 
+gecko gphoto2 gssapi gstreamer kerberos ldap mingw +mono mp3 netapi nls odbc 
openal opencl +opengl osmesa oss +perl pcap pulseaudio +realtime +run-exes 
samba scanner sdl selinux +ssl test +threads +truetype udev +udisks +unwind usb 
v4l vulkan +X +xcomposite xinerama"
 REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 )
X? ( truetype )
elibc_glibc? ( threads )
osmesa? ( opengl )
-   test? ( abi_x86_32 )
-   vkd3d? ( vulkan )" # osmesa-opengl #286560 # X-truetype #551124
+   test? ( abi_x86_32 )" # osmesa-opengl #286560 # X-truetype #551124
 
 # FIXME: the test suite is unsuitable for us; many tests require net access
 # or fail due to Xvfb's opengl limitations.
@@ -95,7 +94,6 @@ COMMON_DEPEND="
unwind? ( sys-libs/libunwind[${MULTILIB_USEDEP}] )
usb? ( virtual/libusb:1[${MULTILIB_USEDEP}]  )
v4l? ( media-libs/libv4l[${MULTILIB_USEDEP}] )
-   vkd3d? ( >=app-emulation/vkd3d-1.2[${MULTILIB_USEDEP}] )
vulkan? ( media-libs/vulkan-loader[${MULTILIB_USEDEP}] )
xcomposite? ( x11-libs/libXcomposite[${MULTILIB_USEDEP}] )
xinerama? ( x11-libs/libXinerama[${MULTILIB_USEDEP}] )"
@@ -424,7 +422,6 @@ multilib_src_configure() {
$(use_with unwind)
$(use_with usb)
$(use_with v4l v4l2)
-#  $(use_enable vkd3d)
$(use_with vulkan)

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-staging/

2022-05-09 Thread Nick Sarnie
commit: 04958f253000b568cafe05b3c7c07fdf4b391092
Author: Nick Sarnie  gentoo  org>
AuthorDate: Mon May  9 22:07:56 2022 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Mon May  9 22:07:56 2022 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=04958f25

app-emulation/wine-staging: Remove vkd3d USE

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-staging/wine-staging-7.8.ebuild  | 7 ++-
 app-emulation/wine-staging/wine-staging-.ebuild | 7 ++-
 2 files changed, 4 insertions(+), 10 deletions(-)

diff --git a/app-emulation/wine-staging/wine-staging-7.8.ebuild 
b/app-emulation/wine-staging/wine-staging-7.8.ebuild
index 75221ce..4929984 100644
--- a/app-emulation/wine-staging/wine-staging-7.8.ebuild
+++ b/app-emulation/wine-staging/wine-staging-7.8.ebuild
@@ -48,14 +48,13 @@ fi
 
 LICENSE="LGPL-2.1"
 SLOT="${MY_PV}"
-IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos +fontconfig 
+gecko gphoto2 gssapi gstreamer kerberos ldap mingw +mono mp3 netapi nls odbc 
openal opencl +opengl osmesa oss +perl pcap pipelight pulseaudio +realtime 
+run-exes samba scanner sdl selinux +ssl staging test +threads +truetype udev 
+udisks +unwind usb v4l vkd3d vulkan +X +xcomposite xinerama"
+IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos +fontconfig 
+gecko gphoto2 gssapi gstreamer kerberos ldap mingw +mono mp3 netapi nls odbc 
openal opencl +opengl osmesa oss +perl pcap pipelight pulseaudio +realtime 
+run-exes samba scanner sdl selinux +ssl staging test +threads +truetype udev 
+udisks +unwind usb v4l vulkan +X +xcomposite xinerama"
 REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 )
X? ( truetype )
elibc_glibc? ( threads )
osmesa? ( opengl )
pipelight? ( staging )
-   test? ( abi_x86_32 )
-   vkd3d? ( vulkan )" # osmesa-opengl #286560 # X-truetype #551124
+   test? ( abi_x86_32 )" # osmesa-opengl #286560 # X-truetype #551124
 
 # FIXME: the test suite is unsuitable for us; many tests require net access
 # or fail due to Xvfb's opengl limitations.
@@ -110,7 +109,6 @@ COMMON_DEPEND="
unwind? ( sys-libs/libunwind[${MULTILIB_USEDEP}] )
usb? ( virtual/libusb:1[${MULTILIB_USEDEP}]  )
v4l? ( media-libs/libv4l[${MULTILIB_USEDEP}] )
-   vkd3d? ( >=app-emulation/vkd3d-1.2[${MULTILIB_USEDEP}] )
vulkan? ( media-libs/vulkan-loader[${MULTILIB_USEDEP}] )
xcomposite? ( x11-libs/libXcomposite[${MULTILIB_USEDEP}] )
xinerama? ( x11-libs/libXinerama[${MULTILIB_USEDEP}] )"
@@ -487,7 +485,6 @@ multilib_src_configure() {
$(use_with unwind)
$(use_with usb)
$(use_with v4l v4l2)
-#  $(use_enable vkd3d)
$(use_with vulkan)
$(use_with X x)
$(use_with X xfixes)

diff --git a/app-emulation/wine-staging/wine-staging-.ebuild 
b/app-emulation/wine-staging/wine-staging-.ebuild
index 75221ce..4929984 100644
--- a/app-emulation/wine-staging/wine-staging-.ebuild
+++ b/app-emulation/wine-staging/wine-staging-.ebuild
@@ -48,14 +48,13 @@ fi
 
 LICENSE="LGPL-2.1"
 SLOT="${MY_PV}"
-IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos +fontconfig 
+gecko gphoto2 gssapi gstreamer kerberos ldap mingw +mono mp3 netapi nls odbc 
openal opencl +opengl osmesa oss +perl pcap pipelight pulseaudio +realtime 
+run-exes samba scanner sdl selinux +ssl staging test +threads +truetype udev 
+udisks +unwind usb v4l vkd3d vulkan +X +xcomposite xinerama"
+IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos +fontconfig 
+gecko gphoto2 gssapi gstreamer kerberos ldap mingw +mono mp3 netapi nls odbc 
openal opencl +opengl osmesa oss +perl pcap pipelight pulseaudio +realtime 
+run-exes samba scanner sdl selinux +ssl staging test +threads +truetype udev 
+udisks +unwind usb v4l vulkan +X +xcomposite xinerama"
 REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 )
X? ( truetype )
elibc_glibc? ( threads )
osmesa? ( opengl )
pipelight? ( staging )
-   test? ( abi_x86_32 )
-   vkd3d? ( vulkan )" # osmesa-opengl #286560 # X-truetype #551124
+   test? ( abi_x86_32 )" # osmesa-opengl #286560 # X-truetype #551124
 
 # FIXME: the test suite is unsuitable for us; many tests require net access
 # or fail due to Xvfb's opengl limitations.
@@ -110,7 +109,6 @@ COMMON_DEPEND="
unwind? ( sys-libs/libunwind[${MULTILIB_USEDEP}] )
usb? ( virtual/libusb:1[${MULTILIB_USEDEP}]  )
v4l? ( media-libs/libv4l[${MULTILIB_USEDEP}] )
-   vkd3d? ( >=app-emulation/vkd3d-1.2[${MULTILIB_USEDEP}] )
vulkan? ( media-libs/vulkan-loader[${MULTILIB_USEDEP}] )
xcomposite? ( x11-libs/libXcomposite[${MULTILIB_USEDEP}] )
xinerama? ( x11-libs/libXinerama[${MULTILIB_USEDEP}] )"
@@ -487,7 +485,6 @@ multilib_src_configure() {
$(use_with unwind)
$(use_with 

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-vanilla/

2022-05-08 Thread Nick Sarnie
commit: da964d99ac6ce8b48503eb8b283d77130428ccc2
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sun May  8 21:43:25 2022 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sun May  8 21:43:25 2022 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=da964d99

app-emulation/wine-vanilla: Don't pass disable-vkd3d

Closes: https://bugs.gentoo.org/843260
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-vanilla/wine-vanilla-7.8.ebuild  | 2 +-
 app-emulation/wine-vanilla/wine-vanilla-.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-emulation/wine-vanilla/wine-vanilla-7.8.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-7.8.ebuild
index 10954b8..6376228 100644
--- a/app-emulation/wine-vanilla/wine-vanilla-7.8.ebuild
+++ b/app-emulation/wine-vanilla/wine-vanilla-7.8.ebuild
@@ -424,7 +424,7 @@ multilib_src_configure() {
$(use_with unwind)
$(use_with usb)
$(use_with v4l v4l2)
-   $(use_enable vkd3d)
+#  $(use_enable vkd3d)
$(use_with vulkan)
$(use_with X x)
$(use_with X xfixes)

diff --git a/app-emulation/wine-vanilla/wine-vanilla-.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-.ebuild
index 10954b8..6376228 100644
--- a/app-emulation/wine-vanilla/wine-vanilla-.ebuild
+++ b/app-emulation/wine-vanilla/wine-vanilla-.ebuild
@@ -424,7 +424,7 @@ multilib_src_configure() {
$(use_with unwind)
$(use_with usb)
$(use_with v4l v4l2)
-   $(use_enable vkd3d)
+#  $(use_enable vkd3d)
$(use_with vulkan)
$(use_with X x)
$(use_with X xfixes)



[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-staging/

2022-05-08 Thread Nick Sarnie
commit: fa1b7b1597b93421d880db6c622c79b31b3c7804
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sun May  8 21:44:23 2022 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sun May  8 21:44:23 2022 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=fa1b7b15

app-emulation/wine-staging: Don't pass disable-vkd3d

Bug: https://bugs.gentoo.org/843260
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-staging/wine-staging-7.8.ebuild  | 2 +-
 app-emulation/wine-staging/wine-staging-.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-emulation/wine-staging/wine-staging-7.8.ebuild 
b/app-emulation/wine-staging/wine-staging-7.8.ebuild
index 85082a8..75221ce 100644
--- a/app-emulation/wine-staging/wine-staging-7.8.ebuild
+++ b/app-emulation/wine-staging/wine-staging-7.8.ebuild
@@ -487,7 +487,7 @@ multilib_src_configure() {
$(use_with unwind)
$(use_with usb)
$(use_with v4l v4l2)
-   $(use_enable vkd3d)
+#  $(use_enable vkd3d)
$(use_with vulkan)
$(use_with X x)
$(use_with X xfixes)

diff --git a/app-emulation/wine-staging/wine-staging-.ebuild 
b/app-emulation/wine-staging/wine-staging-.ebuild
index 85082a8..75221ce 100644
--- a/app-emulation/wine-staging/wine-staging-.ebuild
+++ b/app-emulation/wine-staging/wine-staging-.ebuild
@@ -487,7 +487,7 @@ multilib_src_configure() {
$(use_with unwind)
$(use_with usb)
$(use_with v4l v4l2)
-   $(use_enable vkd3d)
+#  $(use_enable vkd3d)
$(use_with vulkan)
$(use_with X x)
$(use_with X xfixes)



[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-staging/

2022-05-07 Thread Nick Sarnie
commit: 0acff623dec0f187fdd232e52ba3ece85a4575a5
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sat May  7 19:57:37 2022 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sat May  7 19:58:44 2022 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=0acff623

app-emulation/wine-staging: Fix warnings

Closes: https://bugs.gentoo.org/833298
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-staging/wine-staging-7.4-r1.ebuild | 4 ++--
 app-emulation/wine-staging/wine-staging-7.5-r1.ebuild | 4 ++--
 app-emulation/wine-staging/wine-staging-7.6-r1.ebuild | 4 ++--
 app-emulation/wine-staging/wine-staging-7.7.ebuild| 4 ++--
 app-emulation/wine-staging/wine-staging-7.8.ebuild| 4 ++--
 app-emulation/wine-staging/wine-staging-.ebuild   | 4 ++--
 6 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/app-emulation/wine-staging/wine-staging-7.4-r1.ebuild 
b/app-emulation/wine-staging/wine-staging-7.4-r1.ebuild
index 830aa92..96b1486 100644
--- a/app-emulation/wine-staging/wine-staging-7.4-r1.ebuild
+++ b/app-emulation/wine-staging/wine-staging-7.4-r1.ebuild
@@ -463,7 +463,7 @@ multilib_src_configure() {
$(use_with gphoto2 gphoto)
$(use_with gssapi)
$(use_with gstreamer)
-   --without-hal
+   --disable-hal
$(use_with kerberos krb5)
$(use_with ldap)
# TODO: Will bug 685172 still need special handling?
@@ -487,7 +487,7 @@ multilib_src_configure() {
$(use_with unwind)
$(use_with usb)
$(use_with v4l v4l2)
-   $(use_with vkd3d)
+   $(use_enable vkd3d)
$(use_with vulkan)
$(use_with X x)
$(use_with X xfixes)

diff --git a/app-emulation/wine-staging/wine-staging-7.5-r1.ebuild 
b/app-emulation/wine-staging/wine-staging-7.5-r1.ebuild
index 830aa92..96b1486 100644
--- a/app-emulation/wine-staging/wine-staging-7.5-r1.ebuild
+++ b/app-emulation/wine-staging/wine-staging-7.5-r1.ebuild
@@ -463,7 +463,7 @@ multilib_src_configure() {
$(use_with gphoto2 gphoto)
$(use_with gssapi)
$(use_with gstreamer)
-   --without-hal
+   --disable-hal
$(use_with kerberos krb5)
$(use_with ldap)
# TODO: Will bug 685172 still need special handling?
@@ -487,7 +487,7 @@ multilib_src_configure() {
$(use_with unwind)
$(use_with usb)
$(use_with v4l v4l2)
-   $(use_with vkd3d)
+   $(use_enable vkd3d)
$(use_with vulkan)
$(use_with X x)
$(use_with X xfixes)

diff --git a/app-emulation/wine-staging/wine-staging-7.6-r1.ebuild 
b/app-emulation/wine-staging/wine-staging-7.6-r1.ebuild
index 824150b..85082a8 100644
--- a/app-emulation/wine-staging/wine-staging-7.6-r1.ebuild
+++ b/app-emulation/wine-staging/wine-staging-7.6-r1.ebuild
@@ -463,7 +463,7 @@ multilib_src_configure() {
$(use_with gphoto2 gphoto)
$(use_with gssapi)
$(use_with gstreamer)
-   --without-hal
+   --disable-hal
$(use_with kerberos krb5)
$(use_with ldap)
# TODO: Will bug 685172 still need special handling?
@@ -487,7 +487,7 @@ multilib_src_configure() {
$(use_with unwind)
$(use_with usb)
$(use_with v4l v4l2)
-   $(use_with vkd3d)
+   $(use_enable vkd3d)
$(use_with vulkan)
$(use_with X x)
$(use_with X xfixes)

diff --git a/app-emulation/wine-staging/wine-staging-7.7.ebuild 
b/app-emulation/wine-staging/wine-staging-7.7.ebuild
index 824150b..85082a8 100644
--- a/app-emulation/wine-staging/wine-staging-7.7.ebuild
+++ b/app-emulation/wine-staging/wine-staging-7.7.ebuild
@@ -463,7 +463,7 @@ multilib_src_configure() {
$(use_with gphoto2 gphoto)
$(use_with gssapi)
$(use_with gstreamer)
-   --without-hal
+   --disable-hal
$(use_with kerberos krb5)
$(use_with ldap)
# TODO: Will bug 685172 still need special handling?
@@ -487,7 +487,7 @@ multilib_src_configure() {
$(use_with unwind)
$(use_with usb)
$(use_with v4l v4l2)
-   $(use_with vkd3d)
+   $(use_enable vkd3d)
$(use_with vulkan)
$(use_with X x)
$(use_with X xfixes)

diff --git a/app-emulation/wine-staging/wine-staging-7.8.ebuild 
b/app-emulation/wine-staging/wine-staging-7.8.ebuild
index 824150b..85082a8 100644
--- a/app-emulation/wine-staging/wine-staging-7.8.ebuild
+++ 

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-vanilla/

2022-05-07 Thread Nick Sarnie
commit: af21bf2780bee760e0b95ad00373187b1a745028
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sat May  7 19:51:12 2022 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sat May  7 19:51:12 2022 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=af21bf27

app-emulation/wine-vanilla: Fix warnings

Closes: https://bugs.gentoo.org/843110
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-vanilla/wine-vanilla-7.5-r1.ebuild | 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-7.6-r1.ebuild | 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-7.7.ebuild| 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-7.8.ebuild| 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-.ebuild   | 4 ++--
 5 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/app-emulation/wine-vanilla/wine-vanilla-7.5-r1.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-7.5-r1.ebuild
index e5c2d88..604ac11 100644
--- a/app-emulation/wine-vanilla/wine-vanilla-7.5-r1.ebuild
+++ b/app-emulation/wine-vanilla/wine-vanilla-7.5-r1.ebuild
@@ -400,7 +400,7 @@ multilib_src_configure() {
$(use_with gphoto2 gphoto)
$(use_with gssapi)
$(use_with gstreamer)
-   --without-hal
+   --disable-hal
$(use_with kerberos krb5)
$(use_with ldap)
# TODO: Will bug 685172 still need special handling?
@@ -424,7 +424,7 @@ multilib_src_configure() {
$(use_with unwind)
$(use_with usb)
$(use_with v4l v4l2)
-   $(use_with vkd3d)
+   $(use_enable vkd3d)
$(use_with vulkan)
$(use_with X x)
$(use_with X xfixes)

diff --git a/app-emulation/wine-vanilla/wine-vanilla-7.6-r1.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-7.6-r1.ebuild
index a70732b..10954b8 100644
--- a/app-emulation/wine-vanilla/wine-vanilla-7.6-r1.ebuild
+++ b/app-emulation/wine-vanilla/wine-vanilla-7.6-r1.ebuild
@@ -400,7 +400,7 @@ multilib_src_configure() {
$(use_with gphoto2 gphoto)
$(use_with gssapi)
$(use_with gstreamer)
-   --without-hal
+   --disable-hal
$(use_with kerberos krb5)
$(use_with ldap)
# TODO: Will bug 685172 still need special handling?
@@ -424,7 +424,7 @@ multilib_src_configure() {
$(use_with unwind)
$(use_with usb)
$(use_with v4l v4l2)
-   $(use_with vkd3d)
+   $(use_enable vkd3d)
$(use_with vulkan)
$(use_with X x)
$(use_with X xfixes)

diff --git a/app-emulation/wine-vanilla/wine-vanilla-7.7.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-7.7.ebuild
index a70732b..10954b8 100644
--- a/app-emulation/wine-vanilla/wine-vanilla-7.7.ebuild
+++ b/app-emulation/wine-vanilla/wine-vanilla-7.7.ebuild
@@ -400,7 +400,7 @@ multilib_src_configure() {
$(use_with gphoto2 gphoto)
$(use_with gssapi)
$(use_with gstreamer)
-   --without-hal
+   --disable-hal
$(use_with kerberos krb5)
$(use_with ldap)
# TODO: Will bug 685172 still need special handling?
@@ -424,7 +424,7 @@ multilib_src_configure() {
$(use_with unwind)
$(use_with usb)
$(use_with v4l v4l2)
-   $(use_with vkd3d)
+   $(use_enable vkd3d)
$(use_with vulkan)
$(use_with X x)
$(use_with X xfixes)

diff --git a/app-emulation/wine-vanilla/wine-vanilla-7.8.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-7.8.ebuild
index a70732b..10954b8 100644
--- a/app-emulation/wine-vanilla/wine-vanilla-7.8.ebuild
+++ b/app-emulation/wine-vanilla/wine-vanilla-7.8.ebuild
@@ -400,7 +400,7 @@ multilib_src_configure() {
$(use_with gphoto2 gphoto)
$(use_with gssapi)
$(use_with gstreamer)
-   --without-hal
+   --disable-hal
$(use_with kerberos krb5)
$(use_with ldap)
# TODO: Will bug 685172 still need special handling?
@@ -424,7 +424,7 @@ multilib_src_configure() {
$(use_with unwind)
$(use_with usb)
$(use_with v4l v4l2)
-   $(use_with vkd3d)
+   $(use_enable vkd3d)
$(use_with vulkan)
$(use_with X x)
$(use_with X xfixes)

diff --git a/app-emulation/wine-vanilla/wine-vanilla-.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-.ebuild
index a70732b..10954b8 100644
--- a/app-emulation/wine-vanilla/wine-vanilla-.ebuild
+++ b/app-emulation/wine-vanilla/wine-vanilla-.ebuild
@@ -400,7 +400,7 @@ multilib_src_configure() {
   

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-staging/

2022-05-07 Thread Nick Sarnie
commit: 4db380e58f7df6058105edcee41d033a881b6814
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sat May  7 19:55:57 2022 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sat May  7 19:55:57 2022 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=4db380e5

app-emulation/wine-staging: Version bump

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-staging/Manifest|   2 +
 app-emulation/wine-staging/wine-staging-7.8.ebuild | 617 +
 2 files changed, 619 insertions(+)

diff --git a/app-emulation/wine-staging/Manifest 
b/app-emulation/wine-staging/Manifest
index 4736bf8..e6ccad5 100644
--- a/app-emulation/wine-staging/Manifest
+++ b/app-emulation/wine-staging/Manifest
@@ -84,6 +84,7 @@ DIST wine-7.4.tar.xz 27538164 BLAKE2B 
bad6abb8d6aa5a0f08c64e4a96b5a6f81b129e4c3e
 DIST wine-7.5.tar.xz 27702532 BLAKE2B 
e0490d5ca8ef8dc6de807eea9f06e0dd09512dfa34aebf3a2ccbf610ad78fd09c94e3368f92966a92d80e39cd86da71bcd4a7803e1af9f7f3c8ba4cc33b72447
 SHA512 
70458d702e04075915a97a12c5ebd33ec50cbb094f5f837e6bb498e24ee48630359d819d9689e84d29708398162ca7b8f7737216fb31c350701b66733da98616
 DIST wine-7.6.tar.xz 27674208 BLAKE2B 
9c1abafca0e489876500e4640e6087456f0f93f544fba547541bc454aae5a8cb757454b1c863edc6f70cbd5a8ef848a8bdb3d6f9aaae471b97891a0a188ec640
 SHA512 
7eabae6e40df187da977ff412adda23697f8cd5f6c4e565d3fff74770f13f7c93ca3d81e77a72a1b929d7af675499e72925e4ab2225b5ca13ef0d88baf1f9646
 DIST wine-7.7.tar.xz 27716124 BLAKE2B 
13df0de6b65ec96d99d14f43e5250a105d07414f90388fec6b19ee1a4ac4ba98fde66ed9d1eb966a07c0a2ad37e744d87eb7047b48b92ccee3e3db197730a7f9
 SHA512 
b0185176a1074ff7331a937a2a5a1f0b865f3e38abbe2fdca841b9f14540497bf941a2aa3bf8dc52d19eb848c68974f3ab47b6d0031cbf4eebc8a76b0b1484be
+DIST wine-7.8.tar.xz 27728116 BLAKE2B 
3c878de8377906a687026bf1d5f9167bdce6b13a3d750d2a92fdcf70aed8e3da01560d26e4b075b6564b741996fc2168bb98c409f95618ab9fbb8e8b583a5384
 SHA512 
5e63edabc7dcdce62a1ce683c9ef387a2d801af3a0f99c32daacfea566a3813086f4f5977279c7b7526574f5cd95d052805bd5c145b82221d321d8aa638bfe1d
 DIST wine-staging-150ce22fa21ffa040816e725ead34ed1de516bd8.tar.gz 9840427 
BLAKE2B 
e263d6563a5438973309346ba820acdb5079ef236c5c55694bdfa16c54f3f4fe76750ab324d6c5e1f0b429df634b917f138f4a1db38417ac2b49ce41ee36a211
 SHA512 
37f05909ca6cb28a3527f31882562146d3971f47345312b96783b5e62bc95ee61779f12f4c13e3d05ec5f331463a7600c16d5bc428d13c42bf3e3568f4d3923e
 DIST wine-staging-3f3a05f91c85cb5ccdc4c8185bcc862c6e96cd52.tar.gz 9835238 
BLAKE2B 
27c0e7fe418e7ee82c7b1cfc13c0c1508a7f4637ef7b8d64675ed4038a42961382170c064221a7bad70a4e168aef7d4e33974d06afc18fc6da4cf5db047b242e
 SHA512 
b2ad84bed89e713f4dc4f01763c40dc785f39f180a8f926c1b9e944a581ffcfd5c422427314201df1359b4b1c27dc2261281353f44ae9408e800d6add7bde366
 DIST wine-staging-4.0.tar.gz 9945756 BLAKE2B 
bfd27d5677d01b4a14c4ef593b741b6fa6e75194de04a90659ecceaa8b087d594cafdd0a53cc2ad2d05e9c73928d70d0b6681ac0052df79f7b45cbb370b31d3d
 SHA512 
4c2277449be17b83235bab7898818a886e84e82c0c5eb8216a5bc42e3d9a0e1dcf09d4522e1165d503fd9237673fa91c2c07d837cde58897f1b6fc8bc6fa5d33
@@ -161,3 +162,4 @@ DIST wine-staging-7.4.tar.gz 9669176 BLAKE2B 
b689ace69e9599aada78dacf7f64cc126d0
 DIST wine-staging-7.5.tar.gz 9669503 BLAKE2B 
dbc307bebd50f67ea7718d1409734cc724551f1ca5ea359dd0eeb050bb5a74deb1f5732cff74dd07526f719a1ab342ae821d5ecba850f2e1c684256586205668
 SHA512 
138456d1fd76fa433afe01cd1d2cadb88c631277f69734641f1136795f0761a68fdfc564b9da90a342ff42e82f04436b70bb57913f92417b14e24cd7720a7b90
 DIST wine-staging-7.6.tar.gz 9668909 BLAKE2B 
aa7860c22b10cf7aa29fa5903e5628cd36bf8b8488fc5909b92a462ddfa134a44cd2f85e2396266127d442dc38e172b94dac145507a4f84e0867436b112a16a4
 SHA512 
83bc03e7f8ee4bf21465d05de22449f26480675129b6b533865c31505e09144554c2d14cfa5c9b867d3ba4273e5acd4589d32231f79a15f3f0e8b3493d32b50d
 DIST wine-staging-7.7.tar.gz 9669097 BLAKE2B 
343c361d622ca5bee41d26b353ec9cbcc78105231e0e99d52419b560570a92bfcbc6fd0f8630d929d15dc2c3c09c302e74f5661dc84b867eaf3b6050d277b893
 SHA512 
9047a432a932474a2de3c808015b2466f6c8acea3ac3201b4b9b496f49667c7716245724b05ba98e03e1c2825d83c226f441ba1de917814dbb61959cdf98ff27
+DIST wine-staging-7.8.tar.gz 9658435 BLAKE2B 
0c089cd1498a5d8d90bbcabf8c3b2176bc1f0c4717c6f7d1f6dcadfdaa0d52b0fdfd3c150de0da3626085e05fdb49343739950558bf47eff96f77f6a1464
 SHA512 
86f514a60d6f7ed612189a6834a18265a7551f3358903a3d67413d81d134c98f2aa7e4f79682be1a75d7bec194c4ca0bbf5d10c6e10277d451cd4aa332cc20ed

diff --git a/app-emulation/wine-staging/wine-staging-7.8.ebuild 
b/app-emulation/wine-staging/wine-staging-7.8.ebuild
new file mode 100644
index 000..824150b
--- /dev/null
+++ b/app-emulation/wine-staging/wine-staging-7.8.ebuild
@@ -0,0 +1,617 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PLOCALES="ar ast bg ca cs da de el en en_US eo es fa fi fr he hi hr hu it ja 
ko lt ml nb_NO nl or pa pl pt_BR pt_PT rm 

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-vanilla/

2022-05-07 Thread Nick Sarnie
commit: 373d18e19f61363c79a74ce51f1220838fa8059c
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sat May  7 19:49:29 2022 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sat May  7 19:49:29 2022 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=373d18e1

app-emulation/wine-vanilla: Version bump

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-vanilla/Manifest|   1 +
 app-emulation/wine-vanilla/wine-vanilla-7.8.ebuild | 542 +
 2 files changed, 543 insertions(+)

diff --git a/app-emulation/wine-vanilla/Manifest 
b/app-emulation/wine-vanilla/Manifest
index 528c87e..bf91490 100644
--- a/app-emulation/wine-vanilla/Manifest
+++ b/app-emulation/wine-vanilla/Manifest
@@ -91,3 +91,4 @@ DIST wine-7.4.tar.xz 27538164 BLAKE2B 
bad6abb8d6aa5a0f08c64e4a96b5a6f81b129e4c3e
 DIST wine-7.5.tar.xz 27702532 BLAKE2B 
e0490d5ca8ef8dc6de807eea9f06e0dd09512dfa34aebf3a2ccbf610ad78fd09c94e3368f92966a92d80e39cd86da71bcd4a7803e1af9f7f3c8ba4cc33b72447
 SHA512 
70458d702e04075915a97a12c5ebd33ec50cbb094f5f837e6bb498e24ee48630359d819d9689e84d29708398162ca7b8f7737216fb31c350701b66733da98616
 DIST wine-7.6.tar.xz 27674208 BLAKE2B 
9c1abafca0e489876500e4640e6087456f0f93f544fba547541bc454aae5a8cb757454b1c863edc6f70cbd5a8ef848a8bdb3d6f9aaae471b97891a0a188ec640
 SHA512 
7eabae6e40df187da977ff412adda23697f8cd5f6c4e565d3fff74770f13f7c93ca3d81e77a72a1b929d7af675499e72925e4ab2225b5ca13ef0d88baf1f9646
 DIST wine-7.7.tar.xz 27716124 BLAKE2B 
13df0de6b65ec96d99d14f43e5250a105d07414f90388fec6b19ee1a4ac4ba98fde66ed9d1eb966a07c0a2ad37e744d87eb7047b48b92ccee3e3db197730a7f9
 SHA512 
b0185176a1074ff7331a937a2a5a1f0b865f3e38abbe2fdca841b9f14540497bf941a2aa3bf8dc52d19eb848c68974f3ab47b6d0031cbf4eebc8a76b0b1484be
+DIST wine-7.8.tar.xz 27728116 BLAKE2B 
3c878de8377906a687026bf1d5f9167bdce6b13a3d750d2a92fdcf70aed8e3da01560d26e4b075b6564b741996fc2168bb98c409f95618ab9fbb8e8b583a5384
 SHA512 
5e63edabc7dcdce62a1ce683c9ef387a2d801af3a0f99c32daacfea566a3813086f4f5977279c7b7526574f5cd95d052805bd5c145b82221d321d8aa638bfe1d

diff --git a/app-emulation/wine-vanilla/wine-vanilla-7.8.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-7.8.ebuild
new file mode 100644
index 000..a70732b
--- /dev/null
+++ b/app-emulation/wine-vanilla/wine-vanilla-7.8.ebuild
@@ -0,0 +1,542 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PLOCALES="ar ast bg ca cs da de el en en_US eo es fa fi fr he hi hr hu it ja 
ko lt ml nb_NO nl or pa pl pt_BR pt_PT rm ro ru si sk sl sr_RS@cyrillic 
sr_RS@latin sv ta te th tr uk wa zh_CN zh_TW"
+PLOCALE_BACKUP="en"
+
+inherit autotools estack flag-o-matic multilib-minimal pax-utils plocale 
toolchain-funcs virtualx wrapper xdg-utils
+
+MY_PN="${PN%%-*}"
+MY_P="${MY_PN}-${PV}"
+
+if [[ ${PV} == "" ]] ; then
+   EGIT_REPO_URI="https://source.winehq.org/git/wine.git;
+   EGIT_BRANCH="master"
+   inherit git-r3
+   SRC_URI=""
+   #KEYWORDS=""
+else
+   MAJOR_V=$(ver_cut 1)
+   SRC_URI="https://dl.winehq.org/wine/source/${MAJOR_V}.x/${MY_P}.tar.xz;
+   KEYWORDS="-* ~amd64 ~x86"
+fi
+S="${WORKDIR}/${MY_P}"
+
+GWP_V="20211122"
+PATCHDIR="${WORKDIR}/gentoo-wine-patches"
+
+DESCRIPTION="Free implementation of Windows(tm) on Unix, without external 
patchsets"
+HOMEPAGE="https://www.winehq.org/;
+SRC_URI="${SRC_URI}
+   
https://dev.gentoo.org/~sarnex/distfiles/wine/gentoo-wine-patches-${GWP_V}.tar.xz
+"
+
+LICENSE="LGPL-2.1"
+SLOT="${PV}"
+IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos +fontconfig 
+gecko gphoto2 gssapi gstreamer kerberos ldap mingw +mono mp3 netapi nls odbc 
openal opencl +opengl osmesa oss +perl pcap pulseaudio +realtime +run-exes 
samba scanner sdl selinux +ssl test +threads +truetype udev +udisks +unwind usb 
v4l vkd3d vulkan +X +xcomposite xinerama"
+REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 )
+   X? ( truetype )
+   elibc_glibc? ( threads )
+   osmesa? ( opengl )
+   test? ( abi_x86_32 )
+   vkd3d? ( vulkan )" # osmesa-opengl #286560 # X-truetype #551124
+
+# FIXME: the test suite is unsuitable for us; many tests require net access
+# or fail due to Xvfb's opengl limitations.
+RESTRICT="test"
+
+BDEPEND="sys-devel/flex
+   virtual/yacc
+   virtual/pkgconfig"
+
+COMMON_DEPEND="
+   X? (
+   x11-libs/libXcursor[${MULTILIB_USEDEP}]
+   x11-libs/libXext[${MULTILIB_USEDEP}]
+   x11-libs/libXfixes[${MULTILIB_USEDEP}]
+   x11-libs/libXrandr[${MULTILIB_USEDEP}]
+   x11-libs/libXi[${MULTILIB_USEDEP}]
+   x11-libs/libXxf86vm[${MULTILIB_USEDEP}]
+   )
+   alsa? ( media-libs/alsa-lib[${MULTILIB_USEDEP}] )
+   capi? ( net-libs/libcapi[${MULTILIB_USEDEP}] )
+   cups? ( net-print/cups:=[${MULTILIB_USEDEP}] )
+   fontconfig? ( media-libs/fontconfig:=[${MULTILIB_USEDEP}] )
+

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-staging/

2022-04-23 Thread Nick Sarnie
commit: 844b61d4693571d81576f9c445ccdd1697efc2c2
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sat Apr 23 14:47:16 2022 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sat Apr 23 14:47:21 2022 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=844b61d4

app-emulation/wine-staging: Version bump

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-staging/Manifest|   2 +
 app-emulation/wine-staging/wine-staging-7.7.ebuild | 617 +
 2 files changed, 619 insertions(+)

diff --git a/app-emulation/wine-staging/Manifest 
b/app-emulation/wine-staging/Manifest
index 308434e..4736bf8 100644
--- a/app-emulation/wine-staging/Manifest
+++ b/app-emulation/wine-staging/Manifest
@@ -83,6 +83,7 @@ DIST wine-7.3.tar.xz 27221860 BLAKE2B 
f6841f12f23bc9afb47f797ebf538e87a2453d76ac
 DIST wine-7.4.tar.xz 27538164 BLAKE2B 
bad6abb8d6aa5a0f08c64e4a96b5a6f81b129e4c3e9ef0b5df624e2f2475c29060551ccca44ce9bdd52158710e819f505e1eb824692b107c99f7808bb6d1
 SHA512 
ed3e08e27ea2dbec1e317aad37bd7e3a501363dc8a5d823f9db29039006aaac6b9bfb2552aa85ae3f5678ff721e2dacb534d3b7d6ed0b959b0e5431192d03736
 DIST wine-7.5.tar.xz 27702532 BLAKE2B 
e0490d5ca8ef8dc6de807eea9f06e0dd09512dfa34aebf3a2ccbf610ad78fd09c94e3368f92966a92d80e39cd86da71bcd4a7803e1af9f7f3c8ba4cc33b72447
 SHA512 
70458d702e04075915a97a12c5ebd33ec50cbb094f5f837e6bb498e24ee48630359d819d9689e84d29708398162ca7b8f7737216fb31c350701b66733da98616
 DIST wine-7.6.tar.xz 27674208 BLAKE2B 
9c1abafca0e489876500e4640e6087456f0f93f544fba547541bc454aae5a8cb757454b1c863edc6f70cbd5a8ef848a8bdb3d6f9aaae471b97891a0a188ec640
 SHA512 
7eabae6e40df187da977ff412adda23697f8cd5f6c4e565d3fff74770f13f7c93ca3d81e77a72a1b929d7af675499e72925e4ab2225b5ca13ef0d88baf1f9646
+DIST wine-7.7.tar.xz 27716124 BLAKE2B 
13df0de6b65ec96d99d14f43e5250a105d07414f90388fec6b19ee1a4ac4ba98fde66ed9d1eb966a07c0a2ad37e744d87eb7047b48b92ccee3e3db197730a7f9
 SHA512 
b0185176a1074ff7331a937a2a5a1f0b865f3e38abbe2fdca841b9f14540497bf941a2aa3bf8dc52d19eb848c68974f3ab47b6d0031cbf4eebc8a76b0b1484be
 DIST wine-staging-150ce22fa21ffa040816e725ead34ed1de516bd8.tar.gz 9840427 
BLAKE2B 
e263d6563a5438973309346ba820acdb5079ef236c5c55694bdfa16c54f3f4fe76750ab324d6c5e1f0b429df634b917f138f4a1db38417ac2b49ce41ee36a211
 SHA512 
37f05909ca6cb28a3527f31882562146d3971f47345312b96783b5e62bc95ee61779f12f4c13e3d05ec5f331463a7600c16d5bc428d13c42bf3e3568f4d3923e
 DIST wine-staging-3f3a05f91c85cb5ccdc4c8185bcc862c6e96cd52.tar.gz 9835238 
BLAKE2B 
27c0e7fe418e7ee82c7b1cfc13c0c1508a7f4637ef7b8d64675ed4038a42961382170c064221a7bad70a4e168aef7d4e33974d06afc18fc6da4cf5db047b242e
 SHA512 
b2ad84bed89e713f4dc4f01763c40dc785f39f180a8f926c1b9e944a581ffcfd5c422427314201df1359b4b1c27dc2261281353f44ae9408e800d6add7bde366
 DIST wine-staging-4.0.tar.gz 9945756 BLAKE2B 
bfd27d5677d01b4a14c4ef593b741b6fa6e75194de04a90659ecceaa8b087d594cafdd0a53cc2ad2d05e9c73928d70d0b6681ac0052df79f7b45cbb370b31d3d
 SHA512 
4c2277449be17b83235bab7898818a886e84e82c0c5eb8216a5bc42e3d9a0e1dcf09d4522e1165d503fd9237673fa91c2c07d837cde58897f1b6fc8bc6fa5d33
@@ -159,3 +160,4 @@ DIST wine-staging-7.3.tar.gz 9668058 BLAKE2B 
9721fac9728f883309d430fa51221de31d6
 DIST wine-staging-7.4.tar.gz 9669176 BLAKE2B 
b689ace69e9599aada78dacf7f64cc126d0c488d8cbeb6b874d4fa0ba92dfdace88d3a6fd84aceb76a39749fb872d6d23f57044d406944634a24fc77577cc593
 SHA512 
15e1cbb121b9dfb19ef3754e51f21cb42925daae6e8bf09d192cb46139bee3c3c3fcbb9172e88695a0afaf9f788751d5f8d2055f316972e3efc536570d4401ba
 DIST wine-staging-7.5.tar.gz 9669503 BLAKE2B 
dbc307bebd50f67ea7718d1409734cc724551f1ca5ea359dd0eeb050bb5a74deb1f5732cff74dd07526f719a1ab342ae821d5ecba850f2e1c684256586205668
 SHA512 
138456d1fd76fa433afe01cd1d2cadb88c631277f69734641f1136795f0761a68fdfc564b9da90a342ff42e82f04436b70bb57913f92417b14e24cd7720a7b90
 DIST wine-staging-7.6.tar.gz 9668909 BLAKE2B 
aa7860c22b10cf7aa29fa5903e5628cd36bf8b8488fc5909b92a462ddfa134a44cd2f85e2396266127d442dc38e172b94dac145507a4f84e0867436b112a16a4
 SHA512 
83bc03e7f8ee4bf21465d05de22449f26480675129b6b533865c31505e09144554c2d14cfa5c9b867d3ba4273e5acd4589d32231f79a15f3f0e8b3493d32b50d
+DIST wine-staging-7.7.tar.gz 9669097 BLAKE2B 
343c361d622ca5bee41d26b353ec9cbcc78105231e0e99d52419b560570a92bfcbc6fd0f8630d929d15dc2c3c09c302e74f5661dc84b867eaf3b6050d277b893
 SHA512 
9047a432a932474a2de3c808015b2466f6c8acea3ac3201b4b9b496f49667c7716245724b05ba98e03e1c2825d83c226f441ba1de917814dbb61959cdf98ff27

diff --git a/app-emulation/wine-staging/wine-staging-7.7.ebuild 
b/app-emulation/wine-staging/wine-staging-7.7.ebuild
new file mode 100644
index 000..36349d1
--- /dev/null
+++ b/app-emulation/wine-staging/wine-staging-7.7.ebuild
@@ -0,0 +1,617 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PLOCALES="ar ast bg ca cs da de el en en_US eo es fa fi fr he hi hr hu it ja 
ko lt ml nb_NO nl or pa pl pt_BR pt_PT rm 

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-vanilla/

2022-04-23 Thread Nick Sarnie
commit: 9b1335d454bc2c0a83b062c78f1cfd57c77fd9ed
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sat Apr 23 14:46:01 2022 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sat Apr 23 14:46:09 2022 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=9b1335d4

app-emulation/wine-vanilla: Version bump

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-vanilla/Manifest|   1 +
 app-emulation/wine-vanilla/wine-vanilla-7.7.ebuild | 542 +
 2 files changed, 543 insertions(+)

diff --git a/app-emulation/wine-vanilla/Manifest 
b/app-emulation/wine-vanilla/Manifest
index d42b7e5..528c87e 100644
--- a/app-emulation/wine-vanilla/Manifest
+++ b/app-emulation/wine-vanilla/Manifest
@@ -90,3 +90,4 @@ DIST wine-7.3.tar.xz 27221860 BLAKE2B 
f6841f12f23bc9afb47f797ebf538e87a2453d76ac
 DIST wine-7.4.tar.xz 27538164 BLAKE2B 
bad6abb8d6aa5a0f08c64e4a96b5a6f81b129e4c3e9ef0b5df624e2f2475c29060551ccca44ce9bdd52158710e819f505e1eb824692b107c99f7808bb6d1
 SHA512 
ed3e08e27ea2dbec1e317aad37bd7e3a501363dc8a5d823f9db29039006aaac6b9bfb2552aa85ae3f5678ff721e2dacb534d3b7d6ed0b959b0e5431192d03736
 DIST wine-7.5.tar.xz 27702532 BLAKE2B 
e0490d5ca8ef8dc6de807eea9f06e0dd09512dfa34aebf3a2ccbf610ad78fd09c94e3368f92966a92d80e39cd86da71bcd4a7803e1af9f7f3c8ba4cc33b72447
 SHA512 
70458d702e04075915a97a12c5ebd33ec50cbb094f5f837e6bb498e24ee48630359d819d9689e84d29708398162ca7b8f7737216fb31c350701b66733da98616
 DIST wine-7.6.tar.xz 27674208 BLAKE2B 
9c1abafca0e489876500e4640e6087456f0f93f544fba547541bc454aae5a8cb757454b1c863edc6f70cbd5a8ef848a8bdb3d6f9aaae471b97891a0a188ec640
 SHA512 
7eabae6e40df187da977ff412adda23697f8cd5f6c4e565d3fff74770f13f7c93ca3d81e77a72a1b929d7af675499e72925e4ab2225b5ca13ef0d88baf1f9646
+DIST wine-7.7.tar.xz 27716124 BLAKE2B 
13df0de6b65ec96d99d14f43e5250a105d07414f90388fec6b19ee1a4ac4ba98fde66ed9d1eb966a07c0a2ad37e744d87eb7047b48b92ccee3e3db197730a7f9
 SHA512 
b0185176a1074ff7331a937a2a5a1f0b865f3e38abbe2fdca841b9f14540497bf941a2aa3bf8dc52d19eb848c68974f3ab47b6d0031cbf4eebc8a76b0b1484be

diff --git a/app-emulation/wine-vanilla/wine-vanilla-7.7.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-7.7.ebuild
new file mode 100644
index 000..6792e52
--- /dev/null
+++ b/app-emulation/wine-vanilla/wine-vanilla-7.7.ebuild
@@ -0,0 +1,542 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PLOCALES="ar ast bg ca cs da de el en en_US eo es fa fi fr he hi hr hu it ja 
ko lt ml nb_NO nl or pa pl pt_BR pt_PT rm ro ru si sk sl sr_RS@cyrillic 
sr_RS@latin sv ta te th tr uk wa zh_CN zh_TW"
+PLOCALE_BACKUP="en"
+
+inherit autotools estack flag-o-matic multilib-minimal pax-utils plocale 
toolchain-funcs virtualx wrapper xdg-utils
+
+MY_PN="${PN%%-*}"
+MY_P="${MY_PN}-${PV}"
+
+if [[ ${PV} == "" ]] ; then
+   EGIT_REPO_URI="https://source.winehq.org/git/wine.git;
+   EGIT_BRANCH="master"
+   inherit git-r3
+   SRC_URI=""
+   #KEYWORDS=""
+else
+   MAJOR_V=$(ver_cut 1)
+   SRC_URI="https://dl.winehq.org/wine/source/${MAJOR_V}.x/${MY_P}.tar.xz;
+   KEYWORDS="-* ~amd64 ~x86"
+fi
+S="${WORKDIR}/${MY_P}"
+
+GWP_V="20211122"
+PATCHDIR="${WORKDIR}/gentoo-wine-patches"
+
+DESCRIPTION="Free implementation of Windows(tm) on Unix, without external 
patchsets"
+HOMEPAGE="https://www.winehq.org/;
+SRC_URI="${SRC_URI}
+   
https://dev.gentoo.org/~sarnex/distfiles/wine/gentoo-wine-patches-${GWP_V}.tar.xz
+"
+
+LICENSE="LGPL-2.1"
+SLOT="${PV}"
+IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos +fontconfig 
+gecko gphoto2 gssapi gstreamer kerberos ldap mingw +mono mp3 netapi nls odbc 
openal opencl +opengl osmesa oss +perl pcap pulseaudio +realtime +run-exes 
samba scanner sdl selinux +ssl test +threads +truetype udev +udisks +unwind usb 
v4l vkd3d vulkan +X +xcomposite xinerama"
+REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 )
+   X? ( truetype )
+   elibc_glibc? ( threads )
+   osmesa? ( opengl )
+   test? ( abi_x86_32 )
+   vkd3d? ( vulkan )" # osmesa-opengl #286560 # X-truetype #551124
+
+# FIXME: the test suite is unsuitable for us; many tests require net access
+# or fail due to Xvfb's opengl limitations.
+RESTRICT="test"
+
+BDEPEND="sys-devel/flex
+   virtual/yacc
+   virtual/pkgconfig"
+
+COMMON_DEPEND="
+   X? (
+   x11-libs/libXcursor[${MULTILIB_USEDEP}]
+   x11-libs/libXext[${MULTILIB_USEDEP}]
+   x11-libs/libXfixes[${MULTILIB_USEDEP}]
+   x11-libs/libXrandr[${MULTILIB_USEDEP}]
+   x11-libs/libXi[${MULTILIB_USEDEP}]
+   x11-libs/libXxf86vm[${MULTILIB_USEDEP}]
+   )
+   alsa? ( media-libs/alsa-lib[${MULTILIB_USEDEP}] )
+   capi? ( net-libs/libcapi[${MULTILIB_USEDEP}] )
+   cups? ( net-print/cups:=[${MULTILIB_USEDEP}] )
+   fontconfig? ( media-libs/fontconfig:=[${MULTILIB_USEDEP}] )
+

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-staging/

2022-04-18 Thread Nick Sarnie
commit: 444f9ded39014e49d49514abcb919483bffcfe2f
Author: Nick Sarnie  gentoo  org>
AuthorDate: Mon Apr 18 19:15:07 2022 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Mon Apr 18 19:15:11 2022 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=444f9ded

app-emulation/wine-staging: Remove blockers

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 .../{wine-staging-7.3.ebuild => wine-staging-7.3-r1.ebuild}| 3 +--
 .../{wine-staging-7.4.ebuild => wine-staging-7.4-r1.ebuild}| 3 +--
 .../{wine-staging-7.5.ebuild => wine-staging-7.5-r1.ebuild}| 3 +--
 .../{wine-staging-7.6.ebuild => wine-staging-7.6-r1.ebuild}| 3 +--
 app-emulation/wine-staging/wine-staging-.ebuild| 3 +--
 5 files changed, 5 insertions(+), 10 deletions(-)

diff --git a/app-emulation/wine-staging/wine-staging-7.3.ebuild 
b/app-emulation/wine-staging/wine-staging-7.3-r1.ebuild
similarity index 99%
rename from app-emulation/wine-staging/wine-staging-7.3.ebuild
rename to app-emulation/wine-staging/wine-staging-7.3-r1.ebuild
index 700f678..4eff54a 100644
--- a/app-emulation/wine-staging/wine-staging-7.3.ebuild
+++ b/app-emulation/wine-staging/wine-staging-7.3-r1.ebuild
@@ -61,8 +61,7 @@ REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 )
 # or fail due to Xvfb's opengl limitations.
 RESTRICT="test"
 
-BDEPEND="mingw? ( !!>=cross-i686-w64-mingw32/binutils-2.38 
!!>=cross-x86_64-w64-mingw32/binutils-2.38 )
-   sys-devel/flex
+BDEPEND="sys-devel/flex
virtual/yacc
virtual/pkgconfig"
 

diff --git a/app-emulation/wine-staging/wine-staging-7.4.ebuild 
b/app-emulation/wine-staging/wine-staging-7.4-r1.ebuild
similarity index 99%
rename from app-emulation/wine-staging/wine-staging-7.4.ebuild
rename to app-emulation/wine-staging/wine-staging-7.4-r1.ebuild
index 700f678..4eff54a 100644
--- a/app-emulation/wine-staging/wine-staging-7.4.ebuild
+++ b/app-emulation/wine-staging/wine-staging-7.4-r1.ebuild
@@ -61,8 +61,7 @@ REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 )
 # or fail due to Xvfb's opengl limitations.
 RESTRICT="test"
 
-BDEPEND="mingw? ( !!>=cross-i686-w64-mingw32/binutils-2.38 
!!>=cross-x86_64-w64-mingw32/binutils-2.38 )
-   sys-devel/flex
+BDEPEND="sys-devel/flex
virtual/yacc
virtual/pkgconfig"
 

diff --git a/app-emulation/wine-staging/wine-staging-7.5.ebuild 
b/app-emulation/wine-staging/wine-staging-7.5-r1.ebuild
similarity index 99%
rename from app-emulation/wine-staging/wine-staging-7.5.ebuild
rename to app-emulation/wine-staging/wine-staging-7.5-r1.ebuild
index 700f678..4eff54a 100644
--- a/app-emulation/wine-staging/wine-staging-7.5.ebuild
+++ b/app-emulation/wine-staging/wine-staging-7.5-r1.ebuild
@@ -61,8 +61,7 @@ REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 )
 # or fail due to Xvfb's opengl limitations.
 RESTRICT="test"
 
-BDEPEND="mingw? ( !!>=cross-i686-w64-mingw32/binutils-2.38 
!!>=cross-x86_64-w64-mingw32/binutils-2.38 )
-   sys-devel/flex
+BDEPEND="sys-devel/flex
virtual/yacc
virtual/pkgconfig"
 

diff --git a/app-emulation/wine-staging/wine-staging-7.6.ebuild 
b/app-emulation/wine-staging/wine-staging-7.6-r1.ebuild
similarity index 99%
rename from app-emulation/wine-staging/wine-staging-7.6.ebuild
rename to app-emulation/wine-staging/wine-staging-7.6-r1.ebuild
index 247c7d6..36349d1 100644
--- a/app-emulation/wine-staging/wine-staging-7.6.ebuild
+++ b/app-emulation/wine-staging/wine-staging-7.6-r1.ebuild
@@ -61,8 +61,7 @@ REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 )
 # or fail due to Xvfb's opengl limitations.
 RESTRICT="test"
 
-BDEPEND="mingw? ( !!>=cross-i686-w64-mingw32/binutils-2.38 
!!>=cross-x86_64-w64-mingw32/binutils-2.38 )
-   sys-devel/flex
+BDEPEND="sys-devel/flex
virtual/yacc
virtual/pkgconfig"
 

diff --git a/app-emulation/wine-staging/wine-staging-.ebuild 
b/app-emulation/wine-staging/wine-staging-.ebuild
index 247c7d6..36349d1 100644
--- a/app-emulation/wine-staging/wine-staging-.ebuild
+++ b/app-emulation/wine-staging/wine-staging-.ebuild
@@ -61,8 +61,7 @@ REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 )
 # or fail due to Xvfb's opengl limitations.
 RESTRICT="test"
 
-BDEPEND="mingw? ( !!>=cross-i686-w64-mingw32/binutils-2.38 
!!>=cross-x86_64-w64-mingw32/binutils-2.38 )
-   sys-devel/flex
+BDEPEND="sys-devel/flex
virtual/yacc
virtual/pkgconfig"
 



[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-vanilla/

2022-04-18 Thread Nick Sarnie
commit: 9821b60f70dd562030560979972c51d63d615251
Author: Nick Sarnie  gentoo  org>
AuthorDate: Mon Apr 18 19:11:12 2022 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Mon Apr 18 19:11:12 2022 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=9821b60f

app-emulation/wine-vanilla: Remove blockers

Package-Manager: Portage-3.0.30, Repoman-3.0.3
RepoMan-Options: --force
Signed-off-by: Nick Sarnie  gentoo.org>

 .../{wine-vanilla-7.0-r1.ebuild => wine-vanilla-7.0-r2.ebuild} | 3 +--
 .../{wine-vanilla-7.3.ebuild => wine-vanilla-7.3-r1.ebuild}| 3 +--
 .../{wine-vanilla-7.4.ebuild => wine-vanilla-7.4-r1.ebuild}| 3 +--
 .../{wine-vanilla-7.5.ebuild => wine-vanilla-7.5-r1.ebuild}| 3 +--
 .../{wine-vanilla-7.6.ebuild => wine-vanilla-7.6-r1.ebuild}| 3 +--
 app-emulation/wine-vanilla/wine-vanilla-.ebuild| 3 +--
 6 files changed, 6 insertions(+), 12 deletions(-)

diff --git a/app-emulation/wine-vanilla/wine-vanilla-7.0-r1.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-7.0-r2.ebuild
similarity index 99%
rename from app-emulation/wine-vanilla/wine-vanilla-7.0-r1.ebuild
rename to app-emulation/wine-vanilla/wine-vanilla-7.0-r2.ebuild
index 96af88c..5a67b90 100644
--- a/app-emulation/wine-vanilla/wine-vanilla-7.0-r1.ebuild
+++ b/app-emulation/wine-vanilla/wine-vanilla-7.0-r2.ebuild
@@ -47,8 +47,7 @@ REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 )
 # or fail due to Xvfb's opengl limitations.
 RESTRICT="test"
 
-BDEPEND="mingw? ( !!>=cross-i686-w64-mingw32/binutils-2.38 
!!>=cross-x86_64-w64-mingw32/binutils-2.38 )
-   sys-devel/flex
+BDEPEND="sys-devel/flex
virtual/yacc
virtual/pkgconfig"
 

diff --git a/app-emulation/wine-vanilla/wine-vanilla-7.3.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-7.3-r1.ebuild
similarity index 99%
rename from app-emulation/wine-vanilla/wine-vanilla-7.3.ebuild
rename to app-emulation/wine-vanilla/wine-vanilla-7.3-r1.ebuild
index 35e003d..0ebb925 100644
--- a/app-emulation/wine-vanilla/wine-vanilla-7.3.ebuild
+++ b/app-emulation/wine-vanilla/wine-vanilla-7.3-r1.ebuild
@@ -47,8 +47,7 @@ REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 )
 # or fail due to Xvfb's opengl limitations.
 RESTRICT="test"
 
-BDEPEND="mingw? ( !!>=cross-i686-w64-mingw32/binutils-2.38 
!!>=cross-x86_64-w64-mingw32/binutils-2.38 )
-   sys-devel/flex
+BDEPEND="sys-devel/flex
virtual/yacc
virtual/pkgconfig"
 

diff --git a/app-emulation/wine-vanilla/wine-vanilla-7.4.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-7.4-r1.ebuild
similarity index 99%
rename from app-emulation/wine-vanilla/wine-vanilla-7.4.ebuild
rename to app-emulation/wine-vanilla/wine-vanilla-7.4-r1.ebuild
index 35e003d..0ebb925 100644
--- a/app-emulation/wine-vanilla/wine-vanilla-7.4.ebuild
+++ b/app-emulation/wine-vanilla/wine-vanilla-7.4-r1.ebuild
@@ -47,8 +47,7 @@ REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 )
 # or fail due to Xvfb's opengl limitations.
 RESTRICT="test"
 
-BDEPEND="mingw? ( !!>=cross-i686-w64-mingw32/binutils-2.38 
!!>=cross-x86_64-w64-mingw32/binutils-2.38 )
-   sys-devel/flex
+BDEPEND="sys-devel/flex
virtual/yacc
virtual/pkgconfig"
 

diff --git a/app-emulation/wine-vanilla/wine-vanilla-7.5.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-7.5-r1.ebuild
similarity index 99%
rename from app-emulation/wine-vanilla/wine-vanilla-7.5.ebuild
rename to app-emulation/wine-vanilla/wine-vanilla-7.5-r1.ebuild
index 35e003d..0ebb925 100644
--- a/app-emulation/wine-vanilla/wine-vanilla-7.5.ebuild
+++ b/app-emulation/wine-vanilla/wine-vanilla-7.5-r1.ebuild
@@ -47,8 +47,7 @@ REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 )
 # or fail due to Xvfb's opengl limitations.
 RESTRICT="test"
 
-BDEPEND="mingw? ( !!>=cross-i686-w64-mingw32/binutils-2.38 
!!>=cross-x86_64-w64-mingw32/binutils-2.38 )
-   sys-devel/flex
+BDEPEND="sys-devel/flex
virtual/yacc
virtual/pkgconfig"
 

diff --git a/app-emulation/wine-vanilla/wine-vanilla-7.6.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-7.6-r1.ebuild
similarity index 99%
rename from app-emulation/wine-vanilla/wine-vanilla-7.6.ebuild
rename to app-emulation/wine-vanilla/wine-vanilla-7.6-r1.ebuild
index f838286..6792e52 100644
--- a/app-emulation/wine-vanilla/wine-vanilla-7.6.ebuild
+++ b/app-emulation/wine-vanilla/wine-vanilla-7.6-r1.ebuild
@@ -47,8 +47,7 @@ REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 )
 # or fail due to Xvfb's opengl limitations.
 RESTRICT="test"
 
-BDEPEND="mingw? ( !!>=cross-i686-w64-mingw32/binutils-2.38 
!!>=cross-x86_64-w64-mingw32/binutils-2.38 )
-   sys-devel/flex
+BDEPEND="sys-devel/flex
virtual/yacc
virtual/pkgconfig"
 

diff --git a/app-emulation/wine-vanilla/wine-vanilla-.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-.ebuild
index f838286..6792e52 100644
--- a/app-emulation/wine-vanilla/wine-vanilla-.ebuild
+++ b/app-emulation/wine-vanilla/wine-vanilla-.ebuild
@@ -47,8 

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/vkd3d/

2022-04-15 Thread Nick Sarnie
commit: 0fddb34e05c1f58e00de87f90a025a8e1dbc392b
Author: Nick Sarnie  gentoo  org>
AuthorDate: Fri Apr 15 19:27:33 2022 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Fri Apr 15 19:29:39 2022 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=0fddb34e

app-emulation/vkd3d: Restrict test

Closes: https://bugs.gentoo.org/838655

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/vkd3d/vkd3d-1.2.ebuild  |  5 -
 app-emulation/vkd3d/vkd3d-.ebuild | 18 +++---
 2 files changed, 11 insertions(+), 12 deletions(-)

diff --git a/app-emulation/vkd3d/vkd3d-1.2.ebuild 
b/app-emulation/vkd3d/vkd3d-1.2.ebuild
index 90e8035..e64cc1a 100644
--- a/app-emulation/vkd3d/vkd3d-1.2.ebuild
+++ b/app-emulation/vkd3d/vkd3d-1.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -13,6 +13,9 @@ else
SRC_URI="https://dl.winehq.org/vkd3d/source/${P}.tar.xz;
 fi
 
+#Tests fail: https://bugs.gentoo.org/838655
+RESTRICT="test"
+
 IUSE="spirv-tools"
 RDEPEND="spirv-tools? ( dev-util/spirv-tools:=[${MULTILIB_USEDEP}] )
media-libs/vulkan-loader[${MULTILIB_USEDEP},X]

diff --git a/app-emulation/vkd3d/vkd3d-.ebuild 
b/app-emulation/vkd3d/vkd3d-.ebuild
index 0e542af..e64cc1a 100644
--- a/app-emulation/vkd3d/vkd3d-.ebuild
+++ b/app-emulation/vkd3d/vkd3d-.ebuild
@@ -1,20 +1,21 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 
-inherit multilib-minimal autotools
-
-AUTOTOOLS_AUTORECONF="1"
+inherit multilib-minimal
 
 if [[ "${PV}" == "" ]]; then
EGIT_REPO_URI="https://source.winehq.org/git/vkd3d.git;
inherit git-r3
 else
-   KEYWORDS="~amd64"
+   KEYWORDS="~amd64 ~x86"
SRC_URI="https://dl.winehq.org/vkd3d/source/${P}.tar.xz;
 fi
 
+#Tests fail: https://bugs.gentoo.org/838655
+RESTRICT="test"
+
 IUSE="spirv-tools"
 RDEPEND="spirv-tools? ( dev-util/spirv-tools:=[${MULTILIB_USEDEP}] )
media-libs/vulkan-loader[${MULTILIB_USEDEP},X]
@@ -24,7 +25,7 @@ RDEPEND="spirv-tools? ( 
dev-util/spirv-tools:=[${MULTILIB_USEDEP}] )
 
 DEPEND="${RDEPEND}
dev-util/spirv-headers
-   >=dev-util/vulkan-headers-1.1.114"
+   dev-util/vulkan-headers"
 
 DESCRIPTION="D3D12 to Vulkan translation library"
 HOMEPAGE="https://source.winehq.org/git/vkd3d.git/;
@@ -32,11 +33,6 @@ HOMEPAGE="https://source.winehq.org/git/vkd3d.git/;
 LICENSE="LGPL-2.1"
 SLOT="0"
 
-src_prepare() {
-   default
-   eautoreconf
-}
-
 multilib_src_configure() {
local myconf=(
$(use_with spirv-tools)



[gentoo-commits] repo/proj/wine:master commit in: app-emulation/winetricks/

2022-04-11 Thread Jimi Huotari
commit: a6d7c861b202c22639826b475defc03509b0ae7e
Author: Jimi Huotari  gentoo  org>
AuthorDate: Mon Apr 11 12:31:11 2022 +
Commit: Jimi Huotari  gentoo  org>
CommitDate: Mon Apr 11 12:36:33 2022 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=a6d7c861

app-emulation/winetricks: add version 20220411

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Jimi Huotari  gentoo.org>

 app-emulation/winetricks/Manifest  |  1 +
 .../winetricks/winetricks-20220411.ebuild  | 91 ++
 2 files changed, 92 insertions(+)

diff --git a/app-emulation/winetricks/Manifest 
b/app-emulation/winetricks/Manifest
index 23eabc5..db8d1b3 100644
--- a/app-emulation/winetricks/Manifest
+++ b/app-emulation/winetricks/Manifest
@@ -1,3 +1,4 @@
 DIST winetricks-20210206.tar.gz 690837 BLAKE2B 
a1d068e9659f6b176873af49994f1e0ca884eaa1ac9b8f5dd6d7abe79a2b8b827a2334efa7862547b17cca5bcfc285ce2d65ac0e5736cddcc777d4df2dbc7af9
 SHA512 
57f2ce5fe531eb6ee9a578ca565fadf5ef2e6e1379abee640ee9dc0d6000c92ce983c7507002bc6ace613d6d0dd03260ede11f7bf267adf19eb67900a0449f58
 DIST winetricks-20210825.tar.gz 689728 BLAKE2B 
32fc9639f215180e03c79d55359c7aa005c005ed6a3a21916de7172dc541994a786b64f8323034b3e43e0619569b39f79dc98830546db1d684badf96cdb898c4
 SHA512 
b9eb61a0bfe4001cb23f41f3b4707333be81660372347b5e8fe887fe1e2278bd5e2b91e0c5ddd73010652902a8985f0e253792c8769216de397ca75fac8b0c81
+DIST winetricks-20220411.tar.gz 694292 BLAKE2B 
86b81983d197db12478e290a685939ed36f90cd5986afc18730ff3b5483b312c2a290ae6990bd1cbcb34e3b82a4b9ea4e9235c062536cf583aa9d67adc443afb
 SHA512 
c4e77c5e62d2df56db6aa75979cc775f26472917108b0498c975458fd6f7ecbef52c329b7b6f33c12510176e105190bc538447b39348a42b7f1a8e07e5d92d09
 DIST winetricks-gentoo-2012.11.24.tar.bz2 6398 BLAKE2B 
54a4502f6e8ef15d21b02c43e3ce599e32d476c2559246064de14cc4ce2243ff11dde681d24c8a7f4913c3d7a10b855bda47e8fb8ecad31e00d839705416be6f
 SHA512 
59c93b73f3a7b2d11aefcde2ff66659ff1de21ad4b5f232f4b60572f3a48b15a6c49f369b1696862bf1b33fde190bf5598945e9536fb41ddec42d8def4d2be2a

diff --git a/app-emulation/winetricks/winetricks-20220411.ebuild 
b/app-emulation/winetricks/winetricks-20220411.ebuild
new file mode 100644
index 000..244cabf
--- /dev/null
+++ b/app-emulation/winetricks/winetricks-20220411.ebuild
@@ -0,0 +1,91 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit xdg
+
+if [[ ${PV} == "" ]] ; then
+   EGIT_REPO_URI="https://github.com/Winetricks/${PN}.git;
+   inherit git-r3
+   SRC_URI=""
+else
+   SRC_URI="https://github.com/Winetricks/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~amd64 ~x86"
+fi
+
+wtg="winetricks-gentoo-2012.11.24"
+
+SRC_URI="${SRC_URI}
+   gtk? ( https://dev.gentoo.org/~chiitoo/distfiles/${wtg}.tar.bz2 )
+   kde? ( https://dev.gentoo.org/~chiitoo/distfiles/${wtg}.tar.bz2 )
+"
+
+DESCRIPTION="Easy way to install DLLs needed to work around problems in Wine"
+HOMEPAGE="https://github.com/Winetricks/winetricks 
https://wiki.winehq.org/Winetricks;
+
+LICENSE="LGPL-2.1+"
+SLOT="0"
+IUSE="gtk kde rar test"
+RESTRICT="!test? ( test )"
+
+# dev-util/shellcheck is not available for x86
+RESTRICT+=" x86? ( test )"
+
+BDEPEND="
+   test? (
+   dev-python/bashate
+   dev-util/checkbashisms
+   || (
+   dev-util/shellcheck-bin
+   dev-util/shellcheck
+   )
+   )
+"
+DEPEND=""
+RDEPEND="${DEPEND}
+   app-arch/cabextract
+   app-arch/p7zip
+   app-arch/unzip
+   net-misc/wget
+   virtual/wine
+   x11-misc/xdg-utils
+   gtk? ( gnome-extra/zenity )
+   kde? ( kde-apps/kdialog )
+   rar? ( app-arch/unrar )
+"
+
+# Test targets include syntax checks only, not the "heavy duty" tests
+# that would require a lot of disk space, as well as network access.
+
+# This uses a non-standard "Wine" category, which is provided by
+# '/etc/xdg/menus/applications-merged/wine.menu' from the
+# 'app-emulation/wine-desktop-common' package.
+# https://bugs.gentoo.org/451552
+QA_DESKTOP_FILE="usr/share/applications/winetricks.desktop"
+
+src_unpack() {
+   if [[ ${PV} == "" ]]; then
+   git-r3_src_unpack
+
+   if use gtk || use kde; then
+   unpack ${wtg}.tar.bz2
+   fi
+
+   else
+   default
+   fi
+}
+
+src_test() {
+   ./tests/shell-checks || die "Test(s) failed."
+}
+
+src_install() {
+   default
+
+   if ! use gtk && ! use kde; then
+   rm -r "${ED}"/usr/share/applications || die
+   rm -r "${ED}"/usr/share/icons || die
+   fi
+}



[gentoo-commits] repo/proj/wine:master commit in: app-emulation/winetricks/

2022-04-11 Thread Jimi Huotari
commit: abf1f8d6e85d7cd8106c9140aca13e5fd04834ab
Author: Jimi Huotari  gentoo  org>
AuthorDate: Mon Apr 11 12:42:08 2022 +
Commit: Jimi Huotari  gentoo  org>
CommitDate: Mon Apr 11 12:42:08 2022 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=abf1f8d6

app-emulation/winetricks: remove version 20210825

Version 20220411 shall be the next stable one.

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Jimi Huotari  gentoo.org>

 app-emulation/winetricks/Manifest  |  1 -
 .../winetricks/winetricks-20210825.ebuild  | 91 --
 2 files changed, 92 deletions(-)

diff --git a/app-emulation/winetricks/Manifest 
b/app-emulation/winetricks/Manifest
index db8d1b3..6304816 100644
--- a/app-emulation/winetricks/Manifest
+++ b/app-emulation/winetricks/Manifest
@@ -1,4 +1,3 @@
 DIST winetricks-20210206.tar.gz 690837 BLAKE2B 
a1d068e9659f6b176873af49994f1e0ca884eaa1ac9b8f5dd6d7abe79a2b8b827a2334efa7862547b17cca5bcfc285ce2d65ac0e5736cddcc777d4df2dbc7af9
 SHA512 
57f2ce5fe531eb6ee9a578ca565fadf5ef2e6e1379abee640ee9dc0d6000c92ce983c7507002bc6ace613d6d0dd03260ede11f7bf267adf19eb67900a0449f58
-DIST winetricks-20210825.tar.gz 689728 BLAKE2B 
32fc9639f215180e03c79d55359c7aa005c005ed6a3a21916de7172dc541994a786b64f8323034b3e43e0619569b39f79dc98830546db1d684badf96cdb898c4
 SHA512 
b9eb61a0bfe4001cb23f41f3b4707333be81660372347b5e8fe887fe1e2278bd5e2b91e0c5ddd73010652902a8985f0e253792c8769216de397ca75fac8b0c81
 DIST winetricks-20220411.tar.gz 694292 BLAKE2B 
86b81983d197db12478e290a685939ed36f90cd5986afc18730ff3b5483b312c2a290ae6990bd1cbcb34e3b82a4b9ea4e9235c062536cf583aa9d67adc443afb
 SHA512 
c4e77c5e62d2df56db6aa75979cc775f26472917108b0498c975458fd6f7ecbef52c329b7b6f33c12510176e105190bc538447b39348a42b7f1a8e07e5d92d09
 DIST winetricks-gentoo-2012.11.24.tar.bz2 6398 BLAKE2B 
54a4502f6e8ef15d21b02c43e3ce599e32d476c2559246064de14cc4ce2243ff11dde681d24c8a7f4913c3d7a10b855bda47e8fb8ecad31e00d839705416be6f
 SHA512 
59c93b73f3a7b2d11aefcde2ff66659ff1de21ad4b5f232f4b60572f3a48b15a6c49f369b1696862bf1b33fde190bf5598945e9536fb41ddec42d8def4d2be2a

diff --git a/app-emulation/winetricks/winetricks-20210825.ebuild 
b/app-emulation/winetricks/winetricks-20210825.ebuild
deleted file mode 100644
index 89dcbb5..000
--- a/app-emulation/winetricks/winetricks-20210825.ebuild
+++ /dev/null
@@ -1,91 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit xdg
-
-if [[ ${PV} == "" ]] ; then
-   EGIT_REPO_URI="https://github.com/Winetricks/${PN}.git;
-   inherit git-r3
-   SRC_URI=""
-else
-   SRC_URI="https://github.com/Winetricks/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 ~x86"
-fi
-
-wtg="winetricks-gentoo-2012.11.24"
-
-SRC_URI="${SRC_URI}
-   gtk? ( https://dev.gentoo.org/~chiitoo/distfiles/${wtg}.tar.bz2 )
-   kde? ( https://dev.gentoo.org/~chiitoo/distfiles/${wtg}.tar.bz2 )
-"
-
-DESCRIPTION="Easy way to install DLLs needed to work around problems in Wine"
-HOMEPAGE="https://github.com/Winetricks/winetricks 
https://wiki.winehq.org/Winetricks;
-
-LICENSE="LGPL-2.1+"
-SLOT="0"
-IUSE="gtk kde rar test"
-RESTRICT="!test? ( test )"
-
-# dev-util/shellcheck is not available for x86
-RESTRICT+=" x86? ( test )"
-
-BDEPEND="
-   test? (
-   dev-python/bashate
-   dev-util/checkbashisms
-   || (
-   dev-util/shellcheck-bin
-   dev-util/shellcheck
-   )
-   )
-"
-DEPEND=""
-RDEPEND="${DEPEND}
-   app-arch/cabextract
-   app-arch/p7zip
-   app-arch/unzip
-   net-misc/wget
-   virtual/wine
-   x11-misc/xdg-utils
-   gtk? ( gnome-extra/zenity )
-   kde? ( kde-apps/kdialog )
-   rar? ( app-arch/unrar )
-"
-
-# Test targets include syntax checks only, not the "heavy duty" tests
-# that would require a lot of disk space, as well as network access.
-
-# This uses a non-standard "Wine" category, which is provided by
-# '/etc/xdg/menus/applications-merged/wine.menu' from the
-# 'app-emulation/wine-desktop-common' package.
-# https://bugs.gentoo.org/451552
-QA_DESKTOP_FILE="usr/share/applications/winetricks.desktop"
-
-src_unpack() {
-   if [[ ${PV} == "" ]]; then
-   git-r3_src_unpack
-
-   if use gtk || use kde; then
-   unpack ${wtg}.tar.bz2
-   fi
-
-   else
-   default
-   fi
-}
-
-src_test() {
-   ./tests/shell-checks || die "Test(s) failed."
-}
-
-src_install() {
-   default
-
-   if ! use gtk && ! use kde; then
-   rm -r "${ED}"/usr/share/applications || die
-   rm -r "${ED}"/usr/share/icons || die
-   fi
-}



[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-staging/

2022-04-10 Thread Nick Sarnie
commit: 85fd604f337252bef0ad15a784b2905d0519887d
Author: Nick Sarnie  gentoo  org>
AuthorDate: Mon Apr 11 03:50:36 2022 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Mon Apr 11 03:51:38 2022 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=85fd604f

app-emulation/wine-staging: Yet more warnings

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-staging/wine-staging-7.3.ebuild  | 1 -
 app-emulation/wine-staging/wine-staging-7.4.ebuild  | 1 -
 app-emulation/wine-staging/wine-staging-7.5.ebuild  | 1 -
 app-emulation/wine-staging/wine-staging-7.6.ebuild  | 1 -
 app-emulation/wine-staging/wine-staging-.ebuild | 1 -
 5 files changed, 5 deletions(-)

diff --git a/app-emulation/wine-staging/wine-staging-7.3.ebuild 
b/app-emulation/wine-staging/wine-staging-7.3.ebuild
index 6cdb360..700f678 100644
--- a/app-emulation/wine-staging/wine-staging-7.3.ebuild
+++ b/app-emulation/wine-staging/wine-staging-7.3.ebuild
@@ -119,7 +119,6 @@ COMMON_DEPEND="
 RDEPEND="${COMMON_DEPEND}
app-emulation/wine-desktop-common
>app-eselect/eselect-wine-0.3
-   !app-emulation/wine:0
dos? ( >=games-emulation/dosbox-0.74_p20160629 )
gecko? ( app-emulation/wine-gecko:2.47.2[abi_x86_32?,abi_x86_64?] )
mono? ( app-emulation/wine-mono:7.1.1 )

diff --git a/app-emulation/wine-staging/wine-staging-7.4.ebuild 
b/app-emulation/wine-staging/wine-staging-7.4.ebuild
index 6cdb360..700f678 100644
--- a/app-emulation/wine-staging/wine-staging-7.4.ebuild
+++ b/app-emulation/wine-staging/wine-staging-7.4.ebuild
@@ -119,7 +119,6 @@ COMMON_DEPEND="
 RDEPEND="${COMMON_DEPEND}
app-emulation/wine-desktop-common
>app-eselect/eselect-wine-0.3
-   !app-emulation/wine:0
dos? ( >=games-emulation/dosbox-0.74_p20160629 )
gecko? ( app-emulation/wine-gecko:2.47.2[abi_x86_32?,abi_x86_64?] )
mono? ( app-emulation/wine-mono:7.1.1 )

diff --git a/app-emulation/wine-staging/wine-staging-7.5.ebuild 
b/app-emulation/wine-staging/wine-staging-7.5.ebuild
index 6cdb360..700f678 100644
--- a/app-emulation/wine-staging/wine-staging-7.5.ebuild
+++ b/app-emulation/wine-staging/wine-staging-7.5.ebuild
@@ -119,7 +119,6 @@ COMMON_DEPEND="
 RDEPEND="${COMMON_DEPEND}
app-emulation/wine-desktop-common
>app-eselect/eselect-wine-0.3
-   !app-emulation/wine:0
dos? ( >=games-emulation/dosbox-0.74_p20160629 )
gecko? ( app-emulation/wine-gecko:2.47.2[abi_x86_32?,abi_x86_64?] )
mono? ( app-emulation/wine-mono:7.1.1 )

diff --git a/app-emulation/wine-staging/wine-staging-7.6.ebuild 
b/app-emulation/wine-staging/wine-staging-7.6.ebuild
index 3af57b1..247c7d6 100644
--- a/app-emulation/wine-staging/wine-staging-7.6.ebuild
+++ b/app-emulation/wine-staging/wine-staging-7.6.ebuild
@@ -119,7 +119,6 @@ COMMON_DEPEND="
 RDEPEND="${COMMON_DEPEND}
app-emulation/wine-desktop-common
>app-eselect/eselect-wine-0.3
-   !app-emulation/wine:0
dos? ( >=games-emulation/dosbox-0.74_p20160629 )
gecko? ( app-emulation/wine-gecko:2.47.2[abi_x86_32?,abi_x86_64?] )
mono? ( app-emulation/wine-mono:7.2.0 )

diff --git a/app-emulation/wine-staging/wine-staging-.ebuild 
b/app-emulation/wine-staging/wine-staging-.ebuild
index 3af57b1..247c7d6 100644
--- a/app-emulation/wine-staging/wine-staging-.ebuild
+++ b/app-emulation/wine-staging/wine-staging-.ebuild
@@ -119,7 +119,6 @@ COMMON_DEPEND="
 RDEPEND="${COMMON_DEPEND}
app-emulation/wine-desktop-common
>app-eselect/eselect-wine-0.3
-   !app-emulation/wine:0
dos? ( >=games-emulation/dosbox-0.74_p20160629 )
gecko? ( app-emulation/wine-gecko:2.47.2[abi_x86_32?,abi_x86_64?] )
mono? ( app-emulation/wine-mono:7.2.0 )



[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-vanilla/

2022-04-10 Thread Nick Sarnie
commit: ffcd6729465ac9745acc8c4ca1d88750711e6ca9
Author: Nick Sarnie  gentoo  org>
AuthorDate: Mon Apr 11 03:49:26 2022 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Mon Apr 11 03:49:33 2022 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=ffcd6729

app-emulation/wine-vanilla: Yet more warnings

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-vanilla/wine-vanilla-7.0-r1.ebuild | 1 -
 app-emulation/wine-vanilla/wine-vanilla-7.3.ebuild| 1 -
 app-emulation/wine-vanilla/wine-vanilla-7.4.ebuild| 1 -
 app-emulation/wine-vanilla/wine-vanilla-7.5.ebuild| 1 -
 app-emulation/wine-vanilla/wine-vanilla-7.6.ebuild| 1 -
 app-emulation/wine-vanilla/wine-vanilla-.ebuild   | 1 -
 6 files changed, 6 deletions(-)

diff --git a/app-emulation/wine-vanilla/wine-vanilla-7.0-r1.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-7.0-r1.ebuild
index cce8b71..96af88c 100644
--- a/app-emulation/wine-vanilla/wine-vanilla-7.0-r1.ebuild
+++ b/app-emulation/wine-vanilla/wine-vanilla-7.0-r1.ebuild
@@ -104,7 +104,6 @@ COMMON_DEPEND="
 RDEPEND="${COMMON_DEPEND}
app-emulation/wine-desktop-common
>app-eselect/eselect-wine-0.3
-   !app-emulation/wine:0
dos? ( >=games-emulation/dosbox-0.74_p20160629 )
gecko? ( app-emulation/wine-gecko:2.47.2[abi_x86_32?,abi_x86_64?] )
mono? ( app-emulation/wine-mono:7.0.0 )

diff --git a/app-emulation/wine-vanilla/wine-vanilla-7.3.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-7.3.ebuild
index 27d20b3..35e003d 100644
--- a/app-emulation/wine-vanilla/wine-vanilla-7.3.ebuild
+++ b/app-emulation/wine-vanilla/wine-vanilla-7.3.ebuild
@@ -104,7 +104,6 @@ COMMON_DEPEND="
 RDEPEND="${COMMON_DEPEND}
app-emulation/wine-desktop-common
>app-eselect/eselect-wine-0.3
-   !app-emulation/wine:0
dos? ( >=games-emulation/dosbox-0.74_p20160629 )
gecko? ( app-emulation/wine-gecko:2.47.2[abi_x86_32?,abi_x86_64?] )
mono? ( app-emulation/wine-mono:7.1.1 )

diff --git a/app-emulation/wine-vanilla/wine-vanilla-7.4.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-7.4.ebuild
index 27d20b3..35e003d 100644
--- a/app-emulation/wine-vanilla/wine-vanilla-7.4.ebuild
+++ b/app-emulation/wine-vanilla/wine-vanilla-7.4.ebuild
@@ -104,7 +104,6 @@ COMMON_DEPEND="
 RDEPEND="${COMMON_DEPEND}
app-emulation/wine-desktop-common
>app-eselect/eselect-wine-0.3
-   !app-emulation/wine:0
dos? ( >=games-emulation/dosbox-0.74_p20160629 )
gecko? ( app-emulation/wine-gecko:2.47.2[abi_x86_32?,abi_x86_64?] )
mono? ( app-emulation/wine-mono:7.1.1 )

diff --git a/app-emulation/wine-vanilla/wine-vanilla-7.5.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-7.5.ebuild
index 27d20b3..35e003d 100644
--- a/app-emulation/wine-vanilla/wine-vanilla-7.5.ebuild
+++ b/app-emulation/wine-vanilla/wine-vanilla-7.5.ebuild
@@ -104,7 +104,6 @@ COMMON_DEPEND="
 RDEPEND="${COMMON_DEPEND}
app-emulation/wine-desktop-common
>app-eselect/eselect-wine-0.3
-   !app-emulation/wine:0
dos? ( >=games-emulation/dosbox-0.74_p20160629 )
gecko? ( app-emulation/wine-gecko:2.47.2[abi_x86_32?,abi_x86_64?] )
mono? ( app-emulation/wine-mono:7.1.1 )

diff --git a/app-emulation/wine-vanilla/wine-vanilla-7.6.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-7.6.ebuild
index 4d5df6e..f838286 100644
--- a/app-emulation/wine-vanilla/wine-vanilla-7.6.ebuild
+++ b/app-emulation/wine-vanilla/wine-vanilla-7.6.ebuild
@@ -104,7 +104,6 @@ COMMON_DEPEND="
 RDEPEND="${COMMON_DEPEND}
app-emulation/wine-desktop-common
>app-eselect/eselect-wine-0.3
-   !app-emulation/wine:0
dos? ( >=games-emulation/dosbox-0.74_p20160629 )
gecko? ( app-emulation/wine-gecko:2.47.2[abi_x86_32?,abi_x86_64?] )
mono? ( app-emulation/wine-mono:7.2.0 )

diff --git a/app-emulation/wine-vanilla/wine-vanilla-.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-.ebuild
index 4d5df6e..f838286 100644
--- a/app-emulation/wine-vanilla/wine-vanilla-.ebuild
+++ b/app-emulation/wine-vanilla/wine-vanilla-.ebuild
@@ -104,7 +104,6 @@ COMMON_DEPEND="
 RDEPEND="${COMMON_DEPEND}
app-emulation/wine-desktop-common
>app-eselect/eselect-wine-0.3
-   !app-emulation/wine:0
dos? ( >=games-emulation/dosbox-0.74_p20160629 )
gecko? ( app-emulation/wine-gecko:2.47.2[abi_x86_32?,abi_x86_64?] )
mono? ( app-emulation/wine-mono:7.2.0 )



[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-vanilla/

2022-04-10 Thread Nick Sarnie
commit: 252268e7d976fc2c8210ed0801f411d5f105eedb
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sun Apr 10 20:33:14 2022 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sun Apr 10 20:38:53 2022 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=252268e7

app-emulation/wine-vanilla: Even more warnings

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-vanilla/wine-vanilla-7.0-r1.ebuild | 10 +-
 app-emulation/wine-vanilla/wine-vanilla-7.3.ebuild| 10 +-
 app-emulation/wine-vanilla/wine-vanilla-7.4.ebuild| 10 +-
 app-emulation/wine-vanilla/wine-vanilla-7.5.ebuild| 10 +-
 app-emulation/wine-vanilla/wine-vanilla-7.6.ebuild| 10 +-
 app-emulation/wine-vanilla/wine-vanilla-.ebuild   | 10 +-
 6 files changed, 30 insertions(+), 30 deletions(-)

diff --git a/app-emulation/wine-vanilla/wine-vanilla-7.0-r1.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-7.0-r1.ebuild
index c9c681b..cce8b71 100644
--- a/app-emulation/wine-vanilla/wine-vanilla-7.0-r1.ebuild
+++ b/app-emulation/wine-vanilla/wine-vanilla-7.0-r1.ebuild
@@ -480,12 +480,12 @@ multilib_src_install_all() {
find "${ED}" -name *.la -delete || die
 
if ! use perl ; then # winedump calls function_grep.pl, and winemaker 
is a perl script
-   rm "${D%/}${MY_PREFIX}"/bin/{wine{dump,maker},function_grep.pl} 
\
-   "${D%/}${MY_MANDIR}"/man1/wine{dump,maker}.1 || die
+   rm "${D%}${MY_PREFIX}"/bin/{wine{dump,maker},function_grep.pl} \
+   "${D%}${MY_MANDIR}"/man1/wine{dump,maker}.1 || die
fi
 
-   use abi_x86_32 && pax-mark psmr 
"${D%/}${MY_PREFIX}"/bin/wine{,-preloader} #255055
-   use abi_x86_64 && pax-mark psmr 
"${D%/}${MY_PREFIX}"/bin/wine64{,-preloader}
+   use abi_x86_32 && pax-mark psmr 
"${D%}${MY_PREFIX}"/bin/wine{,-preloader} #255055
+   use abi_x86_64 && pax-mark psmr 
"${D%}${MY_PREFIX}"/bin/wine64{,-preloader}
 
# Avoid double prefix from dosym and make_wrapper
MY_PREFIX=${MY_PREFIX#${EPREFIX}}
@@ -500,7 +500,7 @@ multilib_src_install_all() {
# Make wrappers for binaries for handling multiple variants
# Note: wrappers instead of symlinks because some are shell which use 
basename
local b
-   for b in "${ED%/}${MY_PREFIX}"/bin/*; do
+   for b in "${ED%}${MY_PREFIX}"/bin/*; do
make_wrapper "${b##*/}-${WINE_VARIANT}" 
"${MY_PREFIX}/bin/${b##*/}"
done
eshopts_pop

diff --git a/app-emulation/wine-vanilla/wine-vanilla-7.3.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-7.3.ebuild
index 3587d07..27d20b3 100644
--- a/app-emulation/wine-vanilla/wine-vanilla-7.3.ebuild
+++ b/app-emulation/wine-vanilla/wine-vanilla-7.3.ebuild
@@ -480,12 +480,12 @@ multilib_src_install_all() {
find "${ED}" -name *.la -delete || die
 
if ! use perl ; then # winedump calls function_grep.pl, and winemaker 
is a perl script
-   rm "${D%/}${MY_PREFIX}"/bin/{wine{dump,maker},function_grep.pl} 
\
-   "${D%/}${MY_MANDIR}"/man1/wine{dump,maker}.1 || die
+   rm "${D%}${MY_PREFIX}"/bin/{wine{dump,maker},function_grep.pl} \
+   "${D%}${MY_MANDIR}"/man1/wine{dump,maker}.1 || die
fi
 
-   use abi_x86_32 && pax-mark psmr 
"${D%/}${MY_PREFIX}"/bin/wine{,-preloader} #255055
-   use abi_x86_64 && pax-mark psmr 
"${D%/}${MY_PREFIX}"/bin/wine64{,-preloader}
+   use abi_x86_32 && pax-mark psmr 
"${D%}${MY_PREFIX}"/bin/wine{,-preloader} #255055
+   use abi_x86_64 && pax-mark psmr 
"${D%}${MY_PREFIX}"/bin/wine64{,-preloader}
 
# Avoid double prefix from dosym and make_wrapper
MY_PREFIX=${MY_PREFIX#${EPREFIX}}
@@ -500,7 +500,7 @@ multilib_src_install_all() {
# Make wrappers for binaries for handling multiple variants
# Note: wrappers instead of symlinks because some are shell which use 
basename
local b
-   for b in "${ED%/}${MY_PREFIX}"/bin/*; do
+   for b in "${ED%}${MY_PREFIX}"/bin/*; do
make_wrapper "${b##*/}-${WINE_VARIANT}" 
"${MY_PREFIX}/bin/${b##*/}"
done
eshopts_pop

diff --git a/app-emulation/wine-vanilla/wine-vanilla-7.4.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-7.4.ebuild
index 3587d07..27d20b3 100644
--- a/app-emulation/wine-vanilla/wine-vanilla-7.4.ebuild
+++ b/app-emulation/wine-vanilla/wine-vanilla-7.4.ebuild
@@ -480,12 +480,12 @@ multilib_src_install_all() {
find "${ED}" -name *.la -delete || die
 
if ! use perl ; then # winedump calls function_grep.pl, and winemaker 
is a perl script
-   rm "${D%/}${MY_PREFIX}"/bin/{wine{dump,maker},function_grep.pl} 
\
-   "${D%/}${MY_MANDIR}"/man1/wine{dump,maker}.1 || die
+   rm "${D%}${MY_PREFIX}"/bin/{wine{dump,maker},function_grep.pl} \
+  

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-staging/

2022-04-10 Thread Nick Sarnie
commit: 51334e6938027885894ed4cf142e29c370ae6aa7
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sun Apr 10 20:38:38 2022 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sun Apr 10 20:39:01 2022 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=51334e69

app-emulation/wine-staging: Even more warnings

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-staging/wine-staging-7.3.ebuild  | 10 +-
 app-emulation/wine-staging/wine-staging-7.4.ebuild  | 10 +-
 app-emulation/wine-staging/wine-staging-7.5.ebuild  | 10 +-
 app-emulation/wine-staging/wine-staging-7.6.ebuild  | 10 +-
 app-emulation/wine-staging/wine-staging-.ebuild | 10 +-
 5 files changed, 25 insertions(+), 25 deletions(-)

diff --git a/app-emulation/wine-staging/wine-staging-7.3.ebuild 
b/app-emulation/wine-staging/wine-staging-7.3.ebuild
index eac3a1f..6cdb360 100644
--- a/app-emulation/wine-staging/wine-staging-7.3.ebuild
+++ b/app-emulation/wine-staging/wine-staging-7.3.ebuild
@@ -547,12 +547,12 @@ multilib_src_install_all() {
find "${ED}" -name *.la -delete || die
 
if ! use perl ; then # winedump calls function_grep.pl, and winemaker 
is a perl script
-   rm "${D%/}${MY_PREFIX}"/bin/{wine{dump,maker},function_grep.pl} 
\
-   "${D%/}${MY_MANDIR}"/man1/wine{dump,maker}.1 || die
+   rm "${D%}${MY_PREFIX}"/bin/{wine{dump,maker},function_grep.pl} \
+   "${D%}${MY_MANDIR}"/man1/wine{dump,maker}.1 || die
fi
 
-   use abi_x86_32 && pax-mark psmr 
"${D%/}${MY_PREFIX}"/bin/wine{,-preloader} #255055
-   use abi_x86_64 && pax-mark psmr 
"${D%/}${MY_PREFIX}"/bin/wine64{,-preloader}
+   use abi_x86_32 && pax-mark psmr 
"${D%}${MY_PREFIX}"/bin/wine{,-preloader} #255055
+   use abi_x86_64 && pax-mark psmr 
"${D%}${MY_PREFIX}"/bin/wine64{,-preloader}
 
# Avoid double prefix from dosym and make_wrapper
MY_PREFIX=${MY_PREFIX#${EPREFIX}}
@@ -567,7 +567,7 @@ multilib_src_install_all() {
# Make wrappers for binaries for handling multiple variants
# Note: wrappers instead of symlinks because some are shell which use 
basename
local b
-   for b in "${ED%/}${MY_PREFIX}"/bin/*; do
+   for b in "${ED%}${MY_PREFIX}"/bin/*; do
make_wrapper "${b##*/}-${WINE_VARIANT}" 
"${MY_PREFIX}/bin/${b##*/}"
done
eshopts_pop

diff --git a/app-emulation/wine-staging/wine-staging-7.4.ebuild 
b/app-emulation/wine-staging/wine-staging-7.4.ebuild
index eac3a1f..6cdb360 100644
--- a/app-emulation/wine-staging/wine-staging-7.4.ebuild
+++ b/app-emulation/wine-staging/wine-staging-7.4.ebuild
@@ -547,12 +547,12 @@ multilib_src_install_all() {
find "${ED}" -name *.la -delete || die
 
if ! use perl ; then # winedump calls function_grep.pl, and winemaker 
is a perl script
-   rm "${D%/}${MY_PREFIX}"/bin/{wine{dump,maker},function_grep.pl} 
\
-   "${D%/}${MY_MANDIR}"/man1/wine{dump,maker}.1 || die
+   rm "${D%}${MY_PREFIX}"/bin/{wine{dump,maker},function_grep.pl} \
+   "${D%}${MY_MANDIR}"/man1/wine{dump,maker}.1 || die
fi
 
-   use abi_x86_32 && pax-mark psmr 
"${D%/}${MY_PREFIX}"/bin/wine{,-preloader} #255055
-   use abi_x86_64 && pax-mark psmr 
"${D%/}${MY_PREFIX}"/bin/wine64{,-preloader}
+   use abi_x86_32 && pax-mark psmr 
"${D%}${MY_PREFIX}"/bin/wine{,-preloader} #255055
+   use abi_x86_64 && pax-mark psmr 
"${D%}${MY_PREFIX}"/bin/wine64{,-preloader}
 
# Avoid double prefix from dosym and make_wrapper
MY_PREFIX=${MY_PREFIX#${EPREFIX}}
@@ -567,7 +567,7 @@ multilib_src_install_all() {
# Make wrappers for binaries for handling multiple variants
# Note: wrappers instead of symlinks because some are shell which use 
basename
local b
-   for b in "${ED%/}${MY_PREFIX}"/bin/*; do
+   for b in "${ED%}${MY_PREFIX}"/bin/*; do
make_wrapper "${b##*/}-${WINE_VARIANT}" 
"${MY_PREFIX}/bin/${b##*/}"
done
eshopts_pop

diff --git a/app-emulation/wine-staging/wine-staging-7.5.ebuild 
b/app-emulation/wine-staging/wine-staging-7.5.ebuild
index eac3a1f..6cdb360 100644
--- a/app-emulation/wine-staging/wine-staging-7.5.ebuild
+++ b/app-emulation/wine-staging/wine-staging-7.5.ebuild
@@ -547,12 +547,12 @@ multilib_src_install_all() {
find "${ED}" -name *.la -delete || die
 
if ! use perl ; then # winedump calls function_grep.pl, and winemaker 
is a perl script
-   rm "${D%/}${MY_PREFIX}"/bin/{wine{dump,maker},function_grep.pl} 
\
-   "${D%/}${MY_MANDIR}"/man1/wine{dump,maker}.1 || die
+   rm "${D%}${MY_PREFIX}"/bin/{wine{dump,maker},function_grep.pl} \
+   "${D%}${MY_MANDIR}"/man1/wine{dump,maker}.1 || die
fi
 
-   use abi_x86_32 && 

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-staging/

2022-04-10 Thread Nick Sarnie
commit: 87a603060bb7073651f5755d85aad30d05e0e19a
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sun Apr 10 20:01:12 2022 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sun Apr 10 20:02:53 2022 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=87a60306

app-emulation/wine-staging: Fix warn

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-staging/wine-staging-7.3.ebuild  | 8 
 app-emulation/wine-staging/wine-staging-7.4.ebuild  | 8 
 app-emulation/wine-staging/wine-staging-7.5.ebuild  | 8 
 app-emulation/wine-staging/wine-staging-7.6.ebuild  | 8 
 app-emulation/wine-staging/wine-staging-.ebuild | 8 
 5 files changed, 20 insertions(+), 20 deletions(-)

diff --git a/app-emulation/wine-staging/wine-staging-7.3.ebuild 
b/app-emulation/wine-staging/wine-staging-7.3.ebuild
index 35870f8..eac3a1f 100644
--- a/app-emulation/wine-staging/wine-staging-7.3.ebuild
+++ b/app-emulation/wine-staging/wine-staging-7.3.ebuild
@@ -62,12 +62,11 @@ REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 )
 RESTRICT="test"
 
 BDEPEND="mingw? ( !!>=cross-i686-w64-mingw32/binutils-2.38 
!!>=cross-x86_64-w64-mingw32/binutils-2.38 )
- sys-devel/flex
- virtual/yacc
- virtual/pkgconfig"
+   sys-devel/flex
+   virtual/yacc
+   virtual/pkgconfig"
 
 COMMON_DEPEND="
-   ${BDEPEND}
X? (
x11-libs/libXcursor[${MULTILIB_USEDEP}]
x11-libs/libXext[${MULTILIB_USEDEP}]
@@ -137,6 +136,7 @@ RDEPEND="${COMMON_DEPEND}
 
 # tools/make_requests requires perl
 DEPEND="${COMMON_DEPEND}
+   ${BDEPEND}
>=sys-kernel/linux-headers-2.6
X? ( x11-base/xorg-proto )
staging? (

diff --git a/app-emulation/wine-staging/wine-staging-7.4.ebuild 
b/app-emulation/wine-staging/wine-staging-7.4.ebuild
index 35870f8..eac3a1f 100644
--- a/app-emulation/wine-staging/wine-staging-7.4.ebuild
+++ b/app-emulation/wine-staging/wine-staging-7.4.ebuild
@@ -62,12 +62,11 @@ REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 )
 RESTRICT="test"
 
 BDEPEND="mingw? ( !!>=cross-i686-w64-mingw32/binutils-2.38 
!!>=cross-x86_64-w64-mingw32/binutils-2.38 )
- sys-devel/flex
- virtual/yacc
- virtual/pkgconfig"
+   sys-devel/flex
+   virtual/yacc
+   virtual/pkgconfig"
 
 COMMON_DEPEND="
-   ${BDEPEND}
X? (
x11-libs/libXcursor[${MULTILIB_USEDEP}]
x11-libs/libXext[${MULTILIB_USEDEP}]
@@ -137,6 +136,7 @@ RDEPEND="${COMMON_DEPEND}
 
 # tools/make_requests requires perl
 DEPEND="${COMMON_DEPEND}
+   ${BDEPEND}
>=sys-kernel/linux-headers-2.6
X? ( x11-base/xorg-proto )
staging? (

diff --git a/app-emulation/wine-staging/wine-staging-7.5.ebuild 
b/app-emulation/wine-staging/wine-staging-7.5.ebuild
index 35870f8..eac3a1f 100644
--- a/app-emulation/wine-staging/wine-staging-7.5.ebuild
+++ b/app-emulation/wine-staging/wine-staging-7.5.ebuild
@@ -62,12 +62,11 @@ REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 )
 RESTRICT="test"
 
 BDEPEND="mingw? ( !!>=cross-i686-w64-mingw32/binutils-2.38 
!!>=cross-x86_64-w64-mingw32/binutils-2.38 )
- sys-devel/flex
- virtual/yacc
- virtual/pkgconfig"
+   sys-devel/flex
+   virtual/yacc
+   virtual/pkgconfig"
 
 COMMON_DEPEND="
-   ${BDEPEND}
X? (
x11-libs/libXcursor[${MULTILIB_USEDEP}]
x11-libs/libXext[${MULTILIB_USEDEP}]
@@ -137,6 +136,7 @@ RDEPEND="${COMMON_DEPEND}
 
 # tools/make_requests requires perl
 DEPEND="${COMMON_DEPEND}
+   ${BDEPEND}
>=sys-kernel/linux-headers-2.6
X? ( x11-base/xorg-proto )
staging? (

diff --git a/app-emulation/wine-staging/wine-staging-7.6.ebuild 
b/app-emulation/wine-staging/wine-staging-7.6.ebuild
index db459b0..cf7e3d6 100644
--- a/app-emulation/wine-staging/wine-staging-7.6.ebuild
+++ b/app-emulation/wine-staging/wine-staging-7.6.ebuild
@@ -62,12 +62,11 @@ REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 )
 RESTRICT="test"
 
 BDEPEND="mingw? ( !!>=cross-i686-w64-mingw32/binutils-2.38 
!!>=cross-x86_64-w64-mingw32/binutils-2.38 )
- sys-devel/flex
- virtual/yacc
- virtual/pkgconfig"
+   sys-devel/flex
+   virtual/yacc
+   virtual/pkgconfig"
 
 COMMON_DEPEND="
-   ${BDEPEND}
X? (
x11-libs/libXcursor[${MULTILIB_USEDEP}]
x11-libs/libXext[${MULTILIB_USEDEP}]
@@ -137,6 +136,7 @@ RDEPEND="${COMMON_DEPEND}
 
 # tools/make_requests requires perl
 DEPEND="${COMMON_DEPEND}
+   ${BDEPEND}
>=sys-kernel/linux-headers-2.6
X? ( x11-base/xorg-proto )
staging? (

diff --git a/app-emulation/wine-staging/wine-staging-.ebuild 
b/app-emulation/wine-staging/wine-staging-.ebuild
index db459b0..cf7e3d6 100644
--- a/app-emulation/wine-staging/wine-staging-.ebuild
+++ b/app-emulation/wine-staging/wine-staging-.ebuild
@@ 

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-vanilla/

2022-04-10 Thread Nick Sarnie
commit: 2ed8ac01519a590ab665e5f13b8dda785e2a8079
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sun Apr 10 19:59:40 2022 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sun Apr 10 20:01:23 2022 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=2ed8ac01

app-emulation/wine-vanilla: Fix warn

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-vanilla/wine-vanilla-7.0-r1.ebuild | 8 
 app-emulation/wine-vanilla/wine-vanilla-7.3.ebuild| 8 
 app-emulation/wine-vanilla/wine-vanilla-7.4.ebuild| 8 
 app-emulation/wine-vanilla/wine-vanilla-7.5.ebuild| 8 
 app-emulation/wine-vanilla/wine-vanilla-7.6.ebuild| 8 
 app-emulation/wine-vanilla/wine-vanilla-.ebuild   | 8 
 6 files changed, 24 insertions(+), 24 deletions(-)

diff --git a/app-emulation/wine-vanilla/wine-vanilla-7.0-r1.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-7.0-r1.ebuild
index aea7d77..c9c681b 100644
--- a/app-emulation/wine-vanilla/wine-vanilla-7.0-r1.ebuild
+++ b/app-emulation/wine-vanilla/wine-vanilla-7.0-r1.ebuild
@@ -48,12 +48,11 @@ REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 )
 RESTRICT="test"
 
 BDEPEND="mingw? ( !!>=cross-i686-w64-mingw32/binutils-2.38 
!!>=cross-x86_64-w64-mingw32/binutils-2.38 )
- sys-devel/flex
- virtual/yacc
- virtual/pkgconfig"
+   sys-devel/flex
+   virtual/yacc
+   virtual/pkgconfig"
 
 COMMON_DEPEND="
-   ${BDEPEND}
X? (
x11-libs/libXcursor[${MULTILIB_USEDEP}]
x11-libs/libXext[${MULTILIB_USEDEP}]
@@ -122,6 +121,7 @@ RDEPEND="${COMMON_DEPEND}
 
 # tools/make_requests requires perl
 DEPEND="${COMMON_DEPEND}
+   ${BDEPEND}
>=sys-kernel/linux-headers-2.6
X? ( x11-base/xorg-proto )
xinerama? ( x11-base/xorg-proto )"

diff --git a/app-emulation/wine-vanilla/wine-vanilla-7.3.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-7.3.ebuild
index 65b5fd0..3587d07 100644
--- a/app-emulation/wine-vanilla/wine-vanilla-7.3.ebuild
+++ b/app-emulation/wine-vanilla/wine-vanilla-7.3.ebuild
@@ -48,12 +48,11 @@ REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 )
 RESTRICT="test"
 
 BDEPEND="mingw? ( !!>=cross-i686-w64-mingw32/binutils-2.38 
!!>=cross-x86_64-w64-mingw32/binutils-2.38 )
- sys-devel/flex
- virtual/yacc
- virtual/pkgconfig"
+   sys-devel/flex
+   virtual/yacc
+   virtual/pkgconfig"
 
 COMMON_DEPEND="
-   ${BDEPEND}
X? (
x11-libs/libXcursor[${MULTILIB_USEDEP}]
x11-libs/libXext[${MULTILIB_USEDEP}]
@@ -122,6 +121,7 @@ RDEPEND="${COMMON_DEPEND}
 
 # tools/make_requests requires perl
 DEPEND="${COMMON_DEPEND}
+   ${BDEPEND}
>=sys-kernel/linux-headers-2.6
X? ( x11-base/xorg-proto )
xinerama? ( x11-base/xorg-proto )"

diff --git a/app-emulation/wine-vanilla/wine-vanilla-7.4.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-7.4.ebuild
index 65b5fd0..3587d07 100644
--- a/app-emulation/wine-vanilla/wine-vanilla-7.4.ebuild
+++ b/app-emulation/wine-vanilla/wine-vanilla-7.4.ebuild
@@ -48,12 +48,11 @@ REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 )
 RESTRICT="test"
 
 BDEPEND="mingw? ( !!>=cross-i686-w64-mingw32/binutils-2.38 
!!>=cross-x86_64-w64-mingw32/binutils-2.38 )
- sys-devel/flex
- virtual/yacc
- virtual/pkgconfig"
+   sys-devel/flex
+   virtual/yacc
+   virtual/pkgconfig"
 
 COMMON_DEPEND="
-   ${BDEPEND}
X? (
x11-libs/libXcursor[${MULTILIB_USEDEP}]
x11-libs/libXext[${MULTILIB_USEDEP}]
@@ -122,6 +121,7 @@ RDEPEND="${COMMON_DEPEND}
 
 # tools/make_requests requires perl
 DEPEND="${COMMON_DEPEND}
+   ${BDEPEND}
>=sys-kernel/linux-headers-2.6
X? ( x11-base/xorg-proto )
xinerama? ( x11-base/xorg-proto )"

diff --git a/app-emulation/wine-vanilla/wine-vanilla-7.5.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-7.5.ebuild
index 65b5fd0..3587d07 100644
--- a/app-emulation/wine-vanilla/wine-vanilla-7.5.ebuild
+++ b/app-emulation/wine-vanilla/wine-vanilla-7.5.ebuild
@@ -48,12 +48,11 @@ REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 )
 RESTRICT="test"
 
 BDEPEND="mingw? ( !!>=cross-i686-w64-mingw32/binutils-2.38 
!!>=cross-x86_64-w64-mingw32/binutils-2.38 )
- sys-devel/flex
- virtual/yacc
- virtual/pkgconfig"
+   sys-devel/flex
+   virtual/yacc
+   virtual/pkgconfig"
 
 COMMON_DEPEND="
-   ${BDEPEND}
X? (
x11-libs/libXcursor[${MULTILIB_USEDEP}]
x11-libs/libXext[${MULTILIB_USEDEP}]
@@ -122,6 +121,7 @@ RDEPEND="${COMMON_DEPEND}
 
 # tools/make_requests requires perl
 DEPEND="${COMMON_DEPEND}
+   ${BDEPEND}
>=sys-kernel/linux-headers-2.6
X? ( x11-base/xorg-proto )
xinerama? ( x11-base/xorg-proto )"

diff --git a/app-emulation/wine-vanilla/wine-vanilla-7.6.ebuild 

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-vanilla/

2022-04-10 Thread Nick Sarnie
commit: 6c145ac5c512f5a7c8cf846c414b6f593fbc39e6
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sun Apr 10 19:14:30 2022 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sun Apr 10 19:45:33 2022 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=6c145ac5

app-emulation/wine-vanilla: EAPI 8

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 ...vanilla-.ebuild => wine-vanilla-7.0-r1.ebuild} | 18 ++
 app-emulation/wine-vanilla/wine-vanilla-7.3.ebuild| 17 ++---
 app-emulation/wine-vanilla/wine-vanilla-7.4.ebuild| 19 +++
 app-emulation/wine-vanilla/wine-vanilla-7.5.ebuild| 14 --
 app-emulation/wine-vanilla/wine-vanilla-7.6.ebuild| 14 --
 app-emulation/wine-vanilla/wine-vanilla-.ebuild   | 14 --
 6 files changed, 55 insertions(+), 41 deletions(-)

diff --git a/app-emulation/wine-vanilla/wine-vanilla-.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-7.0-r1.ebuild
similarity index 97%
copy from app-emulation/wine-vanilla/wine-vanilla-.ebuild
copy to app-emulation/wine-vanilla/wine-vanilla-7.0-r1.ebuild
index 79e935b..aea7d77 100644
--- a/app-emulation/wine-vanilla/wine-vanilla-.ebuild
+++ b/app-emulation/wine-vanilla/wine-vanilla-7.0-r1.ebuild
@@ -1,12 +1,12 @@
 # Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=8
 
 PLOCALES="ar ast bg ca cs da de el en en_US eo es fa fi fr he hi hr hu it ja 
ko lt ml nb_NO nl or pa pl pt_BR pt_PT rm ro ru si sk sl sr_RS@cyrillic 
sr_RS@latin sv ta te th tr uk wa zh_CN zh_TW"
 PLOCALE_BACKUP="en"
 
-inherit autotools eapi7-ver estack eutils flag-o-matic gnome2-utils multilib 
multilib-minimal pax-utils plocale toolchain-funcs virtualx xdg-utils
+inherit autotools estack flag-o-matic multilib-minimal pax-utils plocale 
toolchain-funcs virtualx wrapper xdg-utils
 
 MY_PN="${PN%%-*}"
 MY_P="${MY_PN}-${PV}"
@@ -19,7 +19,7 @@ if [[ ${PV} == "" ]] ; then
#KEYWORDS=""
 else
MAJOR_V=$(ver_cut 1)
-   SRC_URI="https://dl.winehq.org/wine/source/${MAJOR_V}.x/${MY_P}.tar.xz;
+   SRC_URI="https://dl.winehq.org/wine/source/${MAJOR_V}.0/${MY_P}.tar.xz;
KEYWORDS="-* ~amd64 ~x86"
 fi
 S="${WORKDIR}/${MY_P}"
@@ -47,7 +47,13 @@ REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 )
 # or fail due to Xvfb's opengl limitations.
 RESTRICT="test"
 
+BDEPEND="mingw? ( !!>=cross-i686-w64-mingw32/binutils-2.38 
!!>=cross-x86_64-w64-mingw32/binutils-2.38 )
+ sys-devel/flex
+ virtual/yacc
+ virtual/pkgconfig"
+
 COMMON_DEPEND="
+   ${BDEPEND}
X? (
x11-libs/libXcursor[${MULTILIB_USEDEP}]
x11-libs/libXext[${MULTILIB_USEDEP}]
@@ -102,8 +108,7 @@ RDEPEND="${COMMON_DEPEND}
!app-emulation/wine:0
dos? ( >=games-emulation/dosbox-0.74_p20160629 )
gecko? ( app-emulation/wine-gecko:2.47.2[abi_x86_32?,abi_x86_64?] )
-   mingw? ( !!>=cross-i686-w64-mingw32/binutils-2.38 
!!>=cross-x86_64-w64-mingw32/binutils-2.38 )
-   mono? ( app-emulation/wine-mono:7.2.0 )
+   mono? ( app-emulation/wine-mono:7.0.0 )
perl? (
dev-lang/perl
dev-perl/XML-Simple
@@ -117,10 +122,7 @@ RDEPEND="${COMMON_DEPEND}
 
 # tools/make_requests requires perl
 DEPEND="${COMMON_DEPEND}
-   sys-devel/flex
>=sys-kernel/linux-headers-2.6
-   virtual/pkgconfig
-   virtual/yacc
X? ( x11-base/xorg-proto )
xinerama? ( x11-base/xorg-proto )"
 

diff --git a/app-emulation/wine-vanilla/wine-vanilla-7.3.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-7.3.ebuild
index bc60492..65b5fd0 100644
--- a/app-emulation/wine-vanilla/wine-vanilla-7.3.ebuild
+++ b/app-emulation/wine-vanilla/wine-vanilla-7.3.ebuild
@@ -1,12 +1,12 @@
 # Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=8
 
 PLOCALES="ar ast bg ca cs da de el en en_US eo es fa fi fr he hi hr hu it ja 
ko lt ml nb_NO nl or pa pl pt_BR pt_PT rm ro ru si sk sl sr_RS@cyrillic 
sr_RS@latin sv ta te th tr uk wa zh_CN zh_TW"
 PLOCALE_BACKUP="en"
 
-inherit autotools eapi7-ver estack eutils flag-o-matic gnome2-utils multilib 
multilib-minimal pax-utils plocale toolchain-funcs virtualx xdg-utils
+inherit autotools estack flag-o-matic multilib-minimal pax-utils plocale 
toolchain-funcs virtualx wrapper xdg-utils
 
 MY_PN="${PN%%-*}"
 MY_P="${MY_PN}-${PV}"
@@ -47,7 +47,13 @@ REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 )
 # or fail due to Xvfb's opengl limitations.
 RESTRICT="test"
 
+BDEPEND="mingw? ( !!>=cross-i686-w64-mingw32/binutils-2.38 
!!>=cross-x86_64-w64-mingw32/binutils-2.38 )
+ sys-devel/flex
+ virtual/yacc
+ virtual/pkgconfig"
+
 COMMON_DEPEND="
+   ${BDEPEND}
X? (
x11-libs/libXcursor[${MULTILIB_USEDEP}]

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-staging/

2022-04-10 Thread Nick Sarnie
commit: 01a5bb0950c9319331c6a3153378da642aadaa58
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sun Apr 10 19:42:54 2022 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sun Apr 10 19:54:16 2022 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=01a5bb09

app-emulation/wine-staging: EAPI 8

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-staging/wine-staging-7.3.ebuild  | 17 ++---
 app-emulation/wine-staging/wine-staging-7.4.ebuild  | 19 +++
 app-emulation/wine-staging/wine-staging-7.5.ebuild  | 14 --
 app-emulation/wine-staging/wine-staging-7.6.ebuild  | 14 --
 app-emulation/wine-staging/wine-staging-.ebuild | 14 --
 5 files changed, 45 insertions(+), 33 deletions(-)

diff --git a/app-emulation/wine-staging/wine-staging-7.3.ebuild 
b/app-emulation/wine-staging/wine-staging-7.3.ebuild
index 5c6ad86..35870f8 100644
--- a/app-emulation/wine-staging/wine-staging-7.3.ebuild
+++ b/app-emulation/wine-staging/wine-staging-7.3.ebuild
@@ -1,12 +1,12 @@
 # Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=8
 
 PLOCALES="ar ast bg ca cs da de el en en_US eo es fa fi fr he hi hr hu it ja 
ko lt ml nb_NO nl or pa pl pt_BR pt_PT rm ro ru si sk sl sr_RS@cyrillic 
sr_RS@latin sv ta te th tr uk wa zh_CN zh_TW"
 PLOCALE_BACKUP="en"
 
-inherit autotools eapi7-ver estack eutils flag-o-matic gnome2-utils multilib 
multilib-minimal pax-utils plocale toolchain-funcs virtualx xdg-utils
+inherit autotools estack flag-o-matic multilib-minimal pax-utils plocale 
toolchain-funcs virtualx wrapper xdg-utils
 MY_PN="${PN%%-*}"
 MY_PV="${PV/_/-}"
 MY_P="${MY_PN}-${MY_PV}"
@@ -61,7 +61,13 @@ REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 )
 # or fail due to Xvfb's opengl limitations.
 RESTRICT="test"
 
+BDEPEND="mingw? ( !!>=cross-i686-w64-mingw32/binutils-2.38 
!!>=cross-x86_64-w64-mingw32/binutils-2.38 )
+ sys-devel/flex
+ virtual/yacc
+ virtual/pkgconfig"
+
 COMMON_DEPEND="
+   ${BDEPEND}
X? (
x11-libs/libXcursor[${MULTILIB_USEDEP}]
x11-libs/libXext[${MULTILIB_USEDEP}]
@@ -131,10 +137,7 @@ RDEPEND="${COMMON_DEPEND}
 
 # tools/make_requests requires perl
 DEPEND="${COMMON_DEPEND}
-   sys-devel/flex
>=sys-kernel/linux-headers-2.6
-   virtual/pkgconfig
-   virtual/yacc
X? ( x11-base/xorg-proto )
staging? (
dev-lang/perl
@@ -275,8 +278,8 @@ pkg_pretend() {
# Verify OSS support
if use oss; then
if ! has_version ">=media-sound/oss-4"; then
-   eerror "You cannot build wine with USE=oss 
without having support from a"
-   eerror "FreeBSD kernel or >=media-sound/oss-4 
(only available through external repos)"
+   eerror "You cannot build wine with USE=oss 
without having support from"
+   eerror ">=media-sound/oss-4 (only available 
through external repos)"
eerror
die
fi

diff --git a/app-emulation/wine-staging/wine-staging-7.4.ebuild 
b/app-emulation/wine-staging/wine-staging-7.4.ebuild
index cf584a4..35870f8 100644
--- a/app-emulation/wine-staging/wine-staging-7.4.ebuild
+++ b/app-emulation/wine-staging/wine-staging-7.4.ebuild
@@ -1,12 +1,12 @@
 # Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=8
 
 PLOCALES="ar ast bg ca cs da de el en en_US eo es fa fi fr he hi hr hu it ja 
ko lt ml nb_NO nl or pa pl pt_BR pt_PT rm ro ru si sk sl sr_RS@cyrillic 
sr_RS@latin sv ta te th tr uk wa zh_CN zh_TW"
 PLOCALE_BACKUP="en"
 
-inherit autotools eapi7-ver estack eutils flag-o-matic gnome2-utils multilib 
multilib-minimal pax-utils plocale toolchain-funcs virtualx xdg-utils
+inherit autotools estack flag-o-matic multilib-minimal pax-utils plocale 
toolchain-funcs virtualx wrapper xdg-utils
 MY_PN="${PN%%-*}"
 MY_PV="${PV/_/-}"
 MY_P="${MY_PN}-${MY_PV}"
@@ -48,7 +48,7 @@ fi
 
 LICENSE="LGPL-2.1"
 SLOT="${MY_PV}"
-IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos elibc_glibc 
+fontconfig +gecko gphoto2 gssapi gstreamer kerberos ldap mingw +mono mp3 
netapi nls odbc openal opencl +opengl osmesa oss +perl pcap pipelight 
pulseaudio +realtime +run-exes samba scanner sdl selinux +ssl staging test 
+threads +truetype udev +udisks +unwind usb v4l vkd3d vulkan +X +xcomposite 
xinerama"
+IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos +fontconfig 
+gecko gphoto2 gssapi gstreamer kerberos ldap mingw +mono mp3 netapi nls odbc 
openal opencl +opengl osmesa oss +perl pcap pipelight pulseaudio +realtime 
+run-exes samba scanner sdl selinux +ssl staging test +threads +truetype 

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-mono/

2022-04-09 Thread Nick Sarnie
commit: f0e2e94545ae1751f37a7ca8987b2fef38b59617
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sat Apr  9 14:50:10 2022 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sat Apr  9 14:50:10 2022 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=f0e2e945

app-emulation/wine-mono: Version bump

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-mono/Manifest   |  2 ++
 app-emulation/wine-mono/wine-mono-7.2.0.ebuild | 29 ++
 2 files changed, 31 insertions(+)

diff --git a/app-emulation/wine-mono/Manifest b/app-emulation/wine-mono/Manifest
index 38e82d0..b6a633e 100644
--- a/app-emulation/wine-mono/Manifest
+++ b/app-emulation/wine-mono/Manifest
@@ -30,6 +30,8 @@ DIST wine-mono-7.0.0-x86.msi 86433280 BLAKE2B 
9d164bf10f9c790a1f518624321a779658
 DIST wine-mono-7.0.0-x86.tar.xz 45085800 BLAKE2B 
504c57acce486c19a54bf33cdb4b9444c07a58a7f56ced0c93178886a91fa5d94a61f6e26aa885f3e3a2cceb2ff792f01006a4b16fa5bb88c3d25ddff02fefd7
 SHA512 
a3977563c5eb6418eaeda25e5b39bd2ef1faf305d514979211e049280c4577718ca48c8566e527b97a58fc465b310dd600093a616102573e12e8985794d828a6
 DIST wine-mono-7.1.1-x86.msi 86606336 BLAKE2B 
817d02bc090e5f324519a118de53a51510f601e86b84f93e06762ac583038cf96ce3f2cdd107c838261bc5f93cd336c1c0f18ac414626b98bbe4f35ad2749e04
 SHA512 
5a9a01d129c095d2fe8301073fefee7dca8cc26b9fc72c9ea88c00cbaacd1a40e2defb163152448c3de94ebe7cff46aa81f92ccf09fcaf084a7a18805fa03294
 DIST wine-mono-7.1.1-x86.tar.xz 45220396 BLAKE2B 
8a4cfa9496a51adb884c9062162413564cb939624ec551e97467eed41efc6e67e6296b2b0924eaa9565e98ea5595e140db691f23ef28edbf16456e3f6d39bd05
 SHA512 
b52f8a71900a34c687fd86559db16f2b7a3abe0f3965b5050e1859646c7bb00e070cc394f9a175995ccb50501d15844853b49931a7ac7cd2022581e241f31924
+DIST wine-mono-7.2.0-x86.msi 86910464 BLAKE2B 
4e07c88202b85141faa5fe66e8254839f9d048922fcae6f71468273c1443c148f32746f0cc58b8c16f4f5c46678076072ae5a443e090371ad863387f4c5f15f0
 SHA512 
855a829a247de1e6ee31e07d06cc9d23b3011f43937c13a04f992fbc99080c32cd2dfc44e07bbdf6a71935b75192dd0648288c622eae00b3226e3c58ff55d826
+DIST wine-mono-7.2.0-x86.tar.xz 42477712 BLAKE2B 
f82e5b16b7f6554d919fa082eaa1686a22b798b1cf377aaa6b29f67682749a6e851cd3ee4d52a227c8d279442ed018704a92e3917593de70e588b47a7635395b
 SHA512 
791c93425f37dfb7d481f0afb1b15bd18b084a764d70d2bf211fe791c94c44673940177870dae898e6b0adf3bf08f01f0ecb2fc1c5783c96f4ed4cede8fdb34d
 DIST wine-mono-bin-4.8.1.tar.gz 91047479 BLAKE2B 
ec970be25b6fcb6c4b93fecf7aa279397654be9614a12a31752b1b4c6f74fb8a52171112deaa64e8c55c8d8f88626f059a1876bcde001b0a032535f447babc77
 SHA512 
c3b8de735cb31805c1ac671fa7a5af53a2262e033f8eb1bba8bd82df77ea26305330500d661e25a2482e50ce17d4f14bca3973a4e48887c5ddfaab56c3ff59f8
 DIST wine-mono-bin-4.8.3.tar.gz 91309002 BLAKE2B 
d3a24fad76afce5a812d17cfcd585803393db95143d4c438164273eb50961120cd5081380738f43be0a574b6ffb676cb46fa70b933560e0164bd3f73b68d2fa9
 SHA512 
00564613d23cb724d04eb2515bb34dd561955a02800d17ec9cbc899697a5681aa47316bf5919ef27a61fe6f7d1d7ddf02e3d762e994d01cb4956301f2367f3c4
 DIST wine-mono-bin-4.9.0.tar.gz 90974210 BLAKE2B 
008bcbe83da76247eb242bad8f03d7591a0831e24e71195929c7589d570226a8215a02aab59b1a1d2d2dda9e5e8020de3aad8a9fd2d6d0467f5f775b50b5276e
 SHA512 
12bc6e3ca6d5ec7592ce7613b6c3ee1f6e415954f9866757d8c2fa7fa1b5b4488f1a58c368d482c47a4baad5c07431802a85e7d9df63029ef54d034669ccb01a

diff --git a/app-emulation/wine-mono/wine-mono-7.2.0.ebuild 
b/app-emulation/wine-mono/wine-mono-7.2.0.ebuild
new file mode 100644
index 000..0836b03
--- /dev/null
+++ b/app-emulation/wine-mono/wine-mono-7.2.0.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Wine Mono is a replacement for the .NET runtime and class 
libraries in Wine"
+HOMEPAGE="https://www.winehq.org/;
+SRC_URI="
+   !shared? ( https://dl.winehq.org/wine/${PN}/${PV}/${P}-x86.msi )
+   shared? ( https://dl.winehq.org/wine/${PN}/${PV}/${P}-x86.tar.xz )
+"
+
+LICENSE="BSD-2 GPL-2 LGPL-2.1 MIT MPL-1.1"
+SLOT="${PV}"
+KEYWORDS="~amd64 ~x86"
+IUSE="+shared"
+
+DEPEND="!!app-emulation/wine:0"
+
+S="${WORKDIR}"
+
+src_install() {
+   insinto /usr/share/wine/mono
+   if use shared; then
+   doins -r "${P}"
+   else
+   doins "${DISTDIR}/${P}-x86.msi"
+   fi
+}



[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-staging/

2022-04-09 Thread Nick Sarnie
commit: 6b4d06f149b6b24ca597979e1eaf3c7e02ba0b81
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sat Apr  9 14:52:53 2022 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sat Apr  9 14:53:19 2022 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=6b4d06f1

app-emulation/wine-staging: Version bump

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-staging/Manifest | 2 ++
 .../wine-staging/{wine-staging-.ebuild => wine-staging-7.6.ebuild}  | 2 +-
 app-emulation/wine-staging/wine-staging-.ebuild | 2 +-
 3 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/app-emulation/wine-staging/Manifest 
b/app-emulation/wine-staging/Manifest
index e252da0..308434e 100644
--- a/app-emulation/wine-staging/Manifest
+++ b/app-emulation/wine-staging/Manifest
@@ -82,6 +82,7 @@ DIST wine-7.2.tar.xz 27191032 BLAKE2B 
5fae75e99ba57cff9e6e5d1ff125413f2779eb786d
 DIST wine-7.3.tar.xz 27221860 BLAKE2B 
f6841f12f23bc9afb47f797ebf538e87a2453d76acfcd707942313be09e4259959c29c12188a7d70825957ef8a067efd0f5148c9f080c862bf51b87d0ee30857
 SHA512 
afadf96311e08fe5427276030ccad6b8de9727a3522711c237a9595318b05757d7390218b8614ded415b7b8c483f6501040efd8a7376e9909fa6e0e5140a
 DIST wine-7.4.tar.xz 27538164 BLAKE2B 
bad6abb8d6aa5a0f08c64e4a96b5a6f81b129e4c3e9ef0b5df624e2f2475c29060551ccca44ce9bdd52158710e819f505e1eb824692b107c99f7808bb6d1
 SHA512 
ed3e08e27ea2dbec1e317aad37bd7e3a501363dc8a5d823f9db29039006aaac6b9bfb2552aa85ae3f5678ff721e2dacb534d3b7d6ed0b959b0e5431192d03736
 DIST wine-7.5.tar.xz 27702532 BLAKE2B 
e0490d5ca8ef8dc6de807eea9f06e0dd09512dfa34aebf3a2ccbf610ad78fd09c94e3368f92966a92d80e39cd86da71bcd4a7803e1af9f7f3c8ba4cc33b72447
 SHA512 
70458d702e04075915a97a12c5ebd33ec50cbb094f5f837e6bb498e24ee48630359d819d9689e84d29708398162ca7b8f7737216fb31c350701b66733da98616
+DIST wine-7.6.tar.xz 27674208 BLAKE2B 
9c1abafca0e489876500e4640e6087456f0f93f544fba547541bc454aae5a8cb757454b1c863edc6f70cbd5a8ef848a8bdb3d6f9aaae471b97891a0a188ec640
 SHA512 
7eabae6e40df187da977ff412adda23697f8cd5f6c4e565d3fff74770f13f7c93ca3d81e77a72a1b929d7af675499e72925e4ab2225b5ca13ef0d88baf1f9646
 DIST wine-staging-150ce22fa21ffa040816e725ead34ed1de516bd8.tar.gz 9840427 
BLAKE2B 
e263d6563a5438973309346ba820acdb5079ef236c5c55694bdfa16c54f3f4fe76750ab324d6c5e1f0b429df634b917f138f4a1db38417ac2b49ce41ee36a211
 SHA512 
37f05909ca6cb28a3527f31882562146d3971f47345312b96783b5e62bc95ee61779f12f4c13e3d05ec5f331463a7600c16d5bc428d13c42bf3e3568f4d3923e
 DIST wine-staging-3f3a05f91c85cb5ccdc4c8185bcc862c6e96cd52.tar.gz 9835238 
BLAKE2B 
27c0e7fe418e7ee82c7b1cfc13c0c1508a7f4637ef7b8d64675ed4038a42961382170c064221a7bad70a4e168aef7d4e33974d06afc18fc6da4cf5db047b242e
 SHA512 
b2ad84bed89e713f4dc4f01763c40dc785f39f180a8f926c1b9e944a581ffcfd5c422427314201df1359b4b1c27dc2261281353f44ae9408e800d6add7bde366
 DIST wine-staging-4.0.tar.gz 9945756 BLAKE2B 
bfd27d5677d01b4a14c4ef593b741b6fa6e75194de04a90659ecceaa8b087d594cafdd0a53cc2ad2d05e9c73928d70d0b6681ac0052df79f7b45cbb370b31d3d
 SHA512 
4c2277449be17b83235bab7898818a886e84e82c0c5eb8216a5bc42e3d9a0e1dcf09d4522e1165d503fd9237673fa91c2c07d837cde58897f1b6fc8bc6fa5d33
@@ -157,3 +158,4 @@ DIST wine-staging-7.2.tar.gz 9625920 BLAKE2B 
4bda1fda8aa39bb49f8808ca91020ef8a4c
 DIST wine-staging-7.3.tar.gz 9668058 BLAKE2B 
9721fac9728f883309d430fa51221de31d67476640590a211a1b8047adeec4f0ad2b11a250bdc5d71e48e1e47868ed1aea3722dc7794c46bc0ed3b24219e9b14
 SHA512 
8f574bf89968d3c30944f9ba365b1ec4c4c9a662b3a54cf153d5a18be6957d8a5c2597c241ddd8a3e62cce866902e1df36594db6342b7432074e28c0e918935b
 DIST wine-staging-7.4.tar.gz 9669176 BLAKE2B 
b689ace69e9599aada78dacf7f64cc126d0c488d8cbeb6b874d4fa0ba92dfdace88d3a6fd84aceb76a39749fb872d6d23f57044d406944634a24fc77577cc593
 SHA512 
15e1cbb121b9dfb19ef3754e51f21cb42925daae6e8bf09d192cb46139bee3c3c3fcbb9172e88695a0afaf9f788751d5f8d2055f316972e3efc536570d4401ba
 DIST wine-staging-7.5.tar.gz 9669503 BLAKE2B 
dbc307bebd50f67ea7718d1409734cc724551f1ca5ea359dd0eeb050bb5a74deb1f5732cff74dd07526f719a1ab342ae821d5ecba850f2e1c684256586205668
 SHA512 
138456d1fd76fa433afe01cd1d2cadb88c631277f69734641f1136795f0761a68fdfc564b9da90a342ff42e82f04436b70bb57913f92417b14e24cd7720a7b90
+DIST wine-staging-7.6.tar.gz 9668909 BLAKE2B 
aa7860c22b10cf7aa29fa5903e5628cd36bf8b8488fc5909b92a462ddfa134a44cd2f85e2396266127d442dc38e172b94dac145507a4f84e0867436b112a16a4
 SHA512 
83bc03e7f8ee4bf21465d05de22449f26480675129b6b533865c31505e09144554c2d14cfa5c9b867d3ba4273e5acd4589d32231f79a15f3f0e8b3493d32b50d

diff --git a/app-emulation/wine-staging/wine-staging-.ebuild 
b/app-emulation/wine-staging/wine-staging-7.6.ebuild
similarity index 99%
copy from app-emulation/wine-staging/wine-staging-.ebuild
copy to app-emulation/wine-staging/wine-staging-7.6.ebuild
index 1ad582f..d5b2574 100644
--- a/app-emulation/wine-staging/wine-staging-.ebuild
+++ 

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-vanilla/

2022-04-09 Thread Nick Sarnie
commit: 35050198b1d01319adf8d9f075e4653d8905ecbd
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sat Apr  9 14:51:37 2022 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sat Apr  9 14:53:10 2022 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=35050198

app-emulation/wine-vanilla: Version bump

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-vanilla/Manifest | 1 +
 .../wine-vanilla/{wine-vanilla-.ebuild => wine-vanilla-7.6.ebuild}  | 2 +-
 app-emulation/wine-vanilla/wine-vanilla-.ebuild | 2 +-
 3 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/app-emulation/wine-vanilla/Manifest 
b/app-emulation/wine-vanilla/Manifest
index 7faac0d..d42b7e5 100644
--- a/app-emulation/wine-vanilla/Manifest
+++ b/app-emulation/wine-vanilla/Manifest
@@ -89,3 +89,4 @@ DIST wine-7.2.tar.xz 27191032 BLAKE2B 
5fae75e99ba57cff9e6e5d1ff125413f2779eb786d
 DIST wine-7.3.tar.xz 27221860 BLAKE2B 
f6841f12f23bc9afb47f797ebf538e87a2453d76acfcd707942313be09e4259959c29c12188a7d70825957ef8a067efd0f5148c9f080c862bf51b87d0ee30857
 SHA512 
afadf96311e08fe5427276030ccad6b8de9727a3522711c237a9595318b05757d7390218b8614ded415b7b8c483f6501040efd8a7376e9909fa6e0e5140a
 DIST wine-7.4.tar.xz 27538164 BLAKE2B 
bad6abb8d6aa5a0f08c64e4a96b5a6f81b129e4c3e9ef0b5df624e2f2475c29060551ccca44ce9bdd52158710e819f505e1eb824692b107c99f7808bb6d1
 SHA512 
ed3e08e27ea2dbec1e317aad37bd7e3a501363dc8a5d823f9db29039006aaac6b9bfb2552aa85ae3f5678ff721e2dacb534d3b7d6ed0b959b0e5431192d03736
 DIST wine-7.5.tar.xz 27702532 BLAKE2B 
e0490d5ca8ef8dc6de807eea9f06e0dd09512dfa34aebf3a2ccbf610ad78fd09c94e3368f92966a92d80e39cd86da71bcd4a7803e1af9f7f3c8ba4cc33b72447
 SHA512 
70458d702e04075915a97a12c5ebd33ec50cbb094f5f837e6bb498e24ee48630359d819d9689e84d29708398162ca7b8f7737216fb31c350701b66733da98616
+DIST wine-7.6.tar.xz 27674208 BLAKE2B 
9c1abafca0e489876500e4640e6087456f0f93f544fba547541bc454aae5a8cb757454b1c863edc6f70cbd5a8ef848a8bdb3d6f9aaae471b97891a0a188ec640
 SHA512 
7eabae6e40df187da977ff412adda23697f8cd5f6c4e565d3fff74770f13f7c93ca3d81e77a72a1b929d7af675499e72925e4ab2225b5ca13ef0d88baf1f9646

diff --git a/app-emulation/wine-vanilla/wine-vanilla-.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-7.6.ebuild
similarity index 99%
copy from app-emulation/wine-vanilla/wine-vanilla-.ebuild
copy to app-emulation/wine-vanilla/wine-vanilla-7.6.ebuild
index b0d32d1..79e935b 100644
--- a/app-emulation/wine-vanilla/wine-vanilla-.ebuild
+++ b/app-emulation/wine-vanilla/wine-vanilla-7.6.ebuild
@@ -103,7 +103,7 @@ RDEPEND="${COMMON_DEPEND}
dos? ( >=games-emulation/dosbox-0.74_p20160629 )
gecko? ( app-emulation/wine-gecko:2.47.2[abi_x86_32?,abi_x86_64?] )
mingw? ( !!>=cross-i686-w64-mingw32/binutils-2.38 
!!>=cross-x86_64-w64-mingw32/binutils-2.38 )
-   mono? ( app-emulation/wine-mono:7.1.1 )
+   mono? ( app-emulation/wine-mono:7.2.0 )
perl? (
dev-lang/perl
dev-perl/XML-Simple

diff --git a/app-emulation/wine-vanilla/wine-vanilla-.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-.ebuild
index b0d32d1..79e935b 100644
--- a/app-emulation/wine-vanilla/wine-vanilla-.ebuild
+++ b/app-emulation/wine-vanilla/wine-vanilla-.ebuild
@@ -103,7 +103,7 @@ RDEPEND="${COMMON_DEPEND}
dos? ( >=games-emulation/dosbox-0.74_p20160629 )
gecko? ( app-emulation/wine-gecko:2.47.2[abi_x86_32?,abi_x86_64?] )
mingw? ( !!>=cross-i686-w64-mingw32/binutils-2.38 
!!>=cross-x86_64-w64-mingw32/binutils-2.38 )
-   mono? ( app-emulation/wine-mono:7.1.1 )
+   mono? ( app-emulation/wine-mono:7.2.0 )
perl? (
dev-lang/perl
dev-perl/XML-Simple



[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-staging/

2022-03-27 Thread Nick Sarnie
commit: cfc506b98dcf28da64242187d1204d8b63f32cef
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sun Mar 27 14:51:39 2022 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sun Mar 27 14:52:42 2022 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=cfc506b9

app-emulation/wine-staging: Add blocker

Bug: https://bugs.gentoo.org/836263
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-staging/wine-staging-7.5.ebuild  | 7 ---
 app-emulation/wine-staging/wine-staging-.ebuild | 1 +
 2 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/app-emulation/wine-staging/wine-staging-7.5.ebuild 
b/app-emulation/wine-staging/wine-staging-7.5.ebuild
index cf584a4..1ad582f 100644
--- a/app-emulation/wine-staging/wine-staging-7.5.ebuild
+++ b/app-emulation/wine-staging/wine-staging-7.5.ebuild
@@ -48,7 +48,7 @@ fi
 
 LICENSE="LGPL-2.1"
 SLOT="${MY_PV}"
-IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos elibc_glibc 
+fontconfig +gecko gphoto2 gssapi gstreamer kerberos ldap mingw +mono mp3 
netapi nls odbc openal opencl +opengl osmesa oss +perl pcap pipelight 
pulseaudio +realtime +run-exes samba scanner sdl selinux +ssl staging test 
+threads +truetype udev +udisks +unwind usb v4l vkd3d vulkan +X +xcomposite 
xinerama"
+IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos +fontconfig 
+gecko gphoto2 gssapi gstreamer kerberos ldap mingw +mono mp3 netapi nls odbc 
openal opencl +opengl osmesa oss +perl pcap pipelight pulseaudio +realtime 
+run-exes samba scanner sdl selinux +ssl staging test +threads +truetype udev 
+udisks +unwind usb v4l vkd3d vulkan +X +xcomposite xinerama"
 REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 )
X? ( truetype )
elibc_glibc? ( threads )
@@ -117,6 +117,7 @@ RDEPEND="${COMMON_DEPEND}
!app-emulation/wine:0
dos? ( >=games-emulation/dosbox-0.74_p20160629 )
gecko? ( app-emulation/wine-gecko:2.47.2[abi_x86_32?,abi_x86_64?] )
+   mingw? ( !!>=cross-i686-w64-mingw32/binutils-2.38 
!!>=cross-x86_64-w64-mingw32/binutils-2.38 )
mono? ( app-emulation/wine-mono:7.1.1 )
perl? (
dev-lang/perl
@@ -275,8 +276,8 @@ pkg_pretend() {
# Verify OSS support
if use oss; then
if ! has_version ">=media-sound/oss-4"; then
-   eerror "You cannot build wine with USE=oss 
without having support from a"
-   eerror "FreeBSD kernel or >=media-sound/oss-4 
(only available through external repos)"
+   eerror "You cannot build wine with USE=oss 
without having support from"
+   eerror ">=media-sound/oss-4 (only available 
through external repos)"
eerror
die
fi

diff --git a/app-emulation/wine-staging/wine-staging-.ebuild 
b/app-emulation/wine-staging/wine-staging-.ebuild
index 4ca357d..1ad582f 100644
--- a/app-emulation/wine-staging/wine-staging-.ebuild
+++ b/app-emulation/wine-staging/wine-staging-.ebuild
@@ -117,6 +117,7 @@ RDEPEND="${COMMON_DEPEND}
!app-emulation/wine:0
dos? ( >=games-emulation/dosbox-0.74_p20160629 )
gecko? ( app-emulation/wine-gecko:2.47.2[abi_x86_32?,abi_x86_64?] )
+   mingw? ( !!>=cross-i686-w64-mingw32/binutils-2.38 
!!>=cross-x86_64-w64-mingw32/binutils-2.38 )
mono? ( app-emulation/wine-mono:7.1.1 )
perl? (
dev-lang/perl



[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-vanilla/

2022-03-27 Thread Nick Sarnie
commit: 0e5e32bb29db482b030f292f8e8e348588c4
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sun Mar 27 14:46:48 2022 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sun Mar 27 14:49:55 2022 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=0e5e32bb

app-emulation/wine-vanilla: Add blocker

Closes: https://bugs.gentoo.org/836263

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-vanilla/wine-vanilla-7.5.ebuild  | 7 ---
 app-emulation/wine-vanilla/wine-vanilla-.ebuild | 1 +
 2 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/app-emulation/wine-vanilla/wine-vanilla-7.5.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-7.5.ebuild
index 0912070..b0d32d1 100644
--- a/app-emulation/wine-vanilla/wine-vanilla-7.5.ebuild
+++ b/app-emulation/wine-vanilla/wine-vanilla-7.5.ebuild
@@ -35,7 +35,7 @@ SRC_URI="${SRC_URI}
 
 LICENSE="LGPL-2.1"
 SLOT="${PV}"
-IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos elibc_glibc 
+fontconfig +gecko gphoto2 gssapi gstreamer kerberos ldap mingw +mono mp3 
netapi nls odbc openal opencl +opengl osmesa oss +perl pcap pulseaudio 
+realtime +run-exes samba scanner sdl selinux +ssl test +threads +truetype udev 
+udisks +unwind usb v4l vkd3d vulkan +X +xcomposite xinerama"
+IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos +fontconfig 
+gecko gphoto2 gssapi gstreamer kerberos ldap mingw +mono mp3 netapi nls odbc 
openal opencl +opengl osmesa oss +perl pcap pulseaudio +realtime +run-exes 
samba scanner sdl selinux +ssl test +threads +truetype udev +udisks +unwind usb 
v4l vkd3d vulkan +X +xcomposite xinerama"
 REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 )
X? ( truetype )
elibc_glibc? ( threads )
@@ -102,6 +102,7 @@ RDEPEND="${COMMON_DEPEND}
!app-emulation/wine:0
dos? ( >=games-emulation/dosbox-0.74_p20160629 )
gecko? ( app-emulation/wine-gecko:2.47.2[abi_x86_32?,abi_x86_64?] )
+   mingw? ( !!>=cross-i686-w64-mingw32/binutils-2.38 
!!>=cross-x86_64-w64-mingw32/binutils-2.38 )
mono? ( app-emulation/wine-mono:7.1.1 )
perl? (
dev-lang/perl
@@ -243,8 +244,8 @@ pkg_pretend() {
# Verify OSS support
if use oss; then
if ! has_version ">=media-sound/oss-4"; then
-   eerror "You cannot build wine with USE=oss without 
having support from a"
-   eerror "FreeBSD kernel or >=media-sound/oss-4 (only 
available through external repos)"
+   eerror "You cannot build wine with USE=oss without 
having support from"
+   eerror ">=media-sound/oss-4 (only available through 
external repos)"
eerror
die
fi

diff --git a/app-emulation/wine-vanilla/wine-vanilla-.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-.ebuild
index 07745fe..b0d32d1 100644
--- a/app-emulation/wine-vanilla/wine-vanilla-.ebuild
+++ b/app-emulation/wine-vanilla/wine-vanilla-.ebuild
@@ -102,6 +102,7 @@ RDEPEND="${COMMON_DEPEND}
!app-emulation/wine:0
dos? ( >=games-emulation/dosbox-0.74_p20160629 )
gecko? ( app-emulation/wine-gecko:2.47.2[abi_x86_32?,abi_x86_64?] )
+   mingw? ( !!>=cross-i686-w64-mingw32/binutils-2.38 
!!>=cross-x86_64-w64-mingw32/binutils-2.38 )
mono? ( app-emulation/wine-mono:7.1.1 )
perl? (
dev-lang/perl



[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-vanilla/

2022-03-25 Thread Nick Sarnie
commit: b389cc4774a9bd3f82f8d956c2358efad85ff64b
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sat Mar 26 00:20:46 2022 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sat Mar 26 00:20:54 2022 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=b389cc47

app-emulation/wine-vanilla: Bump to 7.5

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-vanilla/Manifest|   1 +
 app-emulation/wine-vanilla/wine-vanilla-7.5.ebuild | 541 +
 2 files changed, 542 insertions(+)

diff --git a/app-emulation/wine-vanilla/Manifest 
b/app-emulation/wine-vanilla/Manifest
index a6465f7..7faac0d 100644
--- a/app-emulation/wine-vanilla/Manifest
+++ b/app-emulation/wine-vanilla/Manifest
@@ -88,3 +88,4 @@ DIST wine-7.1.tar.xz 27149156 BLAKE2B 
a97b408a73b5cee52ac5e91b03a0e1850f5567e818
 DIST wine-7.2.tar.xz 27191032 BLAKE2B 
5fae75e99ba57cff9e6e5d1ff125413f2779eb786da47305d4bdfda2ac35fa80b72f9157f82ac39291f294d892bb8c3d8add869d738ca3e9ef3d1530c6d647af
 SHA512 
13db73950218bc743803b2c60cee2534f38804a940e9666aad0f0f91e26bd5d432ca2f0cd8134ff6c43bb8dae253098d2e3db0a3621aa38fac9a1574152b8729
 DIST wine-7.3.tar.xz 27221860 BLAKE2B 
f6841f12f23bc9afb47f797ebf538e87a2453d76acfcd707942313be09e4259959c29c12188a7d70825957ef8a067efd0f5148c9f080c862bf51b87d0ee30857
 SHA512 
afadf96311e08fe5427276030ccad6b8de9727a3522711c237a9595318b05757d7390218b8614ded415b7b8c483f6501040efd8a7376e9909fa6e0e5140a
 DIST wine-7.4.tar.xz 27538164 BLAKE2B 
bad6abb8d6aa5a0f08c64e4a96b5a6f81b129e4c3e9ef0b5df624e2f2475c29060551ccca44ce9bdd52158710e819f505e1eb824692b107c99f7808bb6d1
 SHA512 
ed3e08e27ea2dbec1e317aad37bd7e3a501363dc8a5d823f9db29039006aaac6b9bfb2552aa85ae3f5678ff721e2dacb534d3b7d6ed0b959b0e5431192d03736
+DIST wine-7.5.tar.xz 27702532 BLAKE2B 
e0490d5ca8ef8dc6de807eea9f06e0dd09512dfa34aebf3a2ccbf610ad78fd09c94e3368f92966a92d80e39cd86da71bcd4a7803e1af9f7f3c8ba4cc33b72447
 SHA512 
70458d702e04075915a97a12c5ebd33ec50cbb094f5f837e6bb498e24ee48630359d819d9689e84d29708398162ca7b8f7737216fb31c350701b66733da98616

diff --git a/app-emulation/wine-vanilla/wine-vanilla-7.5.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-7.5.ebuild
new file mode 100644
index 000..0912070
--- /dev/null
+++ b/app-emulation/wine-vanilla/wine-vanilla-7.5.ebuild
@@ -0,0 +1,541 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PLOCALES="ar ast bg ca cs da de el en en_US eo es fa fi fr he hi hr hu it ja 
ko lt ml nb_NO nl or pa pl pt_BR pt_PT rm ro ru si sk sl sr_RS@cyrillic 
sr_RS@latin sv ta te th tr uk wa zh_CN zh_TW"
+PLOCALE_BACKUP="en"
+
+inherit autotools eapi7-ver estack eutils flag-o-matic gnome2-utils multilib 
multilib-minimal pax-utils plocale toolchain-funcs virtualx xdg-utils
+
+MY_PN="${PN%%-*}"
+MY_P="${MY_PN}-${PV}"
+
+if [[ ${PV} == "" ]] ; then
+   EGIT_REPO_URI="https://source.winehq.org/git/wine.git;
+   EGIT_BRANCH="master"
+   inherit git-r3
+   SRC_URI=""
+   #KEYWORDS=""
+else
+   MAJOR_V=$(ver_cut 1)
+   SRC_URI="https://dl.winehq.org/wine/source/${MAJOR_V}.x/${MY_P}.tar.xz;
+   KEYWORDS="-* ~amd64 ~x86"
+fi
+S="${WORKDIR}/${MY_P}"
+
+GWP_V="20211122"
+PATCHDIR="${WORKDIR}/gentoo-wine-patches"
+
+DESCRIPTION="Free implementation of Windows(tm) on Unix, without external 
patchsets"
+HOMEPAGE="https://www.winehq.org/;
+SRC_URI="${SRC_URI}
+   
https://dev.gentoo.org/~sarnex/distfiles/wine/gentoo-wine-patches-${GWP_V}.tar.xz
+"
+
+LICENSE="LGPL-2.1"
+SLOT="${PV}"
+IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos elibc_glibc 
+fontconfig +gecko gphoto2 gssapi gstreamer kerberos ldap mingw +mono mp3 
netapi nls odbc openal opencl +opengl osmesa oss +perl pcap pulseaudio 
+realtime +run-exes samba scanner sdl selinux +ssl test +threads +truetype udev 
+udisks +unwind usb v4l vkd3d vulkan +X +xcomposite xinerama"
+REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 )
+   X? ( truetype )
+   elibc_glibc? ( threads )
+   osmesa? ( opengl )
+   test? ( abi_x86_32 )
+   vkd3d? ( vulkan )" # osmesa-opengl #286560 # X-truetype #551124
+
+# FIXME: the test suite is unsuitable for us; many tests require net access
+# or fail due to Xvfb's opengl limitations.
+RESTRICT="test"
+
+COMMON_DEPEND="
+   X? (
+   x11-libs/libXcursor[${MULTILIB_USEDEP}]
+   x11-libs/libXext[${MULTILIB_USEDEP}]
+   x11-libs/libXfixes[${MULTILIB_USEDEP}]
+   x11-libs/libXrandr[${MULTILIB_USEDEP}]
+   x11-libs/libXi[${MULTILIB_USEDEP}]
+   x11-libs/libXxf86vm[${MULTILIB_USEDEP}]
+   )
+   alsa? ( media-libs/alsa-lib[${MULTILIB_USEDEP}] )
+   capi? ( net-libs/libcapi[${MULTILIB_USEDEP}] )
+   cups? ( net-print/cups:=[${MULTILIB_USEDEP}] )
+   fontconfig? ( media-libs/fontconfig:=[${MULTILIB_USEDEP}] )
+   gphoto2? (
+   

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-staging/

2022-03-25 Thread Nick Sarnie
commit: 57924f0f900e3fd1f878bc72594236da6de2201e
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sat Mar 26 00:22:15 2022 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sat Mar 26 00:22:21 2022 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=57924f0f

app-emulation/wine-staging: Bump to 7.5

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-staging/Manifest|   2 +
 app-emulation/wine-staging/wine-staging-7.5.ebuild | 616 +
 2 files changed, 618 insertions(+)

diff --git a/app-emulation/wine-staging/Manifest 
b/app-emulation/wine-staging/Manifest
index 88548d3..e252da0 100644
--- a/app-emulation/wine-staging/Manifest
+++ b/app-emulation/wine-staging/Manifest
@@ -81,6 +81,7 @@ DIST wine-7.1.tar.xz 27149156 BLAKE2B 
a97b408a73b5cee52ac5e91b03a0e1850f5567e818
 DIST wine-7.2.tar.xz 27191032 BLAKE2B 
5fae75e99ba57cff9e6e5d1ff125413f2779eb786da47305d4bdfda2ac35fa80b72f9157f82ac39291f294d892bb8c3d8add869d738ca3e9ef3d1530c6d647af
 SHA512 
13db73950218bc743803b2c60cee2534f38804a940e9666aad0f0f91e26bd5d432ca2f0cd8134ff6c43bb8dae253098d2e3db0a3621aa38fac9a1574152b8729
 DIST wine-7.3.tar.xz 27221860 BLAKE2B 
f6841f12f23bc9afb47f797ebf538e87a2453d76acfcd707942313be09e4259959c29c12188a7d70825957ef8a067efd0f5148c9f080c862bf51b87d0ee30857
 SHA512 
afadf96311e08fe5427276030ccad6b8de9727a3522711c237a9595318b05757d7390218b8614ded415b7b8c483f6501040efd8a7376e9909fa6e0e5140a
 DIST wine-7.4.tar.xz 27538164 BLAKE2B 
bad6abb8d6aa5a0f08c64e4a96b5a6f81b129e4c3e9ef0b5df624e2f2475c29060551ccca44ce9bdd52158710e819f505e1eb824692b107c99f7808bb6d1
 SHA512 
ed3e08e27ea2dbec1e317aad37bd7e3a501363dc8a5d823f9db29039006aaac6b9bfb2552aa85ae3f5678ff721e2dacb534d3b7d6ed0b959b0e5431192d03736
+DIST wine-7.5.tar.xz 27702532 BLAKE2B 
e0490d5ca8ef8dc6de807eea9f06e0dd09512dfa34aebf3a2ccbf610ad78fd09c94e3368f92966a92d80e39cd86da71bcd4a7803e1af9f7f3c8ba4cc33b72447
 SHA512 
70458d702e04075915a97a12c5ebd33ec50cbb094f5f837e6bb498e24ee48630359d819d9689e84d29708398162ca7b8f7737216fb31c350701b66733da98616
 DIST wine-staging-150ce22fa21ffa040816e725ead34ed1de516bd8.tar.gz 9840427 
BLAKE2B 
e263d6563a5438973309346ba820acdb5079ef236c5c55694bdfa16c54f3f4fe76750ab324d6c5e1f0b429df634b917f138f4a1db38417ac2b49ce41ee36a211
 SHA512 
37f05909ca6cb28a3527f31882562146d3971f47345312b96783b5e62bc95ee61779f12f4c13e3d05ec5f331463a7600c16d5bc428d13c42bf3e3568f4d3923e
 DIST wine-staging-3f3a05f91c85cb5ccdc4c8185bcc862c6e96cd52.tar.gz 9835238 
BLAKE2B 
27c0e7fe418e7ee82c7b1cfc13c0c1508a7f4637ef7b8d64675ed4038a42961382170c064221a7bad70a4e168aef7d4e33974d06afc18fc6da4cf5db047b242e
 SHA512 
b2ad84bed89e713f4dc4f01763c40dc785f39f180a8f926c1b9e944a581ffcfd5c422427314201df1359b4b1c27dc2261281353f44ae9408e800d6add7bde366
 DIST wine-staging-4.0.tar.gz 9945756 BLAKE2B 
bfd27d5677d01b4a14c4ef593b741b6fa6e75194de04a90659ecceaa8b087d594cafdd0a53cc2ad2d05e9c73928d70d0b6681ac0052df79f7b45cbb370b31d3d
 SHA512 
4c2277449be17b83235bab7898818a886e84e82c0c5eb8216a5bc42e3d9a0e1dcf09d4522e1165d503fd9237673fa91c2c07d837cde58897f1b6fc8bc6fa5d33
@@ -155,3 +156,4 @@ DIST wine-staging-7.1.tar.gz 9623294 BLAKE2B 
a76aae22b93d8e56000998dcd4300af5a60
 DIST wine-staging-7.2.tar.gz 9625920 BLAKE2B 
4bda1fda8aa39bb49f8808ca91020ef8a4ccdd74878085d8c7d31d68b9f622a936a72dcbca5cd2a9f990dae95c6d5e9b1a55c83f062cdd5ca4e88116d685affa
 SHA512 
d8e0779b143424d5677ec556140db8698e414c240b9107a62ed3364e57e1e9d1c7115d141a71997ed4d436154b5254b061bac5071dd99b0d4729053e73304c38
 DIST wine-staging-7.3.tar.gz 9668058 BLAKE2B 
9721fac9728f883309d430fa51221de31d67476640590a211a1b8047adeec4f0ad2b11a250bdc5d71e48e1e47868ed1aea3722dc7794c46bc0ed3b24219e9b14
 SHA512 
8f574bf89968d3c30944f9ba365b1ec4c4c9a662b3a54cf153d5a18be6957d8a5c2597c241ddd8a3e62cce866902e1df36594db6342b7432074e28c0e918935b
 DIST wine-staging-7.4.tar.gz 9669176 BLAKE2B 
b689ace69e9599aada78dacf7f64cc126d0c488d8cbeb6b874d4fa0ba92dfdace88d3a6fd84aceb76a39749fb872d6d23f57044d406944634a24fc77577cc593
 SHA512 
15e1cbb121b9dfb19ef3754e51f21cb42925daae6e8bf09d192cb46139bee3c3c3fcbb9172e88695a0afaf9f788751d5f8d2055f316972e3efc536570d4401ba
+DIST wine-staging-7.5.tar.gz 9669503 BLAKE2B 
dbc307bebd50f67ea7718d1409734cc724551f1ca5ea359dd0eeb050bb5a74deb1f5732cff74dd07526f719a1ab342ae821d5ecba850f2e1c684256586205668
 SHA512 
138456d1fd76fa433afe01cd1d2cadb88c631277f69734641f1136795f0761a68fdfc564b9da90a342ff42e82f04436b70bb57913f92417b14e24cd7720a7b90

diff --git a/app-emulation/wine-staging/wine-staging-7.5.ebuild 
b/app-emulation/wine-staging/wine-staging-7.5.ebuild
new file mode 100644
index 000..cf584a4
--- /dev/null
+++ b/app-emulation/wine-staging/wine-staging-7.5.ebuild
@@ -0,0 +1,616 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PLOCALES="ar ast bg ca cs da de el en en_US eo es fa fi fr he hi hr hu it ja 
ko lt ml nb_NO nl or pa pl pt_BR pt_PT rm ro 

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-vanilla/

2022-03-11 Thread Nick Sarnie
commit: 830752e5effc7b632dfc86213517616bfdb860bb
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sat Mar 12 02:24:50 2022 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sat Mar 12 02:31:48 2022 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=830752e5

app-emulation/wine-vanilla: Version bump

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-vanilla/Manifest|   1 +
 app-emulation/wine-vanilla/wine-vanilla-7.4.ebuild | 541 +
 2 files changed, 542 insertions(+)

diff --git a/app-emulation/wine-vanilla/Manifest 
b/app-emulation/wine-vanilla/Manifest
index 64dd57b..a6465f7 100644
--- a/app-emulation/wine-vanilla/Manifest
+++ b/app-emulation/wine-vanilla/Manifest
@@ -87,3 +87,4 @@ DIST wine-7.0.tar.xz 27120912 BLAKE2B 
84bfeb28d56f0f40bb93b1b5bf8954c8be2fd90fde
 DIST wine-7.1.tar.xz 27149156 BLAKE2B 
a97b408a73b5cee52ac5e91b03a0e1850f5567e818d0383e4a546482b5f383eb185ed3ee2cf26377600d6963736b27180d2a87d79c58c053d37ead8d488e5268
 SHA512 
4b226ecab92a0462fb579602549cb4b96e0baa353fd320a0bc8d1ce134eff5a434600fcf748e93ecde06624f78b8c0d70b39737d97a7e2327a61df9750ae30b5
 DIST wine-7.2.tar.xz 27191032 BLAKE2B 
5fae75e99ba57cff9e6e5d1ff125413f2779eb786da47305d4bdfda2ac35fa80b72f9157f82ac39291f294d892bb8c3d8add869d738ca3e9ef3d1530c6d647af
 SHA512 
13db73950218bc743803b2c60cee2534f38804a940e9666aad0f0f91e26bd5d432ca2f0cd8134ff6c43bb8dae253098d2e3db0a3621aa38fac9a1574152b8729
 DIST wine-7.3.tar.xz 27221860 BLAKE2B 
f6841f12f23bc9afb47f797ebf538e87a2453d76acfcd707942313be09e4259959c29c12188a7d70825957ef8a067efd0f5148c9f080c862bf51b87d0ee30857
 SHA512 
afadf96311e08fe5427276030ccad6b8de9727a3522711c237a9595318b05757d7390218b8614ded415b7b8c483f6501040efd8a7376e9909fa6e0e5140a
+DIST wine-7.4.tar.xz 27538164 BLAKE2B 
bad6abb8d6aa5a0f08c64e4a96b5a6f81b129e4c3e9ef0b5df624e2f2475c29060551ccca44ce9bdd52158710e819f505e1eb824692b107c99f7808bb6d1
 SHA512 
ed3e08e27ea2dbec1e317aad37bd7e3a501363dc8a5d823f9db29039006aaac6b9bfb2552aa85ae3f5678ff721e2dacb534d3b7d6ed0b959b0e5431192d03736

diff --git a/app-emulation/wine-vanilla/wine-vanilla-7.4.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-7.4.ebuild
new file mode 100644
index 000..0912070
--- /dev/null
+++ b/app-emulation/wine-vanilla/wine-vanilla-7.4.ebuild
@@ -0,0 +1,541 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PLOCALES="ar ast bg ca cs da de el en en_US eo es fa fi fr he hi hr hu it ja 
ko lt ml nb_NO nl or pa pl pt_BR pt_PT rm ro ru si sk sl sr_RS@cyrillic 
sr_RS@latin sv ta te th tr uk wa zh_CN zh_TW"
+PLOCALE_BACKUP="en"
+
+inherit autotools eapi7-ver estack eutils flag-o-matic gnome2-utils multilib 
multilib-minimal pax-utils plocale toolchain-funcs virtualx xdg-utils
+
+MY_PN="${PN%%-*}"
+MY_P="${MY_PN}-${PV}"
+
+if [[ ${PV} == "" ]] ; then
+   EGIT_REPO_URI="https://source.winehq.org/git/wine.git;
+   EGIT_BRANCH="master"
+   inherit git-r3
+   SRC_URI=""
+   #KEYWORDS=""
+else
+   MAJOR_V=$(ver_cut 1)
+   SRC_URI="https://dl.winehq.org/wine/source/${MAJOR_V}.x/${MY_P}.tar.xz;
+   KEYWORDS="-* ~amd64 ~x86"
+fi
+S="${WORKDIR}/${MY_P}"
+
+GWP_V="20211122"
+PATCHDIR="${WORKDIR}/gentoo-wine-patches"
+
+DESCRIPTION="Free implementation of Windows(tm) on Unix, without external 
patchsets"
+HOMEPAGE="https://www.winehq.org/;
+SRC_URI="${SRC_URI}
+   
https://dev.gentoo.org/~sarnex/distfiles/wine/gentoo-wine-patches-${GWP_V}.tar.xz
+"
+
+LICENSE="LGPL-2.1"
+SLOT="${PV}"
+IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos elibc_glibc 
+fontconfig +gecko gphoto2 gssapi gstreamer kerberos ldap mingw +mono mp3 
netapi nls odbc openal opencl +opengl osmesa oss +perl pcap pulseaudio 
+realtime +run-exes samba scanner sdl selinux +ssl test +threads +truetype udev 
+udisks +unwind usb v4l vkd3d vulkan +X +xcomposite xinerama"
+REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 )
+   X? ( truetype )
+   elibc_glibc? ( threads )
+   osmesa? ( opengl )
+   test? ( abi_x86_32 )
+   vkd3d? ( vulkan )" # osmesa-opengl #286560 # X-truetype #551124
+
+# FIXME: the test suite is unsuitable for us; many tests require net access
+# or fail due to Xvfb's opengl limitations.
+RESTRICT="test"
+
+COMMON_DEPEND="
+   X? (
+   x11-libs/libXcursor[${MULTILIB_USEDEP}]
+   x11-libs/libXext[${MULTILIB_USEDEP}]
+   x11-libs/libXfixes[${MULTILIB_USEDEP}]
+   x11-libs/libXrandr[${MULTILIB_USEDEP}]
+   x11-libs/libXi[${MULTILIB_USEDEP}]
+   x11-libs/libXxf86vm[${MULTILIB_USEDEP}]
+   )
+   alsa? ( media-libs/alsa-lib[${MULTILIB_USEDEP}] )
+   capi? ( net-libs/libcapi[${MULTILIB_USEDEP}] )
+   cups? ( net-print/cups:=[${MULTILIB_USEDEP}] )
+   fontconfig? ( media-libs/fontconfig:=[${MULTILIB_USEDEP}] )
+   gphoto2? (
+   

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-staging/

2022-03-11 Thread Nick Sarnie
commit: 952b08faa666e30dad8ca14b16636dcb589721dc
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sat Mar 12 02:25:59 2022 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sat Mar 12 02:31:51 2022 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=952b08fa

app-emulation/wine-staging: Version bump

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-staging/Manifest|   2 +
 app-emulation/wine-staging/wine-staging-7.4.ebuild | 616 +
 2 files changed, 618 insertions(+)

diff --git a/app-emulation/wine-staging/Manifest 
b/app-emulation/wine-staging/Manifest
index 8b89e08..88548d3 100644
--- a/app-emulation/wine-staging/Manifest
+++ b/app-emulation/wine-staging/Manifest
@@ -80,6 +80,7 @@ DIST wine-7.0.tar.xz 27120912 BLAKE2B 
84bfeb28d56f0f40bb93b1b5bf8954c8be2fd90fde
 DIST wine-7.1.tar.xz 27149156 BLAKE2B 
a97b408a73b5cee52ac5e91b03a0e1850f5567e818d0383e4a546482b5f383eb185ed3ee2cf26377600d6963736b27180d2a87d79c58c053d37ead8d488e5268
 SHA512 
4b226ecab92a0462fb579602549cb4b96e0baa353fd320a0bc8d1ce134eff5a434600fcf748e93ecde06624f78b8c0d70b39737d97a7e2327a61df9750ae30b5
 DIST wine-7.2.tar.xz 27191032 BLAKE2B 
5fae75e99ba57cff9e6e5d1ff125413f2779eb786da47305d4bdfda2ac35fa80b72f9157f82ac39291f294d892bb8c3d8add869d738ca3e9ef3d1530c6d647af
 SHA512 
13db73950218bc743803b2c60cee2534f38804a940e9666aad0f0f91e26bd5d432ca2f0cd8134ff6c43bb8dae253098d2e3db0a3621aa38fac9a1574152b8729
 DIST wine-7.3.tar.xz 27221860 BLAKE2B 
f6841f12f23bc9afb47f797ebf538e87a2453d76acfcd707942313be09e4259959c29c12188a7d70825957ef8a067efd0f5148c9f080c862bf51b87d0ee30857
 SHA512 
afadf96311e08fe5427276030ccad6b8de9727a3522711c237a9595318b05757d7390218b8614ded415b7b8c483f6501040efd8a7376e9909fa6e0e5140a
+DIST wine-7.4.tar.xz 27538164 BLAKE2B 
bad6abb8d6aa5a0f08c64e4a96b5a6f81b129e4c3e9ef0b5df624e2f2475c29060551ccca44ce9bdd52158710e819f505e1eb824692b107c99f7808bb6d1
 SHA512 
ed3e08e27ea2dbec1e317aad37bd7e3a501363dc8a5d823f9db29039006aaac6b9bfb2552aa85ae3f5678ff721e2dacb534d3b7d6ed0b959b0e5431192d03736
 DIST wine-staging-150ce22fa21ffa040816e725ead34ed1de516bd8.tar.gz 9840427 
BLAKE2B 
e263d6563a5438973309346ba820acdb5079ef236c5c55694bdfa16c54f3f4fe76750ab324d6c5e1f0b429df634b917f138f4a1db38417ac2b49ce41ee36a211
 SHA512 
37f05909ca6cb28a3527f31882562146d3971f47345312b96783b5e62bc95ee61779f12f4c13e3d05ec5f331463a7600c16d5bc428d13c42bf3e3568f4d3923e
 DIST wine-staging-3f3a05f91c85cb5ccdc4c8185bcc862c6e96cd52.tar.gz 9835238 
BLAKE2B 
27c0e7fe418e7ee82c7b1cfc13c0c1508a7f4637ef7b8d64675ed4038a42961382170c064221a7bad70a4e168aef7d4e33974d06afc18fc6da4cf5db047b242e
 SHA512 
b2ad84bed89e713f4dc4f01763c40dc785f39f180a8f926c1b9e944a581ffcfd5c422427314201df1359b4b1c27dc2261281353f44ae9408e800d6add7bde366
 DIST wine-staging-4.0.tar.gz 9945756 BLAKE2B 
bfd27d5677d01b4a14c4ef593b741b6fa6e75194de04a90659ecceaa8b087d594cafdd0a53cc2ad2d05e9c73928d70d0b6681ac0052df79f7b45cbb370b31d3d
 SHA512 
4c2277449be17b83235bab7898818a886e84e82c0c5eb8216a5bc42e3d9a0e1dcf09d4522e1165d503fd9237673fa91c2c07d837cde58897f1b6fc8bc6fa5d33
@@ -153,3 +154,4 @@ DIST wine-staging-7.0.tar.gz 9614226 BLAKE2B 
f1263abde0fcb83f1784805df13e32db187
 DIST wine-staging-7.1.tar.gz 9623294 BLAKE2B 
a76aae22b93d8e56000998dcd4300af5a60d4648a459ca21da5bc122d0c8c0d57c2e7140c01c1eea4c0c8a808e7a98db72fa91c58663ec3fd60a1c7cc8504ddc
 SHA512 
cae234a3874c8bd3a4514c81ee311871c79c6c631145497e279ae86ceb6fef8e324d622d8b9974dbe7cbffacef09d8a6cb47a042096bf1a5ba737fed017e4038
 DIST wine-staging-7.2.tar.gz 9625920 BLAKE2B 
4bda1fda8aa39bb49f8808ca91020ef8a4ccdd74878085d8c7d31d68b9f622a936a72dcbca5cd2a9f990dae95c6d5e9b1a55c83f062cdd5ca4e88116d685affa
 SHA512 
d8e0779b143424d5677ec556140db8698e414c240b9107a62ed3364e57e1e9d1c7115d141a71997ed4d436154b5254b061bac5071dd99b0d4729053e73304c38
 DIST wine-staging-7.3.tar.gz 9668058 BLAKE2B 
9721fac9728f883309d430fa51221de31d67476640590a211a1b8047adeec4f0ad2b11a250bdc5d71e48e1e47868ed1aea3722dc7794c46bc0ed3b24219e9b14
 SHA512 
8f574bf89968d3c30944f9ba365b1ec4c4c9a662b3a54cf153d5a18be6957d8a5c2597c241ddd8a3e62cce866902e1df36594db6342b7432074e28c0e918935b
+DIST wine-staging-7.4.tar.gz 9669176 BLAKE2B 
b689ace69e9599aada78dacf7f64cc126d0c488d8cbeb6b874d4fa0ba92dfdace88d3a6fd84aceb76a39749fb872d6d23f57044d406944634a24fc77577cc593
 SHA512 
15e1cbb121b9dfb19ef3754e51f21cb42925daae6e8bf09d192cb46139bee3c3c3fcbb9172e88695a0afaf9f788751d5f8d2055f316972e3efc536570d4401ba

diff --git a/app-emulation/wine-staging/wine-staging-7.4.ebuild 
b/app-emulation/wine-staging/wine-staging-7.4.ebuild
new file mode 100644
index 000..cf584a4
--- /dev/null
+++ b/app-emulation/wine-staging/wine-staging-7.4.ebuild
@@ -0,0 +1,616 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PLOCALES="ar ast bg ca cs da de el en en_US eo es fa fi fr he hi hr hu it ja 
ko lt ml nb_NO nl or pa pl pt_BR pt_PT rm 

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-staging/

2022-03-01 Thread Sam James
commit: e555240fa71b889064214f11bd5827c80b408305
Author: Sam James  gentoo  org>
AuthorDate: Sun Feb 27 03:23:29 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Feb 27 03:23:29 2022 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=e555240f

app-emulation/wine-staging: drop IUSE="kernel_FreeBSD"

Not needed (removed), we dropped all other examples in tree
a little bit ago.

Package-Manager: Portage-3.0.30, Repoman-3.0.3
RepoMan-Options: --force
Signed-off-by: Sam James  gentoo.org>

 app-emulation/wine-staging/wine-staging-4.0.ebuild | 2 +-
 app-emulation/wine-staging/wine-staging-4.1.ebuild | 2 +-
 app-emulation/wine-staging/wine-staging-4.10.ebuild| 2 +-
 app-emulation/wine-staging/wine-staging-4.11.ebuild| 2 +-
 app-emulation/wine-staging/wine-staging-4.12.1.ebuild  | 2 +-
 app-emulation/wine-staging/wine-staging-4.13.ebuild| 2 +-
 app-emulation/wine-staging/wine-staging-4.14.ebuild| 2 +-
 app-emulation/wine-staging/wine-staging-4.15.ebuild| 2 +-
 app-emulation/wine-staging/wine-staging-4.16.ebuild| 2 +-
 app-emulation/wine-staging/wine-staging-4.17.ebuild| 2 +-
 app-emulation/wine-staging/wine-staging-4.18.ebuild| 2 +-
 app-emulation/wine-staging/wine-staging-4.19.ebuild| 2 +-
 app-emulation/wine-staging/wine-staging-4.2.ebuild | 2 +-
 app-emulation/wine-staging/wine-staging-4.20.ebuild| 2 +-
 app-emulation/wine-staging/wine-staging-4.21.ebuild| 2 +-
 app-emulation/wine-staging/wine-staging-4.3.ebuild | 2 +-
 app-emulation/wine-staging/wine-staging-4.4-r1.ebuild  | 2 +-
 app-emulation/wine-staging/wine-staging-4.4.ebuild | 2 +-
 app-emulation/wine-staging/wine-staging-4.5.ebuild | 2 +-
 app-emulation/wine-staging/wine-staging-4.6-r1.ebuild  | 2 +-
 app-emulation/wine-staging/wine-staging-4.6.ebuild | 2 +-
 app-emulation/wine-staging/wine-staging-4.7-r1.ebuild  | 2 +-
 app-emulation/wine-staging/wine-staging-4.7.ebuild | 2 +-
 app-emulation/wine-staging/wine-staging-4.8.ebuild | 2 +-
 app-emulation/wine-staging/wine-staging-4.9.ebuild | 2 +-
 app-emulation/wine-staging/wine-staging-5.0.ebuild | 2 +-
 app-emulation/wine-staging/wine-staging-5.1.ebuild | 2 +-
 app-emulation/wine-staging/wine-staging-5.10-r1.ebuild | 2 +-
 app-emulation/wine-staging/wine-staging-5.11.ebuild| 2 +-
 app-emulation/wine-staging/wine-staging-5.12.ebuild| 2 +-
 app-emulation/wine-staging/wine-staging-5.13.ebuild| 2 +-
 app-emulation/wine-staging/wine-staging-5.14.ebuild| 2 +-
 app-emulation/wine-staging/wine-staging-5.15.ebuild| 2 +-
 app-emulation/wine-staging/wine-staging-5.16.ebuild| 2 +-
 app-emulation/wine-staging/wine-staging-5.17.ebuild| 2 +-
 app-emulation/wine-staging/wine-staging-5.18.ebuild| 2 +-
 app-emulation/wine-staging/wine-staging-5.19.ebuild| 2 +-
 app-emulation/wine-staging/wine-staging-5.2.ebuild | 2 +-
 app-emulation/wine-staging/wine-staging-5.20.ebuild| 2 +-
 app-emulation/wine-staging/wine-staging-5.21.ebuild| 2 +-
 app-emulation/wine-staging/wine-staging-5.22-r1.ebuild | 2 +-
 app-emulation/wine-staging/wine-staging-5.22-r2.ebuild | 2 +-
 app-emulation/wine-staging/wine-staging-5.22.ebuild| 2 +-
 app-emulation/wine-staging/wine-staging-5.3-r1.ebuild  | 2 +-
 app-emulation/wine-staging/wine-staging-5.3.ebuild | 2 +-
 app-emulation/wine-staging/wine-staging-5.4.ebuild | 2 +-
 app-emulation/wine-staging/wine-staging-5.5-r1.ebuild  | 2 +-
 app-emulation/wine-staging/wine-staging-5.5.ebuild | 2 +-
 app-emulation/wine-staging/wine-staging-5.6.ebuild | 2 +-
 app-emulation/wine-staging/wine-staging-5.7.ebuild | 2 +-
 app-emulation/wine-staging/wine-staging-5.8.ebuild | 2 +-
 app-emulation/wine-staging/wine-staging-5.9.ebuild | 2 +-
 app-emulation/wine-staging/wine-staging-6.0.ebuild | 2 +-
 app-emulation/wine-staging/wine-staging-6.1.ebuild | 2 +-
 app-emulation/wine-staging/wine-staging-6.10.ebuild| 2 +-
 app-emulation/wine-staging/wine-staging-6.11.ebuild| 2 +-
 app-emulation/wine-staging/wine-staging-6.12.ebuild| 2 +-
 app-emulation/wine-staging/wine-staging-6.13.ebuild| 2 +-
 app-emulation/wine-staging/wine-staging-6.14.ebuild| 2 +-
 app-emulation/wine-staging/wine-staging-6.15.ebuild| 2 +-
 app-emulation/wine-staging/wine-staging-6.16.ebuild| 2 +-
 app-emulation/wine-staging/wine-staging-6.17.ebuild| 2 +-
 app-emulation/wine-staging/wine-staging-6.18.ebuild| 2 +-
 app-emulation/wine-staging/wine-staging-6.19.ebuild| 2 +-
 app-emulation/wine-staging/wine-staging-6.2.ebuild | 2 +-
 app-emulation/wine-staging/wine-staging-6.20.ebuild| 2 +-
 app-emulation/wine-staging/wine-staging-6.21.ebuild| 2 +-
 app-emulation/wine-staging/wine-staging-6.22.ebuild| 2 +-
 app-emulation/wine-staging/wine-staging-6.23.ebuild| 2 +-
 app-emulation/wine-staging/wine-staging-6.3-r1.ebuild  | 2 +-
 app-emulation/wine-staging/wine-staging-6.3.ebuild   

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-vanilla/

2022-03-01 Thread Sam James
commit: 649d99fc7b2cf5b797587934c9e5f12e4d40
Author: Sam James  gentoo  org>
AuthorDate: Sun Feb 27 03:24:09 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Feb 27 03:24:09 2022 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=649d99fc

app-emulation/wine-vanilla: drop IUSE="kernel_FreeBSD"

Not needed (removed), we dropped all other examples in tree
a little bit ago.

Package-Manager: Portage-3.0.30, Repoman-3.0.3
RepoMan-Options: --force
Signed-off-by: Sam James  gentoo.org>

 app-emulation/wine-vanilla/wine-vanilla-4.0.1.ebuild| 2 +-
 app-emulation/wine-vanilla/wine-vanilla-4.0.2.ebuild| 2 +-
 app-emulation/wine-vanilla/wine-vanilla-4.0.ebuild  | 2 +-
 app-emulation/wine-vanilla/wine-vanilla-4.1.ebuild  | 2 +-
 app-emulation/wine-vanilla/wine-vanilla-4.10.ebuild | 2 +-
 app-emulation/wine-vanilla/wine-vanilla-4.11.ebuild | 2 +-
 app-emulation/wine-vanilla/wine-vanilla-4.12.1.ebuild   | 2 +-
 app-emulation/wine-vanilla/wine-vanilla-4.13.ebuild | 2 +-
 app-emulation/wine-vanilla/wine-vanilla-4.14.ebuild | 2 +-
 app-emulation/wine-vanilla/wine-vanilla-4.15.ebuild | 2 +-
 app-emulation/wine-vanilla/wine-vanilla-4.16.ebuild | 2 +-
 app-emulation/wine-vanilla/wine-vanilla-4.17.ebuild | 2 +-
 app-emulation/wine-vanilla/wine-vanilla-4.18.ebuild | 2 +-
 app-emulation/wine-vanilla/wine-vanilla-4.19.ebuild | 2 +-
 app-emulation/wine-vanilla/wine-vanilla-4.2.ebuild  | 2 +-
 app-emulation/wine-vanilla/wine-vanilla-4.20.ebuild | 2 +-
 app-emulation/wine-vanilla/wine-vanilla-4.21.ebuild | 2 +-
 app-emulation/wine-vanilla/wine-vanilla-4.3.ebuild  | 2 +-
 app-emulation/wine-vanilla/wine-vanilla-4.4.ebuild  | 2 +-
 app-emulation/wine-vanilla/wine-vanilla-4.5.ebuild  | 2 +-
 app-emulation/wine-vanilla/wine-vanilla-4.6-r1.ebuild   | 2 +-
 app-emulation/wine-vanilla/wine-vanilla-4.6.ebuild  | 2 +-
 app-emulation/wine-vanilla/wine-vanilla-4.7-r1.ebuild   | 2 +-
 app-emulation/wine-vanilla/wine-vanilla-4.7.ebuild  | 2 +-
 app-emulation/wine-vanilla/wine-vanilla-4.8.ebuild  | 2 +-
 app-emulation/wine-vanilla/wine-vanilla-4.9.ebuild  | 2 +-
 app-emulation/wine-vanilla/wine-vanilla-5.0.1.ebuild| 2 +-
 app-emulation/wine-vanilla/wine-vanilla-5.0.2.ebuild| 2 +-
 app-emulation/wine-vanilla/wine-vanilla-5.0.3-r1.ebuild | 2 +-
 app-emulation/wine-vanilla/wine-vanilla-5.0.3.ebuild| 2 +-
 app-emulation/wine-vanilla/wine-vanilla-5.0.ebuild  | 2 +-
 app-emulation/wine-vanilla/wine-vanilla-5.1.ebuild  | 2 +-
 app-emulation/wine-vanilla/wine-vanilla-5.10.ebuild | 2 +-
 app-emulation/wine-vanilla/wine-vanilla-5.11.ebuild | 2 +-
 app-emulation/wine-vanilla/wine-vanilla-5.12.ebuild | 2 +-
 app-emulation/wine-vanilla/wine-vanilla-5.13.ebuild | 2 +-
 app-emulation/wine-vanilla/wine-vanilla-5.14.ebuild | 2 +-
 app-emulation/wine-vanilla/wine-vanilla-5.15.ebuild | 2 +-
 app-emulation/wine-vanilla/wine-vanilla-5.16.ebuild | 2 +-
 app-emulation/wine-vanilla/wine-vanilla-5.17.ebuild | 2 +-
 app-emulation/wine-vanilla/wine-vanilla-5.18.ebuild | 2 +-
 app-emulation/wine-vanilla/wine-vanilla-5.19.ebuild | 2 +-
 app-emulation/wine-vanilla/wine-vanilla-5.2.ebuild  | 2 +-
 app-emulation/wine-vanilla/wine-vanilla-5.20.ebuild | 2 +-
 app-emulation/wine-vanilla/wine-vanilla-5.21.ebuild | 2 +-
 app-emulation/wine-vanilla/wine-vanilla-5.22-r1.ebuild  | 2 +-
 app-emulation/wine-vanilla/wine-vanilla-5.22-r2.ebuild  | 2 +-
 app-emulation/wine-vanilla/wine-vanilla-5.22.ebuild | 2 +-
 app-emulation/wine-vanilla/wine-vanilla-5.3.ebuild  | 2 +-
 app-emulation/wine-vanilla/wine-vanilla-5.4.ebuild  | 2 +-
 app-emulation/wine-vanilla/wine-vanilla-5.5.ebuild  | 2 +-
 app-emulation/wine-vanilla/wine-vanilla-5.6.ebuild  | 2 +-
 app-emulation/wine-vanilla/wine-vanilla-5.7.ebuild  | 2 +-
 app-emulation/wine-vanilla/wine-vanilla-5.8.ebuild  | 2 +-
 app-emulation/wine-vanilla/wine-vanilla-5.9.ebuild  | 2 +-
 app-emulation/wine-vanilla/wine-vanilla-6.0.1.ebuild| 2 +-
 app-emulation/wine-vanilla/wine-vanilla-6.0.2.ebuild| 2 +-
 app-emulation/wine-vanilla/wine-vanilla-6.0.ebuild  | 2 +-
 app-emulation/wine-vanilla/wine-vanilla-6.1.ebuild  | 2 +-
 app-emulation/wine-vanilla/wine-vanilla-6.10.ebuild | 2 +-
 app-emulation/wine-vanilla/wine-vanilla-6.11.ebuild | 2 +-
 app-emulation/wine-vanilla/wine-vanilla-6.12.ebuild | 2 +-
 app-emulation/wine-vanilla/wine-vanilla-6.13.ebuild | 2 +-
 app-emulation/wine-vanilla/wine-vanilla-6.14.ebuild | 2 +-
 app-emulation/wine-vanilla/wine-vanilla-6.15.ebuild | 2 +-
 app-emulation/wine-vanilla/wine-vanilla-6.16.ebuild | 2 +-
 app-emulation/wine-vanilla/wine-vanilla-6.17.ebuild | 2 +-
 app-emulation/wine-vanilla/wine-vanilla-6.18.ebuild | 2 +-
 app-emulation/wine-vanilla/wine-vanilla-6.19.ebuild | 2 +-
 

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-d3d9/

2022-03-01 Thread Sam James
commit: 83622b19ea9ce5a89c601b261df6a6014ac04912
Author: Sam James  gentoo  org>
AuthorDate: Sun Feb 27 03:22:51 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Feb 27 03:22:51 2022 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=83622b19

app-emulation/wine-d3d9: drop IUSE="kernel_FreeBSD"

Not needed (removed), we dropped all other examples in tree
a little bit ago.

Package-Manager: Portage-3.0.30, Repoman-3.0.3
RepoMan-Options: --force
Signed-off-by: Sam James  gentoo.org>

 app-emulation/wine-d3d9/wine-d3d9-2.0-r1.ebuild  | 2 +-
 app-emulation/wine-d3d9/wine-d3d9-2.1-r1.ebuild  | 2 +-
 app-emulation/wine-d3d9/wine-d3d9-2.10-r1.ebuild | 2 +-
 app-emulation/wine-d3d9/wine-d3d9-2.11-r1.ebuild | 2 +-
 app-emulation/wine-d3d9/wine-d3d9-2.12-r1.ebuild | 2 +-
 app-emulation/wine-d3d9/wine-d3d9-2.13-r1.ebuild | 2 +-
 app-emulation/wine-d3d9/wine-d3d9-2.14-r1.ebuild | 2 +-
 app-emulation/wine-d3d9/wine-d3d9-2.15-r1.ebuild | 2 +-
 app-emulation/wine-d3d9/wine-d3d9-2.16-r1.ebuild | 2 +-
 app-emulation/wine-d3d9/wine-d3d9-2.17-r1.ebuild | 2 +-
 app-emulation/wine-d3d9/wine-d3d9-2.18.ebuild| 2 +-
 app-emulation/wine-d3d9/wine-d3d9-2.19.ebuild| 2 +-
 app-emulation/wine-d3d9/wine-d3d9-2.2-r1.ebuild  | 2 +-
 app-emulation/wine-d3d9/wine-d3d9-2.20.ebuild| 2 +-
 app-emulation/wine-d3d9/wine-d3d9-2.21.ebuild| 2 +-
 app-emulation/wine-d3d9/wine-d3d9-2.3-r1.ebuild  | 2 +-
 app-emulation/wine-d3d9/wine-d3d9-2.4-r1.ebuild  | 2 +-
 app-emulation/wine-d3d9/wine-d3d9-2.5-r1.ebuild  | 2 +-
 app-emulation/wine-d3d9/wine-d3d9-2.6-r1.ebuild  | 2 +-
 app-emulation/wine-d3d9/wine-d3d9-2.7-r1.ebuild  | 2 +-
 app-emulation/wine-d3d9/wine-d3d9-2.8-r1.ebuild  | 2 +-
 app-emulation/wine-d3d9/wine-d3d9-2.9-r1.ebuild  | 2 +-
 app-emulation/wine-d3d9/wine-d3d9-3.10.ebuild| 2 +-
 app-emulation/wine-d3d9/wine-d3d9-3.11.ebuild| 2 +-
 app-emulation/wine-d3d9/wine-d3d9-3.12.ebuild| 2 +-
 app-emulation/wine-d3d9/wine-d3d9-3.13-r1.ebuild | 2 +-
 app-emulation/wine-d3d9/wine-d3d9-3.13.ebuild| 2 +-
 app-emulation/wine-d3d9/wine-d3d9-3.14.ebuild| 2 +-
 app-emulation/wine-d3d9/wine-d3d9-3.15.ebuild| 2 +-
 app-emulation/wine-d3d9/wine-d3d9-3.16.ebuild| 2 +-
 app-emulation/wine-d3d9/wine-d3d9-3.17.ebuild| 2 +-
 app-emulation/wine-d3d9/wine-d3d9-3.18.ebuild| 2 +-
 app-emulation/wine-d3d9/wine-d3d9-3.19.ebuild| 2 +-
 app-emulation/wine-d3d9/wine-d3d9-3.20.ebuild| 2 +-
 app-emulation/wine-d3d9/wine-d3d9-3.21.ebuild| 2 +-
 app-emulation/wine-d3d9/wine-d3d9-3.3.ebuild | 2 +-
 app-emulation/wine-d3d9/wine-d3d9-3.4.ebuild | 2 +-
 app-emulation/wine-d3d9/wine-d3d9-3.5.ebuild | 2 +-
 app-emulation/wine-d3d9/wine-d3d9-3.6.ebuild | 2 +-
 app-emulation/wine-d3d9/wine-d3d9-3.7.ebuild | 2 +-
 app-emulation/wine-d3d9/wine-d3d9-3.8.ebuild | 2 +-
 app-emulation/wine-d3d9/wine-d3d9-3.9.ebuild | 2 +-
 app-emulation/wine-d3d9/wine-d3d9-4.0.ebuild | 2 +-
 app-emulation/wine-d3d9/wine-d3d9-4.1.ebuild | 2 +-
 app-emulation/wine-d3d9/wine-d3d9-.ebuild| 2 +-
 45 files changed, 45 insertions(+), 45 deletions(-)

diff --git a/app-emulation/wine-d3d9/wine-d3d9-2.0-r1.ebuild 
b/app-emulation/wine-d3d9/wine-d3d9-2.0-r1.ebuild
index a95fef2..3e71877 100644
--- a/app-emulation/wine-d3d9/wine-d3d9-2.0-r1.ebuild
+++ b/app-emulation/wine-d3d9/wine-d3d9-2.0-r1.ebuild
@@ -44,7 +44,7 @@ fi
 
 LICENSE="LGPL-2.1"
 SLOT="${PV}"
-IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags d3d9 dos 
+fontconfig +gecko gphoto2 gsm gstreamer +jpeg kernel_FreeBSD +lcms ldap +mono 
mp3 ncurses netapi nls odbc openal opencl +opengl osmesa oss +perl pcap +png 
prelink pulseaudio +realtime +run-exes samba scanner selinux +ssl test +threads 
+truetype udev +udisks v4l +X +xcomposite xinerama +xml"
+IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags d3d9 dos 
+fontconfig +gecko gphoto2 gsm gstreamer +jpeg +lcms ldap +mono mp3 ncurses 
netapi nls odbc openal opencl +opengl osmesa oss +perl pcap +png prelink 
pulseaudio +realtime +run-exes samba scanner selinux +ssl test +threads 
+truetype udev +udisks v4l +X +xcomposite xinerama +xml"
 REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 )
X? ( truetype )
elibc_glibc? ( threads )

diff --git a/app-emulation/wine-d3d9/wine-d3d9-2.1-r1.ebuild 
b/app-emulation/wine-d3d9/wine-d3d9-2.1-r1.ebuild
index 467f7c9..d9fb5d5 100644
--- a/app-emulation/wine-d3d9/wine-d3d9-2.1-r1.ebuild
+++ b/app-emulation/wine-d3d9/wine-d3d9-2.1-r1.ebuild
@@ -44,7 +44,7 @@ fi
 
 LICENSE="LGPL-2.1"
 SLOT="${PV}"
-IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags d3d9 dos 
+fontconfig +gecko gphoto2 gsm gstreamer +jpeg kernel_FreeBSD +lcms ldap +mono 
mp3 ncurses netapi nls odbc openal opencl +opengl osmesa oss +perl pcap +png 
prelink pulseaudio +realtime +run-exes samba scanner selinux +ssl test +threads 
+truetype udev +udisks v4l +X +xcomposite xinerama +xml"
+IUSE="+abi_x86_32 +abi_x86_64 +alsa capi 

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-any/

2022-03-01 Thread Sam James
commit: 3b44b4a6a16903c27d867a54837f532771a91da8
Author: Sam James  gentoo  org>
AuthorDate: Sun Feb 27 03:22:31 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Feb 27 03:22:31 2022 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=3b44b4a6

app-emulation/wine-any: drop IUSE="kernel_FreeBSD"

Not needed (removed), we dropped all other examples in tree
a little bit ago.

Package-Manager: Portage-3.0.30, Repoman-3.0.3
RepoMan-Options: --force
Signed-off-by: Sam James  gentoo.org>

 app-emulation/wine-any/wine-any-2.0-r1.ebuild  | 2 +-
 app-emulation/wine-any/wine-any-2.1-r1.ebuild  | 2 +-
 app-emulation/wine-any/wine-any-2.10-r1.ebuild | 2 +-
 app-emulation/wine-any/wine-any-2.11-r1.ebuild | 2 +-
 app-emulation/wine-any/wine-any-2.12-r1.ebuild | 2 +-
 app-emulation/wine-any/wine-any-2.13-r1.ebuild | 2 +-
 app-emulation/wine-any/wine-any-2.14-r1.ebuild | 2 +-
 app-emulation/wine-any/wine-any-2.15-r1.ebuild | 2 +-
 app-emulation/wine-any/wine-any-2.16-r1.ebuild | 2 +-
 app-emulation/wine-any/wine-any-2.17-r1.ebuild | 2 +-
 app-emulation/wine-any/wine-any-2.18.ebuild| 2 +-
 app-emulation/wine-any/wine-any-2.19.ebuild| 2 +-
 app-emulation/wine-any/wine-any-2.2-r1.ebuild  | 2 +-
 app-emulation/wine-any/wine-any-2.20.ebuild| 2 +-
 app-emulation/wine-any/wine-any-2.21.ebuild| 2 +-
 app-emulation/wine-any/wine-any-2.3-r1.ebuild  | 2 +-
 app-emulation/wine-any/wine-any-2.4-r1.ebuild  | 2 +-
 app-emulation/wine-any/wine-any-2.5-r1.ebuild  | 2 +-
 app-emulation/wine-any/wine-any-2.6-r1.ebuild  | 2 +-
 app-emulation/wine-any/wine-any-2.7-r1.ebuild  | 2 +-
 app-emulation/wine-any/wine-any-2.8-r1.ebuild  | 2 +-
 app-emulation/wine-any/wine-any-2.9-r1.ebuild  | 2 +-
 app-emulation/wine-any/wine-any-3.10.ebuild| 2 +-
 app-emulation/wine-any/wine-any-3.11.ebuild| 2 +-
 app-emulation/wine-any/wine-any-3.12.ebuild| 2 +-
 app-emulation/wine-any/wine-any-3.13-r1.ebuild | 2 +-
 app-emulation/wine-any/wine-any-3.13.ebuild| 2 +-
 app-emulation/wine-any/wine-any-3.14.ebuild| 2 +-
 app-emulation/wine-any/wine-any-3.15.ebuild| 2 +-
 app-emulation/wine-any/wine-any-3.16.ebuild| 2 +-
 app-emulation/wine-any/wine-any-3.17.ebuild| 2 +-
 app-emulation/wine-any/wine-any-3.18.ebuild| 2 +-
 app-emulation/wine-any/wine-any-3.19.ebuild| 2 +-
 app-emulation/wine-any/wine-any-3.20.ebuild| 2 +-
 app-emulation/wine-any/wine-any-3.21.ebuild| 2 +-
 app-emulation/wine-any/wine-any-3.3.ebuild | 2 +-
 app-emulation/wine-any/wine-any-3.4.ebuild | 2 +-
 app-emulation/wine-any/wine-any-3.5.ebuild | 2 +-
 app-emulation/wine-any/wine-any-3.6.ebuild | 2 +-
 app-emulation/wine-any/wine-any-3.7.ebuild | 2 +-
 app-emulation/wine-any/wine-any-3.8.ebuild | 2 +-
 app-emulation/wine-any/wine-any-3.9.ebuild | 2 +-
 app-emulation/wine-any/wine-any-4.0.ebuild | 2 +-
 app-emulation/wine-any/wine-any-4.1.ebuild | 2 +-
 app-emulation/wine-any/wine-any-.ebuild| 2 +-
 45 files changed, 45 insertions(+), 45 deletions(-)

diff --git a/app-emulation/wine-any/wine-any-2.0-r1.ebuild 
b/app-emulation/wine-any/wine-any-2.0-r1.ebuild
index 53436c4..9fe 100644
--- a/app-emulation/wine-any/wine-any-2.0-r1.ebuild
+++ b/app-emulation/wine-any/wine-any-2.0-r1.ebuild
@@ -48,7 +48,7 @@ fi
 
 LICENSE="LGPL-2.1"
 SLOT="${PV}"
-IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags d3d9 dos 
+fontconfig +gecko gphoto2 gsm gstreamer +jpeg kernel_FreeBSD +lcms ldap +mono 
mp3 ncurses netapi nls odbc openal opencl +opengl osmesa oss +perl pcap 
pipelight +png prelink pulseaudio +realtime +run-exes s3tc samba scanner 
selinux +ssl staging test themes +threads +truetype udev +udisks v4l vaapi +X 
+xcomposite xinerama +xml"
+IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags d3d9 dos 
+fontconfig +gecko gphoto2 gsm gstreamer +jpeg +lcms ldap +mono mp3 ncurses 
netapi nls odbc openal opencl +opengl osmesa oss +perl pcap pipelight +png 
prelink pulseaudio +realtime +run-exes s3tc samba scanner selinux +ssl staging 
test themes +threads +truetype udev +udisks v4l vaapi +X +xcomposite xinerama 
+xml"
 REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 )
X? ( truetype )
elibc_glibc? ( threads )

diff --git a/app-emulation/wine-any/wine-any-2.1-r1.ebuild 
b/app-emulation/wine-any/wine-any-2.1-r1.ebuild
index 692e127..492730f 100644
--- a/app-emulation/wine-any/wine-any-2.1-r1.ebuild
+++ b/app-emulation/wine-any/wine-any-2.1-r1.ebuild
@@ -48,7 +48,7 @@ fi
 
 LICENSE="LGPL-2.1"
 SLOT="${PV}"
-IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags d3d9 dos 
+fontconfig +gecko gphoto2 gsm gstreamer +jpeg kernel_FreeBSD +lcms ldap +mono 
mp3 ncurses netapi nls odbc openal opencl +opengl osmesa oss +perl pcap 
pipelight +png prelink pulseaudio +realtime +run-exes s3tc samba scanner 
selinux +ssl staging test themes +threads +truetype udev +udisks v4l vaapi +X 
+xcomposite xinerama +xml"
+IUSE="+abi_x86_32 +abi_x86_64 +alsa capi 

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-any/

2022-03-01 Thread Sam James
commit: 72003ef79c4cef6fb9e690a35daa3eab1abce5b8
Author: Sam James  gentoo  org>
AuthorDate: Sun Feb 27 03:18:57 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Feb 27 03:18:57 2022 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=72003ef7

app-emulation/wine-any: drop IUSE="elibc_glibc"

Not needed (implicit), we dropped all other examples in tree
a little bit ago.

Package-Manager: Portage-3.0.30, Repoman-3.0.3
RepoMan-Options: --force
Signed-off-by: Sam James  gentoo.org>

 app-emulation/wine-any/wine-any-2.0-r1.ebuild  | 4 ++--
 app-emulation/wine-any/wine-any-2.1-r1.ebuild  | 4 ++--
 app-emulation/wine-any/wine-any-2.10-r1.ebuild | 4 ++--
 app-emulation/wine-any/wine-any-2.11-r1.ebuild | 4 ++--
 app-emulation/wine-any/wine-any-2.12-r1.ebuild | 4 ++--
 app-emulation/wine-any/wine-any-2.13-r1.ebuild | 4 ++--
 app-emulation/wine-any/wine-any-2.14-r1.ebuild | 4 ++--
 app-emulation/wine-any/wine-any-2.15-r1.ebuild | 4 ++--
 app-emulation/wine-any/wine-any-2.16-r1.ebuild | 4 ++--
 app-emulation/wine-any/wine-any-2.17-r1.ebuild | 4 ++--
 app-emulation/wine-any/wine-any-2.18.ebuild| 4 ++--
 app-emulation/wine-any/wine-any-2.19.ebuild| 4 ++--
 app-emulation/wine-any/wine-any-2.2-r1.ebuild  | 4 ++--
 app-emulation/wine-any/wine-any-2.20.ebuild| 4 ++--
 app-emulation/wine-any/wine-any-2.21.ebuild| 4 ++--
 app-emulation/wine-any/wine-any-2.3-r1.ebuild  | 4 ++--
 app-emulation/wine-any/wine-any-2.4-r1.ebuild  | 4 ++--
 app-emulation/wine-any/wine-any-2.5-r1.ebuild  | 4 ++--
 app-emulation/wine-any/wine-any-2.6-r1.ebuild  | 4 ++--
 app-emulation/wine-any/wine-any-2.7-r1.ebuild  | 4 ++--
 app-emulation/wine-any/wine-any-2.8-r1.ebuild  | 4 ++--
 app-emulation/wine-any/wine-any-2.9-r1.ebuild  | 4 ++--
 app-emulation/wine-any/wine-any-3.10.ebuild| 4 ++--
 app-emulation/wine-any/wine-any-3.11.ebuild| 4 ++--
 app-emulation/wine-any/wine-any-3.12.ebuild| 4 ++--
 app-emulation/wine-any/wine-any-3.13-r1.ebuild | 4 ++--
 app-emulation/wine-any/wine-any-3.13.ebuild| 4 ++--
 app-emulation/wine-any/wine-any-3.14.ebuild| 4 ++--
 app-emulation/wine-any/wine-any-3.15.ebuild| 4 ++--
 app-emulation/wine-any/wine-any-3.16.ebuild| 4 ++--
 app-emulation/wine-any/wine-any-3.17.ebuild| 4 ++--
 app-emulation/wine-any/wine-any-3.18.ebuild| 4 ++--
 app-emulation/wine-any/wine-any-3.19.ebuild| 4 ++--
 app-emulation/wine-any/wine-any-3.20.ebuild| 4 ++--
 app-emulation/wine-any/wine-any-3.21.ebuild| 4 ++--
 app-emulation/wine-any/wine-any-3.3.ebuild | 4 ++--
 app-emulation/wine-any/wine-any-3.4.ebuild | 4 ++--
 app-emulation/wine-any/wine-any-3.5.ebuild | 4 ++--
 app-emulation/wine-any/wine-any-3.6.ebuild | 4 ++--
 app-emulation/wine-any/wine-any-3.7.ebuild | 4 ++--
 app-emulation/wine-any/wine-any-3.8.ebuild | 4 ++--
 app-emulation/wine-any/wine-any-3.9.ebuild | 4 ++--
 app-emulation/wine-any/wine-any-4.0.ebuild | 4 ++--
 app-emulation/wine-any/wine-any-4.1.ebuild | 4 ++--
 app-emulation/wine-any/wine-any-.ebuild| 4 ++--
 45 files changed, 90 insertions(+), 90 deletions(-)

diff --git a/app-emulation/wine-any/wine-any-2.0-r1.ebuild 
b/app-emulation/wine-any/wine-any-2.0-r1.ebuild
index f166717..53436c4 100644
--- a/app-emulation/wine-any/wine-any-2.0-r1.ebuild
+++ b/app-emulation/wine-any/wine-any-2.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -48,7 +48,7 @@ fi
 
 LICENSE="LGPL-2.1"
 SLOT="${PV}"
-IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags d3d9 dos 
elibc_glibc +fontconfig +gecko gphoto2 gsm gstreamer +jpeg kernel_FreeBSD +lcms 
ldap +mono mp3 ncurses netapi nls odbc openal opencl +opengl osmesa oss +perl 
pcap pipelight +png prelink pulseaudio +realtime +run-exes s3tc samba scanner 
selinux +ssl staging test themes +threads +truetype udev +udisks v4l vaapi +X 
+xcomposite xinerama +xml"
+IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags d3d9 dos 
+fontconfig +gecko gphoto2 gsm gstreamer +jpeg kernel_FreeBSD +lcms ldap +mono 
mp3 ncurses netapi nls odbc openal opencl +opengl osmesa oss +perl pcap 
pipelight +png prelink pulseaudio +realtime +run-exes s3tc samba scanner 
selinux +ssl staging test themes +threads +truetype udev +udisks v4l vaapi +X 
+xcomposite xinerama +xml"
 REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 )
X? ( truetype )
elibc_glibc? ( threads )

diff --git a/app-emulation/wine-any/wine-any-2.1-r1.ebuild 
b/app-emulation/wine-any/wine-any-2.1-r1.ebuild
index 08b1f1a..692e127 100644
--- a/app-emulation/wine-any/wine-any-2.1-r1.ebuild
+++ b/app-emulation/wine-any/wine-any-2.1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -48,7 +48,7 @@ fi
 
 LICENSE="LGPL-2.1"
 

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-vanilla/

2022-03-01 Thread Sam James
commit: d98eba79e2ef9affb29fad73de5f005c51822878
Author: Sam James  gentoo  org>
AuthorDate: Sun Feb 27 03:20:36 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Feb 27 03:20:36 2022 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=d98eba79

app-emulation/wine-vanilla: drop IUSE="elibc_glibc"

Not needed (implicit), we dropped all other examples in tree
a little bit ago.

Package-Manager: Portage-3.0.30, Repoman-3.0.3
RepoMan-Options: --force
Signed-off-by: Sam James  gentoo.org>

 app-emulation/wine-vanilla/wine-vanilla-4.0.1.ebuild| 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-4.0.2.ebuild| 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-4.0.ebuild  | 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-4.1.ebuild  | 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-4.10.ebuild | 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-4.11.ebuild | 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-4.12.1.ebuild   | 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-4.13.ebuild | 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-4.14.ebuild | 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-4.15.ebuild | 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-4.16.ebuild | 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-4.17.ebuild | 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-4.18.ebuild | 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-4.19.ebuild | 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-4.2.ebuild  | 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-4.20.ebuild | 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-4.21.ebuild | 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-4.3.ebuild  | 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-4.4.ebuild  | 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-4.5.ebuild  | 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-4.6-r1.ebuild   | 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-4.6.ebuild  | 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-4.7-r1.ebuild   | 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-4.7.ebuild  | 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-4.8.ebuild  | 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-4.9.ebuild  | 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-5.0.1.ebuild| 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-5.0.2.ebuild| 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-5.0.3-r1.ebuild | 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-5.0.3.ebuild| 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-5.0.ebuild  | 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-5.1.ebuild  | 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-5.10.ebuild | 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-5.11.ebuild | 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-5.12.ebuild | 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-5.13.ebuild | 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-5.14.ebuild | 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-5.15.ebuild | 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-5.16.ebuild | 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-5.17.ebuild | 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-5.18.ebuild | 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-5.19.ebuild | 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-5.2.ebuild  | 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-5.20.ebuild | 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-5.21.ebuild | 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-5.22-r1.ebuild  | 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-5.22-r2.ebuild  | 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-5.22.ebuild | 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-5.3.ebuild  | 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-5.4.ebuild  | 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-5.5.ebuild  | 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-5.6.ebuild  | 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-5.7.ebuild  | 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-5.8.ebuild  | 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-5.9.ebuild  | 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-6.0.1.ebuild| 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-6.0.2.ebuild| 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-6.0.ebuild  | 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-6.1.ebuild  | 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-6.10.ebuild | 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-6.11.ebuild | 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-6.12.ebuild | 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-6.13.ebuild | 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-6.14.ebuild | 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-6.15.ebuild | 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-6.16.ebuild | 4 ++--
 app-emulation/wine-vanilla/wine-vanilla-6.17.ebuild | 4 ++--
 

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-d3d9/

2022-03-01 Thread Sam James
commit: 0eae441121a84ebafc2b1ad3d3bb393d91beb764
Author: Sam James  gentoo  org>
AuthorDate: Sun Feb 27 03:19:16 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Feb 27 03:19:16 2022 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=0eae4411

app-emulation/wine-d3d9: drop IUSE="elibc_glibc"

Not needed (implicit), we dropped all other examples in tree
a little bit ago.

Package-Manager: Portage-3.0.30, Repoman-3.0.3
RepoMan-Options: --force
Signed-off-by: Sam James  gentoo.org>

 app-emulation/wine-d3d9/wine-d3d9-2.0-r1.ebuild  | 4 ++--
 app-emulation/wine-d3d9/wine-d3d9-2.1-r1.ebuild  | 4 ++--
 app-emulation/wine-d3d9/wine-d3d9-2.10-r1.ebuild | 4 ++--
 app-emulation/wine-d3d9/wine-d3d9-2.11-r1.ebuild | 4 ++--
 app-emulation/wine-d3d9/wine-d3d9-2.12-r1.ebuild | 4 ++--
 app-emulation/wine-d3d9/wine-d3d9-2.13-r1.ebuild | 4 ++--
 app-emulation/wine-d3d9/wine-d3d9-2.14-r1.ebuild | 4 ++--
 app-emulation/wine-d3d9/wine-d3d9-2.15-r1.ebuild | 4 ++--
 app-emulation/wine-d3d9/wine-d3d9-2.16-r1.ebuild | 4 ++--
 app-emulation/wine-d3d9/wine-d3d9-2.17-r1.ebuild | 4 ++--
 app-emulation/wine-d3d9/wine-d3d9-2.18.ebuild| 4 ++--
 app-emulation/wine-d3d9/wine-d3d9-2.19.ebuild| 4 ++--
 app-emulation/wine-d3d9/wine-d3d9-2.2-r1.ebuild  | 4 ++--
 app-emulation/wine-d3d9/wine-d3d9-2.20.ebuild| 4 ++--
 app-emulation/wine-d3d9/wine-d3d9-2.21.ebuild| 4 ++--
 app-emulation/wine-d3d9/wine-d3d9-2.3-r1.ebuild  | 4 ++--
 app-emulation/wine-d3d9/wine-d3d9-2.4-r1.ebuild  | 4 ++--
 app-emulation/wine-d3d9/wine-d3d9-2.5-r1.ebuild  | 4 ++--
 app-emulation/wine-d3d9/wine-d3d9-2.6-r1.ebuild  | 4 ++--
 app-emulation/wine-d3d9/wine-d3d9-2.7-r1.ebuild  | 4 ++--
 app-emulation/wine-d3d9/wine-d3d9-2.8-r1.ebuild  | 4 ++--
 app-emulation/wine-d3d9/wine-d3d9-2.9-r1.ebuild  | 4 ++--
 app-emulation/wine-d3d9/wine-d3d9-3.10.ebuild| 4 ++--
 app-emulation/wine-d3d9/wine-d3d9-3.11.ebuild| 4 ++--
 app-emulation/wine-d3d9/wine-d3d9-3.12.ebuild| 4 ++--
 app-emulation/wine-d3d9/wine-d3d9-3.13-r1.ebuild | 4 ++--
 app-emulation/wine-d3d9/wine-d3d9-3.13.ebuild| 4 ++--
 app-emulation/wine-d3d9/wine-d3d9-3.14.ebuild| 4 ++--
 app-emulation/wine-d3d9/wine-d3d9-3.15.ebuild| 4 ++--
 app-emulation/wine-d3d9/wine-d3d9-3.16.ebuild| 4 ++--
 app-emulation/wine-d3d9/wine-d3d9-3.17.ebuild| 4 ++--
 app-emulation/wine-d3d9/wine-d3d9-3.18.ebuild| 4 ++--
 app-emulation/wine-d3d9/wine-d3d9-3.19.ebuild| 4 ++--
 app-emulation/wine-d3d9/wine-d3d9-3.20.ebuild| 4 ++--
 app-emulation/wine-d3d9/wine-d3d9-3.21.ebuild| 4 ++--
 app-emulation/wine-d3d9/wine-d3d9-3.3.ebuild | 4 ++--
 app-emulation/wine-d3d9/wine-d3d9-3.4.ebuild | 4 ++--
 app-emulation/wine-d3d9/wine-d3d9-3.5.ebuild | 4 ++--
 app-emulation/wine-d3d9/wine-d3d9-3.6.ebuild | 4 ++--
 app-emulation/wine-d3d9/wine-d3d9-3.7.ebuild | 4 ++--
 app-emulation/wine-d3d9/wine-d3d9-3.8.ebuild | 4 ++--
 app-emulation/wine-d3d9/wine-d3d9-3.9.ebuild | 4 ++--
 app-emulation/wine-d3d9/wine-d3d9-4.0.ebuild | 4 ++--
 app-emulation/wine-d3d9/wine-d3d9-4.1.ebuild | 4 ++--
 app-emulation/wine-d3d9/wine-d3d9-.ebuild| 4 ++--
 45 files changed, 90 insertions(+), 90 deletions(-)

diff --git a/app-emulation/wine-d3d9/wine-d3d9-2.0-r1.ebuild 
b/app-emulation/wine-d3d9/wine-d3d9-2.0-r1.ebuild
index d808704..a95fef2 100644
--- a/app-emulation/wine-d3d9/wine-d3d9-2.0-r1.ebuild
+++ b/app-emulation/wine-d3d9/wine-d3d9-2.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -44,7 +44,7 @@ fi
 
 LICENSE="LGPL-2.1"
 SLOT="${PV}"
-IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags d3d9 dos 
elibc_glibc +fontconfig +gecko gphoto2 gsm gstreamer +jpeg kernel_FreeBSD +lcms 
ldap +mono mp3 ncurses netapi nls odbc openal opencl +opengl osmesa oss +perl 
pcap +png prelink pulseaudio +realtime +run-exes samba scanner selinux +ssl 
test +threads +truetype udev +udisks v4l +X +xcomposite xinerama +xml"
+IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags d3d9 dos 
+fontconfig +gecko gphoto2 gsm gstreamer +jpeg kernel_FreeBSD +lcms ldap +mono 
mp3 ncurses netapi nls odbc openal opencl +opengl osmesa oss +perl pcap +png 
prelink pulseaudio +realtime +run-exes samba scanner selinux +ssl test +threads 
+truetype udev +udisks v4l +X +xcomposite xinerama +xml"
 REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 )
X? ( truetype )
elibc_glibc? ( threads )

diff --git a/app-emulation/wine-d3d9/wine-d3d9-2.1-r1.ebuild 
b/app-emulation/wine-d3d9/wine-d3d9-2.1-r1.ebuild
index 0f57782..467f7c9 100644
--- a/app-emulation/wine-d3d9/wine-d3d9-2.1-r1.ebuild
+++ b/app-emulation/wine-d3d9/wine-d3d9-2.1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -44,7 +44,7 

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-staging/

2022-03-01 Thread Sam James
commit: 0abd9bf1d89412d25815c19fcc2801ee4107ca5f
Author: Sam James  gentoo  org>
AuthorDate: Sun Feb 27 03:19:56 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Feb 27 03:19:56 2022 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=0abd9bf1

app-emulation/wine-staging: drop IUSE="elibc_glibc"

Not needed (implicit), we dropped all other examples in tree
a little bit ago.

Package-Manager: Portage-3.0.30, Repoman-3.0.3
RepoMan-Options: --force
Signed-off-by: Sam James  gentoo.org>

 app-emulation/wine-staging/wine-staging-4.0.ebuild | 4 ++--
 app-emulation/wine-staging/wine-staging-4.1.ebuild | 4 ++--
 app-emulation/wine-staging/wine-staging-4.10.ebuild| 4 ++--
 app-emulation/wine-staging/wine-staging-4.11.ebuild| 4 ++--
 app-emulation/wine-staging/wine-staging-4.12.1.ebuild  | 4 ++--
 app-emulation/wine-staging/wine-staging-4.13.ebuild| 4 ++--
 app-emulation/wine-staging/wine-staging-4.14.ebuild| 4 ++--
 app-emulation/wine-staging/wine-staging-4.15.ebuild| 4 ++--
 app-emulation/wine-staging/wine-staging-4.16.ebuild| 4 ++--
 app-emulation/wine-staging/wine-staging-4.17.ebuild| 4 ++--
 app-emulation/wine-staging/wine-staging-4.18.ebuild| 4 ++--
 app-emulation/wine-staging/wine-staging-4.19.ebuild| 4 ++--
 app-emulation/wine-staging/wine-staging-4.2.ebuild | 4 ++--
 app-emulation/wine-staging/wine-staging-4.20.ebuild| 4 ++--
 app-emulation/wine-staging/wine-staging-4.21.ebuild| 4 ++--
 app-emulation/wine-staging/wine-staging-4.3.ebuild | 4 ++--
 app-emulation/wine-staging/wine-staging-4.4-r1.ebuild  | 4 ++--
 app-emulation/wine-staging/wine-staging-4.4.ebuild | 4 ++--
 app-emulation/wine-staging/wine-staging-4.5.ebuild | 4 ++--
 app-emulation/wine-staging/wine-staging-4.6-r1.ebuild  | 4 ++--
 app-emulation/wine-staging/wine-staging-4.6.ebuild | 4 ++--
 app-emulation/wine-staging/wine-staging-4.7-r1.ebuild  | 4 ++--
 app-emulation/wine-staging/wine-staging-4.7.ebuild | 4 ++--
 app-emulation/wine-staging/wine-staging-4.8.ebuild | 4 ++--
 app-emulation/wine-staging/wine-staging-4.9.ebuild | 4 ++--
 app-emulation/wine-staging/wine-staging-5.0.ebuild | 4 ++--
 app-emulation/wine-staging/wine-staging-5.1.ebuild | 4 ++--
 app-emulation/wine-staging/wine-staging-5.10-r1.ebuild | 4 ++--
 app-emulation/wine-staging/wine-staging-5.11.ebuild| 4 ++--
 app-emulation/wine-staging/wine-staging-5.12.ebuild| 4 ++--
 app-emulation/wine-staging/wine-staging-5.13.ebuild| 4 ++--
 app-emulation/wine-staging/wine-staging-5.14.ebuild| 4 ++--
 app-emulation/wine-staging/wine-staging-5.15.ebuild| 4 ++--
 app-emulation/wine-staging/wine-staging-5.16.ebuild| 4 ++--
 app-emulation/wine-staging/wine-staging-5.17.ebuild| 4 ++--
 app-emulation/wine-staging/wine-staging-5.18.ebuild| 4 ++--
 app-emulation/wine-staging/wine-staging-5.19.ebuild| 4 ++--
 app-emulation/wine-staging/wine-staging-5.2.ebuild | 4 ++--
 app-emulation/wine-staging/wine-staging-5.20.ebuild| 4 ++--
 app-emulation/wine-staging/wine-staging-5.21.ebuild| 4 ++--
 app-emulation/wine-staging/wine-staging-5.22-r1.ebuild | 4 ++--
 app-emulation/wine-staging/wine-staging-5.22-r2.ebuild | 4 ++--
 app-emulation/wine-staging/wine-staging-5.22.ebuild| 4 ++--
 app-emulation/wine-staging/wine-staging-5.3-r1.ebuild  | 4 ++--
 app-emulation/wine-staging/wine-staging-5.3.ebuild | 4 ++--
 app-emulation/wine-staging/wine-staging-5.4.ebuild | 4 ++--
 app-emulation/wine-staging/wine-staging-5.5-r1.ebuild  | 4 ++--
 app-emulation/wine-staging/wine-staging-5.5.ebuild | 4 ++--
 app-emulation/wine-staging/wine-staging-5.6.ebuild | 4 ++--
 app-emulation/wine-staging/wine-staging-5.7.ebuild | 4 ++--
 app-emulation/wine-staging/wine-staging-5.8.ebuild | 4 ++--
 app-emulation/wine-staging/wine-staging-5.9.ebuild | 4 ++--
 app-emulation/wine-staging/wine-staging-6.0.ebuild | 4 ++--
 app-emulation/wine-staging/wine-staging-6.1.ebuild | 4 ++--
 app-emulation/wine-staging/wine-staging-6.10.ebuild| 4 ++--
 app-emulation/wine-staging/wine-staging-6.11.ebuild| 4 ++--
 app-emulation/wine-staging/wine-staging-6.12.ebuild| 4 ++--
 app-emulation/wine-staging/wine-staging-6.13.ebuild| 4 ++--
 app-emulation/wine-staging/wine-staging-6.14.ebuild| 4 ++--
 app-emulation/wine-staging/wine-staging-6.15.ebuild| 4 ++--
 app-emulation/wine-staging/wine-staging-6.16.ebuild| 4 ++--
 app-emulation/wine-staging/wine-staging-6.17.ebuild| 4 ++--
 app-emulation/wine-staging/wine-staging-6.18.ebuild| 4 ++--
 app-emulation/wine-staging/wine-staging-6.19.ebuild| 4 ++--
 app-emulation/wine-staging/wine-staging-6.2.ebuild | 4 ++--
 app-emulation/wine-staging/wine-staging-6.20.ebuild| 4 ++--
 app-emulation/wine-staging/wine-staging-6.21.ebuild| 4 ++--
 app-emulation/wine-staging/wine-staging-6.22.ebuild| 4 ++--
 

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-vanilla/

2022-02-26 Thread Nick Sarnie
commit: 51d92f071b19f222b06aa4e67074aa0f8d427f74
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sun Feb 27 01:28:16 2022 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sun Feb 27 01:28:20 2022 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=51d92f07

app-emulation/wine-vanilla: Sync with ::gentoo

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-vanilla/wine-vanilla-7.3.ebuild  | 3 +--
 app-emulation/wine-vanilla/wine-vanilla-.ebuild | 3 +--
 2 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/app-emulation/wine-vanilla/wine-vanilla-7.3.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-7.3.ebuild
index 3602dbb..0912070 100644
--- a/app-emulation/wine-vanilla/wine-vanilla-7.3.ebuild
+++ b/app-emulation/wine-vanilla/wine-vanilla-7.3.ebuild
@@ -35,7 +35,7 @@ SRC_URI="${SRC_URI}
 
 LICENSE="LGPL-2.1"
 SLOT="${PV}"
-IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos elibc_glibc 
+fontconfig +gecko gphoto2 gssapi gstreamer kerberos ldap mingw +mono mp3 
netapi nls odbc openal opencl +opengl osmesa oss +perl pcap prelink pulseaudio 
+realtime +run-exes samba scanner sdl selinux +ssl test +threads +truetype udev 
+udisks +unwind usb v4l vkd3d vulkan +X +xcomposite xinerama"
+IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos elibc_glibc 
+fontconfig +gecko gphoto2 gssapi gstreamer kerberos ldap mingw +mono mp3 
netapi nls odbc openal opencl +opengl osmesa oss +perl pcap pulseaudio 
+realtime +run-exes samba scanner sdl selinux +ssl test +threads +truetype udev 
+udisks +unwind usb v4l vkd3d vulkan +X +xcomposite xinerama"
 REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 )
X? ( truetype )
elibc_glibc? ( threads )
@@ -121,7 +121,6 @@ DEPEND="${COMMON_DEPEND}
virtual/pkgconfig
virtual/yacc
X? ( x11-base/xorg-proto )
-   prelink? ( sys-devel/prelink )
xinerama? ( x11-base/xorg-proto )"
 
 # These use a non-standard "Wine" category, which is provided by

diff --git a/app-emulation/wine-vanilla/wine-vanilla-.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-.ebuild
index 075db9e..07745fe 100644
--- a/app-emulation/wine-vanilla/wine-vanilla-.ebuild
+++ b/app-emulation/wine-vanilla/wine-vanilla-.ebuild
@@ -35,7 +35,7 @@ SRC_URI="${SRC_URI}
 
 LICENSE="LGPL-2.1"
 SLOT="${PV}"
-IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos +fontconfig 
+gecko gphoto2 gssapi gstreamer kerberos ldap mingw +mono mp3 netapi nls odbc 
openal opencl +opengl osmesa oss +perl pcap prelink pulseaudio +realtime 
+run-exes samba scanner sdl selinux +ssl test +threads +truetype udev +udisks 
+unwind usb v4l vkd3d vulkan +X +xcomposite xinerama"
+IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos +fontconfig 
+gecko gphoto2 gssapi gstreamer kerberos ldap mingw +mono mp3 netapi nls odbc 
openal opencl +opengl osmesa oss +perl pcap pulseaudio +realtime +run-exes 
samba scanner sdl selinux +ssl test +threads +truetype udev +udisks +unwind usb 
v4l vkd3d vulkan +X +xcomposite xinerama"
 REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 )
X? ( truetype )
elibc_glibc? ( threads )
@@ -121,7 +121,6 @@ DEPEND="${COMMON_DEPEND}
virtual/pkgconfig
virtual/yacc
X? ( x11-base/xorg-proto )
-   prelink? ( sys-devel/prelink )
xinerama? ( x11-base/xorg-proto )"
 
 # These use a non-standard "Wine" category, which is provided by



[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-staging/

2022-02-26 Thread Nick Sarnie
commit: 642426b2c1aa591fb9b49e83d026562114c6406b
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sun Feb 27 01:29:41 2022 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sun Feb 27 01:29:49 2022 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=642426b2

app-emulation/wine-staging: Sync with ::gentoo

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-staging/wine-staging-7.3.ebuild  | 3 +--
 app-emulation/wine-staging/wine-staging-.ebuild | 3 +--
 2 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/app-emulation/wine-staging/wine-staging-7.3.ebuild 
b/app-emulation/wine-staging/wine-staging-7.3.ebuild
index f026906..cf584a4 100644
--- a/app-emulation/wine-staging/wine-staging-7.3.ebuild
+++ b/app-emulation/wine-staging/wine-staging-7.3.ebuild
@@ -48,7 +48,7 @@ fi
 
 LICENSE="LGPL-2.1"
 SLOT="${MY_PV}"
-IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos elibc_glibc 
+fontconfig +gecko gphoto2 gssapi gstreamer kerberos ldap mingw +mono mp3 
netapi nls odbc openal opencl +opengl osmesa oss +perl pcap pipelight prelink 
pulseaudio +realtime +run-exes samba scanner sdl selinux +ssl staging test 
+threads +truetype udev +udisks +unwind usb v4l vkd3d vulkan +X +xcomposite 
xinerama"
+IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos elibc_glibc 
+fontconfig +gecko gphoto2 gssapi gstreamer kerberos ldap mingw +mono mp3 
netapi nls odbc openal opencl +opengl osmesa oss +perl pcap pipelight 
pulseaudio +realtime +run-exes samba scanner sdl selinux +ssl staging test 
+threads +truetype udev +udisks +unwind usb v4l vkd3d vulkan +X +xcomposite 
xinerama"
 REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 )
X? ( truetype )
elibc_glibc? ( threads )
@@ -136,7 +136,6 @@ DEPEND="${COMMON_DEPEND}
virtual/pkgconfig
virtual/yacc
X? ( x11-base/xorg-proto )
-   prelink? ( sys-devel/prelink )
staging? (
dev-lang/perl
dev-perl/XML-Simple

diff --git a/app-emulation/wine-staging/wine-staging-.ebuild 
b/app-emulation/wine-staging/wine-staging-.ebuild
index 5a4a189..4ca357d 100644
--- a/app-emulation/wine-staging/wine-staging-.ebuild
+++ b/app-emulation/wine-staging/wine-staging-.ebuild
@@ -48,7 +48,7 @@ fi
 
 LICENSE="LGPL-2.1"
 SLOT="${MY_PV}"
-IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos +fontconfig 
+gecko gphoto2 gssapi gstreamer kerberos ldap mingw +mono mp3 netapi nls odbc 
openal opencl +opengl osmesa oss +perl pcap pipelight prelink pulseaudio 
+realtime +run-exes samba scanner sdl selinux +ssl staging test +threads 
+truetype udev +udisks +unwind usb v4l vkd3d vulkan +X +xcomposite xinerama"
+IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos +fontconfig 
+gecko gphoto2 gssapi gstreamer kerberos ldap mingw +mono mp3 netapi nls odbc 
openal opencl +opengl osmesa oss +perl pcap pipelight pulseaudio +realtime 
+run-exes samba scanner sdl selinux +ssl staging test +threads +truetype udev 
+udisks +unwind usb v4l vkd3d vulkan +X +xcomposite xinerama"
 REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 )
X? ( truetype )
elibc_glibc? ( threads )
@@ -136,7 +136,6 @@ DEPEND="${COMMON_DEPEND}
virtual/pkgconfig
virtual/yacc
X? ( x11-base/xorg-proto )
-   prelink? ( sys-devel/prelink )
staging? (
dev-lang/perl
dev-perl/XML-Simple



[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-staging/

2022-02-26 Thread Nick Sarnie
commit: 6be9313e5f4ad4617f32c1b0156cec37249637e0
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sun Feb 27 01:19:42 2022 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sun Feb 27 01:19:52 2022 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=6be9313e

app-emulation/wine-staging: Version bump

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-staging/Manifest|   2 +
 app-emulation/wine-staging/wine-staging-7.3.ebuild | 617 +
 2 files changed, 619 insertions(+)

diff --git a/app-emulation/wine-staging/Manifest 
b/app-emulation/wine-staging/Manifest
index e6417fd..8b89e08 100644
--- a/app-emulation/wine-staging/Manifest
+++ b/app-emulation/wine-staging/Manifest
@@ -79,6 +79,7 @@ DIST wine-6.9.tar.xz 24526724 BLAKE2B 
9e39bbc84380f7f40a9f41e1dbd1728ae8833eab4f
 DIST wine-7.0.tar.xz 27120912 BLAKE2B 
84bfeb28d56f0f40bb93b1b5bf8954c8be2fd90fde5a61608e7c35f48addcce7a4d660e63c3caa3ca2c365d1e83b55a1c3485872b2d6bfa8941e2bce44c4aca6
 SHA512 
eec17b046ed5447eb540f421c9b2748d9419ce087496c2743a9914fd27bbe5ff9da0cfe47d3cd76fa97323bd1188a1d82b1eef4968d86ed1957dc1a95e28529c
 DIST wine-7.1.tar.xz 27149156 BLAKE2B 
a97b408a73b5cee52ac5e91b03a0e1850f5567e818d0383e4a546482b5f383eb185ed3ee2cf26377600d6963736b27180d2a87d79c58c053d37ead8d488e5268
 SHA512 
4b226ecab92a0462fb579602549cb4b96e0baa353fd320a0bc8d1ce134eff5a434600fcf748e93ecde06624f78b8c0d70b39737d97a7e2327a61df9750ae30b5
 DIST wine-7.2.tar.xz 27191032 BLAKE2B 
5fae75e99ba57cff9e6e5d1ff125413f2779eb786da47305d4bdfda2ac35fa80b72f9157f82ac39291f294d892bb8c3d8add869d738ca3e9ef3d1530c6d647af
 SHA512 
13db73950218bc743803b2c60cee2534f38804a940e9666aad0f0f91e26bd5d432ca2f0cd8134ff6c43bb8dae253098d2e3db0a3621aa38fac9a1574152b8729
+DIST wine-7.3.tar.xz 27221860 BLAKE2B 
f6841f12f23bc9afb47f797ebf538e87a2453d76acfcd707942313be09e4259959c29c12188a7d70825957ef8a067efd0f5148c9f080c862bf51b87d0ee30857
 SHA512 
afadf96311e08fe5427276030ccad6b8de9727a3522711c237a9595318b05757d7390218b8614ded415b7b8c483f6501040efd8a7376e9909fa6e0e5140a
 DIST wine-staging-150ce22fa21ffa040816e725ead34ed1de516bd8.tar.gz 9840427 
BLAKE2B 
e263d6563a5438973309346ba820acdb5079ef236c5c55694bdfa16c54f3f4fe76750ab324d6c5e1f0b429df634b917f138f4a1db38417ac2b49ce41ee36a211
 SHA512 
37f05909ca6cb28a3527f31882562146d3971f47345312b96783b5e62bc95ee61779f12f4c13e3d05ec5f331463a7600c16d5bc428d13c42bf3e3568f4d3923e
 DIST wine-staging-3f3a05f91c85cb5ccdc4c8185bcc862c6e96cd52.tar.gz 9835238 
BLAKE2B 
27c0e7fe418e7ee82c7b1cfc13c0c1508a7f4637ef7b8d64675ed4038a42961382170c064221a7bad70a4e168aef7d4e33974d06afc18fc6da4cf5db047b242e
 SHA512 
b2ad84bed89e713f4dc4f01763c40dc785f39f180a8f926c1b9e944a581ffcfd5c422427314201df1359b4b1c27dc2261281353f44ae9408e800d6add7bde366
 DIST wine-staging-4.0.tar.gz 9945756 BLAKE2B 
bfd27d5677d01b4a14c4ef593b741b6fa6e75194de04a90659ecceaa8b087d594cafdd0a53cc2ad2d05e9c73928d70d0b6681ac0052df79f7b45cbb370b31d3d
 SHA512 
4c2277449be17b83235bab7898818a886e84e82c0c5eb8216a5bc42e3d9a0e1dcf09d4522e1165d503fd9237673fa91c2c07d837cde58897f1b6fc8bc6fa5d33
@@ -151,3 +152,4 @@ DIST wine-staging-6.9.tar.gz 9687986 BLAKE2B 
72cf53616a619638fdc91d7501c8fcc2bb9
 DIST wine-staging-7.0.tar.gz 9614226 BLAKE2B 
f1263abde0fcb83f1784805df13e32db18758167f58e2370f3bbc16fdd6c0ad9b158c6e106e75183a42e42c29ef2971f2f297b2a733090727c1249a4914b45af
 SHA512 
fbec2de7a13c7e59a041d8102d69b803d4475b743068d215cce510af905b81903aa028604068af0d309fe1708eb1ab62aad42887ac079af5206635bee0045952
 DIST wine-staging-7.1.tar.gz 9623294 BLAKE2B 
a76aae22b93d8e56000998dcd4300af5a60d4648a459ca21da5bc122d0c8c0d57c2e7140c01c1eea4c0c8a808e7a98db72fa91c58663ec3fd60a1c7cc8504ddc
 SHA512 
cae234a3874c8bd3a4514c81ee311871c79c6c631145497e279ae86ceb6fef8e324d622d8b9974dbe7cbffacef09d8a6cb47a042096bf1a5ba737fed017e4038
 DIST wine-staging-7.2.tar.gz 9625920 BLAKE2B 
4bda1fda8aa39bb49f8808ca91020ef8a4ccdd74878085d8c7d31d68b9f622a936a72dcbca5cd2a9f990dae95c6d5e9b1a55c83f062cdd5ca4e88116d685affa
 SHA512 
d8e0779b143424d5677ec556140db8698e414c240b9107a62ed3364e57e1e9d1c7115d141a71997ed4d436154b5254b061bac5071dd99b0d4729053e73304c38
+DIST wine-staging-7.3.tar.gz 9668058 BLAKE2B 
9721fac9728f883309d430fa51221de31d67476640590a211a1b8047adeec4f0ad2b11a250bdc5d71e48e1e47868ed1aea3722dc7794c46bc0ed3b24219e9b14
 SHA512 
8f574bf89968d3c30944f9ba365b1ec4c4c9a662b3a54cf153d5a18be6957d8a5c2597c241ddd8a3e62cce866902e1df36594db6342b7432074e28c0e918935b

diff --git a/app-emulation/wine-staging/wine-staging-7.3.ebuild 
b/app-emulation/wine-staging/wine-staging-7.3.ebuild
new file mode 100644
index 000..f026906
--- /dev/null
+++ b/app-emulation/wine-staging/wine-staging-7.3.ebuild
@@ -0,0 +1,617 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PLOCALES="ar ast bg ca cs da de el en en_US eo es fa fi fr he hi hr hu it ja 
ko lt ml nb_NO nl or pa pl pt_BR pt_PT rm 

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-vanilla/

2022-02-26 Thread Nick Sarnie
commit: d3e6d32995ee23d67db459d5e0f5eaa9b61e9382
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sat Feb 26 14:26:54 2022 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sat Feb 26 14:27:03 2022 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=d3e6d329

app-emulation/wine-vanilla: Version bump

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-vanilla/Manifest|   1 +
 app-emulation/wine-vanilla/wine-vanilla-7.3.ebuild | 542 +
 2 files changed, 543 insertions(+)

diff --git a/app-emulation/wine-vanilla/Manifest 
b/app-emulation/wine-vanilla/Manifest
index aea4a8c..64dd57b 100644
--- a/app-emulation/wine-vanilla/Manifest
+++ b/app-emulation/wine-vanilla/Manifest
@@ -86,3 +86,4 @@ DIST wine-6.9.tar.xz 24526724 BLAKE2B 
9e39bbc84380f7f40a9f41e1dbd1728ae8833eab4f
 DIST wine-7.0.tar.xz 27120912 BLAKE2B 
84bfeb28d56f0f40bb93b1b5bf8954c8be2fd90fde5a61608e7c35f48addcce7a4d660e63c3caa3ca2c365d1e83b55a1c3485872b2d6bfa8941e2bce44c4aca6
 SHA512 
eec17b046ed5447eb540f421c9b2748d9419ce087496c2743a9914fd27bbe5ff9da0cfe47d3cd76fa97323bd1188a1d82b1eef4968d86ed1957dc1a95e28529c
 DIST wine-7.1.tar.xz 27149156 BLAKE2B 
a97b408a73b5cee52ac5e91b03a0e1850f5567e818d0383e4a546482b5f383eb185ed3ee2cf26377600d6963736b27180d2a87d79c58c053d37ead8d488e5268
 SHA512 
4b226ecab92a0462fb579602549cb4b96e0baa353fd320a0bc8d1ce134eff5a434600fcf748e93ecde06624f78b8c0d70b39737d97a7e2327a61df9750ae30b5
 DIST wine-7.2.tar.xz 27191032 BLAKE2B 
5fae75e99ba57cff9e6e5d1ff125413f2779eb786da47305d4bdfda2ac35fa80b72f9157f82ac39291f294d892bb8c3d8add869d738ca3e9ef3d1530c6d647af
 SHA512 
13db73950218bc743803b2c60cee2534f38804a940e9666aad0f0f91e26bd5d432ca2f0cd8134ff6c43bb8dae253098d2e3db0a3621aa38fac9a1574152b8729
+DIST wine-7.3.tar.xz 27221860 BLAKE2B 
f6841f12f23bc9afb47f797ebf538e87a2453d76acfcd707942313be09e4259959c29c12188a7d70825957ef8a067efd0f5148c9f080c862bf51b87d0ee30857
 SHA512 
afadf96311e08fe5427276030ccad6b8de9727a3522711c237a9595318b05757d7390218b8614ded415b7b8c483f6501040efd8a7376e9909fa6e0e5140a

diff --git a/app-emulation/wine-vanilla/wine-vanilla-7.3.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-7.3.ebuild
new file mode 100644
index 000..3602dbb
--- /dev/null
+++ b/app-emulation/wine-vanilla/wine-vanilla-7.3.ebuild
@@ -0,0 +1,542 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PLOCALES="ar ast bg ca cs da de el en en_US eo es fa fi fr he hi hr hu it ja 
ko lt ml nb_NO nl or pa pl pt_BR pt_PT rm ro ru si sk sl sr_RS@cyrillic 
sr_RS@latin sv ta te th tr uk wa zh_CN zh_TW"
+PLOCALE_BACKUP="en"
+
+inherit autotools eapi7-ver estack eutils flag-o-matic gnome2-utils multilib 
multilib-minimal pax-utils plocale toolchain-funcs virtualx xdg-utils
+
+MY_PN="${PN%%-*}"
+MY_P="${MY_PN}-${PV}"
+
+if [[ ${PV} == "" ]] ; then
+   EGIT_REPO_URI="https://source.winehq.org/git/wine.git;
+   EGIT_BRANCH="master"
+   inherit git-r3
+   SRC_URI=""
+   #KEYWORDS=""
+else
+   MAJOR_V=$(ver_cut 1)
+   SRC_URI="https://dl.winehq.org/wine/source/${MAJOR_V}.x/${MY_P}.tar.xz;
+   KEYWORDS="-* ~amd64 ~x86"
+fi
+S="${WORKDIR}/${MY_P}"
+
+GWP_V="20211122"
+PATCHDIR="${WORKDIR}/gentoo-wine-patches"
+
+DESCRIPTION="Free implementation of Windows(tm) on Unix, without external 
patchsets"
+HOMEPAGE="https://www.winehq.org/;
+SRC_URI="${SRC_URI}
+   
https://dev.gentoo.org/~sarnex/distfiles/wine/gentoo-wine-patches-${GWP_V}.tar.xz
+"
+
+LICENSE="LGPL-2.1"
+SLOT="${PV}"
+IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos elibc_glibc 
+fontconfig +gecko gphoto2 gssapi gstreamer kerberos ldap mingw +mono mp3 
netapi nls odbc openal opencl +opengl osmesa oss +perl pcap prelink pulseaudio 
+realtime +run-exes samba scanner sdl selinux +ssl test +threads +truetype udev 
+udisks +unwind usb v4l vkd3d vulkan +X +xcomposite xinerama"
+REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 )
+   X? ( truetype )
+   elibc_glibc? ( threads )
+   osmesa? ( opengl )
+   test? ( abi_x86_32 )
+   vkd3d? ( vulkan )" # osmesa-opengl #286560 # X-truetype #551124
+
+# FIXME: the test suite is unsuitable for us; many tests require net access
+# or fail due to Xvfb's opengl limitations.
+RESTRICT="test"
+
+COMMON_DEPEND="
+   X? (
+   x11-libs/libXcursor[${MULTILIB_USEDEP}]
+   x11-libs/libXext[${MULTILIB_USEDEP}]
+   x11-libs/libXfixes[${MULTILIB_USEDEP}]
+   x11-libs/libXrandr[${MULTILIB_USEDEP}]
+   x11-libs/libXi[${MULTILIB_USEDEP}]
+   x11-libs/libXxf86vm[${MULTILIB_USEDEP}]
+   )
+   alsa? ( media-libs/alsa-lib[${MULTILIB_USEDEP}] )
+   capi? ( net-libs/libcapi[${MULTILIB_USEDEP}] )
+   cups? ( net-print/cups:=[${MULTILIB_USEDEP}] )
+   fontconfig? ( media-libs/fontconfig:=[${MULTILIB_USEDEP}] )
+   gphoto2? (
+ 

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-vanilla/

2022-02-13 Thread Nick Sarnie
commit: 1b27384f99c539efe4deb91d8d0d9f2ef562f925
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sun Feb 13 15:07:44 2022 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sun Feb 13 15:07:48 2022 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=1b27384f

app-emulation/wine-vanilla: Sync with ::gentoo

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-vanilla/wine-vanilla-.ebuild | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/app-emulation/wine-vanilla/wine-vanilla-.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-.ebuild
index e3562cb..075db9e 100644
--- a/app-emulation/wine-vanilla/wine-vanilla-.ebuild
+++ b/app-emulation/wine-vanilla/wine-vanilla-.ebuild
@@ -35,7 +35,7 @@ SRC_URI="${SRC_URI}
 
 LICENSE="LGPL-2.1"
 SLOT="${PV}"
-IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos elibc_glibc 
+fontconfig +gecko gphoto2 gssapi gstreamer kerberos kernel_FreeBSD ldap mingw 
+mono mp3 netapi nls odbc openal opencl +opengl osmesa oss +perl pcap prelink 
pulseaudio +realtime +run-exes samba scanner sdl selinux +ssl test +threads 
+truetype udev +udisks +unwind usb v4l vkd3d vulkan +X +xcomposite xinerama"
+IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos +fontconfig 
+gecko gphoto2 gssapi gstreamer kerberos ldap mingw +mono mp3 netapi nls odbc 
openal opencl +opengl osmesa oss +perl pcap prelink pulseaudio +realtime 
+run-exes samba scanner sdl selinux +ssl test +threads +truetype udev +udisks 
+unwind usb v4l vkd3d vulkan +X +xcomposite xinerama"
 REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 )
X? ( truetype )
elibc_glibc? ( threads )
@@ -242,10 +242,10 @@ pkg_pretend() {
wine_build_environment_check || die
 
# Verify OSS support
-   if use oss && ! use kernel_FreeBSD; then
+   if use oss; then
if ! has_version ">=media-sound/oss-4"; then
-   eerror "You cannot build wine with USE=oss without 
having support from a"
-   eerror "FreeBSD kernel or >=media-sound/oss-4 (only 
available through external repos)"
+   eerror "You cannot build wine with USE=oss without 
having support from"
+   eerror ">=media-sound/oss-4 (only available through 
external repos)"
eerror
die
fi



[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-staging/

2022-02-13 Thread Nick Sarnie
commit: 4a9b970f49a7141d9896ddb47b84144fc04eda2a
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sun Feb 13 15:08:31 2022 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sun Feb 13 15:08:35 2022 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=4a9b970f

app-emulation/wine-staging: Sync with ::gentoo

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-staging/wine-staging-.ebuild | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/app-emulation/wine-staging/wine-staging-.ebuild 
b/app-emulation/wine-staging/wine-staging-.ebuild
index ba95c1d..5a4a189 100644
--- a/app-emulation/wine-staging/wine-staging-.ebuild
+++ b/app-emulation/wine-staging/wine-staging-.ebuild
@@ -48,7 +48,7 @@ fi
 
 LICENSE="LGPL-2.1"
 SLOT="${MY_PV}"
-IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos elibc_glibc 
+fontconfig +gecko gphoto2 gssapi gstreamer kerberos kernel_FreeBSD ldap mingw 
+mono mp3 netapi nls odbc openal opencl +opengl osmesa oss +perl pcap pipelight 
prelink pulseaudio +realtime +run-exes samba scanner sdl selinux +ssl staging 
test +threads +truetype udev +udisks +unwind usb v4l vkd3d vulkan +X 
+xcomposite xinerama"
+IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos +fontconfig 
+gecko gphoto2 gssapi gstreamer kerberos ldap mingw +mono mp3 netapi nls odbc 
openal opencl +opengl osmesa oss +perl pcap pipelight prelink pulseaudio 
+realtime +run-exes samba scanner sdl selinux +ssl staging test +threads 
+truetype udev +udisks +unwind usb v4l vkd3d vulkan +X +xcomposite xinerama"
 REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 )
X? ( truetype )
elibc_glibc? ( threads )
@@ -274,10 +274,10 @@ pkg_pretend() {
wine_build_environment_check || die
 
# Verify OSS support
-   if use oss && ! use kernel_FreeBSD; then
+   if use oss; then
if ! has_version ">=media-sound/oss-4"; then
-   eerror "You cannot build wine with USE=oss 
without having support from a"
-   eerror "FreeBSD kernel or >=media-sound/oss-4 
(only available through external repos)"
+   eerror "You cannot build wine with USE=oss 
without having support from"
+   eerror ">=media-sound/oss-4 (only available 
through external repos)"
eerror
die
fi



[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-staging/

2022-02-13 Thread Nick Sarnie
commit: a816847e9c435b450b3edfb786c77010a7a07b76
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sun Feb 13 14:56:33 2022 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sun Feb 13 14:56:37 2022 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=a816847e

app-emulation/wine-staging: Version bump

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-staging/Manifest   | 2 ++
 .../{wine-staging-.ebuild => wine-staging-7.2.ebuild} | 8 
 app-emulation/wine-staging/wine-staging-.ebuild   | 4 ++--
 3 files changed, 8 insertions(+), 6 deletions(-)

diff --git a/app-emulation/wine-staging/Manifest 
b/app-emulation/wine-staging/Manifest
index 1329cfa..e6417fd 100644
--- a/app-emulation/wine-staging/Manifest
+++ b/app-emulation/wine-staging/Manifest
@@ -78,6 +78,7 @@ DIST wine-6.8.tar.xz 24481304 BLAKE2B 
37643eb75b29a646f23620df4084809aa15ac9d390
 DIST wine-6.9.tar.xz 24526724 BLAKE2B 
9e39bbc84380f7f40a9f41e1dbd1728ae8833eab4fe977eaf9386a92b9f089cf63147e35093b084d3a61e5c7209b405caea9cee2a4bebb294b77c65fc3551d66
 SHA512 
e9dc4da8cd6553db4227f09b5734513939d7e361449f52472a1f51ae569377a2931a0ab6f402aef751587ff1fa50f10f222b4479aba44f862db320931eeff363
 DIST wine-7.0.tar.xz 27120912 BLAKE2B 
84bfeb28d56f0f40bb93b1b5bf8954c8be2fd90fde5a61608e7c35f48addcce7a4d660e63c3caa3ca2c365d1e83b55a1c3485872b2d6bfa8941e2bce44c4aca6
 SHA512 
eec17b046ed5447eb540f421c9b2748d9419ce087496c2743a9914fd27bbe5ff9da0cfe47d3cd76fa97323bd1188a1d82b1eef4968d86ed1957dc1a95e28529c
 DIST wine-7.1.tar.xz 27149156 BLAKE2B 
a97b408a73b5cee52ac5e91b03a0e1850f5567e818d0383e4a546482b5f383eb185ed3ee2cf26377600d6963736b27180d2a87d79c58c053d37ead8d488e5268
 SHA512 
4b226ecab92a0462fb579602549cb4b96e0baa353fd320a0bc8d1ce134eff5a434600fcf748e93ecde06624f78b8c0d70b39737d97a7e2327a61df9750ae30b5
+DIST wine-7.2.tar.xz 27191032 BLAKE2B 
5fae75e99ba57cff9e6e5d1ff125413f2779eb786da47305d4bdfda2ac35fa80b72f9157f82ac39291f294d892bb8c3d8add869d738ca3e9ef3d1530c6d647af
 SHA512 
13db73950218bc743803b2c60cee2534f38804a940e9666aad0f0f91e26bd5d432ca2f0cd8134ff6c43bb8dae253098d2e3db0a3621aa38fac9a1574152b8729
 DIST wine-staging-150ce22fa21ffa040816e725ead34ed1de516bd8.tar.gz 9840427 
BLAKE2B 
e263d6563a5438973309346ba820acdb5079ef236c5c55694bdfa16c54f3f4fe76750ab324d6c5e1f0b429df634b917f138f4a1db38417ac2b49ce41ee36a211
 SHA512 
37f05909ca6cb28a3527f31882562146d3971f47345312b96783b5e62bc95ee61779f12f4c13e3d05ec5f331463a7600c16d5bc428d13c42bf3e3568f4d3923e
 DIST wine-staging-3f3a05f91c85cb5ccdc4c8185bcc862c6e96cd52.tar.gz 9835238 
BLAKE2B 
27c0e7fe418e7ee82c7b1cfc13c0c1508a7f4637ef7b8d64675ed4038a42961382170c064221a7bad70a4e168aef7d4e33974d06afc18fc6da4cf5db047b242e
 SHA512 
b2ad84bed89e713f4dc4f01763c40dc785f39f180a8f926c1b9e944a581ffcfd5c422427314201df1359b4b1c27dc2261281353f44ae9408e800d6add7bde366
 DIST wine-staging-4.0.tar.gz 9945756 BLAKE2B 
bfd27d5677d01b4a14c4ef593b741b6fa6e75194de04a90659ecceaa8b087d594cafdd0a53cc2ad2d05e9c73928d70d0b6681ac0052df79f7b45cbb370b31d3d
 SHA512 
4c2277449be17b83235bab7898818a886e84e82c0c5eb8216a5bc42e3d9a0e1dcf09d4522e1165d503fd9237673fa91c2c07d837cde58897f1b6fc8bc6fa5d33
@@ -149,3 +150,4 @@ DIST wine-staging-6.8.tar.gz 9709006 BLAKE2B 
48a100f43cedc4217c083421d4391e5f052
 DIST wine-staging-6.9.tar.gz 9687986 BLAKE2B 
72cf53616a619638fdc91d7501c8fcc2bb9c102a1a445a9c58dd23fbb5bccc27fcf2f9635ec65b23d93839514d8aa9ede29d84d6737e49776a1d99b716295ea4
 SHA512 
09732ce6fe5e5460ef5f30ab3dd5581c94b27e1d2c228bc395b1defd32fc5e908ab32eb2a56e489b154e1d0f638ad792c80a64d82d90a33c943102b379bef937
 DIST wine-staging-7.0.tar.gz 9614226 BLAKE2B 
f1263abde0fcb83f1784805df13e32db18758167f58e2370f3bbc16fdd6c0ad9b158c6e106e75183a42e42c29ef2971f2f297b2a733090727c1249a4914b45af
 SHA512 
fbec2de7a13c7e59a041d8102d69b803d4475b743068d215cce510af905b81903aa028604068af0d309fe1708eb1ab62aad42887ac079af5206635bee0045952
 DIST wine-staging-7.1.tar.gz 9623294 BLAKE2B 
a76aae22b93d8e56000998dcd4300af5a60d4648a459ca21da5bc122d0c8c0d57c2e7140c01c1eea4c0c8a808e7a98db72fa91c58663ec3fd60a1c7cc8504ddc
 SHA512 
cae234a3874c8bd3a4514c81ee311871c79c6c631145497e279ae86ceb6fef8e324d622d8b9974dbe7cbffacef09d8a6cb47a042096bf1a5ba737fed017e4038
+DIST wine-staging-7.2.tar.gz 9625920 BLAKE2B 
4bda1fda8aa39bb49f8808ca91020ef8a4ccdd74878085d8c7d31d68b9f622a936a72dcbca5cd2a9f990dae95c6d5e9b1a55c83f062cdd5ca4e88116d685affa
 SHA512 
d8e0779b143424d5677ec556140db8698e414c240b9107a62ed3364e57e1e9d1c7115d141a71997ed4d436154b5254b061bac5071dd99b0d4729053e73304c38

diff --git a/app-emulation/wine-staging/wine-staging-.ebuild 
b/app-emulation/wine-staging/wine-staging-7.2.ebuild
similarity index 98%
copy from app-emulation/wine-staging/wine-staging-.ebuild
copy to app-emulation/wine-staging/wine-staging-7.2.ebuild
index 0d16453..f026906 100644
--- a/app-emulation/wine-staging/wine-staging-.ebuild
+++ 

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-mono/

2022-02-13 Thread Nick Sarnie
commit: 18219f1c802118093dbb0781747971a69e360993
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sun Feb 13 14:52:54 2022 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sun Feb 13 14:52:54 2022 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=18219f1c

app-emulation/wine-mono: Version bump

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-mono/Manifest   |  2 ++
 app-emulation/wine-mono/wine-mono-7.1.1.ebuild | 29 ++
 2 files changed, 31 insertions(+)

diff --git a/app-emulation/wine-mono/Manifest b/app-emulation/wine-mono/Manifest
index e57f0cb..38e82d0 100644
--- a/app-emulation/wine-mono/Manifest
+++ b/app-emulation/wine-mono/Manifest
@@ -28,6 +28,8 @@ DIST wine-mono-6.4.0-x86.msi 86398976 BLAKE2B 
d1d553f6115618744bea65d7e88fdf19bf
 DIST wine-mono-6.4.0-x86.tar.xz 44177712 BLAKE2B 
de08e829ade18be0d0896742aa66f3dd9ab96eb0c994ae164f0fc64fb6306dd278714bbea3cd20d9a04625bc502764a875d57fa530489a22d4f69cbe20696cfb
 SHA512 
4e793ab755e3a4b5ff1dd0354756a9635482db6fd98fc90cb710edfd5e1f553e124913e323681bc82827655a5b1056d33c1f9632b5ea1e3e72d547cd780f2d2e
 DIST wine-mono-7.0.0-x86.msi 86433280 BLAKE2B 
9d164bf10f9c790a1f518624321a77965800742c84677a6372cd57b1f51bdd16a2d61ee85f868e84be9b07d4c3f5a7afa770e98637f698c2337c42d42890cf58
 SHA512 
d7af2a68c3b48cab93ddd489f674ab9064d69d5ca0b6c91e58713dd0408af9fb1ff82ef8847d91645d96df40cd5526c6735d621064a3598166ab5f51d1e0d076
 DIST wine-mono-7.0.0-x86.tar.xz 45085800 BLAKE2B 
504c57acce486c19a54bf33cdb4b9444c07a58a7f56ced0c93178886a91fa5d94a61f6e26aa885f3e3a2cceb2ff792f01006a4b16fa5bb88c3d25ddff02fefd7
 SHA512 
a3977563c5eb6418eaeda25e5b39bd2ef1faf305d514979211e049280c4577718ca48c8566e527b97a58fc465b310dd600093a616102573e12e8985794d828a6
+DIST wine-mono-7.1.1-x86.msi 86606336 BLAKE2B 
817d02bc090e5f324519a118de53a51510f601e86b84f93e06762ac583038cf96ce3f2cdd107c838261bc5f93cd336c1c0f18ac414626b98bbe4f35ad2749e04
 SHA512 
5a9a01d129c095d2fe8301073fefee7dca8cc26b9fc72c9ea88c00cbaacd1a40e2defb163152448c3de94ebe7cff46aa81f92ccf09fcaf084a7a18805fa03294
+DIST wine-mono-7.1.1-x86.tar.xz 45220396 BLAKE2B 
8a4cfa9496a51adb884c9062162413564cb939624ec551e97467eed41efc6e67e6296b2b0924eaa9565e98ea5595e140db691f23ef28edbf16456e3f6d39bd05
 SHA512 
b52f8a71900a34c687fd86559db16f2b7a3abe0f3965b5050e1859646c7bb00e070cc394f9a175995ccb50501d15844853b49931a7ac7cd2022581e241f31924
 DIST wine-mono-bin-4.8.1.tar.gz 91047479 BLAKE2B 
ec970be25b6fcb6c4b93fecf7aa279397654be9614a12a31752b1b4c6f74fb8a52171112deaa64e8c55c8d8f88626f059a1876bcde001b0a032535f447babc77
 SHA512 
c3b8de735cb31805c1ac671fa7a5af53a2262e033f8eb1bba8bd82df77ea26305330500d661e25a2482e50ce17d4f14bca3973a4e48887c5ddfaab56c3ff59f8
 DIST wine-mono-bin-4.8.3.tar.gz 91309002 BLAKE2B 
d3a24fad76afce5a812d17cfcd585803393db95143d4c438164273eb50961120cd5081380738f43be0a574b6ffb676cb46fa70b933560e0164bd3f73b68d2fa9
 SHA512 
00564613d23cb724d04eb2515bb34dd561955a02800d17ec9cbc899697a5681aa47316bf5919ef27a61fe6f7d1d7ddf02e3d762e994d01cb4956301f2367f3c4
 DIST wine-mono-bin-4.9.0.tar.gz 90974210 BLAKE2B 
008bcbe83da76247eb242bad8f03d7591a0831e24e71195929c7589d570226a8215a02aab59b1a1d2d2dda9e5e8020de3aad8a9fd2d6d0467f5f775b50b5276e
 SHA512 
12bc6e3ca6d5ec7592ce7613b6c3ee1f6e415954f9866757d8c2fa7fa1b5b4488f1a58c368d482c47a4baad5c07431802a85e7d9df63029ef54d034669ccb01a

diff --git a/app-emulation/wine-mono/wine-mono-7.1.1.ebuild 
b/app-emulation/wine-mono/wine-mono-7.1.1.ebuild
new file mode 100644
index 000..0836b03
--- /dev/null
+++ b/app-emulation/wine-mono/wine-mono-7.1.1.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Wine Mono is a replacement for the .NET runtime and class 
libraries in Wine"
+HOMEPAGE="https://www.winehq.org/;
+SRC_URI="
+   !shared? ( https://dl.winehq.org/wine/${PN}/${PV}/${P}-x86.msi )
+   shared? ( https://dl.winehq.org/wine/${PN}/${PV}/${P}-x86.tar.xz )
+"
+
+LICENSE="BSD-2 GPL-2 LGPL-2.1 MIT MPL-1.1"
+SLOT="${PV}"
+KEYWORDS="~amd64 ~x86"
+IUSE="+shared"
+
+DEPEND="!!app-emulation/wine:0"
+
+S="${WORKDIR}"
+
+src_install() {
+   insinto /usr/share/wine/mono
+   if use shared; then
+   doins -r "${P}"
+   else
+   doins "${DISTDIR}/${P}-x86.msi"
+   fi
+}



[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-vanilla/

2022-02-13 Thread Nick Sarnie
commit: 3204bc7c8a93fb3e5d9e2d521a1d753f5c55a800
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sun Feb 13 14:54:34 2022 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sun Feb 13 14:54:38 2022 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=3204bc7c

app-emulation/wine-vanilla: Version bump

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-vanilla/Manifest   | 1 +
 .../{wine-vanilla-.ebuild => wine-vanilla-7.2.ebuild} | 8 
 app-emulation/wine-vanilla/wine-vanilla-.ebuild   | 4 ++--
 3 files changed, 7 insertions(+), 6 deletions(-)

diff --git a/app-emulation/wine-vanilla/Manifest 
b/app-emulation/wine-vanilla/Manifest
index 09feb5e..aea4a8c 100644
--- a/app-emulation/wine-vanilla/Manifest
+++ b/app-emulation/wine-vanilla/Manifest
@@ -85,3 +85,4 @@ DIST wine-6.8.tar.xz 24481304 BLAKE2B 
37643eb75b29a646f23620df4084809aa15ac9d390
 DIST wine-6.9.tar.xz 24526724 BLAKE2B 
9e39bbc84380f7f40a9f41e1dbd1728ae8833eab4fe977eaf9386a92b9f089cf63147e35093b084d3a61e5c7209b405caea9cee2a4bebb294b77c65fc3551d66
 SHA512 
e9dc4da8cd6553db4227f09b5734513939d7e361449f52472a1f51ae569377a2931a0ab6f402aef751587ff1fa50f10f222b4479aba44f862db320931eeff363
 DIST wine-7.0.tar.xz 27120912 BLAKE2B 
84bfeb28d56f0f40bb93b1b5bf8954c8be2fd90fde5a61608e7c35f48addcce7a4d660e63c3caa3ca2c365d1e83b55a1c3485872b2d6bfa8941e2bce44c4aca6
 SHA512 
eec17b046ed5447eb540f421c9b2748d9419ce087496c2743a9914fd27bbe5ff9da0cfe47d3cd76fa97323bd1188a1d82b1eef4968d86ed1957dc1a95e28529c
 DIST wine-7.1.tar.xz 27149156 BLAKE2B 
a97b408a73b5cee52ac5e91b03a0e1850f5567e818d0383e4a546482b5f383eb185ed3ee2cf26377600d6963736b27180d2a87d79c58c053d37ead8d488e5268
 SHA512 
4b226ecab92a0462fb579602549cb4b96e0baa353fd320a0bc8d1ce134eff5a434600fcf748e93ecde06624f78b8c0d70b39737d97a7e2327a61df9750ae30b5
+DIST wine-7.2.tar.xz 27191032 BLAKE2B 
5fae75e99ba57cff9e6e5d1ff125413f2779eb786da47305d4bdfda2ac35fa80b72f9157f82ac39291f294d892bb8c3d8add869d738ca3e9ef3d1530c6d647af
 SHA512 
13db73950218bc743803b2c60cee2534f38804a940e9666aad0f0f91e26bd5d432ca2f0cd8134ff6c43bb8dae253098d2e3db0a3621aa38fac9a1574152b8729

diff --git a/app-emulation/wine-vanilla/wine-vanilla-.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-7.2.ebuild
similarity index 97%
copy from app-emulation/wine-vanilla/wine-vanilla-.ebuild
copy to app-emulation/wine-vanilla/wine-vanilla-7.2.ebuild
index 93905dc..3602dbb 100644
--- a/app-emulation/wine-vanilla/wine-vanilla-.ebuild
+++ b/app-emulation/wine-vanilla/wine-vanilla-7.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -35,7 +35,7 @@ SRC_URI="${SRC_URI}
 
 LICENSE="LGPL-2.1"
 SLOT="${PV}"
-IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos elibc_glibc 
+fontconfig +gecko gphoto2 gssapi gstreamer kerberos kernel_FreeBSD ldap mingw 
+mono mp3 netapi nls odbc openal opencl +opengl osmesa oss +perl pcap prelink 
pulseaudio +realtime +run-exes samba scanner sdl selinux +ssl test +threads 
+truetype udev +udisks +unwind usb v4l vkd3d vulkan +X +xcomposite xinerama"
+IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos elibc_glibc 
+fontconfig +gecko gphoto2 gssapi gstreamer kerberos ldap mingw +mono mp3 
netapi nls odbc openal opencl +opengl osmesa oss +perl pcap prelink pulseaudio 
+realtime +run-exes samba scanner sdl selinux +ssl test +threads +truetype udev 
+udisks +unwind usb v4l vkd3d vulkan +X +xcomposite xinerama"
 REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 )
X? ( truetype )
elibc_glibc? ( threads )
@@ -102,7 +102,7 @@ RDEPEND="${COMMON_DEPEND}
!app-emulation/wine:0
dos? ( >=games-emulation/dosbox-0.74_p20160629 )
gecko? ( app-emulation/wine-gecko:2.47.2[abi_x86_32?,abi_x86_64?] )
-   mono? ( app-emulation/wine-mono:7.0.0 )
+   mono? ( app-emulation/wine-mono:7.1.1 )
perl? (
dev-lang/perl
dev-perl/XML-Simple
@@ -242,7 +242,7 @@ pkg_pretend() {
wine_build_environment_check || die
 
# Verify OSS support
-   if use oss && ! use kernel_FreeBSD; then
+   if use oss; then
if ! has_version ">=media-sound/oss-4"; then
eerror "You cannot build wine with USE=oss without 
having support from a"
eerror "FreeBSD kernel or >=media-sound/oss-4 (only 
available through external repos)"

diff --git a/app-emulation/wine-vanilla/wine-vanilla-.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-.ebuild
index 93905dc..e3562cb 100644
--- a/app-emulation/wine-vanilla/wine-vanilla-.ebuild
+++ b/app-emulation/wine-vanilla/wine-vanilla-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU 

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-vanilla/

2022-01-28 Thread Nick Sarnie
commit: aea3afd7325bc85bd63967398a47768ab5e53a42
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sat Jan 29 01:14:18 2022 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sat Jan 29 01:14:26 2022 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=aea3afd7

app-emulation/wine-vanilla: Version bump

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-vanilla/Manifest|   1 +
 app-emulation/wine-vanilla/wine-vanilla-7.1.ebuild | 542 +
 2 files changed, 543 insertions(+)

diff --git a/app-emulation/wine-vanilla/Manifest 
b/app-emulation/wine-vanilla/Manifest
index fa433d2..09feb5e 100644
--- a/app-emulation/wine-vanilla/Manifest
+++ b/app-emulation/wine-vanilla/Manifest
@@ -84,3 +84,4 @@ DIST wine-6.7.tar.xz 24449368 BLAKE2B 
002bd6e74205217d4517c8697ddb212d8bcb8ba66a
 DIST wine-6.8.tar.xz 24481304 BLAKE2B 
37643eb75b29a646f23620df4084809aa15ac9d390e34e2e1ffb9e0c5211df9e7595dd0d877ede61f914f4a4373a450c50f4f2da5f7a0fa880881404cd918c88
 SHA512 
784863e3aa11f692cee2ab3b3d99cc896c1eb41cfab8cc6b52b5a31671d82fc7f6783bae72c65d8806a8c4096000401cbd0a1a7f1a88fd980685fae67fa9bd91
 DIST wine-6.9.tar.xz 24526724 BLAKE2B 
9e39bbc84380f7f40a9f41e1dbd1728ae8833eab4fe977eaf9386a92b9f089cf63147e35093b084d3a61e5c7209b405caea9cee2a4bebb294b77c65fc3551d66
 SHA512 
e9dc4da8cd6553db4227f09b5734513939d7e361449f52472a1f51ae569377a2931a0ab6f402aef751587ff1fa50f10f222b4479aba44f862db320931eeff363
 DIST wine-7.0.tar.xz 27120912 BLAKE2B 
84bfeb28d56f0f40bb93b1b5bf8954c8be2fd90fde5a61608e7c35f48addcce7a4d660e63c3caa3ca2c365d1e83b55a1c3485872b2d6bfa8941e2bce44c4aca6
 SHA512 
eec17b046ed5447eb540f421c9b2748d9419ce087496c2743a9914fd27bbe5ff9da0cfe47d3cd76fa97323bd1188a1d82b1eef4968d86ed1957dc1a95e28529c
+DIST wine-7.1.tar.xz 27149156 BLAKE2B 
a97b408a73b5cee52ac5e91b03a0e1850f5567e818d0383e4a546482b5f383eb185ed3ee2cf26377600d6963736b27180d2a87d79c58c053d37ead8d488e5268
 SHA512 
4b226ecab92a0462fb579602549cb4b96e0baa353fd320a0bc8d1ce134eff5a434600fcf748e93ecde06624f78b8c0d70b39737d97a7e2327a61df9750ae30b5

diff --git a/app-emulation/wine-vanilla/wine-vanilla-7.1.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-7.1.ebuild
new file mode 100644
index 000..7dcbefa
--- /dev/null
+++ b/app-emulation/wine-vanilla/wine-vanilla-7.1.ebuild
@@ -0,0 +1,542 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PLOCALES="ar ast bg ca cs da de el en en_US eo es fa fi fr he hi hr hu it ja 
ko lt ml nb_NO nl or pa pl pt_BR pt_PT rm ro ru si sk sl sr_RS@cyrillic 
sr_RS@latin sv ta te th tr uk wa zh_CN zh_TW"
+PLOCALE_BACKUP="en"
+
+inherit autotools eapi7-ver estack eutils flag-o-matic gnome2-utils multilib 
multilib-minimal pax-utils plocale toolchain-funcs virtualx xdg-utils
+
+MY_PN="${PN%%-*}"
+MY_P="${MY_PN}-${PV}"
+
+if [[ ${PV} == "" ]] ; then
+   EGIT_REPO_URI="https://source.winehq.org/git/wine.git;
+   EGIT_BRANCH="master"
+   inherit git-r3
+   SRC_URI=""
+   #KEYWORDS=""
+else
+   MAJOR_V=$(ver_cut 1)
+   SRC_URI="https://dl.winehq.org/wine/source/${MAJOR_V}.x/${MY_P}.tar.xz;
+   KEYWORDS="-* ~amd64 ~x86"
+fi
+S="${WORKDIR}/${MY_P}"
+
+GWP_V="20211122"
+PATCHDIR="${WORKDIR}/gentoo-wine-patches"
+
+DESCRIPTION="Free implementation of Windows(tm) on Unix, without external 
patchsets"
+HOMEPAGE="https://www.winehq.org/;
+SRC_URI="${SRC_URI}
+   
https://dev.gentoo.org/~sarnex/distfiles/wine/gentoo-wine-patches-${GWP_V}.tar.xz
+"
+
+LICENSE="LGPL-2.1"
+SLOT="${PV}"
+IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos elibc_glibc 
+fontconfig +gecko gphoto2 gssapi gstreamer kerberos ldap mingw +mono mp3 
netapi nls odbc openal opencl +opengl osmesa oss +perl pcap prelink pulseaudio 
+realtime +run-exes samba scanner sdl selinux +ssl test +threads +truetype udev 
+udisks +unwind usb v4l vkd3d vulkan +X +xcomposite xinerama"
+REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 )
+   X? ( truetype )
+   elibc_glibc? ( threads )
+   osmesa? ( opengl )
+   test? ( abi_x86_32 )
+   vkd3d? ( vulkan )" # osmesa-opengl #286560 # X-truetype #551124
+
+# FIXME: the test suite is unsuitable for us; many tests require net access
+# or fail due to Xvfb's opengl limitations.
+RESTRICT="test"
+
+COMMON_DEPEND="
+   X? (
+   x11-libs/libXcursor[${MULTILIB_USEDEP}]
+   x11-libs/libXext[${MULTILIB_USEDEP}]
+   x11-libs/libXfixes[${MULTILIB_USEDEP}]
+   x11-libs/libXrandr[${MULTILIB_USEDEP}]
+   x11-libs/libXi[${MULTILIB_USEDEP}]
+   x11-libs/libXxf86vm[${MULTILIB_USEDEP}]
+   )
+   alsa? ( media-libs/alsa-lib[${MULTILIB_USEDEP}] )
+   capi? ( net-libs/libcapi[${MULTILIB_USEDEP}] )
+   cups? ( net-print/cups:=[${MULTILIB_USEDEP}] )
+   fontconfig? ( media-libs/fontconfig:=[${MULTILIB_USEDEP}] )
+   gphoto2? (
+ 

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-staging/

2022-01-28 Thread Nick Sarnie
commit: a51d07fc217d89bfbc442e05d4bf92348106c5d3
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sat Jan 29 01:19:52 2022 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sat Jan 29 01:19:56 2022 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=a51d07fc

app-emulation/wine-staging: Version bump

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-staging/Manifest|   2 +
 app-emulation/wine-staging/wine-staging-7.1.ebuild | 617 +
 2 files changed, 619 insertions(+)

diff --git a/app-emulation/wine-staging/Manifest 
b/app-emulation/wine-staging/Manifest
index 1911e96..1329cfa 100644
--- a/app-emulation/wine-staging/Manifest
+++ b/app-emulation/wine-staging/Manifest
@@ -77,6 +77,7 @@ DIST wine-6.7.tar.xz 24449368 BLAKE2B 
002bd6e74205217d4517c8697ddb212d8bcb8ba66a
 DIST wine-6.8.tar.xz 24481304 BLAKE2B 
37643eb75b29a646f23620df4084809aa15ac9d390e34e2e1ffb9e0c5211df9e7595dd0d877ede61f914f4a4373a450c50f4f2da5f7a0fa880881404cd918c88
 SHA512 
784863e3aa11f692cee2ab3b3d99cc896c1eb41cfab8cc6b52b5a31671d82fc7f6783bae72c65d8806a8c4096000401cbd0a1a7f1a88fd980685fae67fa9bd91
 DIST wine-6.9.tar.xz 24526724 BLAKE2B 
9e39bbc84380f7f40a9f41e1dbd1728ae8833eab4fe977eaf9386a92b9f089cf63147e35093b084d3a61e5c7209b405caea9cee2a4bebb294b77c65fc3551d66
 SHA512 
e9dc4da8cd6553db4227f09b5734513939d7e361449f52472a1f51ae569377a2931a0ab6f402aef751587ff1fa50f10f222b4479aba44f862db320931eeff363
 DIST wine-7.0.tar.xz 27120912 BLAKE2B 
84bfeb28d56f0f40bb93b1b5bf8954c8be2fd90fde5a61608e7c35f48addcce7a4d660e63c3caa3ca2c365d1e83b55a1c3485872b2d6bfa8941e2bce44c4aca6
 SHA512 
eec17b046ed5447eb540f421c9b2748d9419ce087496c2743a9914fd27bbe5ff9da0cfe47d3cd76fa97323bd1188a1d82b1eef4968d86ed1957dc1a95e28529c
+DIST wine-7.1.tar.xz 27149156 BLAKE2B 
a97b408a73b5cee52ac5e91b03a0e1850f5567e818d0383e4a546482b5f383eb185ed3ee2cf26377600d6963736b27180d2a87d79c58c053d37ead8d488e5268
 SHA512 
4b226ecab92a0462fb579602549cb4b96e0baa353fd320a0bc8d1ce134eff5a434600fcf748e93ecde06624f78b8c0d70b39737d97a7e2327a61df9750ae30b5
 DIST wine-staging-150ce22fa21ffa040816e725ead34ed1de516bd8.tar.gz 9840427 
BLAKE2B 
e263d6563a5438973309346ba820acdb5079ef236c5c55694bdfa16c54f3f4fe76750ab324d6c5e1f0b429df634b917f138f4a1db38417ac2b49ce41ee36a211
 SHA512 
37f05909ca6cb28a3527f31882562146d3971f47345312b96783b5e62bc95ee61779f12f4c13e3d05ec5f331463a7600c16d5bc428d13c42bf3e3568f4d3923e
 DIST wine-staging-3f3a05f91c85cb5ccdc4c8185bcc862c6e96cd52.tar.gz 9835238 
BLAKE2B 
27c0e7fe418e7ee82c7b1cfc13c0c1508a7f4637ef7b8d64675ed4038a42961382170c064221a7bad70a4e168aef7d4e33974d06afc18fc6da4cf5db047b242e
 SHA512 
b2ad84bed89e713f4dc4f01763c40dc785f39f180a8f926c1b9e944a581ffcfd5c422427314201df1359b4b1c27dc2261281353f44ae9408e800d6add7bde366
 DIST wine-staging-4.0.tar.gz 9945756 BLAKE2B 
bfd27d5677d01b4a14c4ef593b741b6fa6e75194de04a90659ecceaa8b087d594cafdd0a53cc2ad2d05e9c73928d70d0b6681ac0052df79f7b45cbb370b31d3d
 SHA512 
4c2277449be17b83235bab7898818a886e84e82c0c5eb8216a5bc42e3d9a0e1dcf09d4522e1165d503fd9237673fa91c2c07d837cde58897f1b6fc8bc6fa5d33
@@ -147,3 +148,4 @@ DIST wine-staging-6.7.tar.gz 9722531 BLAKE2B 
1df164ea23808f40baddbbe30ed92125563
 DIST wine-staging-6.8.tar.gz 9709006 BLAKE2B 
48a100f43cedc4217c083421d4391e5f052faf354483990552d271a5820b654b4dd4db0b3d2d1478cbdf8414da56c86e7bce05ebdb70c347d81ce0b6df811498
 SHA512 
a2dfe74b07b687af147b61f235ea2843ff38a563f37ed2ed68dce1cc0ff3d50dbd7c9596836c6e236e368e7a55cbe1ba881dac11bb0966e61a76a7376f92bdcc
 DIST wine-staging-6.9.tar.gz 9687986 BLAKE2B 
72cf53616a619638fdc91d7501c8fcc2bb9c102a1a445a9c58dd23fbb5bccc27fcf2f9635ec65b23d93839514d8aa9ede29d84d6737e49776a1d99b716295ea4
 SHA512 
09732ce6fe5e5460ef5f30ab3dd5581c94b27e1d2c228bc395b1defd32fc5e908ab32eb2a56e489b154e1d0f638ad792c80a64d82d90a33c943102b379bef937
 DIST wine-staging-7.0.tar.gz 9614226 BLAKE2B 
f1263abde0fcb83f1784805df13e32db18758167f58e2370f3bbc16fdd6c0ad9b158c6e106e75183a42e42c29ef2971f2f297b2a733090727c1249a4914b45af
 SHA512 
fbec2de7a13c7e59a041d8102d69b803d4475b743068d215cce510af905b81903aa028604068af0d309fe1708eb1ab62aad42887ac079af5206635bee0045952
+DIST wine-staging-7.1.tar.gz 9623294 BLAKE2B 
a76aae22b93d8e56000998dcd4300af5a60d4648a459ca21da5bc122d0c8c0d57c2e7140c01c1eea4c0c8a808e7a98db72fa91c58663ec3fd60a1c7cc8504ddc
 SHA512 
cae234a3874c8bd3a4514c81ee311871c79c6c631145497e279ae86ceb6fef8e324d622d8b9974dbe7cbffacef09d8a6cb47a042096bf1a5ba737fed017e4038

diff --git a/app-emulation/wine-staging/wine-staging-7.1.ebuild 
b/app-emulation/wine-staging/wine-staging-7.1.ebuild
new file mode 100644
index 000..4a96ff0
--- /dev/null
+++ b/app-emulation/wine-staging/wine-staging-7.1.ebuild
@@ -0,0 +1,617 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PLOCALES="ar ast bg ca cs da de el en en_US eo es fa fi fr he hi hr hu it ja 
ko lt ml nb_NO nl or pa pl pt_BR pt_PT rm 

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-vanilla/

2022-01-18 Thread Nick Sarnie
commit: 2fdb0588e3a779bec98ff87b620262aeb6114519
Author: Nick Sarnie  gentoo  org>
AuthorDate: Tue Jan 18 23:44:16 2022 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Tue Jan 18 23:44:33 2022 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=2fdb0588

app-emulation/wine-vanilla: Fix USE

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-vanilla/wine-vanilla-7.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-emulation/wine-vanilla/wine-vanilla-7.0.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-7.0.ebuild
index 3f95dcf..341e462 100644
--- a/app-emulation/wine-vanilla/wine-vanilla-7.0.ebuild
+++ b/app-emulation/wine-vanilla/wine-vanilla-7.0.ebuild
@@ -35,7 +35,7 @@ SRC_URI="${SRC_URI}
 
 LICENSE="LGPL-2.1"
 SLOT="${PV}"
-IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos elibc_glibc 
+fontconfig +gecko gphoto2 gssapi gstreamer kerberos kernel_FreeBSD ldap mingw 
+mono mp3 netapi nls odbc openal opencl +opengl osmesa oss +perl pcap prelink 
pulseaudio +realtime +run-exes samba scanner sdl selinux +ssl test +threads 
+truetype udev +udisks +unwind usb v4l vkd3d vulkan +X +xcomposite xinerama"
+IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos elibc_glibc 
+fontconfig +gecko gphoto2 gssapi gstreamer kerberos ldap mingw +mono mp3 
netapi nls odbc openal opencl +opengl osmesa oss +perl pcap prelink pulseaudio 
+realtime +run-exes samba scanner sdl selinux +ssl test +threads +truetype udev 
+udisks +unwind usb v4l vkd3d vulkan +X +xcomposite xinerama"
 REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 )
X? ( truetype )
elibc_glibc? ( threads )
@@ -242,7 +242,7 @@ pkg_pretend() {
wine_build_environment_check || die
 
# Verify OSS support
-   if use oss && ! use kernel_FreeBSD; then
+   if use oss; then
if ! has_version ">=media-sound/oss-4"; then
eerror "You cannot build wine with USE=oss without 
having support from a"
eerror "FreeBSD kernel or >=media-sound/oss-4 (only 
available through external repos)"



[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-staging/

2022-01-18 Thread Nick Sarnie
commit: b274884013efeb622aa31b1ba19d0955ffed81e8
Author: Nick Sarnie  gentoo  org>
AuthorDate: Tue Jan 18 23:42:56 2022 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Tue Jan 18 23:44:37 2022 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=b2748840

app-emulation/wine-staging: Fix USE

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-staging/wine-staging-7.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-emulation/wine-staging/wine-staging-7.0.ebuild 
b/app-emulation/wine-staging/wine-staging-7.0.ebuild
index 6a32add..4a96ff0 100644
--- a/app-emulation/wine-staging/wine-staging-7.0.ebuild
+++ b/app-emulation/wine-staging/wine-staging-7.0.ebuild
@@ -48,7 +48,7 @@ fi
 
 LICENSE="LGPL-2.1"
 SLOT="${MY_PV}"
-IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos elibc_glibc 
+fontconfig +gecko gphoto2 gssapi gstreamer kerberos kernel_FreeBSD ldap mingw 
+mono mp3 netapi nls odbc openal opencl +opengl osmesa oss +perl pcap pipelight 
prelink pulseaudio +realtime +run-exes samba scanner sdl selinux +ssl staging 
test +threads +truetype udev +udisks +unwind usb v4l vkd3d vulkan +X 
+xcomposite xinerama"
+IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos elibc_glibc 
+fontconfig +gecko gphoto2 gssapi gstreamer kerberos ldap mingw +mono mp3 
netapi nls odbc openal opencl +opengl osmesa oss +perl pcap pipelight prelink 
pulseaudio +realtime +run-exes samba scanner sdl selinux +ssl staging test 
+threads +truetype udev +udisks +unwind usb v4l vkd3d vulkan +X +xcomposite 
xinerama"
 REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 )
X? ( truetype )
elibc_glibc? ( threads )
@@ -274,7 +274,7 @@ pkg_pretend() {
wine_build_environment_check || die
 
# Verify OSS support
-   if use oss && ! use kernel_FreeBSD; then
+   if use oss; then
if ! has_version ">=media-sound/oss-4"; then
eerror "You cannot build wine with USE=oss 
without having support from a"
eerror "FreeBSD kernel or >=media-sound/oss-4 
(only available through external repos)"



[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-staging/

2022-01-18 Thread Nick Sarnie
commit: 389dc9698b6eb194a2b6efdbbf6b6c2c177b3d0a
Author: Nick Sarnie  gentoo  org>
AuthorDate: Tue Jan 18 23:31:47 2022 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Tue Jan 18 23:31:53 2022 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=389dc969

app-emulation/wine-staging: Version bump

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-staging/Manifest|   2 +
 app-emulation/wine-staging/wine-staging-7.0.ebuild | 617 +
 2 files changed, 619 insertions(+)

diff --git a/app-emulation/wine-staging/Manifest 
b/app-emulation/wine-staging/Manifest
index 30f6d4e..1911e96 100644
--- a/app-emulation/wine-staging/Manifest
+++ b/app-emulation/wine-staging/Manifest
@@ -76,6 +76,7 @@ DIST wine-6.6.tar.xz 24400568 BLAKE2B 
37ec581686a2145a84cd40a1c29c313cf253f96c86
 DIST wine-6.7.tar.xz 24449368 BLAKE2B 
002bd6e74205217d4517c8697ddb212d8bcb8ba66ac1594996e24e2d5e771119e73e65a0b42608133ebaab699a31cd6567a0ab954e8d4e1f94492ebb929d0ffb
 SHA512 
42920921eaff5a483859fba2b9e866c6afad25427d030f971efe2136f9619b675d5eb1ddfffd54bba8caa172c3e91eb347d673cb16f45560f0ab40a184a34758
 DIST wine-6.8.tar.xz 24481304 BLAKE2B 
37643eb75b29a646f23620df4084809aa15ac9d390e34e2e1ffb9e0c5211df9e7595dd0d877ede61f914f4a4373a450c50f4f2da5f7a0fa880881404cd918c88
 SHA512 
784863e3aa11f692cee2ab3b3d99cc896c1eb41cfab8cc6b52b5a31671d82fc7f6783bae72c65d8806a8c4096000401cbd0a1a7f1a88fd980685fae67fa9bd91
 DIST wine-6.9.tar.xz 24526724 BLAKE2B 
9e39bbc84380f7f40a9f41e1dbd1728ae8833eab4fe977eaf9386a92b9f089cf63147e35093b084d3a61e5c7209b405caea9cee2a4bebb294b77c65fc3551d66
 SHA512 
e9dc4da8cd6553db4227f09b5734513939d7e361449f52472a1f51ae569377a2931a0ab6f402aef751587ff1fa50f10f222b4479aba44f862db320931eeff363
+DIST wine-7.0.tar.xz 27120912 BLAKE2B 
84bfeb28d56f0f40bb93b1b5bf8954c8be2fd90fde5a61608e7c35f48addcce7a4d660e63c3caa3ca2c365d1e83b55a1c3485872b2d6bfa8941e2bce44c4aca6
 SHA512 
eec17b046ed5447eb540f421c9b2748d9419ce087496c2743a9914fd27bbe5ff9da0cfe47d3cd76fa97323bd1188a1d82b1eef4968d86ed1957dc1a95e28529c
 DIST wine-staging-150ce22fa21ffa040816e725ead34ed1de516bd8.tar.gz 9840427 
BLAKE2B 
e263d6563a5438973309346ba820acdb5079ef236c5c55694bdfa16c54f3f4fe76750ab324d6c5e1f0b429df634b917f138f4a1db38417ac2b49ce41ee36a211
 SHA512 
37f05909ca6cb28a3527f31882562146d3971f47345312b96783b5e62bc95ee61779f12f4c13e3d05ec5f331463a7600c16d5bc428d13c42bf3e3568f4d3923e
 DIST wine-staging-3f3a05f91c85cb5ccdc4c8185bcc862c6e96cd52.tar.gz 9835238 
BLAKE2B 
27c0e7fe418e7ee82c7b1cfc13c0c1508a7f4637ef7b8d64675ed4038a42961382170c064221a7bad70a4e168aef7d4e33974d06afc18fc6da4cf5db047b242e
 SHA512 
b2ad84bed89e713f4dc4f01763c40dc785f39f180a8f926c1b9e944a581ffcfd5c422427314201df1359b4b1c27dc2261281353f44ae9408e800d6add7bde366
 DIST wine-staging-4.0.tar.gz 9945756 BLAKE2B 
bfd27d5677d01b4a14c4ef593b741b6fa6e75194de04a90659ecceaa8b087d594cafdd0a53cc2ad2d05e9c73928d70d0b6681ac0052df79f7b45cbb370b31d3d
 SHA512 
4c2277449be17b83235bab7898818a886e84e82c0c5eb8216a5bc42e3d9a0e1dcf09d4522e1165d503fd9237673fa91c2c07d837cde58897f1b6fc8bc6fa5d33
@@ -145,3 +146,4 @@ DIST wine-staging-6.6.tar.gz 9756871 BLAKE2B 
45e49f7cd2820e027cf9788e7257a3fdaeb
 DIST wine-staging-6.7.tar.gz 9722531 BLAKE2B 
1df164ea23808f40baddbbe30ed92125563c3c952e13817ddea124cf780a397237e70aa48532d5b49c8b80919122a09e579f1928a13b6d17329d51f0ba03da74
 SHA512 
74805846e2e6e5d751c25f4b98ac671f8507d3a9b13d572e166b1885e397a6bb74bd3ea4b456d46298306d632499a4b88f97eb6d53ff049c2495cf055347611d
 DIST wine-staging-6.8.tar.gz 9709006 BLAKE2B 
48a100f43cedc4217c083421d4391e5f052faf354483990552d271a5820b654b4dd4db0b3d2d1478cbdf8414da56c86e7bce05ebdb70c347d81ce0b6df811498
 SHA512 
a2dfe74b07b687af147b61f235ea2843ff38a563f37ed2ed68dce1cc0ff3d50dbd7c9596836c6e236e368e7a55cbe1ba881dac11bb0966e61a76a7376f92bdcc
 DIST wine-staging-6.9.tar.gz 9687986 BLAKE2B 
72cf53616a619638fdc91d7501c8fcc2bb9c102a1a445a9c58dd23fbb5bccc27fcf2f9635ec65b23d93839514d8aa9ede29d84d6737e49776a1d99b716295ea4
 SHA512 
09732ce6fe5e5460ef5f30ab3dd5581c94b27e1d2c228bc395b1defd32fc5e908ab32eb2a56e489b154e1d0f638ad792c80a64d82d90a33c943102b379bef937
+DIST wine-staging-7.0.tar.gz 9614226 BLAKE2B 
f1263abde0fcb83f1784805df13e32db18758167f58e2370f3bbc16fdd6c0ad9b158c6e106e75183a42e42c29ef2971f2f297b2a733090727c1249a4914b45af
 SHA512 
fbec2de7a13c7e59a041d8102d69b803d4475b743068d215cce510af905b81903aa028604068af0d309fe1708eb1ab62aad42887ac079af5206635bee0045952

diff --git a/app-emulation/wine-staging/wine-staging-7.0.ebuild 
b/app-emulation/wine-staging/wine-staging-7.0.ebuild
new file mode 100644
index 000..6a32add
--- /dev/null
+++ b/app-emulation/wine-staging/wine-staging-7.0.ebuild
@@ -0,0 +1,617 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PLOCALES="ar ast bg ca cs da de el en en_US eo es fa fi fr he hi hr hu it ja 
ko lt ml nb_NO nl or pa pl pt_BR pt_PT rm 

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-vanilla/

2022-01-18 Thread Nick Sarnie
commit: 873d933f98d320e3ffac03c40befb08713b62c17
Author: Nick Sarnie  gentoo  org>
AuthorDate: Tue Jan 18 23:24:11 2022 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Tue Jan 18 23:24:21 2022 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=873d933f

app-emulation/wine-vanilla: Version bump

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-vanilla/Manifest|   1 +
 app-emulation/wine-vanilla/wine-vanilla-7.0.ebuild | 542 +
 2 files changed, 543 insertions(+)

diff --git a/app-emulation/wine-vanilla/Manifest 
b/app-emulation/wine-vanilla/Manifest
index a505636..fa433d2 100644
--- a/app-emulation/wine-vanilla/Manifest
+++ b/app-emulation/wine-vanilla/Manifest
@@ -83,3 +83,4 @@ DIST wine-6.6.tar.xz 24400568 BLAKE2B 
37ec581686a2145a84cd40a1c29c313cf253f96c86
 DIST wine-6.7.tar.xz 24449368 BLAKE2B 
002bd6e74205217d4517c8697ddb212d8bcb8ba66ac1594996e24e2d5e771119e73e65a0b42608133ebaab699a31cd6567a0ab954e8d4e1f94492ebb929d0ffb
 SHA512 
42920921eaff5a483859fba2b9e866c6afad25427d030f971efe2136f9619b675d5eb1ddfffd54bba8caa172c3e91eb347d673cb16f45560f0ab40a184a34758
 DIST wine-6.8.tar.xz 24481304 BLAKE2B 
37643eb75b29a646f23620df4084809aa15ac9d390e34e2e1ffb9e0c5211df9e7595dd0d877ede61f914f4a4373a450c50f4f2da5f7a0fa880881404cd918c88
 SHA512 
784863e3aa11f692cee2ab3b3d99cc896c1eb41cfab8cc6b52b5a31671d82fc7f6783bae72c65d8806a8c4096000401cbd0a1a7f1a88fd980685fae67fa9bd91
 DIST wine-6.9.tar.xz 24526724 BLAKE2B 
9e39bbc84380f7f40a9f41e1dbd1728ae8833eab4fe977eaf9386a92b9f089cf63147e35093b084d3a61e5c7209b405caea9cee2a4bebb294b77c65fc3551d66
 SHA512 
e9dc4da8cd6553db4227f09b5734513939d7e361449f52472a1f51ae569377a2931a0ab6f402aef751587ff1fa50f10f222b4479aba44f862db320931eeff363
+DIST wine-7.0.tar.xz 27120912 BLAKE2B 
84bfeb28d56f0f40bb93b1b5bf8954c8be2fd90fde5a61608e7c35f48addcce7a4d660e63c3caa3ca2c365d1e83b55a1c3485872b2d6bfa8941e2bce44c4aca6
 SHA512 
eec17b046ed5447eb540f421c9b2748d9419ce087496c2743a9914fd27bbe5ff9da0cfe47d3cd76fa97323bd1188a1d82b1eef4968d86ed1957dc1a95e28529c

diff --git a/app-emulation/wine-vanilla/wine-vanilla-7.0.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-7.0.ebuild
new file mode 100644
index 000..3f95dcf
--- /dev/null
+++ b/app-emulation/wine-vanilla/wine-vanilla-7.0.ebuild
@@ -0,0 +1,542 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PLOCALES="ar ast bg ca cs da de el en en_US eo es fa fi fr he hi hr hu it ja 
ko lt ml nb_NO nl or pa pl pt_BR pt_PT rm ro ru si sk sl sr_RS@cyrillic 
sr_RS@latin sv ta te th tr uk wa zh_CN zh_TW"
+PLOCALE_BACKUP="en"
+
+inherit autotools eapi7-ver estack eutils flag-o-matic gnome2-utils multilib 
multilib-minimal pax-utils plocale toolchain-funcs virtualx xdg-utils
+
+MY_PN="${PN%%-*}"
+MY_P="${MY_PN}-${PV}"
+
+if [[ ${PV} == "" ]] ; then
+   EGIT_REPO_URI="https://source.winehq.org/git/wine.git;
+   EGIT_BRANCH="master"
+   inherit git-r3
+   SRC_URI=""
+   #KEYWORDS=""
+else
+   MAJOR_V=$(ver_cut 1)
+   SRC_URI="https://dl.winehq.org/wine/source/${MAJOR_V}.0/${MY_P}.tar.xz;
+   KEYWORDS="-* ~amd64 ~x86"
+fi
+S="${WORKDIR}/${MY_P}"
+
+GWP_V="20211122"
+PATCHDIR="${WORKDIR}/gentoo-wine-patches"
+
+DESCRIPTION="Free implementation of Windows(tm) on Unix, without external 
patchsets"
+HOMEPAGE="https://www.winehq.org/;
+SRC_URI="${SRC_URI}
+   
https://dev.gentoo.org/~sarnex/distfiles/wine/gentoo-wine-patches-${GWP_V}.tar.xz
+"
+
+LICENSE="LGPL-2.1"
+SLOT="${PV}"
+IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos elibc_glibc 
+fontconfig +gecko gphoto2 gssapi gstreamer kerberos kernel_FreeBSD ldap mingw 
+mono mp3 netapi nls odbc openal opencl +opengl osmesa oss +perl pcap prelink 
pulseaudio +realtime +run-exes samba scanner sdl selinux +ssl test +threads 
+truetype udev +udisks +unwind usb v4l vkd3d vulkan +X +xcomposite xinerama"
+REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 )
+   X? ( truetype )
+   elibc_glibc? ( threads )
+   osmesa? ( opengl )
+   test? ( abi_x86_32 )
+   vkd3d? ( vulkan )" # osmesa-opengl #286560 # X-truetype #551124
+
+# FIXME: the test suite is unsuitable for us; many tests require net access
+# or fail due to Xvfb's opengl limitations.
+RESTRICT="test"
+
+COMMON_DEPEND="
+   X? (
+   x11-libs/libXcursor[${MULTILIB_USEDEP}]
+   x11-libs/libXext[${MULTILIB_USEDEP}]
+   x11-libs/libXfixes[${MULTILIB_USEDEP}]
+   x11-libs/libXrandr[${MULTILIB_USEDEP}]
+   x11-libs/libXi[${MULTILIB_USEDEP}]
+   x11-libs/libXxf86vm[${MULTILIB_USEDEP}]
+   )
+   alsa? ( media-libs/alsa-lib[${MULTILIB_USEDEP}] )
+   capi? ( net-libs/libcapi[${MULTILIB_USEDEP}] )
+   cups? ( net-print/cups:=[${MULTILIB_USEDEP}] )
+   fontconfig? ( media-libs/fontconfig:=[${MULTILIB_USEDEP}] )
+   

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-staging/files/, app-emulation/wine-staging/

2021-12-11 Thread Nick Sarnie
commit: 8c991f09701a39a5b86785db343a66fd2f4b5aea
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sat Dec 11 22:04:22 2021 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sat Dec 11 22:04:58 2021 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=8c991f09

app-emulation/wine-staging: Fix build with new autoconf

Package-Manager: Portage-3.0.29, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 ...taging-fix-compability-with-autoconf-2.70.patch | 38 ++
 app-emulation/wine-staging/wine-staging-4.0.ebuild |  1 +
 app-emulation/wine-staging/wine-staging-4.1.ebuild |  1 +
 .../wine-staging/wine-staging-4.10.ebuild  |  1 +
 .../wine-staging/wine-staging-4.11.ebuild  |  1 +
 .../wine-staging/wine-staging-4.12.1.ebuild|  1 +
 .../wine-staging/wine-staging-4.13.ebuild  |  1 +
 .../wine-staging/wine-staging-4.14.ebuild  |  1 +
 .../wine-staging/wine-staging-4.15.ebuild  |  1 +
 .../wine-staging/wine-staging-4.16.ebuild  |  1 +
 .../wine-staging/wine-staging-4.17.ebuild  |  1 +
 .../wine-staging/wine-staging-4.18.ebuild  |  1 +
 .../wine-staging/wine-staging-4.19.ebuild  |  1 +
 app-emulation/wine-staging/wine-staging-4.2.ebuild |  1 +
 .../wine-staging/wine-staging-4.20.ebuild  |  1 +
 .../wine-staging/wine-staging-4.21.ebuild  |  1 +
 app-emulation/wine-staging/wine-staging-4.3.ebuild |  1 +
 .../wine-staging/wine-staging-4.4-r1.ebuild|  1 +
 app-emulation/wine-staging/wine-staging-4.4.ebuild |  1 +
 app-emulation/wine-staging/wine-staging-4.5.ebuild |  1 +
 .../wine-staging/wine-staging-4.6-r1.ebuild|  1 +
 app-emulation/wine-staging/wine-staging-4.6.ebuild |  1 +
 .../wine-staging/wine-staging-4.7-r1.ebuild|  1 +
 app-emulation/wine-staging/wine-staging-4.7.ebuild |  1 +
 app-emulation/wine-staging/wine-staging-4.8.ebuild |  1 +
 app-emulation/wine-staging/wine-staging-4.9.ebuild |  1 +
 app-emulation/wine-staging/wine-staging-5.0.ebuild |  1 +
 app-emulation/wine-staging/wine-staging-5.1.ebuild |  1 +
 .../wine-staging/wine-staging-5.10-r1.ebuild   |  1 +
 .../wine-staging/wine-staging-5.11.ebuild  |  1 +
 .../wine-staging/wine-staging-5.12.ebuild  |  1 +
 .../wine-staging/wine-staging-5.13.ebuild  |  1 +
 .../wine-staging/wine-staging-5.14.ebuild  |  1 +
 .../wine-staging/wine-staging-5.15.ebuild  |  1 +
 .../wine-staging/wine-staging-5.16.ebuild  |  1 +
 .../wine-staging/wine-staging-5.17.ebuild  |  1 +
 .../wine-staging/wine-staging-5.18.ebuild  |  1 +
 .../wine-staging/wine-staging-5.19.ebuild  |  1 +
 app-emulation/wine-staging/wine-staging-5.2.ebuild |  1 +
 .../wine-staging/wine-staging-5.20.ebuild  |  1 +
 .../wine-staging/wine-staging-5.3-r1.ebuild|  1 +
 app-emulation/wine-staging/wine-staging-5.3.ebuild |  1 +
 app-emulation/wine-staging/wine-staging-5.4.ebuild |  1 +
 .../wine-staging/wine-staging-5.5-r1.ebuild|  1 +
 app-emulation/wine-staging/wine-staging-5.5.ebuild |  1 +
 app-emulation/wine-staging/wine-staging-5.6.ebuild |  1 +
 app-emulation/wine-staging/wine-staging-5.7.ebuild |  1 +
 app-emulation/wine-staging/wine-staging-5.8.ebuild |  1 +
 app-emulation/wine-staging/wine-staging-5.9.ebuild |  1 +
 49 files changed, 86 insertions(+)

diff --git 
a/app-emulation/wine-staging/files/wine-staging-fix-compability-with-autoconf-2.70.patch
 
b/app-emulation/wine-staging/files/wine-staging-fix-compability-with-autoconf-2.70.patch
new file mode 100644
index 000..df1c54a
--- /dev/null
+++ 
b/app-emulation/wine-staging/files/wine-staging-fix-compability-with-autoconf-2.70.patch
@@ -0,0 +1,38 @@
+From d7645b67c350f7179a1eba749ec4524c74948d86 Mon Sep 17 00:00:00 2001
+From: Sergei Trofimovich 
+Date: Thu, 29 Oct 2020 22:51:57 +
+Subject: [PATCH] aclocal.m4: Fix compatibility with upcoming autoconf-2.70.
+
+Under autoconf 2.69c (beta) `./configure` fails as:
+
+```
+./configure
+...
+checking for msgfmt... msgfmt
+./configure: line 7441: syntax error near unexpected token `newline'
+./configure: line 7441: `'''
+```
+
+This happens due to underquoting of a snippet
+argument for `AS_VAR_SET_IF` call.
+
+Signed-off-by: Sergei Trofimovich 
+Signed-off-by: Alexandre Julliard 
+---
+ aclocal.m4 | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/aclocal.m4 b/aclocal.m4
+index c5edd85cee49..bd8ca6b33e55 100644
+--- a/aclocal.m4
 b/aclocal.m4
+@@ -28,7 +28,7 @@ dnl Like AC_CHECK_TOOL but without the broken fallback to 
non-prefixed name
+ dnl
+ AC_DEFUN([WINE_CHECK_HOST_TOOL],
+ [AS_VAR_SET_IF([ac_tool_prefix],
+-  AC_CHECK_PROG([$1],[${ac_tool_prefix}$2],[${ac_tool_prefix}$2],,[$4]))
++  [AC_CHECK_PROG([$1],[${ac_tool_prefix}$2],[${ac_tool_prefix}$2],,[$4])])
+ AS_VAR_IF([ac_cv_prog_$1],[],
+   [AS_VAR_IF([cross_compiling],[yes],[],
+ [AS_UNSET([ac_cv_prog_$1])
+

diff --git 

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-vanilla/files/, app-emulation/wine-vanilla/

2021-12-11 Thread Nick Sarnie
commit: 484758e301e639a851517077ae9707ba2b98412c
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sat Dec 11 22:01:10 2021 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sat Dec 11 22:04:52 2021 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=484758e3

app-emulation/wine-vanilla: Fix build with new autoconf

Package-Manager: Portage-3.0.29, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 ...anilla-fix-compability-with-autoconf-2.70.patch | 38 ++
 .../wine-vanilla/wine-vanilla-4.0.1.ebuild |  1 +
 .../wine-vanilla/wine-vanilla-4.0.2.ebuild |  1 +
 app-emulation/wine-vanilla/wine-vanilla-4.0.ebuild |  1 +
 app-emulation/wine-vanilla/wine-vanilla-4.1.ebuild |  1 +
 .../wine-vanilla/wine-vanilla-4.10.ebuild  |  1 +
 .../wine-vanilla/wine-vanilla-4.11.ebuild  |  1 +
 .../wine-vanilla/wine-vanilla-4.12.1.ebuild|  1 +
 .../wine-vanilla/wine-vanilla-4.13.ebuild  |  1 +
 .../wine-vanilla/wine-vanilla-4.14.ebuild  |  1 +
 .../wine-vanilla/wine-vanilla-4.15.ebuild  |  1 +
 .../wine-vanilla/wine-vanilla-4.16.ebuild  |  1 +
 .../wine-vanilla/wine-vanilla-4.17.ebuild  |  1 +
 .../wine-vanilla/wine-vanilla-4.18.ebuild  |  1 +
 .../wine-vanilla/wine-vanilla-4.19.ebuild  |  1 +
 app-emulation/wine-vanilla/wine-vanilla-4.2.ebuild |  1 +
 .../wine-vanilla/wine-vanilla-4.20.ebuild  |  1 +
 .../wine-vanilla/wine-vanilla-4.21.ebuild  |  1 +
 app-emulation/wine-vanilla/wine-vanilla-4.3.ebuild |  1 +
 app-emulation/wine-vanilla/wine-vanilla-4.4.ebuild |  1 +
 app-emulation/wine-vanilla/wine-vanilla-4.5.ebuild |  1 +
 .../wine-vanilla/wine-vanilla-4.6-r1.ebuild|  1 +
 app-emulation/wine-vanilla/wine-vanilla-4.6.ebuild |  1 +
 .../wine-vanilla/wine-vanilla-4.7-r1.ebuild|  1 +
 app-emulation/wine-vanilla/wine-vanilla-4.7.ebuild |  1 +
 app-emulation/wine-vanilla/wine-vanilla-4.8.ebuild |  1 +
 app-emulation/wine-vanilla/wine-vanilla-4.9.ebuild |  1 +
 .../wine-vanilla/wine-vanilla-5.0.1.ebuild |  1 +
 .../wine-vanilla/wine-vanilla-5.0.2.ebuild |  1 +
 .../wine-vanilla/wine-vanilla-5.0.3-r1.ebuild  |  1 +
 .../wine-vanilla/wine-vanilla-5.0.3.ebuild |  1 +
 app-emulation/wine-vanilla/wine-vanilla-5.0.ebuild |  1 +
 app-emulation/wine-vanilla/wine-vanilla-5.1.ebuild |  1 +
 .../wine-vanilla/wine-vanilla-5.10.ebuild  |  1 +
 .../wine-vanilla/wine-vanilla-5.11.ebuild  |  1 +
 .../wine-vanilla/wine-vanilla-5.12.ebuild  |  1 +
 .../wine-vanilla/wine-vanilla-5.13.ebuild  |  1 +
 .../wine-vanilla/wine-vanilla-5.14.ebuild  |  1 +
 .../wine-vanilla/wine-vanilla-5.15.ebuild  |  1 +
 .../wine-vanilla/wine-vanilla-5.16.ebuild  |  1 +
 .../wine-vanilla/wine-vanilla-5.17.ebuild  |  1 +
 .../wine-vanilla/wine-vanilla-5.18.ebuild  |  1 +
 .../wine-vanilla/wine-vanilla-5.19.ebuild  |  1 +
 app-emulation/wine-vanilla/wine-vanilla-5.2.ebuild |  1 +
 .../wine-vanilla/wine-vanilla-5.20.ebuild  |  1 +
 app-emulation/wine-vanilla/wine-vanilla-5.3.ebuild |  1 +
 app-emulation/wine-vanilla/wine-vanilla-5.4.ebuild |  1 +
 app-emulation/wine-vanilla/wine-vanilla-5.5.ebuild |  1 +
 app-emulation/wine-vanilla/wine-vanilla-5.6.ebuild |  1 +
 app-emulation/wine-vanilla/wine-vanilla-5.7.ebuild |  1 +
 app-emulation/wine-vanilla/wine-vanilla-5.8.ebuild |  1 +
 app-emulation/wine-vanilla/wine-vanilla-5.9.ebuild |  1 +
 52 files changed, 89 insertions(+)

diff --git 
a/app-emulation/wine-vanilla/files/wine-vanilla-fix-compability-with-autoconf-2.70.patch
 
b/app-emulation/wine-vanilla/files/wine-vanilla-fix-compability-with-autoconf-2.70.patch
new file mode 100644
index 000..df1c54a
--- /dev/null
+++ 
b/app-emulation/wine-vanilla/files/wine-vanilla-fix-compability-with-autoconf-2.70.patch
@@ -0,0 +1,38 @@
+From d7645b67c350f7179a1eba749ec4524c74948d86 Mon Sep 17 00:00:00 2001
+From: Sergei Trofimovich 
+Date: Thu, 29 Oct 2020 22:51:57 +
+Subject: [PATCH] aclocal.m4: Fix compatibility with upcoming autoconf-2.70.
+
+Under autoconf 2.69c (beta) `./configure` fails as:
+
+```
+./configure
+...
+checking for msgfmt... msgfmt
+./configure: line 7441: syntax error near unexpected token `newline'
+./configure: line 7441: `'''
+```
+
+This happens due to underquoting of a snippet
+argument for `AS_VAR_SET_IF` call.
+
+Signed-off-by: Sergei Trofimovich 
+Signed-off-by: Alexandre Julliard 
+---
+ aclocal.m4 | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/aclocal.m4 b/aclocal.m4
+index c5edd85cee49..bd8ca6b33e55 100644
+--- a/aclocal.m4
 b/aclocal.m4
+@@ -28,7 +28,7 @@ dnl Like AC_CHECK_TOOL but without the broken fallback to 
non-prefixed name
+ dnl
+ AC_DEFUN([WINE_CHECK_HOST_TOOL],
+ [AS_VAR_SET_IF([ac_tool_prefix],
+-  AC_CHECK_PROG([$1],[${ac_tool_prefix}$2],[${ac_tool_prefix}$2],,[$4]))
++  

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-staging/

2021-12-04 Thread Nick Sarnie
commit: c472046169628fcecd0dc827aa3ae607e12406aa
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sat Dec  4 21:41:36 2021 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sat Dec  4 21:41:36 2021 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=c4720461

app-emulation/wine-staging: Version bump

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-staging/Manifest|   2 +
 .../wine-staging/wine-staging-6.23.ebuild  | 617 +
 2 files changed, 619 insertions(+)

diff --git a/app-emulation/wine-staging/Manifest 
b/app-emulation/wine-staging/Manifest
index 2396795..30f6d4e 100644
--- a/app-emulation/wine-staging/Manifest
+++ b/app-emulation/wine-staging/Manifest
@@ -68,6 +68,7 @@ DIST wine-6.2.tar.xz 24270924 BLAKE2B 
b83e7ff097d8f48cc46588a672515e8c1eafeafd59
 DIST wine-6.20.tar.xz 26921644 BLAKE2B 
2db2bdd0b0c65855d96bc407ea54aa289dd0324715eb7fc068dd57b6b90ee7b331997fd9f68942f02ef45ef9f6eb10e7efaad79d0f97721626fc50ef2e47cc49
 SHA512 
dc0c29194ffd0ddcc2e34d8f7ac236f039e21cdde8cb959ddf16b4b67eb1d6332c9d1a780d0872669a1083db55e105eebaf3d7a6cc5aa749e91efab88bd1f958
 DIST wine-6.21.tar.xz 26973172 BLAKE2B 
7e73e04419d50b12269c281b68b002fb7ef29519c63e6c45074fa919b067ee145d328aad6507578db84940c3ac379c0469758d1a211d7d213d1833ee8c15c096
 SHA512 
2c6d58c8c5c37497b2b3935f71afd636c274d1d4ad3f9ca2fd9982a9ed5910888cc20841bd9175446aab2fef7813d7700458edbaad6028ad34e7444a887a9220
 DIST wine-6.22.tar.xz 27031604 BLAKE2B 
ed1cf0499f8f827e88a1a899db3c5243d016696fdb1189b321cac398749f9360956f0cd473b2ee04052f0db750550a983b089c4f151edac535b7d440c9a2e048
 SHA512 
5326d500a2c5884e3ff004557a0360f8ff5c29ae42fdc256a13012ab746371dd403c87715efa00e43bf181fbc6d0647372e3e40944e5673b069f6e4f4cc700b5
+DIST wine-6.23.tar.xz 27057236 BLAKE2B 
9e438a1f2200c59517b05eb4ea6d6c26594b3fd442caa11d9ccabd8e0c016d1a721f2579c36fcfb18bb1185edfb11480d65d732d435d44f5dea0bcb345fa1476
 SHA512 
3e459b305f472ece00cbf467e14e6cfa7422381cb9242d05e9624487d559f438039aa8c780986469591c9d0f05e384380133dc6fb4ed694355ae42744a78d9b7
 DIST wine-6.3.tar.xz 24301496 BLAKE2B 
d36e46e369abc619d351dd3209c0c86c5e5924509fe98a9e158fd10b9ca57650b9bc20e64dc801ec1b09315ed77fd81b549ebce7f383a3f772717a2031878588
 SHA512 
20108ea5036d612e8dd61fe9254d67cad02d757ede87174ed27774e4e3537e0d1f4d67156fd430f1d01d5c68b899cb0c7b4be298d897a1ce823913efef822242
 DIST wine-6.4.tar.xz 24340220 BLAKE2B 
b09ea9237b71856184a03e64ef8cf7aa30591ebd6534a550e9365ea9ab773d81283520ca6b0efc8aa69063cdeae8da35fc22e08a40c73c6268db4d57b0442ad2
 SHA512 
f190e1b97defb4620e33d1a4e2afffd475f6b3998153c67c6d06840b4f3b93a50f88c6844de15e7f54ca712330f6fea857310861a78b961feb7f64a4869f3fe1
 DIST wine-6.5.tar.xz 24375196 BLAKE2B 
c30f606d268bf39f9424dd2e65f98f75b3538c82df6a931ea4955040a625ff07a2272f7d83f4343f8997ac2660a934528279ff31555ef062c81487e897c429f9
 SHA512 
11f9d2bb515c63429d397b97ecc1f13d0dbb717780d674229b851b819d707e0fd6fbf8bbae9a41dbf7b2ceb3729c4f5643d1ec5e414d6694d192072081f96fe4
@@ -136,6 +137,7 @@ DIST wine-staging-6.2.tar.gz 9820682 BLAKE2B 
3de0c0ecbdabc1ffb965e6d5ebf5689fbea
 DIST wine-staging-6.20.tar.gz 9643278 BLAKE2B 
b5f0a74c575541303eaf12e9706f8917b795fc0d5f065e7292329cec7da145f9c7db25bebfcf4d703bf561206f22c9a49a95e8471629009dac4679c6f028b918
 SHA512 
9b5650d065976ab5b0bcb2f65895bf7b6bf139d376fc5cff421d493a6f6a849cb57e33243d1fad9ca1943cfbfdee8d8a3a4d530722163b15a0830d616f06e1e3
 DIST wine-staging-6.21.tar.gz 9627829 BLAKE2B 
b743b67c6f26871894b16d8cd9e7ed39a1d1dd6204516453628435ee23df7644433508edc7c7dd2881686926427e683c36a29acdc744c89d2c2bd4c5f50a13ea
 SHA512 
b74ad7f96f2831b2635557c16cb616754e31c490b5b935d1d197d6cc8e61ca75805f801e3b936a3794af57be94344d3a06dcfce92db7e036b6c3751ef294
 DIST wine-staging-6.22.tar.gz 9608891 BLAKE2B 
b1fb62e82ea746a4872c4dcb8e243a44248732e4d3512e8c489e230422fc51861b5a8f1996ae12e432c5ef7eeb8cae693f9afe862d2bde150f1d6eab46534f6a
 SHA512 
3839cdcd7ffead2cf933b59eb038856eccde7b28e599b61e10e2745ff4d2bfeefcc43262bbc96c97510560584de759ef0616b0f5e391de608fb08176502cb830
+DIST wine-staging-6.23.tar.gz 9609149 BLAKE2B 
abc9f4134293c91759311fbc91230f3a7f41455cc35a70bda4bf61f088520cb520b139b1c92bf2f18c6f885caf9397835a01f6bfa9d46c1d1bd49a4918ba330d
 SHA512 
32bee187b9c7bdd026e64263083f3d92eb01c72f2d29a7d006616fb0713a0668c3d5ce3b5d523e09b650cfe77c1080e0478113afabd02352d66af53e60e0b31e
 DIST wine-staging-6.3.tar.gz 9796930 BLAKE2B 
b24e5ec57435a0d797e4d913b027226b3c891477d9df5d098be52348dff4eb704275c7c59d09f6cbdf7f86940a0e6c96bf28f94bd703fd32d6770a31426043fc
 SHA512 
ed9b3b03c466de03941d7fec00c73ff77df863c3f4ba201e7f920810675ff416995557cb62b6701dcec6928f2ab9e4d608f17b79eda0267094e506a5e66f47f2
 DIST wine-staging-6.4.tar.gz 9778866 BLAKE2B 
9fe69f359dd70433118695881c5254223f4e2ef0b78868fc87df6a8a5789004fa5173987a04f4c3f8b51ab70d0c4b573c2ce867765b7009346790dcca6824347
 SHA512 

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-vanilla/

2021-12-04 Thread Nick Sarnie
commit: 46ecc9b557b98e24acd3f508abf9fcdee51be5d2
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sat Dec  4 21:40:50 2021 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sat Dec  4 21:40:50 2021 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=46ecc9b5

app-emulation/wine-vanilla: Version bump

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-vanilla/Manifest|   1 +
 .../wine-vanilla/wine-vanilla-6.23.ebuild  | 542 +
 2 files changed, 543 insertions(+)

diff --git a/app-emulation/wine-vanilla/Manifest 
b/app-emulation/wine-vanilla/Manifest
index d635a6a..a505636 100644
--- a/app-emulation/wine-vanilla/Manifest
+++ b/app-emulation/wine-vanilla/Manifest
@@ -75,6 +75,7 @@ DIST wine-6.2.tar.xz 24270924 BLAKE2B 
b83e7ff097d8f48cc46588a672515e8c1eafeafd59
 DIST wine-6.20.tar.xz 26921644 BLAKE2B 
2db2bdd0b0c65855d96bc407ea54aa289dd0324715eb7fc068dd57b6b90ee7b331997fd9f68942f02ef45ef9f6eb10e7efaad79d0f97721626fc50ef2e47cc49
 SHA512 
dc0c29194ffd0ddcc2e34d8f7ac236f039e21cdde8cb959ddf16b4b67eb1d6332c9d1a780d0872669a1083db55e105eebaf3d7a6cc5aa749e91efab88bd1f958
 DIST wine-6.21.tar.xz 26973172 BLAKE2B 
7e73e04419d50b12269c281b68b002fb7ef29519c63e6c45074fa919b067ee145d328aad6507578db84940c3ac379c0469758d1a211d7d213d1833ee8c15c096
 SHA512 
2c6d58c8c5c37497b2b3935f71afd636c274d1d4ad3f9ca2fd9982a9ed5910888cc20841bd9175446aab2fef7813d7700458edbaad6028ad34e7444a887a9220
 DIST wine-6.22.tar.xz 27031604 BLAKE2B 
ed1cf0499f8f827e88a1a899db3c5243d016696fdb1189b321cac398749f9360956f0cd473b2ee04052f0db750550a983b089c4f151edac535b7d440c9a2e048
 SHA512 
5326d500a2c5884e3ff004557a0360f8ff5c29ae42fdc256a13012ab746371dd403c87715efa00e43bf181fbc6d0647372e3e40944e5673b069f6e4f4cc700b5
+DIST wine-6.23.tar.xz 27057236 BLAKE2B 
9e438a1f2200c59517b05eb4ea6d6c26594b3fd442caa11d9ccabd8e0c016d1a721f2579c36fcfb18bb1185edfb11480d65d732d435d44f5dea0bcb345fa1476
 SHA512 
3e459b305f472ece00cbf467e14e6cfa7422381cb9242d05e9624487d559f438039aa8c780986469591c9d0f05e384380133dc6fb4ed694355ae42744a78d9b7
 DIST wine-6.3.tar.xz 24301496 BLAKE2B 
d36e46e369abc619d351dd3209c0c86c5e5924509fe98a9e158fd10b9ca57650b9bc20e64dc801ec1b09315ed77fd81b549ebce7f383a3f772717a2031878588
 SHA512 
20108ea5036d612e8dd61fe9254d67cad02d757ede87174ed27774e4e3537e0d1f4d67156fd430f1d01d5c68b899cb0c7b4be298d897a1ce823913efef822242
 DIST wine-6.4.tar.xz 24340220 BLAKE2B 
b09ea9237b71856184a03e64ef8cf7aa30591ebd6534a550e9365ea9ab773d81283520ca6b0efc8aa69063cdeae8da35fc22e08a40c73c6268db4d57b0442ad2
 SHA512 
f190e1b97defb4620e33d1a4e2afffd475f6b3998153c67c6d06840b4f3b93a50f88c6844de15e7f54ca712330f6fea857310861a78b961feb7f64a4869f3fe1
 DIST wine-6.5.tar.xz 24375196 BLAKE2B 
c30f606d268bf39f9424dd2e65f98f75b3538c82df6a931ea4955040a625ff07a2272f7d83f4343f8997ac2660a934528279ff31555ef062c81487e897c429f9
 SHA512 
11f9d2bb515c63429d397b97ecc1f13d0dbb717780d674229b851b819d707e0fd6fbf8bbae9a41dbf7b2ceb3729c4f5643d1ec5e414d6694d192072081f96fe4

diff --git a/app-emulation/wine-vanilla/wine-vanilla-6.23.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-6.23.ebuild
new file mode 100644
index 000..93905dc
--- /dev/null
+++ b/app-emulation/wine-vanilla/wine-vanilla-6.23.ebuild
@@ -0,0 +1,542 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PLOCALES="ar ast bg ca cs da de el en en_US eo es fa fi fr he hi hr hu it ja 
ko lt ml nb_NO nl or pa pl pt_BR pt_PT rm ro ru si sk sl sr_RS@cyrillic 
sr_RS@latin sv ta te th tr uk wa zh_CN zh_TW"
+PLOCALE_BACKUP="en"
+
+inherit autotools eapi7-ver estack eutils flag-o-matic gnome2-utils multilib 
multilib-minimal pax-utils plocale toolchain-funcs virtualx xdg-utils
+
+MY_PN="${PN%%-*}"
+MY_P="${MY_PN}-${PV}"
+
+if [[ ${PV} == "" ]] ; then
+   EGIT_REPO_URI="https://source.winehq.org/git/wine.git;
+   EGIT_BRANCH="master"
+   inherit git-r3
+   SRC_URI=""
+   #KEYWORDS=""
+else
+   MAJOR_V=$(ver_cut 1)
+   SRC_URI="https://dl.winehq.org/wine/source/${MAJOR_V}.x/${MY_P}.tar.xz;
+   KEYWORDS="-* ~amd64 ~x86"
+fi
+S="${WORKDIR}/${MY_P}"
+
+GWP_V="20211122"
+PATCHDIR="${WORKDIR}/gentoo-wine-patches"
+
+DESCRIPTION="Free implementation of Windows(tm) on Unix, without external 
patchsets"
+HOMEPAGE="https://www.winehq.org/;
+SRC_URI="${SRC_URI}
+   
https://dev.gentoo.org/~sarnex/distfiles/wine/gentoo-wine-patches-${GWP_V}.tar.xz
+"
+
+LICENSE="LGPL-2.1"
+SLOT="${PV}"
+IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos elibc_glibc 
+fontconfig +gecko gphoto2 gssapi gstreamer kerberos kernel_FreeBSD ldap mingw 
+mono mp3 netapi nls odbc openal opencl +opengl osmesa oss +perl pcap prelink 
pulseaudio +realtime +run-exes samba scanner sdl selinux +ssl test +threads 
+truetype udev +udisks +unwind usb v4l vkd3d vulkan +X +xcomposite xinerama"
+REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 )
+   X? ( 

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-vanilla/

2021-11-22 Thread Nick Sarnie
commit: 788a72b48628f4c4b4ebdb23928ec0a8013b2872
Author: Nick Sarnie  gentoo  org>
AuthorDate: Tue Nov 23 02:47:27 2021 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Tue Nov 23 02:47:27 2021 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=788a72b4

app-emulation/wine-vanilla: Use tabs

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-vanilla/wine-vanilla-6.22.ebuild | 2 +-
 app-emulation/wine-vanilla/wine-vanilla-.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-emulation/wine-vanilla/wine-vanilla-6.22.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-6.22.ebuild
index cd11f4e..93905dc 100644
--- a/app-emulation/wine-vanilla/wine-vanilla-6.22.ebuild
+++ b/app-emulation/wine-vanilla/wine-vanilla-6.22.ebuild
@@ -132,7 +132,7 @@ usr/share/applications/wine-uninstaller.desktop
 usr/share/applications/wine-winecfg.desktop"
 
 PATCHES=(
-"${PATCHDIR}/patches/${MY_PN}-6.22-winegcc.patch" #260726
+   "${PATCHDIR}/patches/${MY_PN}-6.22-winegcc.patch" #260726
"${PATCHDIR}/patches/${MY_PN}-4.7-multilib-portage.patch" #395615
"${PATCHDIR}/patches/${MY_PN}-2.0-multislot-apploader.patch" #310611
 )

diff --git a/app-emulation/wine-vanilla/wine-vanilla-.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-.ebuild
index cd11f4e..93905dc 100644
--- a/app-emulation/wine-vanilla/wine-vanilla-.ebuild
+++ b/app-emulation/wine-vanilla/wine-vanilla-.ebuild
@@ -132,7 +132,7 @@ usr/share/applications/wine-uninstaller.desktop
 usr/share/applications/wine-winecfg.desktop"
 
 PATCHES=(
-"${PATCHDIR}/patches/${MY_PN}-6.22-winegcc.patch" #260726
+   "${PATCHDIR}/patches/${MY_PN}-6.22-winegcc.patch" #260726
"${PATCHDIR}/patches/${MY_PN}-4.7-multilib-portage.patch" #395615
"${PATCHDIR}/patches/${MY_PN}-2.0-multislot-apploader.patch" #310611
 )



[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-vanilla/

2021-11-22 Thread Nick Sarnie
commit: f7f5a607031311723b19b762353bf35f798cae7f
Author: Nick Sarnie  gentoo  org>
AuthorDate: Tue Nov 23 01:57:42 2021 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Tue Nov 23 02:40:40 2021 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=f7f5a607

app-emulation/wine-vanilla: Version bump

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-vanilla/Manifest | 2 ++
 .../{wine-vanilla-.ebuild => wine-vanilla-6.22.ebuild}  | 6 +++---
 app-emulation/wine-vanilla/wine-vanilla-.ebuild | 6 +++---
 3 files changed, 8 insertions(+), 6 deletions(-)

diff --git a/app-emulation/wine-vanilla/Manifest 
b/app-emulation/wine-vanilla/Manifest
index bc52f7c..d635a6a 100644
--- a/app-emulation/wine-vanilla/Manifest
+++ b/app-emulation/wine-vanilla/Manifest
@@ -6,6 +6,7 @@ DIST gentoo-wine-patches-20191222.tar.xz 59236 BLAKE2B 
1b2c7b3ab69e5603d0f176a88
 DIST gentoo-wine-patches-20200523.tar.xz 59740 BLAKE2B 
951d7f305a6e5b3759c8095629d48de4830b8a0c9558de859a9e02d9824fe85553fda2bc0820ca97022a0ca63ac28473dadfe827821220445dbf1a7fd15c7c98
 SHA512 
46eea45c982b475e3ff444cbd87c6a0a235fc8dcaf3d83d89655a10ed8841a9ddb09e5a638a05803f3bf2c3bd34165c16067aba561efa4c183ee396dc31cdf75
 DIST gentoo-wine-patches-20210302.tar.xz 60112 BLAKE2B 
993cc671da00e5f44022af14f7b14f41155db4f2a02a971d17e7d40c3aece59e6b0dcd2793157c91bfe1f240a4b9e59a731f07dcb3314688f978e2f79e8062f1
 SHA512 
623cfa1420350d76d4b3897310bb81ce86740306a16ec974762cae886ae6717194b726cb4bfa588ea451414b399c50cca72125020738cdc3e13f6cc84983f858
 DIST gentoo-wine-patches-20210925.tar.xz 59836 BLAKE2B 
c6d41db309bf0470d0e8ef771d791240209f77d967031943232218e8e737987a4a74847d89d6bf8739ff0698b28b656a8b9ac830ee1da457be2aab27ededb123
 SHA512 
721d4d7b6a2c4336555a7faed7202a8ad6872ee37e4daea6fab2b5ff5bf5d73ce41f25d0bd4fd9b45e2c522cb19c1349144a40be32ccdd7ded7f61055d6d85c8
+DIST gentoo-wine-patches-20211122.tar.xz 59796 BLAKE2B 
21460e6adf4934a52f8841f76f234a764c2dc1ac77eeed1cee10adafec3aa723640ebd4b51559e9ef433070ac731c4648620bd9e75e99f31b2e2f494cf01f02d
 SHA512 
a18cb320617e2157977032c38c322177a2d248f14e43051d38de595af171495546c93d5e71e0dbe1a4f326a2dc819bb03dcfd04454ac85bbcd6b1975ae5d9d96
 DIST wine-4.0.1.tar.xz 21665840 BLAKE2B 
b33b5ce8b4624dfbbbf473a88ed8c52d5e53855fa98ac3128e9b89dbeee6e92044ed1e662e1dc9669bd8d805424c36f2dd2c836c51bf6a5e4d78350926a13150
 SHA512 
dd240525e389f841123a569fd2f9b8da698b7707bc0de408dfd60ae73c5e24d522abb42b76571c840df52c686fdeae56e0a9c69db2cd31f04cdb345feeacf1dc
 DIST wine-4.0.2.tar.xz 21668348 BLAKE2B 
f1aa8ba3add9ae1e6fbb930a0c557c0015a699b21ba9988c6832c9a1b5180f98cbaadc561fbe4a22e97ff78732ee121a14f5a82b0637c71a4856fa5524ff2f5a
 SHA512 
14cb7eeba188562b73125c668f2020e1df6802e486552e422d3aa75b95f6fccedc0f87868f7e58ce71697941ff49757981ec93b9ef288da37ca8570658f194fc
 DIST wine-4.0.tar.xz 21644692 BLAKE2B 
9c426ef2249c16e908a3617c2844d8b12a2df843721338b1cfb69459815b902cfa0ddf3d74c09dc900fb2ceb003e54d97a7c0afaac51a9caab7d21beb82e26c3
 SHA512 
7607fa7a3d5f7bcd3d8c4c9e7bb6e1987466110bbfc672782ebe57c6d9da348c58e76abf40b0a70c725dfd703163db6e194ee0e3db11a47b6b60e225163308dd
@@ -73,6 +74,7 @@ DIST wine-6.19.tar.xz 24894356 BLAKE2B 
227424c5ff4887b8adca1452ded242d20793d8b5e
 DIST wine-6.2.tar.xz 24270924 BLAKE2B 
b83e7ff097d8f48cc46588a672515e8c1eafeafd592d4ced6a8347eaa33c31f9c5a2603958a10ce02463993c8ca5db77b227d0fbce452c1e3a637e5ea42cf635
 SHA512 
d28870ba58fc4ed9dc083f843d7f4ee8921722bb33e0b84c89f281fc27e5f827c0998ad629eb21c92f860dade77194d3c8a0f5b4c6ae3407fe7acef245cfa9a4
 DIST wine-6.20.tar.xz 26921644 BLAKE2B 
2db2bdd0b0c65855d96bc407ea54aa289dd0324715eb7fc068dd57b6b90ee7b331997fd9f68942f02ef45ef9f6eb10e7efaad79d0f97721626fc50ef2e47cc49
 SHA512 
dc0c29194ffd0ddcc2e34d8f7ac236f039e21cdde8cb959ddf16b4b67eb1d6332c9d1a780d0872669a1083db55e105eebaf3d7a6cc5aa749e91efab88bd1f958
 DIST wine-6.21.tar.xz 26973172 BLAKE2B 
7e73e04419d50b12269c281b68b002fb7ef29519c63e6c45074fa919b067ee145d328aad6507578db84940c3ac379c0469758d1a211d7d213d1833ee8c15c096
 SHA512 
2c6d58c8c5c37497b2b3935f71afd636c274d1d4ad3f9ca2fd9982a9ed5910888cc20841bd9175446aab2fef7813d7700458edbaad6028ad34e7444a887a9220
+DIST wine-6.22.tar.xz 27031604 BLAKE2B 
ed1cf0499f8f827e88a1a899db3c5243d016696fdb1189b321cac398749f9360956f0cd473b2ee04052f0db750550a983b089c4f151edac535b7d440c9a2e048
 SHA512 
5326d500a2c5884e3ff004557a0360f8ff5c29ae42fdc256a13012ab746371dd403c87715efa00e43bf181fbc6d0647372e3e40944e5673b069f6e4f4cc700b5
 DIST wine-6.3.tar.xz 24301496 BLAKE2B 
d36e46e369abc619d351dd3209c0c86c5e5924509fe98a9e158fd10b9ca57650b9bc20e64dc801ec1b09315ed77fd81b549ebce7f383a3f772717a2031878588
 SHA512 
20108ea5036d612e8dd61fe9254d67cad02d757ede87174ed27774e4e3537e0d1f4d67156fd430f1d01d5c68b899cb0c7b4be298d897a1ce823913efef822242
 DIST wine-6.4.tar.xz 24340220 BLAKE2B 

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-mono/

2021-11-22 Thread Nick Sarnie
commit: 5689a4b781520dd0f2a87981c4d4a4981232e9ad
Author: Nick Sarnie  gentoo  org>
AuthorDate: Tue Nov 23 01:56:09 2021 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Tue Nov 23 02:40:36 2021 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=5689a4b7

app-emulation/wine-mono: Version bump

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-mono/Manifest   |  2 ++
 app-emulation/wine-mono/wine-mono-7.0.0.ebuild | 29 ++
 2 files changed, 31 insertions(+)

diff --git a/app-emulation/wine-mono/Manifest b/app-emulation/wine-mono/Manifest
index 80245f7..e57f0cb 100644
--- a/app-emulation/wine-mono/Manifest
+++ b/app-emulation/wine-mono/Manifest
@@ -26,6 +26,8 @@ DIST wine-mono-6.3.0-x86.msi 86689280 BLAKE2B 
5c3cbe92dc055e97fa6dc894659cbd2666
 DIST wine-mono-6.3.0-x86.tar.xz 44392520 BLAKE2B 
bdaa64005564a134605f924f256a709e40cb713bd1f24f2ac5e82a095e353a81487c74813c88e74ed02905cc23a3bf50e99e908a3536a9671f4920d9093cbe75
 SHA512 
d39bcbaa65e4299711351516e74d559887b152caa3731cc72bbb23412ed76f5b8cf124c2f46241b677b074277c680120a645f738cdcd840ff60465b20deda3b7
 DIST wine-mono-6.4.0-x86.msi 86398976 BLAKE2B 
d1d553f6115618744bea65d7e88fdf19bfdf677ad5c948d9d598fe461ad668f778e5a8ae2084c584c9d6dae9bee68b85f9837c20016ab82c2401644dcfa06c1a
 SHA512 
5e0eda47bd73b4f1d2d4017c1e6f1d14c9801067e085e9c991532c50454dd22b6594bd05733b4aae8a1010e8b443ff2bdbe70398880ea569142b33e253892f12
 DIST wine-mono-6.4.0-x86.tar.xz 44177712 BLAKE2B 
de08e829ade18be0d0896742aa66f3dd9ab96eb0c994ae164f0fc64fb6306dd278714bbea3cd20d9a04625bc502764a875d57fa530489a22d4f69cbe20696cfb
 SHA512 
4e793ab755e3a4b5ff1dd0354756a9635482db6fd98fc90cb710edfd5e1f553e124913e323681bc82827655a5b1056d33c1f9632b5ea1e3e72d547cd780f2d2e
+DIST wine-mono-7.0.0-x86.msi 86433280 BLAKE2B 
9d164bf10f9c790a1f518624321a77965800742c84677a6372cd57b1f51bdd16a2d61ee85f868e84be9b07d4c3f5a7afa770e98637f698c2337c42d42890cf58
 SHA512 
d7af2a68c3b48cab93ddd489f674ab9064d69d5ca0b6c91e58713dd0408af9fb1ff82ef8847d91645d96df40cd5526c6735d621064a3598166ab5f51d1e0d076
+DIST wine-mono-7.0.0-x86.tar.xz 45085800 BLAKE2B 
504c57acce486c19a54bf33cdb4b9444c07a58a7f56ced0c93178886a91fa5d94a61f6e26aa885f3e3a2cceb2ff792f01006a4b16fa5bb88c3d25ddff02fefd7
 SHA512 
a3977563c5eb6418eaeda25e5b39bd2ef1faf305d514979211e049280c4577718ca48c8566e527b97a58fc465b310dd600093a616102573e12e8985794d828a6
 DIST wine-mono-bin-4.8.1.tar.gz 91047479 BLAKE2B 
ec970be25b6fcb6c4b93fecf7aa279397654be9614a12a31752b1b4c6f74fb8a52171112deaa64e8c55c8d8f88626f059a1876bcde001b0a032535f447babc77
 SHA512 
c3b8de735cb31805c1ac671fa7a5af53a2262e033f8eb1bba8bd82df77ea26305330500d661e25a2482e50ce17d4f14bca3973a4e48887c5ddfaab56c3ff59f8
 DIST wine-mono-bin-4.8.3.tar.gz 91309002 BLAKE2B 
d3a24fad76afce5a812d17cfcd585803393db95143d4c438164273eb50961120cd5081380738f43be0a574b6ffb676cb46fa70b933560e0164bd3f73b68d2fa9
 SHA512 
00564613d23cb724d04eb2515bb34dd561955a02800d17ec9cbc899697a5681aa47316bf5919ef27a61fe6f7d1d7ddf02e3d762e994d01cb4956301f2367f3c4
 DIST wine-mono-bin-4.9.0.tar.gz 90974210 BLAKE2B 
008bcbe83da76247eb242bad8f03d7591a0831e24e71195929c7589d570226a8215a02aab59b1a1d2d2dda9e5e8020de3aad8a9fd2d6d0467f5f775b50b5276e
 SHA512 
12bc6e3ca6d5ec7592ce7613b6c3ee1f6e415954f9866757d8c2fa7fa1b5b4488f1a58c368d482c47a4baad5c07431802a85e7d9df63029ef54d034669ccb01a

diff --git a/app-emulation/wine-mono/wine-mono-7.0.0.ebuild 
b/app-emulation/wine-mono/wine-mono-7.0.0.ebuild
new file mode 100644
index 000..b396802
--- /dev/null
+++ b/app-emulation/wine-mono/wine-mono-7.0.0.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Wine Mono is a replacement for the .NET runtime and class 
libraries in Wine"
+HOMEPAGE="https://www.winehq.org/;
+SRC_URI="
+   !shared? ( https://dl.winehq.org/wine/${PN}/${PV}/${P}-x86.msi )
+   shared? ( https://dl.winehq.org/wine/${PN}/${PV}/${P}-x86.tar.xz )
+"
+
+LICENSE="BSD-2 GPL-2 LGPL-2.1 MIT MPL-1.1"
+SLOT="${PV}"
+KEYWORDS="~amd64 ~x86"
+IUSE="+shared"
+
+DEPEND="!!app-emulation/wine:0"
+
+S="${WORKDIR}"
+
+src_install() {
+   insinto /usr/share/wine/mono
+   if use shared; then
+   doins -r "${P}"
+   else
+   doins "${DISTDIR}/${P}-x86.msi"
+   fi
+}



[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-staging/

2021-11-22 Thread Nick Sarnie
commit: 6dba496cf34ad5165a86aeef4da0a7737a070b7a
Author: Nick Sarnie  gentoo  org>
AuthorDate: Tue Nov 23 02:34:35 2021 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Tue Nov 23 02:40:43 2021 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=6dba496c

app-emulation/wine-staging: Version bump

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-staging/Manifest | 3 +++
 .../{wine-staging-.ebuild => wine-staging-6.22.ebuild}  | 6 +++---
 app-emulation/wine-staging/wine-staging-.ebuild | 6 +++---
 3 files changed, 9 insertions(+), 6 deletions(-)

diff --git a/app-emulation/wine-staging/Manifest 
b/app-emulation/wine-staging/Manifest
index a7e8f4f..2396795 100644
--- a/app-emulation/wine-staging/Manifest
+++ b/app-emulation/wine-staging/Manifest
@@ -6,6 +6,7 @@ DIST gentoo-wine-patches-20191222.tar.xz 59236 BLAKE2B 
1b2c7b3ab69e5603d0f176a88
 DIST gentoo-wine-patches-20200523.tar.xz 59740 BLAKE2B 
951d7f305a6e5b3759c8095629d48de4830b8a0c9558de859a9e02d9824fe85553fda2bc0820ca97022a0ca63ac28473dadfe827821220445dbf1a7fd15c7c98
 SHA512 
46eea45c982b475e3ff444cbd87c6a0a235fc8dcaf3d83d89655a10ed8841a9ddb09e5a638a05803f3bf2c3bd34165c16067aba561efa4c183ee396dc31cdf75
 DIST gentoo-wine-patches-20210302.tar.xz 60112 BLAKE2B 
993cc671da00e5f44022af14f7b14f41155db4f2a02a971d17e7d40c3aece59e6b0dcd2793157c91bfe1f240a4b9e59a731f07dcb3314688f978e2f79e8062f1
 SHA512 
623cfa1420350d76d4b3897310bb81ce86740306a16ec974762cae886ae6717194b726cb4bfa588ea451414b399c50cca72125020738cdc3e13f6cc84983f858
 DIST gentoo-wine-patches-20210925.tar.xz 59836 BLAKE2B 
c6d41db309bf0470d0e8ef771d791240209f77d967031943232218e8e737987a4a74847d89d6bf8739ff0698b28b656a8b9ac830ee1da457be2aab27ededb123
 SHA512 
721d4d7b6a2c4336555a7faed7202a8ad6872ee37e4daea6fab2b5ff5bf5d73ce41f25d0bd4fd9b45e2c522cb19c1349144a40be32ccdd7ded7f61055d6d85c8
+DIST gentoo-wine-patches-20211122.tar.xz 59796 BLAKE2B 
21460e6adf4934a52f8841f76f234a764c2dc1ac77eeed1cee10adafec3aa723640ebd4b51559e9ef433070ac731c4648620bd9e75e99f31b2e2f494cf01f02d
 SHA512 
a18cb320617e2157977032c38c322177a2d248f14e43051d38de595af171495546c93d5e71e0dbe1a4f326a2dc819bb03dcfd04454ac85bbcd6b1975ae5d9d96
 DIST wine-4.0.tar.xz 21644692 BLAKE2B 
9c426ef2249c16e908a3617c2844d8b12a2df843721338b1cfb69459815b902cfa0ddf3d74c09dc900fb2ceb003e54d97a7c0afaac51a9caab7d21beb82e26c3
 SHA512 
7607fa7a3d5f7bcd3d8c4c9e7bb6e1987466110bbfc672782ebe57c6d9da348c58e76abf40b0a70c725dfd703163db6e194ee0e3db11a47b6b60e225163308dd
 DIST wine-4.1.tar.xz 21680916 BLAKE2B 
1a040606e34e1aec6f63d9692c6cbf915f5b32c817116aed68203e6bdedb8cb129dad440f7e51e9fb2ebaf1aa537d1584333f06b8b2c5d68f9ff37921d5b8b95
 SHA512 
2b28fc82111552009a042d682ea8f4e54d90f14bb99f1fbe12732090e7562527c229683562630edada0b1f4143de226734337b20d1b23d711191dcc0a834e4dc
 DIST wine-4.10.tar.xz 22109948 BLAKE2B 
60e627d1e88eaa71c08ab15f093b1b11a8ce619f6b4bde08ccabc6b28bfaa44822f407e14b78c67680e00eec01fa01ba8cd851faa73dd42fb77f394a8556ab7d
 SHA512 
cafc1d268719f723091429d9d8787044719f0936b00d47c6d01cef4d9c141fed7ba5b9776c1c63c68934a0a1071fb74daa0440aa52e77c4e42aca894163d6f54
@@ -66,6 +67,7 @@ DIST wine-6.19.tar.xz 24894356 BLAKE2B 
227424c5ff4887b8adca1452ded242d20793d8b5e
 DIST wine-6.2.tar.xz 24270924 BLAKE2B 
b83e7ff097d8f48cc46588a672515e8c1eafeafd592d4ced6a8347eaa33c31f9c5a2603958a10ce02463993c8ca5db77b227d0fbce452c1e3a637e5ea42cf635
 SHA512 
d28870ba58fc4ed9dc083f843d7f4ee8921722bb33e0b84c89f281fc27e5f827c0998ad629eb21c92f860dade77194d3c8a0f5b4c6ae3407fe7acef245cfa9a4
 DIST wine-6.20.tar.xz 26921644 BLAKE2B 
2db2bdd0b0c65855d96bc407ea54aa289dd0324715eb7fc068dd57b6b90ee7b331997fd9f68942f02ef45ef9f6eb10e7efaad79d0f97721626fc50ef2e47cc49
 SHA512 
dc0c29194ffd0ddcc2e34d8f7ac236f039e21cdde8cb959ddf16b4b67eb1d6332c9d1a780d0872669a1083db55e105eebaf3d7a6cc5aa749e91efab88bd1f958
 DIST wine-6.21.tar.xz 26973172 BLAKE2B 
7e73e04419d50b12269c281b68b002fb7ef29519c63e6c45074fa919b067ee145d328aad6507578db84940c3ac379c0469758d1a211d7d213d1833ee8c15c096
 SHA512 
2c6d58c8c5c37497b2b3935f71afd636c274d1d4ad3f9ca2fd9982a9ed5910888cc20841bd9175446aab2fef7813d7700458edbaad6028ad34e7444a887a9220
+DIST wine-6.22.tar.xz 27031604 BLAKE2B 
ed1cf0499f8f827e88a1a899db3c5243d016696fdb1189b321cac398749f9360956f0cd473b2ee04052f0db750550a983b089c4f151edac535b7d440c9a2e048
 SHA512 
5326d500a2c5884e3ff004557a0360f8ff5c29ae42fdc256a13012ab746371dd403c87715efa00e43bf181fbc6d0647372e3e40944e5673b069f6e4f4cc700b5
 DIST wine-6.3.tar.xz 24301496 BLAKE2B 
d36e46e369abc619d351dd3209c0c86c5e5924509fe98a9e158fd10b9ca57650b9bc20e64dc801ec1b09315ed77fd81b549ebce7f383a3f772717a2031878588
 SHA512 
20108ea5036d612e8dd61fe9254d67cad02d757ede87174ed27774e4e3537e0d1f4d67156fd430f1d01d5c68b899cb0c7b4be298d897a1ce823913efef822242
 DIST wine-6.4.tar.xz 24340220 BLAKE2B 

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-staging/

2021-11-14 Thread Jimi Huotari
commit: ebfd520d78cea396ac73cb3afe3c9b325c2a7754
Author: Jimi Huotari  gentoo  org>
AuthorDate: Sun Nov 14 20:29:12 2021 +
Commit: Jimi Huotari  gentoo  org>
CommitDate: Sun Nov 14 20:29:12 2021 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=ebfd520d

app-emulation/wine-staging: remove patch reverting makedep changes

This patch no longer applies, since the code it is removing have
been removed in the upstream commit ef8b871e12a [1].

1. https://source.winehq.org/git/wine.git/commitdiff/ef8b871e12a5c03fb67

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Jimi Huotari  gentoo.org>

 app-emulation/wine-staging/wine-staging-.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/app-emulation/wine-staging/wine-staging-.ebuild 
b/app-emulation/wine-staging/wine-staging-.ebuild
index 123600c..4ef8e8f 100644
--- a/app-emulation/wine-staging/wine-staging-.ebuild
+++ b/app-emulation/wine-staging/wine-staging-.ebuild
@@ -154,7 +154,6 @@ PATCHES=(
"${PATCHDIR}/patches/${MY_PN}-5.0-winegcc.patch" #260726
"${PATCHDIR}/patches/${MY_PN}-4.7-multilib-portage.patch" #395615
"${PATCHDIR}/patches/${MY_PN}-2.0-multislot-apploader.patch" #310611
-   
"${PATCHDIR}/patches/${MY_PN}-5.9-Revert-makedep-Install-also-generated-typelib-for-in.patch"
 )
 PATCHES_BIN=()
 



[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-vanilla/

2021-11-14 Thread Jimi Huotari
commit: 3c03b556a32b26758ab5c9e3946eaf4333a45dee
Author: Jimi Huotari  gentoo  org>
AuthorDate: Sun Nov 14 20:20:37 2021 +
Commit: Jimi Huotari  gentoo  org>
CommitDate: Sun Nov 14 20:20:37 2021 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=3c03b556

app-emulation/wine-vanilla: remove patch reverting makedep changes

This patch no longer applies, since the code it is removing have
been removed in the upstream commit ef8b871e12a [1].

1. https://source.winehq.org/git/wine.git/commitdiff/ef8b871e12a5c03fb67

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Jimi Huotari  gentoo.org>

 app-emulation/wine-vanilla/wine-vanilla-.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/app-emulation/wine-vanilla/wine-vanilla-.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-.ebuild
index 37f3515..3e642ca 100644
--- a/app-emulation/wine-vanilla/wine-vanilla-.ebuild
+++ b/app-emulation/wine-vanilla/wine-vanilla-.ebuild
@@ -135,7 +135,6 @@ PATCHES=(
"${PATCHDIR}/patches/${MY_PN}-5.0-winegcc.patch" #260726
"${PATCHDIR}/patches/${MY_PN}-4.7-multilib-portage.patch" #395615
"${PATCHDIR}/patches/${MY_PN}-2.0-multislot-apploader.patch" #310611
-   
"${PATCHDIR}/patches/${MY_PN}-5.9-Revert-makedep-Install-also-generated-typelib-for-in.patch"
 )
 PATCHES_BIN=()
 



[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-staging/

2021-11-06 Thread Nick Sarnie
commit: d6f5a4e43b87ea56823d81fec032f84016f0ab62
Author: Alex Xu (Hello71)  yahoo  ca>
AuthorDate: Mon Oct 25 19:42:02 2021 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sat Nov  6 21:44:17 2021 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=d6f5a4e4

app-emulation/wine-staging: update USE, deps for 6.20, 

vendored versions maybe should be split out, but for now the depends
should be kept accurate. also gcrypt, themes, vaapi patches are disabled
in wine-staging.

Signed-off-by: Alex Xu (Hello71)  yahoo.ca>
Closes: https://github.com/gentoo/repo-proj-wine/pull/22
Signed-off-by: Nick Sarnie  gentoo.org>

 .../wine-staging/wine-staging-6.20.ebuild  | 39 --
 .../wine-staging/wine-staging-.ebuild  | 39 --
 2 files changed, 12 insertions(+), 66 deletions(-)

diff --git a/app-emulation/wine-staging/wine-staging-6.20.ebuild 
b/app-emulation/wine-staging/wine-staging-6.20.ebuild
index a6c1ddd..123600c 100644
--- a/app-emulation/wine-staging/wine-staging-6.20.ebuild
+++ b/app-emulation/wine-staging/wine-staging-6.20.ebuild
@@ -48,15 +48,13 @@ fi
 
 LICENSE="LGPL-2.1"
 SLOT="${MY_PV}"
-IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos elibc_glibc 
+faudio +fontconfig +gcrypt +gecko gphoto2 gsm gssapi gstreamer +jpeg kerberos 
kernel_FreeBSD +lcms ldap mingw +mono mp3 netapi nls odbc openal opencl +opengl 
osmesa oss +perl pcap pipelight +png prelink pulseaudio +realtime +run-exes 
samba scanner sdl selinux +ssl staging test themes +threads +truetype udev 
+udisks +unwind usb v4l vaapi vkd3d vulkan +X +xcomposite xinerama +xml"
+IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos elibc_glibc 
+fontconfig +gecko gphoto2 gssapi gstreamer kerberos kernel_FreeBSD ldap mingw 
+mono mp3 netapi nls odbc openal opencl +opengl osmesa oss +perl pcap pipelight 
prelink pulseaudio +realtime +run-exes samba scanner sdl selinux +ssl staging 
test +threads +truetype udev +udisks +unwind usb v4l vkd3d vulkan +X 
+xcomposite xinerama"
 REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 )
X? ( truetype )
elibc_glibc? ( threads )
osmesa? ( opengl )
pipelight? ( staging )
test? ( abi_x86_32 )
-   themes? ( staging )
-   vaapi? ( staging )
vkd3d? ( vulkan )" # osmesa-opengl #286560 # X-truetype #551124
 
 # FIXME: the test suite is unsuitable for us; many tests require net access
@@ -75,21 +73,18 @@ COMMON_DEPEND="
alsa? ( media-libs/alsa-lib[${MULTILIB_USEDEP}] )
capi? ( net-libs/libcapi[${MULTILIB_USEDEP}] )
cups? ( net-print/cups:=[${MULTILIB_USEDEP}] )
-   faudio? ( app-emulation/faudio:=[${MULTILIB_USEDEP}] )
fontconfig? ( media-libs/fontconfig:=[${MULTILIB_USEDEP}] )
-   gcrypt? ( dev-libs/libgcrypt:=[${MULTILIB_USEDEP}] )
-   gphoto2? ( media-libs/libgphoto2:=[${MULTILIB_USEDEP}] )
-   gsm? ( media-sound/gsm:=[${MULTILIB_USEDEP}] )
+   gphoto2? (
+   media-libs/libgphoto2:=[${MULTILIB_USEDEP}]
+   virtual/jpeg:0=[${MULTILIB_USEDEP}]
+   )
gssapi? ( virtual/krb5[${MULTILIB_USEDEP}] )
gstreamer? (
media-libs/gstreamer:1.0[${MULTILIB_USEDEP}]
media-plugins/gst-plugins-meta:1.0[${MULTILIB_USEDEP}]
)
-   jpeg? ( virtual/jpeg:0=[${MULTILIB_USEDEP}] )
kerberos? ( virtual/krb5:0=[${MULTILIB_USEDEP}] )
-   lcms? ( media-libs/lcms:2=[${MULTILIB_USEDEP}] )
ldap? ( net-nds/openldap:=[${MULTILIB_USEDEP}] )
-   mp3? ( >=media-sound/mpg123-1.5.0[${MULTILIB_USEDEP}] )
netapi? ( net-fs/samba[netapi(+),${MULTILIB_USEDEP}] )
nls? ( sys-devel/gettext[${MULTILIB_USEDEP}] )
odbc? ( dev-db/unixODBC:=[${MULTILIB_USEDEP}] )
@@ -100,32 +95,21 @@ COMMON_DEPEND="
)
osmesa? ( >=media-libs/mesa-13[osmesa,${MULTILIB_USEDEP}] )
pcap? ( net-libs/libpcap[${MULTILIB_USEDEP}] )
-   png? ( media-libs/libpng:0=[${MULTILIB_USEDEP}] )
pulseaudio? ( media-sound/pulseaudio[${MULTILIB_USEDEP}] )
scanner? ( media-gfx/sane-backends:=[${MULTILIB_USEDEP}] )
sdl? ( media-libs/libsdl2:=[haptic,joystick,${MULTILIB_USEDEP}] )
ssl? ( net-libs/gnutls:=[${MULTILIB_USEDEP}] )
staging? ( sys-apps/attr[${MULTILIB_USEDEP}] )
-   themes? (
-   dev-libs/glib:2[${MULTILIB_USEDEP}]
-   x11-libs/cairo[${MULTILIB_USEDEP}]
-   x11-libs/gtk+:3[${MULTILIB_USEDEP}]
-   )
truetype? ( >=media-libs/freetype-2.0.0[${MULTILIB_USEDEP}] )
udev? ( virtual/libudev:=[${MULTILIB_USEDEP}] )
udisks? ( sys-apps/dbus[${MULTILIB_USEDEP}] )
unwind? ( sys-libs/libunwind[${MULTILIB_USEDEP}] )
usb? ( virtual/libusb:1[${MULTILIB_USEDEP}]  )
v4l? ( media-libs/libv4l[${MULTILIB_USEDEP}] )
-   vaapi? ( x11-libs/libva[X,${MULTILIB_USEDEP}] )
vkd3d? ( 

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-staging/

2021-11-06 Thread Nick Sarnie
commit: 593a7fd4916c3d899a5c3bb6d02abcd5fb2ef0bf
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sat Nov  6 21:46:44 2021 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sat Nov  6 21:46:44 2021 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=593a7fd4

app-emulation/wine-staging: Fix 6.21 deps

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 .../wine-staging/wine-staging-6.21.ebuild  | 39 --
 1 file changed, 6 insertions(+), 33 deletions(-)

diff --git a/app-emulation/wine-staging/wine-staging-6.21.ebuild 
b/app-emulation/wine-staging/wine-staging-6.21.ebuild
index a6c1ddd..123600c 100644
--- a/app-emulation/wine-staging/wine-staging-6.21.ebuild
+++ b/app-emulation/wine-staging/wine-staging-6.21.ebuild
@@ -48,15 +48,13 @@ fi
 
 LICENSE="LGPL-2.1"
 SLOT="${MY_PV}"
-IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos elibc_glibc 
+faudio +fontconfig +gcrypt +gecko gphoto2 gsm gssapi gstreamer +jpeg kerberos 
kernel_FreeBSD +lcms ldap mingw +mono mp3 netapi nls odbc openal opencl +opengl 
osmesa oss +perl pcap pipelight +png prelink pulseaudio +realtime +run-exes 
samba scanner sdl selinux +ssl staging test themes +threads +truetype udev 
+udisks +unwind usb v4l vaapi vkd3d vulkan +X +xcomposite xinerama +xml"
+IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos elibc_glibc 
+fontconfig +gecko gphoto2 gssapi gstreamer kerberos kernel_FreeBSD ldap mingw 
+mono mp3 netapi nls odbc openal opencl +opengl osmesa oss +perl pcap pipelight 
prelink pulseaudio +realtime +run-exes samba scanner sdl selinux +ssl staging 
test +threads +truetype udev +udisks +unwind usb v4l vkd3d vulkan +X 
+xcomposite xinerama"
 REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 )
X? ( truetype )
elibc_glibc? ( threads )
osmesa? ( opengl )
pipelight? ( staging )
test? ( abi_x86_32 )
-   themes? ( staging )
-   vaapi? ( staging )
vkd3d? ( vulkan )" # osmesa-opengl #286560 # X-truetype #551124
 
 # FIXME: the test suite is unsuitable for us; many tests require net access
@@ -75,21 +73,18 @@ COMMON_DEPEND="
alsa? ( media-libs/alsa-lib[${MULTILIB_USEDEP}] )
capi? ( net-libs/libcapi[${MULTILIB_USEDEP}] )
cups? ( net-print/cups:=[${MULTILIB_USEDEP}] )
-   faudio? ( app-emulation/faudio:=[${MULTILIB_USEDEP}] )
fontconfig? ( media-libs/fontconfig:=[${MULTILIB_USEDEP}] )
-   gcrypt? ( dev-libs/libgcrypt:=[${MULTILIB_USEDEP}] )
-   gphoto2? ( media-libs/libgphoto2:=[${MULTILIB_USEDEP}] )
-   gsm? ( media-sound/gsm:=[${MULTILIB_USEDEP}] )
+   gphoto2? (
+   media-libs/libgphoto2:=[${MULTILIB_USEDEP}]
+   virtual/jpeg:0=[${MULTILIB_USEDEP}]
+   )
gssapi? ( virtual/krb5[${MULTILIB_USEDEP}] )
gstreamer? (
media-libs/gstreamer:1.0[${MULTILIB_USEDEP}]
media-plugins/gst-plugins-meta:1.0[${MULTILIB_USEDEP}]
)
-   jpeg? ( virtual/jpeg:0=[${MULTILIB_USEDEP}] )
kerberos? ( virtual/krb5:0=[${MULTILIB_USEDEP}] )
-   lcms? ( media-libs/lcms:2=[${MULTILIB_USEDEP}] )
ldap? ( net-nds/openldap:=[${MULTILIB_USEDEP}] )
-   mp3? ( >=media-sound/mpg123-1.5.0[${MULTILIB_USEDEP}] )
netapi? ( net-fs/samba[netapi(+),${MULTILIB_USEDEP}] )
nls? ( sys-devel/gettext[${MULTILIB_USEDEP}] )
odbc? ( dev-db/unixODBC:=[${MULTILIB_USEDEP}] )
@@ -100,32 +95,21 @@ COMMON_DEPEND="
)
osmesa? ( >=media-libs/mesa-13[osmesa,${MULTILIB_USEDEP}] )
pcap? ( net-libs/libpcap[${MULTILIB_USEDEP}] )
-   png? ( media-libs/libpng:0=[${MULTILIB_USEDEP}] )
pulseaudio? ( media-sound/pulseaudio[${MULTILIB_USEDEP}] )
scanner? ( media-gfx/sane-backends:=[${MULTILIB_USEDEP}] )
sdl? ( media-libs/libsdl2:=[haptic,joystick,${MULTILIB_USEDEP}] )
ssl? ( net-libs/gnutls:=[${MULTILIB_USEDEP}] )
staging? ( sys-apps/attr[${MULTILIB_USEDEP}] )
-   themes? (
-   dev-libs/glib:2[${MULTILIB_USEDEP}]
-   x11-libs/cairo[${MULTILIB_USEDEP}]
-   x11-libs/gtk+:3[${MULTILIB_USEDEP}]
-   )
truetype? ( >=media-libs/freetype-2.0.0[${MULTILIB_USEDEP}] )
udev? ( virtual/libudev:=[${MULTILIB_USEDEP}] )
udisks? ( sys-apps/dbus[${MULTILIB_USEDEP}] )
unwind? ( sys-libs/libunwind[${MULTILIB_USEDEP}] )
usb? ( virtual/libusb:1[${MULTILIB_USEDEP}]  )
v4l? ( media-libs/libv4l[${MULTILIB_USEDEP}] )
-   vaapi? ( x11-libs/libva[X,${MULTILIB_USEDEP}] )
vkd3d? ( >=app-emulation/vkd3d-1.2[${MULTILIB_USEDEP}] )
vulkan? ( media-libs/vulkan-loader[${MULTILIB_USEDEP}] )
xcomposite? ( x11-libs/libXcomposite[${MULTILIB_USEDEP}] )
-   xinerama? ( x11-libs/libXinerama[${MULTILIB_USEDEP}] )
-   xml? (
-   dev-libs/libxml2[${MULTILIB_USEDEP}]
-   

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-vanilla/

2021-11-06 Thread Nick Sarnie
commit: d1b53cd21dd683763d823685b107597176c05a08
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sat Nov  6 21:45:49 2021 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sat Nov  6 21:45:49 2021 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=d1b53cd2

app-emulation/wine-vanilla: Fix 6.21 deps

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 .../wine-vanilla/wine-vanilla-6.21.ebuild  | 27 +-
 1 file changed, 6 insertions(+), 21 deletions(-)

diff --git a/app-emulation/wine-vanilla/wine-vanilla-6.21.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-6.21.ebuild
index 5209a25..37f3515 100644
--- a/app-emulation/wine-vanilla/wine-vanilla-6.21.ebuild
+++ b/app-emulation/wine-vanilla/wine-vanilla-6.21.ebuild
@@ -35,7 +35,7 @@ SRC_URI="${SRC_URI}
 
 LICENSE="LGPL-2.1"
 SLOT="${PV}"
-IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos elibc_glibc 
+faudio +fontconfig +gecko gphoto2 gsm gssapi gstreamer +jpeg kerberos 
kernel_FreeBSD +lcms ldap mingw +mono mp3 netapi nls odbc openal opencl +opengl 
osmesa oss +perl pcap +png prelink pulseaudio +realtime +run-exes samba scanner 
sdl selinux +ssl test +threads +truetype udev +udisks +unwind usb v4l vkd3d 
vulkan +X +xcomposite xinerama +xml"
+IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos elibc_glibc 
+fontconfig +gecko gphoto2 gssapi gstreamer kerberos kernel_FreeBSD ldap mingw 
+mono mp3 netapi nls odbc openal opencl +opengl osmesa oss +perl pcap prelink 
pulseaudio +realtime +run-exes samba scanner sdl selinux +ssl test +threads 
+truetype udev +udisks +unwind usb v4l vkd3d vulkan +X +xcomposite xinerama"
 REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 )
X? ( truetype )
elibc_glibc? ( threads )
@@ -59,20 +59,18 @@ COMMON_DEPEND="
alsa? ( media-libs/alsa-lib[${MULTILIB_USEDEP}] )
capi? ( net-libs/libcapi[${MULTILIB_USEDEP}] )
cups? ( net-print/cups:=[${MULTILIB_USEDEP}] )
-   faudio? ( app-emulation/faudio:=[${MULTILIB_USEDEP}] )
fontconfig? ( media-libs/fontconfig:=[${MULTILIB_USEDEP}] )
-   gphoto2? ( media-libs/libgphoto2:=[${MULTILIB_USEDEP}] )
-   gsm? ( media-sound/gsm:=[${MULTILIB_USEDEP}] )
+   gphoto2? (
+   media-libs/libgphoto2:=[${MULTILIB_USEDEP}]
+   virtual/jpeg:0=[${MULTILIB_USEDEP}]
+   )
gssapi? ( virtual/krb5[${MULTILIB_USEDEP}] )
gstreamer? (
media-libs/gstreamer:1.0[${MULTILIB_USEDEP}]
media-plugins/gst-plugins-meta:1.0[${MULTILIB_USEDEP}]
)
-   jpeg? ( virtual/jpeg:0=[${MULTILIB_USEDEP}] )
kerberos? ( virtual/krb5[${MULTILIB_USEDEP}] )
-   lcms? ( media-libs/lcms:2=[${MULTILIB_USEDEP}] )
ldap? ( net-nds/openldap:=[${MULTILIB_USEDEP}] )
-   mp3? ( >=media-sound/mpg123-1.5.0[${MULTILIB_USEDEP}] )
netapi? ( net-fs/samba[netapi(+),${MULTILIB_USEDEP}] )
nls? ( sys-devel/gettext[${MULTILIB_USEDEP}] )
odbc? ( dev-db/unixODBC:=[${MULTILIB_USEDEP}] )
@@ -83,7 +81,6 @@ COMMON_DEPEND="
)
osmesa? ( >=media-libs/mesa-13[osmesa,${MULTILIB_USEDEP}] )
pcap? ( net-libs/libpcap[${MULTILIB_USEDEP}] )
-   png? ( media-libs/libpng:0=[${MULTILIB_USEDEP}] )
pulseaudio? ( media-sound/pulseaudio[${MULTILIB_USEDEP}] )
scanner? ( media-gfx/sane-backends:=[${MULTILIB_USEDEP}] )
sdl? ( media-libs/libsdl2:=[haptic,joystick,${MULTILIB_USEDEP}] )
@@ -97,11 +94,7 @@ COMMON_DEPEND="
vkd3d? ( >=app-emulation/vkd3d-1.2[${MULTILIB_USEDEP}] )
vulkan? ( media-libs/vulkan-loader[${MULTILIB_USEDEP}] )
xcomposite? ( x11-libs/libXcomposite[${MULTILIB_USEDEP}] )
-   xinerama? ( x11-libs/libXinerama[${MULTILIB_USEDEP}] )
-   xml? (
-   dev-libs/libxml2[${MULTILIB_USEDEP}]
-   dev-libs/libxslt[${MULTILIB_USEDEP}]
-   )"
+   xinerama? ( x11-libs/libXinerama[${MULTILIB_USEDEP}] )"
 
 RDEPEND="${COMMON_DEPEND}
app-emulation/wine-desktop-common
@@ -400,25 +393,20 @@ multilib_src_configure() {
--sysconfdir="${EPREFIX}/etc/wine"
$(use_with alsa)
$(use_with capi)
-   $(use_with lcms cms)
$(use_with cups)
$(use_with udisks dbus)
-   $(use_with faudio)
$(use_with fontconfig)
$(use_with ssl gnutls)
$(use_enable gecko mshtml)
$(use_with gphoto2 gphoto)
-   $(use_with gsm)
$(use_with gssapi)
$(use_with gstreamer)
--without-hal
-   $(use_with jpeg)
$(use_with kerberos krb5)
$(use_with ldap)
# TODO: Will bug 685172 still need special handling?
$(use_with mingw)
$(use_enable mono mscoree)
-   $(use_with mp3 mpg123)
   

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-vanilla/

2021-11-06 Thread Nick Sarnie
commit: dce377840c72294a19a9ce41fa4b083325c61951
Author: Alex Xu (Hello71)  yahoo  ca>
AuthorDate: Mon Oct 25 19:38:20 2021 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sat Nov  6 21:44:10 2021 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=dce37784

app-emulation/wine-vanilla: update USE, deps for 6.20, 

vendored versions maybe should be split out, but for now the depends
should be kept accurate.

Signed-off-by: Alex Xu (Hello71)  yahoo.ca>
Signed-off-by: Nick Sarnie  gentoo.org>

 .../wine-vanilla/wine-vanilla-6.20.ebuild  | 27 +-
 .../wine-vanilla/wine-vanilla-.ebuild  | 27 +-
 2 files changed, 12 insertions(+), 42 deletions(-)

diff --git a/app-emulation/wine-vanilla/wine-vanilla-6.20.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-6.20.ebuild
index 5209a25..37f3515 100644
--- a/app-emulation/wine-vanilla/wine-vanilla-6.20.ebuild
+++ b/app-emulation/wine-vanilla/wine-vanilla-6.20.ebuild
@@ -35,7 +35,7 @@ SRC_URI="${SRC_URI}
 
 LICENSE="LGPL-2.1"
 SLOT="${PV}"
-IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos elibc_glibc 
+faudio +fontconfig +gecko gphoto2 gsm gssapi gstreamer +jpeg kerberos 
kernel_FreeBSD +lcms ldap mingw +mono mp3 netapi nls odbc openal opencl +opengl 
osmesa oss +perl pcap +png prelink pulseaudio +realtime +run-exes samba scanner 
sdl selinux +ssl test +threads +truetype udev +udisks +unwind usb v4l vkd3d 
vulkan +X +xcomposite xinerama +xml"
+IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos elibc_glibc 
+fontconfig +gecko gphoto2 gssapi gstreamer kerberos kernel_FreeBSD ldap mingw 
+mono mp3 netapi nls odbc openal opencl +opengl osmesa oss +perl pcap prelink 
pulseaudio +realtime +run-exes samba scanner sdl selinux +ssl test +threads 
+truetype udev +udisks +unwind usb v4l vkd3d vulkan +X +xcomposite xinerama"
 REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 )
X? ( truetype )
elibc_glibc? ( threads )
@@ -59,20 +59,18 @@ COMMON_DEPEND="
alsa? ( media-libs/alsa-lib[${MULTILIB_USEDEP}] )
capi? ( net-libs/libcapi[${MULTILIB_USEDEP}] )
cups? ( net-print/cups:=[${MULTILIB_USEDEP}] )
-   faudio? ( app-emulation/faudio:=[${MULTILIB_USEDEP}] )
fontconfig? ( media-libs/fontconfig:=[${MULTILIB_USEDEP}] )
-   gphoto2? ( media-libs/libgphoto2:=[${MULTILIB_USEDEP}] )
-   gsm? ( media-sound/gsm:=[${MULTILIB_USEDEP}] )
+   gphoto2? (
+   media-libs/libgphoto2:=[${MULTILIB_USEDEP}]
+   virtual/jpeg:0=[${MULTILIB_USEDEP}]
+   )
gssapi? ( virtual/krb5[${MULTILIB_USEDEP}] )
gstreamer? (
media-libs/gstreamer:1.0[${MULTILIB_USEDEP}]
media-plugins/gst-plugins-meta:1.0[${MULTILIB_USEDEP}]
)
-   jpeg? ( virtual/jpeg:0=[${MULTILIB_USEDEP}] )
kerberos? ( virtual/krb5[${MULTILIB_USEDEP}] )
-   lcms? ( media-libs/lcms:2=[${MULTILIB_USEDEP}] )
ldap? ( net-nds/openldap:=[${MULTILIB_USEDEP}] )
-   mp3? ( >=media-sound/mpg123-1.5.0[${MULTILIB_USEDEP}] )
netapi? ( net-fs/samba[netapi(+),${MULTILIB_USEDEP}] )
nls? ( sys-devel/gettext[${MULTILIB_USEDEP}] )
odbc? ( dev-db/unixODBC:=[${MULTILIB_USEDEP}] )
@@ -83,7 +81,6 @@ COMMON_DEPEND="
)
osmesa? ( >=media-libs/mesa-13[osmesa,${MULTILIB_USEDEP}] )
pcap? ( net-libs/libpcap[${MULTILIB_USEDEP}] )
-   png? ( media-libs/libpng:0=[${MULTILIB_USEDEP}] )
pulseaudio? ( media-sound/pulseaudio[${MULTILIB_USEDEP}] )
scanner? ( media-gfx/sane-backends:=[${MULTILIB_USEDEP}] )
sdl? ( media-libs/libsdl2:=[haptic,joystick,${MULTILIB_USEDEP}] )
@@ -97,11 +94,7 @@ COMMON_DEPEND="
vkd3d? ( >=app-emulation/vkd3d-1.2[${MULTILIB_USEDEP}] )
vulkan? ( media-libs/vulkan-loader[${MULTILIB_USEDEP}] )
xcomposite? ( x11-libs/libXcomposite[${MULTILIB_USEDEP}] )
-   xinerama? ( x11-libs/libXinerama[${MULTILIB_USEDEP}] )
-   xml? (
-   dev-libs/libxml2[${MULTILIB_USEDEP}]
-   dev-libs/libxslt[${MULTILIB_USEDEP}]
-   )"
+   xinerama? ( x11-libs/libXinerama[${MULTILIB_USEDEP}] )"
 
 RDEPEND="${COMMON_DEPEND}
app-emulation/wine-desktop-common
@@ -400,25 +393,20 @@ multilib_src_configure() {
--sysconfdir="${EPREFIX}/etc/wine"
$(use_with alsa)
$(use_with capi)
-   $(use_with lcms cms)
$(use_with cups)
$(use_with udisks dbus)
-   $(use_with faudio)
$(use_with fontconfig)
$(use_with ssl gnutls)
$(use_enable gecko mshtml)
$(use_with gphoto2 gphoto)
-   $(use_with gsm)
$(use_with gssapi)
$(use_with gstreamer)
--without-hal
-   $(use_with jpeg)
$(use_with kerberos krb5)
$(use_with ldap)

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-staging/

2021-11-06 Thread Nick Sarnie
commit: df8fbd41ed2d0b036caecff13edb0fb47571f13d
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sat Nov  6 18:58:50 2021 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sat Nov  6 18:58:50 2021 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=df8fbd41

app-emulation/wine-staging: Version bump

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-staging/Manifest|   2 +
 .../wine-staging/wine-staging-6.21.ebuild  | 645 +
 2 files changed, 647 insertions(+)

diff --git a/app-emulation/wine-staging/Manifest 
b/app-emulation/wine-staging/Manifest
index 158944a..a7e8f4f 100644
--- a/app-emulation/wine-staging/Manifest
+++ b/app-emulation/wine-staging/Manifest
@@ -65,6 +65,7 @@ DIST wine-6.18.tar.xz 24860880 BLAKE2B 
411b74e92bf895f20e53ad7a203bd3fe84f1b414d
 DIST wine-6.19.tar.xz 24894356 BLAKE2B 
227424c5ff4887b8adca1452ded242d20793d8b5ea8cc8fc94d73f18d294bda5674d48102d6f61e6a5b0e1f76aaa4885ec530bd96b1ea70923bae479254d59d2
 SHA512 
6d58bca9a4b8ed94f34a532da6403341f325a30d8e1b78997de009ecaafad655d15733823d7d1c8bd906efc568a649f8b7bee5c10f2e271e449d6e1eaa8f7ce4
 DIST wine-6.2.tar.xz 24270924 BLAKE2B 
b83e7ff097d8f48cc46588a672515e8c1eafeafd592d4ced6a8347eaa33c31f9c5a2603958a10ce02463993c8ca5db77b227d0fbce452c1e3a637e5ea42cf635
 SHA512 
d28870ba58fc4ed9dc083f843d7f4ee8921722bb33e0b84c89f281fc27e5f827c0998ad629eb21c92f860dade77194d3c8a0f5b4c6ae3407fe7acef245cfa9a4
 DIST wine-6.20.tar.xz 26921644 BLAKE2B 
2db2bdd0b0c65855d96bc407ea54aa289dd0324715eb7fc068dd57b6b90ee7b331997fd9f68942f02ef45ef9f6eb10e7efaad79d0f97721626fc50ef2e47cc49
 SHA512 
dc0c29194ffd0ddcc2e34d8f7ac236f039e21cdde8cb959ddf16b4b67eb1d6332c9d1a780d0872669a1083db55e105eebaf3d7a6cc5aa749e91efab88bd1f958
+DIST wine-6.21.tar.xz 26973172 BLAKE2B 
7e73e04419d50b12269c281b68b002fb7ef29519c63e6c45074fa919b067ee145d328aad6507578db84940c3ac379c0469758d1a211d7d213d1833ee8c15c096
 SHA512 
2c6d58c8c5c37497b2b3935f71afd636c274d1d4ad3f9ca2fd9982a9ed5910888cc20841bd9175446aab2fef7813d7700458edbaad6028ad34e7444a887a9220
 DIST wine-6.3.tar.xz 24301496 BLAKE2B 
d36e46e369abc619d351dd3209c0c86c5e5924509fe98a9e158fd10b9ca57650b9bc20e64dc801ec1b09315ed77fd81b549ebce7f383a3f772717a2031878588
 SHA512 
20108ea5036d612e8dd61fe9254d67cad02d757ede87174ed27774e4e3537e0d1f4d67156fd430f1d01d5c68b899cb0c7b4be298d897a1ce823913efef822242
 DIST wine-6.4.tar.xz 24340220 BLAKE2B 
b09ea9237b71856184a03e64ef8cf7aa30591ebd6534a550e9365ea9ab773d81283520ca6b0efc8aa69063cdeae8da35fc22e08a40c73c6268db4d57b0442ad2
 SHA512 
f190e1b97defb4620e33d1a4e2afffd475f6b3998153c67c6d06840b4f3b93a50f88c6844de15e7f54ca712330f6fea857310861a78b961feb7f64a4869f3fe1
 DIST wine-6.5.tar.xz 24375196 BLAKE2B 
c30f606d268bf39f9424dd2e65f98f75b3538c82df6a931ea4955040a625ff07a2272f7d83f4343f8997ac2660a934528279ff31555ef062c81487e897c429f9
 SHA512 
11f9d2bb515c63429d397b97ecc1f13d0dbb717780d674229b851b819d707e0fd6fbf8bbae9a41dbf7b2ceb3729c4f5643d1ec5e414d6694d192072081f96fe4
@@ -131,6 +132,7 @@ DIST wine-staging-6.18.tar.gz 9663936 BLAKE2B 
cd1a0314aa3bf890d57432e0680e13927a
 DIST wine-staging-6.19.tar.gz 9690585 BLAKE2B 
de5c172b600e8de59241e93a8938d4f6a943f97d1cccaba2aa2551886893848f43df5d2e375b588deabe722ff34d80ff62dfed376d41d309c6a36e03678b771e
 SHA512 
f46d82dc034b0c701d00c70395edc306f6dcd3cd70091bb544c86c035e4221a370f6a1c39de4575e6cbb4eb587f5257d50ad5ada51fb6fee9f57b90dc0358034
 DIST wine-staging-6.2.tar.gz 9820682 BLAKE2B 
3de0c0ecbdabc1ffb965e6d5ebf5689fbeaf24ee33aaa2ff078db39d1542aa935b6d4d940fef570f1c60260748f4ef52b9789625b840f73e70ed3482995d505d
 SHA512 
558c46250babaacda92885c35c438797baff7b8eb45cb3cdf7f7572c35e6412e621182061a3a4e31444cc7580f99a61de6bd433bf2bb2b8139cdd718afd9cd2e
 DIST wine-staging-6.20.tar.gz 9643278 BLAKE2B 
b5f0a74c575541303eaf12e9706f8917b795fc0d5f065e7292329cec7da145f9c7db25bebfcf4d703bf561206f22c9a49a95e8471629009dac4679c6f028b918
 SHA512 
9b5650d065976ab5b0bcb2f65895bf7b6bf139d376fc5cff421d493a6f6a849cb57e33243d1fad9ca1943cfbfdee8d8a3a4d530722163b15a0830d616f06e1e3
+DIST wine-staging-6.21.tar.gz 9627829 BLAKE2B 
b743b67c6f26871894b16d8cd9e7ed39a1d1dd6204516453628435ee23df7644433508edc7c7dd2881686926427e683c36a29acdc744c89d2c2bd4c5f50a13ea
 SHA512 
b74ad7f96f2831b2635557c16cb616754e31c490b5b935d1d197d6cc8e61ca75805f801e3b936a3794af57be94344d3a06dcfce92db7e036b6c3751ef294
 DIST wine-staging-6.3.tar.gz 9796930 BLAKE2B 
b24e5ec57435a0d797e4d913b027226b3c891477d9df5d098be52348dff4eb704275c7c59d09f6cbdf7f86940a0e6c96bf28f94bd703fd32d6770a31426043fc
 SHA512 
ed9b3b03c466de03941d7fec00c73ff77df863c3f4ba201e7f920810675ff416995557cb62b6701dcec6928f2ab9e4d608f17b79eda0267094e506a5e66f47f2
 DIST wine-staging-6.4.tar.gz 9778866 BLAKE2B 
9fe69f359dd70433118695881c5254223f4e2ef0b78868fc87df6a8a5789004fa5173987a04f4c3f8b51ab70d0c4b573c2ce867765b7009346790dcca6824347
 SHA512 

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-vanilla/

2021-11-06 Thread Nick Sarnie
commit: f7b399d1c424a2514eca1b76d896d2607757b8a8
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sat Nov  6 18:56:59 2021 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sat Nov  6 18:56:59 2021 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=f7b399d1

app-emulation/wine-vanilla: Version bump

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-vanilla/Manifest|   1 +
 .../wine-vanilla/wine-vanilla-6.21.ebuild  | 558 +
 2 files changed, 559 insertions(+)

diff --git a/app-emulation/wine-vanilla/Manifest 
b/app-emulation/wine-vanilla/Manifest
index 247cfdc..bc52f7c 100644
--- a/app-emulation/wine-vanilla/Manifest
+++ b/app-emulation/wine-vanilla/Manifest
@@ -72,6 +72,7 @@ DIST wine-6.18.tar.xz 24860880 BLAKE2B 
411b74e92bf895f20e53ad7a203bd3fe84f1b414d
 DIST wine-6.19.tar.xz 24894356 BLAKE2B 
227424c5ff4887b8adca1452ded242d20793d8b5ea8cc8fc94d73f18d294bda5674d48102d6f61e6a5b0e1f76aaa4885ec530bd96b1ea70923bae479254d59d2
 SHA512 
6d58bca9a4b8ed94f34a532da6403341f325a30d8e1b78997de009ecaafad655d15733823d7d1c8bd906efc568a649f8b7bee5c10f2e271e449d6e1eaa8f7ce4
 DIST wine-6.2.tar.xz 24270924 BLAKE2B 
b83e7ff097d8f48cc46588a672515e8c1eafeafd592d4ced6a8347eaa33c31f9c5a2603958a10ce02463993c8ca5db77b227d0fbce452c1e3a637e5ea42cf635
 SHA512 
d28870ba58fc4ed9dc083f843d7f4ee8921722bb33e0b84c89f281fc27e5f827c0998ad629eb21c92f860dade77194d3c8a0f5b4c6ae3407fe7acef245cfa9a4
 DIST wine-6.20.tar.xz 26921644 BLAKE2B 
2db2bdd0b0c65855d96bc407ea54aa289dd0324715eb7fc068dd57b6b90ee7b331997fd9f68942f02ef45ef9f6eb10e7efaad79d0f97721626fc50ef2e47cc49
 SHA512 
dc0c29194ffd0ddcc2e34d8f7ac236f039e21cdde8cb959ddf16b4b67eb1d6332c9d1a780d0872669a1083db55e105eebaf3d7a6cc5aa749e91efab88bd1f958
+DIST wine-6.21.tar.xz 26973172 BLAKE2B 
7e73e04419d50b12269c281b68b002fb7ef29519c63e6c45074fa919b067ee145d328aad6507578db84940c3ac379c0469758d1a211d7d213d1833ee8c15c096
 SHA512 
2c6d58c8c5c37497b2b3935f71afd636c274d1d4ad3f9ca2fd9982a9ed5910888cc20841bd9175446aab2fef7813d7700458edbaad6028ad34e7444a887a9220
 DIST wine-6.3.tar.xz 24301496 BLAKE2B 
d36e46e369abc619d351dd3209c0c86c5e5924509fe98a9e158fd10b9ca57650b9bc20e64dc801ec1b09315ed77fd81b549ebce7f383a3f772717a2031878588
 SHA512 
20108ea5036d612e8dd61fe9254d67cad02d757ede87174ed27774e4e3537e0d1f4d67156fd430f1d01d5c68b899cb0c7b4be298d897a1ce823913efef822242
 DIST wine-6.4.tar.xz 24340220 BLAKE2B 
b09ea9237b71856184a03e64ef8cf7aa30591ebd6534a550e9365ea9ab773d81283520ca6b0efc8aa69063cdeae8da35fc22e08a40c73c6268db4d57b0442ad2
 SHA512 
f190e1b97defb4620e33d1a4e2afffd475f6b3998153c67c6d06840b4f3b93a50f88c6844de15e7f54ca712330f6fea857310861a78b961feb7f64a4869f3fe1
 DIST wine-6.5.tar.xz 24375196 BLAKE2B 
c30f606d268bf39f9424dd2e65f98f75b3538c82df6a931ea4955040a625ff07a2272f7d83f4343f8997ac2660a934528279ff31555ef062c81487e897c429f9
 SHA512 
11f9d2bb515c63429d397b97ecc1f13d0dbb717780d674229b851b819d707e0fd6fbf8bbae9a41dbf7b2ceb3729c4f5643d1ec5e414d6694d192072081f96fe4

diff --git a/app-emulation/wine-vanilla/wine-vanilla-6.21.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-6.21.ebuild
new file mode 100644
index 000..5209a25
--- /dev/null
+++ b/app-emulation/wine-vanilla/wine-vanilla-6.21.ebuild
@@ -0,0 +1,558 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PLOCALES="ar ast bg ca cs da de el en en_US eo es fa fi fr he hi hr hu it ja 
ko lt ml nb_NO nl or pa pl pt_BR pt_PT rm ro ru si sk sl sr_RS@cyrillic 
sr_RS@latin sv ta te th tr uk wa zh_CN zh_TW"
+PLOCALE_BACKUP="en"
+
+inherit autotools eapi7-ver estack eutils flag-o-matic gnome2-utils multilib 
multilib-minimal pax-utils plocale toolchain-funcs virtualx xdg-utils
+
+MY_PN="${PN%%-*}"
+MY_P="${MY_PN}-${PV}"
+
+if [[ ${PV} == "" ]] ; then
+   EGIT_REPO_URI="https://source.winehq.org/git/wine.git;
+   EGIT_BRANCH="master"
+   inherit git-r3
+   SRC_URI=""
+   #KEYWORDS=""
+else
+   MAJOR_V=$(ver_cut 1)
+   SRC_URI="https://dl.winehq.org/wine/source/${MAJOR_V}.x/${MY_P}.tar.xz;
+   KEYWORDS="-* ~amd64 ~x86"
+fi
+S="${WORKDIR}/${MY_P}"
+
+GWP_V="20210925"
+PATCHDIR="${WORKDIR}/gentoo-wine-patches"
+
+DESCRIPTION="Free implementation of Windows(tm) on Unix, without external 
patchsets"
+HOMEPAGE="https://www.winehq.org/;
+SRC_URI="${SRC_URI}
+   
https://dev.gentoo.org/~sarnex/distfiles/wine/gentoo-wine-patches-${GWP_V}.tar.xz
+"
+
+LICENSE="LGPL-2.1"
+SLOT="${PV}"
+IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos elibc_glibc 
+faudio +fontconfig +gecko gphoto2 gsm gssapi gstreamer +jpeg kerberos 
kernel_FreeBSD +lcms ldap mingw +mono mp3 netapi nls odbc openal opencl +opengl 
osmesa oss +perl pcap +png prelink pulseaudio +realtime +run-exes samba scanner 
sdl selinux +ssl test +threads +truetype udev +udisks +unwind usb v4l vkd3d 
vulkan +X +xcomposite xinerama +xml"
+REQUIRED_USE="|| ( 

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-vanilla/

2021-10-26 Thread Nick Sarnie
commit: 1a9abff5c0162889436c6bac18f6506059791753
Author: Nick Sarnie  gentoo  org>
AuthorDate: Tue Oct 26 22:17:48 2021 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Tue Oct 26 22:17:48 2021 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=1a9abff5

app-emulation/wine-vanilla: Add 6.0.2

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-vanilla/Manifest|   1 +
 .../wine-vanilla/wine-vanilla-6.0.2.ebuild | 578 +
 2 files changed, 579 insertions(+)

diff --git a/app-emulation/wine-vanilla/Manifest 
b/app-emulation/wine-vanilla/Manifest
index 742fed1..247cfdc 100644
--- a/app-emulation/wine-vanilla/Manifest
+++ b/app-emulation/wine-vanilla/Manifest
@@ -57,6 +57,7 @@ DIST wine-5.7.tar.xz 23723624 BLAKE2B 
fbea8f753dee57368f7532eef6fe6bf366ba52e9c2
 DIST wine-5.8.tar.xz 23753648 BLAKE2B 
086f37ce469f6d176eab8daa2d124b1774526727e2f6fe4ecdd39862c13ed493ac4164cf98848d5bc8cba3675e13365f6ea2b34591d518c40c34d09556851578
 SHA512 
7b9df380655a72e8b9e95ca271a62308262d8efabbeb2ad459071afc9ed51518b42b1f75b019fe8d6b53cf5185e9cfc45ac1b8a7092f118fa2aff14f99c012de
 DIST wine-5.9.tar.xz 23802356 BLAKE2B 
1879c164c647a5b849056e4149a809c390814ae832773a44347cf1902fd49cb6619b4add5ea2d421c189d92b5c907daa0d6f62c37c48a8bd68d0eaa9eb465433
 SHA512 
edc6d55a275cf37430a62dc6d6d86bff6d5a434e708dbd99d245018db7f6a0abe39581a1d91eb947f204a45ac94cc5c931745169a3b63a2aecf8db277553b74b
 DIST wine-6.0.1.tar.xz 24210540 BLAKE2B 
2075e59024e75594e0be0851db33981ebfcc57477bb9864055a938db0e39b8480f3c501b1d1fc39a9eee52303ad71ef71d24a0fb546697eecf3bb098f13317f1
 SHA512 
06b720d6adbbb7e2f15b963e4f3f1ff06e6d0d3973064d866ae720e6380bab8881fd1ebf16665435f5f7976b2c6dc72fd20631678a28e9d4d7b068c30cd22bb0
+DIST wine-6.0.2.tar.xz 24217772 BLAKE2B 
176614736055892b7203313edc52e2926807c93b0bb97d59f65fbf284fd9cb138e4555fb7cd5a6c7c867367fdc50c89f12d7360ca0db947a7f04594f35f14775
 SHA512 
6cf002c6a06161665614c9f977dfa402bae8e657c0744dd824575066cdeb676bb9d61ebfc3c4b6f76486077a7457fe91cbe5bbadb467279a61e5a320da587696
 DIST wine-6.0.tar.xz 24192280 BLAKE2B 
baf0eee582190ede8d210390b51d330c1879cb442100bc2e957052898fbd84bcc047a885065f9bf96ac4f072f92eee44f0e1c3baddc68937286e7cc6f976bd4e
 SHA512 
c0732fbab1da8737d595a876b28ce87eef1440c317746e798642b59b44b34e890de562e0c0cc674e97096f39db82f8e9c3b1cc1ba9edc246b7266a0f7cb00057
 DIST wine-6.1.tar.xz 24227160 BLAKE2B 
968405fb8a4060732a6070687e28aecc9169692bf18e058d358e859a2626281b5adb67b94d849628ecbfa87ad772a367f62fd3c5f45aecdf7d0a7e7aa8167c33
 SHA512 
49ee77c41e2fb1c4f22417117b26f8a467ec6c99583fca66f147003f776fcaf5ca42227153c7ca3325dfe70141ae9bfb88e3eb6e4cf25dd31a5ba5115d2685d0
 DIST wine-6.10.tar.xz 24562432 BLAKE2B 
aeb4efc6fcbdbbbfa71a99112224c77e1da10468e47d49de87ecf06556008e83d6e3d8655fa4439293820663910897d512a77bb78ab771632f893b46745915af
 SHA512 
f0e8f0bdab09c979772965d167d687e88998f3fd6537a592e201a2dc9097552e03b1c413516cc8c82665a8bf17580777f48bd1ed9033641f04e7ef7f0b29cc60

diff --git a/app-emulation/wine-vanilla/wine-vanilla-6.0.2.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-6.0.2.ebuild
new file mode 100644
index 000..e2d7608
--- /dev/null
+++ b/app-emulation/wine-vanilla/wine-vanilla-6.0.2.ebuild
@@ -0,0 +1,578 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PLOCALES="ar ast bg ca cs da de el en en_US eo es fa fi fr he hi hr hu it ja 
ko lt ml nb_NO nl or pa pl pt_BR pt_PT rm ro ru si sk sl sr_RS@cyrillic 
sr_RS@latin sv ta te th tr uk wa zh_CN zh_TW"
+PLOCALE_BACKUP="en"
+
+inherit autotools eapi7-ver estack eutils flag-o-matic gnome2-utils multilib 
multilib-minimal pax-utils plocale toolchain-funcs virtualx xdg-utils
+
+MY_PN="${PN%%-*}"
+MY_P="${MY_PN}-${PV}"
+
+if [[ ${PV} == "" ]] ; then
+   EGIT_REPO_URI="https://source.winehq.org/git/wine.git;
+   EGIT_BRANCH="master"
+   inherit git-r3
+   SRC_URI=""
+else
+   MAJOR_V=$(ver_cut 1)
+   SRC_URI="https://dl.winehq.org/wine/source/${MAJOR_V}.0/${MY_P}.tar.xz;
+   KEYWORDS="-* ~amd64 ~x86"
+fi
+S="${WORKDIR}/${MY_P}"
+
+GWP_V="20200523"
+PATCHDIR="${WORKDIR}/gentoo-wine-patches"
+
+DESCRIPTION="Free implementation of Windows(tm) on Unix, without external 
patchsets"
+HOMEPAGE="https://www.winehq.org/;
+SRC_URI="${SRC_URI}
+   
https://dev.gentoo.org/~sarnex/distfiles/wine/gentoo-wine-patches-${GWP_V}.tar.xz
+"
+
+LICENSE="LGPL-2.1"
+SLOT="${PV}"
+IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos elibc_glibc 
+faudio +fontconfig +gecko gphoto2 gsm gssapi gstreamer +jpeg kerberos 
kernel_FreeBSD +lcms ldap mingw +mono mp3 netapi nls odbc openal opencl +opengl 
osmesa oss +perl pcap +png prelink pulseaudio +realtime +run-exes samba scanner 
sdl selinux +ssl test +threads +truetype udev +udisks +unwind usb v4l vkd3d 
vulkan +X +xcomposite xinerama +xml"
+REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 )

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-staging/

2021-10-23 Thread Nick Sarnie
commit: de3cfeabff592edac7dca80a3c34aec403fe615d
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sat Oct 23 21:02:16 2021 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sat Oct 23 21:02:16 2021 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=de3cfeab

app-emulation/wine-staging: Bump to 6.20

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-staging/Manifest|   2 +
 .../wine-staging/wine-staging-6.20.ebuild  | 645 +
 2 files changed, 647 insertions(+)

diff --git a/app-emulation/wine-staging/Manifest 
b/app-emulation/wine-staging/Manifest
index bc96b38..158944a 100644
--- a/app-emulation/wine-staging/Manifest
+++ b/app-emulation/wine-staging/Manifest
@@ -64,6 +64,7 @@ DIST wine-6.17.tar.xz 24838704 BLAKE2B 
98014c8226db703a62e7c9e73eb5d76a10eb751e8
 DIST wine-6.18.tar.xz 24860880 BLAKE2B 
411b74e92bf895f20e53ad7a203bd3fe84f1b414d8720b402bc17150fd663161e65be05b1fd5630dcc7a32fc6eba27dd0685f7b852dfb5852ea4f7fdb5af15a5
 SHA512 
d8f54f8fbb61b4af2a6f97328d33b0389ab0fb6a9dac97b2832af3d911a9f23c08653f40ec77f7c0eedd694c4a1c1228fe9dd4d859d8b3d7419e21847de7bcfe
 DIST wine-6.19.tar.xz 24894356 BLAKE2B 
227424c5ff4887b8adca1452ded242d20793d8b5ea8cc8fc94d73f18d294bda5674d48102d6f61e6a5b0e1f76aaa4885ec530bd96b1ea70923bae479254d59d2
 SHA512 
6d58bca9a4b8ed94f34a532da6403341f325a30d8e1b78997de009ecaafad655d15733823d7d1c8bd906efc568a649f8b7bee5c10f2e271e449d6e1eaa8f7ce4
 DIST wine-6.2.tar.xz 24270924 BLAKE2B 
b83e7ff097d8f48cc46588a672515e8c1eafeafd592d4ced6a8347eaa33c31f9c5a2603958a10ce02463993c8ca5db77b227d0fbce452c1e3a637e5ea42cf635
 SHA512 
d28870ba58fc4ed9dc083f843d7f4ee8921722bb33e0b84c89f281fc27e5f827c0998ad629eb21c92f860dade77194d3c8a0f5b4c6ae3407fe7acef245cfa9a4
+DIST wine-6.20.tar.xz 26921644 BLAKE2B 
2db2bdd0b0c65855d96bc407ea54aa289dd0324715eb7fc068dd57b6b90ee7b331997fd9f68942f02ef45ef9f6eb10e7efaad79d0f97721626fc50ef2e47cc49
 SHA512 
dc0c29194ffd0ddcc2e34d8f7ac236f039e21cdde8cb959ddf16b4b67eb1d6332c9d1a780d0872669a1083db55e105eebaf3d7a6cc5aa749e91efab88bd1f958
 DIST wine-6.3.tar.xz 24301496 BLAKE2B 
d36e46e369abc619d351dd3209c0c86c5e5924509fe98a9e158fd10b9ca57650b9bc20e64dc801ec1b09315ed77fd81b549ebce7f383a3f772717a2031878588
 SHA512 
20108ea5036d612e8dd61fe9254d67cad02d757ede87174ed27774e4e3537e0d1f4d67156fd430f1d01d5c68b899cb0c7b4be298d897a1ce823913efef822242
 DIST wine-6.4.tar.xz 24340220 BLAKE2B 
b09ea9237b71856184a03e64ef8cf7aa30591ebd6534a550e9365ea9ab773d81283520ca6b0efc8aa69063cdeae8da35fc22e08a40c73c6268db4d57b0442ad2
 SHA512 
f190e1b97defb4620e33d1a4e2afffd475f6b3998153c67c6d06840b4f3b93a50f88c6844de15e7f54ca712330f6fea857310861a78b961feb7f64a4869f3fe1
 DIST wine-6.5.tar.xz 24375196 BLAKE2B 
c30f606d268bf39f9424dd2e65f98f75b3538c82df6a931ea4955040a625ff07a2272f7d83f4343f8997ac2660a934528279ff31555ef062c81487e897c429f9
 SHA512 
11f9d2bb515c63429d397b97ecc1f13d0dbb717780d674229b851b819d707e0fd6fbf8bbae9a41dbf7b2ceb3729c4f5643d1ec5e414d6694d192072081f96fe4
@@ -129,6 +130,7 @@ DIST wine-staging-6.17.tar.gz 9655082 BLAKE2B 
9f2e0c800f221ecacba71942ef306fa5e2
 DIST wine-staging-6.18.tar.gz 9663936 BLAKE2B 
cd1a0314aa3bf890d57432e0680e13927a7ef4c50f47fe9bc17980208a77137508703d9b3155cfee6a340d954e832e99d3d26518b425c4e60d8a3fd0ad2e
 SHA512 
f718b4a6f314e8db4f6ad4cb41449d251d973b0942072411a70749398cec9d60ebcf29078cf00a895f665ea7e7846c3fd7e5553d04b3b451ae757c95fb49af58
 DIST wine-staging-6.19.tar.gz 9690585 BLAKE2B 
de5c172b600e8de59241e93a8938d4f6a943f97d1cccaba2aa2551886893848f43df5d2e375b588deabe722ff34d80ff62dfed376d41d309c6a36e03678b771e
 SHA512 
f46d82dc034b0c701d00c70395edc306f6dcd3cd70091bb544c86c035e4221a370f6a1c39de4575e6cbb4eb587f5257d50ad5ada51fb6fee9f57b90dc0358034
 DIST wine-staging-6.2.tar.gz 9820682 BLAKE2B 
3de0c0ecbdabc1ffb965e6d5ebf5689fbeaf24ee33aaa2ff078db39d1542aa935b6d4d940fef570f1c60260748f4ef52b9789625b840f73e70ed3482995d505d
 SHA512 
558c46250babaacda92885c35c438797baff7b8eb45cb3cdf7f7572c35e6412e621182061a3a4e31444cc7580f99a61de6bd433bf2bb2b8139cdd718afd9cd2e
+DIST wine-staging-6.20.tar.gz 9643278 BLAKE2B 
b5f0a74c575541303eaf12e9706f8917b795fc0d5f065e7292329cec7da145f9c7db25bebfcf4d703bf561206f22c9a49a95e8471629009dac4679c6f028b918
 SHA512 
9b5650d065976ab5b0bcb2f65895bf7b6bf139d376fc5cff421d493a6f6a849cb57e33243d1fad9ca1943cfbfdee8d8a3a4d530722163b15a0830d616f06e1e3
 DIST wine-staging-6.3.tar.gz 9796930 BLAKE2B 
b24e5ec57435a0d797e4d913b027226b3c891477d9df5d098be52348dff4eb704275c7c59d09f6cbdf7f86940a0e6c96bf28f94bd703fd32d6770a31426043fc
 SHA512 
ed9b3b03c466de03941d7fec00c73ff77df863c3f4ba201e7f920810675ff416995557cb62b6701dcec6928f2ab9e4d608f17b79eda0267094e506a5e66f47f2
 DIST wine-staging-6.4.tar.gz 9778866 BLAKE2B 
9fe69f359dd70433118695881c5254223f4e2ef0b78868fc87df6a8a5789004fa5173987a04f4c3f8b51ab70d0c4b573c2ce867765b7009346790dcca6824347
 SHA512 

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-vanilla/

2021-10-23 Thread Nick Sarnie
commit: 66f88407e7132cd536501951aed5f86b27c6f292
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sat Oct 23 21:00:19 2021 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sat Oct 23 21:00:19 2021 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=66f88407

app-emulation/wine-vanilla: Bump to 6.20

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-vanilla/Manifest|   1 +
 .../wine-vanilla/wine-vanilla-6.20.ebuild  | 558 +
 2 files changed, 559 insertions(+)

diff --git a/app-emulation/wine-vanilla/Manifest 
b/app-emulation/wine-vanilla/Manifest
index 1be37db..742fed1 100644
--- a/app-emulation/wine-vanilla/Manifest
+++ b/app-emulation/wine-vanilla/Manifest
@@ -70,6 +70,7 @@ DIST wine-6.17.tar.xz 24838704 BLAKE2B 
98014c8226db703a62e7c9e73eb5d76a10eb751e8
 DIST wine-6.18.tar.xz 24860880 BLAKE2B 
411b74e92bf895f20e53ad7a203bd3fe84f1b414d8720b402bc17150fd663161e65be05b1fd5630dcc7a32fc6eba27dd0685f7b852dfb5852ea4f7fdb5af15a5
 SHA512 
d8f54f8fbb61b4af2a6f97328d33b0389ab0fb6a9dac97b2832af3d911a9f23c08653f40ec77f7c0eedd694c4a1c1228fe9dd4d859d8b3d7419e21847de7bcfe
 DIST wine-6.19.tar.xz 24894356 BLAKE2B 
227424c5ff4887b8adca1452ded242d20793d8b5ea8cc8fc94d73f18d294bda5674d48102d6f61e6a5b0e1f76aaa4885ec530bd96b1ea70923bae479254d59d2
 SHA512 
6d58bca9a4b8ed94f34a532da6403341f325a30d8e1b78997de009ecaafad655d15733823d7d1c8bd906efc568a649f8b7bee5c10f2e271e449d6e1eaa8f7ce4
 DIST wine-6.2.tar.xz 24270924 BLAKE2B 
b83e7ff097d8f48cc46588a672515e8c1eafeafd592d4ced6a8347eaa33c31f9c5a2603958a10ce02463993c8ca5db77b227d0fbce452c1e3a637e5ea42cf635
 SHA512 
d28870ba58fc4ed9dc083f843d7f4ee8921722bb33e0b84c89f281fc27e5f827c0998ad629eb21c92f860dade77194d3c8a0f5b4c6ae3407fe7acef245cfa9a4
+DIST wine-6.20.tar.xz 26921644 BLAKE2B 
2db2bdd0b0c65855d96bc407ea54aa289dd0324715eb7fc068dd57b6b90ee7b331997fd9f68942f02ef45ef9f6eb10e7efaad79d0f97721626fc50ef2e47cc49
 SHA512 
dc0c29194ffd0ddcc2e34d8f7ac236f039e21cdde8cb959ddf16b4b67eb1d6332c9d1a780d0872669a1083db55e105eebaf3d7a6cc5aa749e91efab88bd1f958
 DIST wine-6.3.tar.xz 24301496 BLAKE2B 
d36e46e369abc619d351dd3209c0c86c5e5924509fe98a9e158fd10b9ca57650b9bc20e64dc801ec1b09315ed77fd81b549ebce7f383a3f772717a2031878588
 SHA512 
20108ea5036d612e8dd61fe9254d67cad02d757ede87174ed27774e4e3537e0d1f4d67156fd430f1d01d5c68b899cb0c7b4be298d897a1ce823913efef822242
 DIST wine-6.4.tar.xz 24340220 BLAKE2B 
b09ea9237b71856184a03e64ef8cf7aa30591ebd6534a550e9365ea9ab773d81283520ca6b0efc8aa69063cdeae8da35fc22e08a40c73c6268db4d57b0442ad2
 SHA512 
f190e1b97defb4620e33d1a4e2afffd475f6b3998153c67c6d06840b4f3b93a50f88c6844de15e7f54ca712330f6fea857310861a78b961feb7f64a4869f3fe1
 DIST wine-6.5.tar.xz 24375196 BLAKE2B 
c30f606d268bf39f9424dd2e65f98f75b3538c82df6a931ea4955040a625ff07a2272f7d83f4343f8997ac2660a934528279ff31555ef062c81487e897c429f9
 SHA512 
11f9d2bb515c63429d397b97ecc1f13d0dbb717780d674229b851b819d707e0fd6fbf8bbae9a41dbf7b2ceb3729c4f5643d1ec5e414d6694d192072081f96fe4

diff --git a/app-emulation/wine-vanilla/wine-vanilla-6.20.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-6.20.ebuild
new file mode 100644
index 000..5209a25
--- /dev/null
+++ b/app-emulation/wine-vanilla/wine-vanilla-6.20.ebuild
@@ -0,0 +1,558 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PLOCALES="ar ast bg ca cs da de el en en_US eo es fa fi fr he hi hr hu it ja 
ko lt ml nb_NO nl or pa pl pt_BR pt_PT rm ro ru si sk sl sr_RS@cyrillic 
sr_RS@latin sv ta te th tr uk wa zh_CN zh_TW"
+PLOCALE_BACKUP="en"
+
+inherit autotools eapi7-ver estack eutils flag-o-matic gnome2-utils multilib 
multilib-minimal pax-utils plocale toolchain-funcs virtualx xdg-utils
+
+MY_PN="${PN%%-*}"
+MY_P="${MY_PN}-${PV}"
+
+if [[ ${PV} == "" ]] ; then
+   EGIT_REPO_URI="https://source.winehq.org/git/wine.git;
+   EGIT_BRANCH="master"
+   inherit git-r3
+   SRC_URI=""
+   #KEYWORDS=""
+else
+   MAJOR_V=$(ver_cut 1)
+   SRC_URI="https://dl.winehq.org/wine/source/${MAJOR_V}.x/${MY_P}.tar.xz;
+   KEYWORDS="-* ~amd64 ~x86"
+fi
+S="${WORKDIR}/${MY_P}"
+
+GWP_V="20210925"
+PATCHDIR="${WORKDIR}/gentoo-wine-patches"
+
+DESCRIPTION="Free implementation of Windows(tm) on Unix, without external 
patchsets"
+HOMEPAGE="https://www.winehq.org/;
+SRC_URI="${SRC_URI}
+   
https://dev.gentoo.org/~sarnex/distfiles/wine/gentoo-wine-patches-${GWP_V}.tar.xz
+"
+
+LICENSE="LGPL-2.1"
+SLOT="${PV}"
+IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos elibc_glibc 
+faudio +fontconfig +gecko gphoto2 gsm gssapi gstreamer +jpeg kerberos 
kernel_FreeBSD +lcms ldap mingw +mono mp3 netapi nls odbc openal opencl +opengl 
osmesa oss +perl pcap +png prelink pulseaudio +realtime +run-exes samba scanner 
sdl selinux +ssl test +threads +truetype udev +udisks +unwind usb v4l vkd3d 
vulkan +X +xcomposite xinerama +xml"
+REQUIRED_USE="|| ( 

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-vanilla/

2021-10-09 Thread Nick Sarnie
commit: 10f2988fafad85047d3b492db4941fbb8c04dfb5
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sat Oct  9 21:17:01 2021 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sat Oct  9 21:17:01 2021 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=10f2988f

app-emulation/wine-vanilla: Version bump

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-vanilla/Manifest|   1 +
 .../wine-vanilla/wine-vanilla-6.19.ebuild  | 558 +
 2 files changed, 559 insertions(+)

diff --git a/app-emulation/wine-vanilla/Manifest 
b/app-emulation/wine-vanilla/Manifest
index 47062f0..1be37db 100644
--- a/app-emulation/wine-vanilla/Manifest
+++ b/app-emulation/wine-vanilla/Manifest
@@ -68,6 +68,7 @@ DIST wine-6.15.tar.xz 24751680 BLAKE2B 
f1e8df4f6a65f5776b260edf5a12a48810b24ea66
 DIST wine-6.16.tar.xz 24789520 BLAKE2B 
473ddec26139f7fedc091e2e037a88c8bde6f4061b196995aaa7e0352969fc8920edb47754c97478468a482f1d5a9be9e2cf858061d3add183fd90ee135a6ec3
 SHA512 
83d97eefeb35ee85d6ae180056d7b0e5864a90e1c2b63b6fd77d5cd38038b4eaa1fd067e7d5c5ee56d8cd811149db23a8581e1497bc1e36f9adad1012296b96e
 DIST wine-6.17.tar.xz 24838704 BLAKE2B 
98014c8226db703a62e7c9e73eb5d76a10eb751e81e0f20bf409099bca4ce5a996f67401e6f39b140671c82aded8c7ccd48310e55c9590715651ea5ae0db
 SHA512 
87550105e27afedc02084172bbb84793891db711ee443bb2626fea56e720517205a06944198c1d05958d47025ad31d9c890d539cd9e60fadfe2947d83325a658
 DIST wine-6.18.tar.xz 24860880 BLAKE2B 
411b74e92bf895f20e53ad7a203bd3fe84f1b414d8720b402bc17150fd663161e65be05b1fd5630dcc7a32fc6eba27dd0685f7b852dfb5852ea4f7fdb5af15a5
 SHA512 
d8f54f8fbb61b4af2a6f97328d33b0389ab0fb6a9dac97b2832af3d911a9f23c08653f40ec77f7c0eedd694c4a1c1228fe9dd4d859d8b3d7419e21847de7bcfe
+DIST wine-6.19.tar.xz 24894356 BLAKE2B 
227424c5ff4887b8adca1452ded242d20793d8b5ea8cc8fc94d73f18d294bda5674d48102d6f61e6a5b0e1f76aaa4885ec530bd96b1ea70923bae479254d59d2
 SHA512 
6d58bca9a4b8ed94f34a532da6403341f325a30d8e1b78997de009ecaafad655d15733823d7d1c8bd906efc568a649f8b7bee5c10f2e271e449d6e1eaa8f7ce4
 DIST wine-6.2.tar.xz 24270924 BLAKE2B 
b83e7ff097d8f48cc46588a672515e8c1eafeafd592d4ced6a8347eaa33c31f9c5a2603958a10ce02463993c8ca5db77b227d0fbce452c1e3a637e5ea42cf635
 SHA512 
d28870ba58fc4ed9dc083f843d7f4ee8921722bb33e0b84c89f281fc27e5f827c0998ad629eb21c92f860dade77194d3c8a0f5b4c6ae3407fe7acef245cfa9a4
 DIST wine-6.3.tar.xz 24301496 BLAKE2B 
d36e46e369abc619d351dd3209c0c86c5e5924509fe98a9e158fd10b9ca57650b9bc20e64dc801ec1b09315ed77fd81b549ebce7f383a3f772717a2031878588
 SHA512 
20108ea5036d612e8dd61fe9254d67cad02d757ede87174ed27774e4e3537e0d1f4d67156fd430f1d01d5c68b899cb0c7b4be298d897a1ce823913efef822242
 DIST wine-6.4.tar.xz 24340220 BLAKE2B 
b09ea9237b71856184a03e64ef8cf7aa30591ebd6534a550e9365ea9ab773d81283520ca6b0efc8aa69063cdeae8da35fc22e08a40c73c6268db4d57b0442ad2
 SHA512 
f190e1b97defb4620e33d1a4e2afffd475f6b3998153c67c6d06840b4f3b93a50f88c6844de15e7f54ca712330f6fea857310861a78b961feb7f64a4869f3fe1

diff --git a/app-emulation/wine-vanilla/wine-vanilla-6.19.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-6.19.ebuild
new file mode 100644
index 000..5209a25
--- /dev/null
+++ b/app-emulation/wine-vanilla/wine-vanilla-6.19.ebuild
@@ -0,0 +1,558 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PLOCALES="ar ast bg ca cs da de el en en_US eo es fa fi fr he hi hr hu it ja 
ko lt ml nb_NO nl or pa pl pt_BR pt_PT rm ro ru si sk sl sr_RS@cyrillic 
sr_RS@latin sv ta te th tr uk wa zh_CN zh_TW"
+PLOCALE_BACKUP="en"
+
+inherit autotools eapi7-ver estack eutils flag-o-matic gnome2-utils multilib 
multilib-minimal pax-utils plocale toolchain-funcs virtualx xdg-utils
+
+MY_PN="${PN%%-*}"
+MY_P="${MY_PN}-${PV}"
+
+if [[ ${PV} == "" ]] ; then
+   EGIT_REPO_URI="https://source.winehq.org/git/wine.git;
+   EGIT_BRANCH="master"
+   inherit git-r3
+   SRC_URI=""
+   #KEYWORDS=""
+else
+   MAJOR_V=$(ver_cut 1)
+   SRC_URI="https://dl.winehq.org/wine/source/${MAJOR_V}.x/${MY_P}.tar.xz;
+   KEYWORDS="-* ~amd64 ~x86"
+fi
+S="${WORKDIR}/${MY_P}"
+
+GWP_V="20210925"
+PATCHDIR="${WORKDIR}/gentoo-wine-patches"
+
+DESCRIPTION="Free implementation of Windows(tm) on Unix, without external 
patchsets"
+HOMEPAGE="https://www.winehq.org/;
+SRC_URI="${SRC_URI}
+   
https://dev.gentoo.org/~sarnex/distfiles/wine/gentoo-wine-patches-${GWP_V}.tar.xz
+"
+
+LICENSE="LGPL-2.1"
+SLOT="${PV}"
+IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos elibc_glibc 
+faudio +fontconfig +gecko gphoto2 gsm gssapi gstreamer +jpeg kerberos 
kernel_FreeBSD +lcms ldap mingw +mono mp3 netapi nls odbc openal opencl +opengl 
osmesa oss +perl pcap +png prelink pulseaudio +realtime +run-exes samba scanner 
sdl selinux +ssl test +threads +truetype udev +udisks +unwind usb v4l vkd3d 
vulkan +X +xcomposite xinerama +xml"
+REQUIRED_USE="|| ( 

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-staging/

2021-10-09 Thread Nick Sarnie
commit: b5d52075cee605531bd1e896a26e4ea328c25aea
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sat Oct  9 21:18:03 2021 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sat Oct  9 21:18:03 2021 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=b5d52075

app-emulation/wine-staging: Version bump

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-staging/Manifest|   2 +
 .../wine-staging/wine-staging-6.19.ebuild  | 645 +
 2 files changed, 647 insertions(+)

diff --git a/app-emulation/wine-staging/Manifest 
b/app-emulation/wine-staging/Manifest
index ef61840..bc96b38 100644
--- a/app-emulation/wine-staging/Manifest
+++ b/app-emulation/wine-staging/Manifest
@@ -62,6 +62,7 @@ DIST wine-6.15.tar.xz 24751680 BLAKE2B 
f1e8df4f6a65f5776b260edf5a12a48810b24ea66
 DIST wine-6.16.tar.xz 24789520 BLAKE2B 
473ddec26139f7fedc091e2e037a88c8bde6f4061b196995aaa7e0352969fc8920edb47754c97478468a482f1d5a9be9e2cf858061d3add183fd90ee135a6ec3
 SHA512 
83d97eefeb35ee85d6ae180056d7b0e5864a90e1c2b63b6fd77d5cd38038b4eaa1fd067e7d5c5ee56d8cd811149db23a8581e1497bc1e36f9adad1012296b96e
 DIST wine-6.17.tar.xz 24838704 BLAKE2B 
98014c8226db703a62e7c9e73eb5d76a10eb751e81e0f20bf409099bca4ce5a996f67401e6f39b140671c82aded8c7ccd48310e55c9590715651ea5ae0db
 SHA512 
87550105e27afedc02084172bbb84793891db711ee443bb2626fea56e720517205a06944198c1d05958d47025ad31d9c890d539cd9e60fadfe2947d83325a658
 DIST wine-6.18.tar.xz 24860880 BLAKE2B 
411b74e92bf895f20e53ad7a203bd3fe84f1b414d8720b402bc17150fd663161e65be05b1fd5630dcc7a32fc6eba27dd0685f7b852dfb5852ea4f7fdb5af15a5
 SHA512 
d8f54f8fbb61b4af2a6f97328d33b0389ab0fb6a9dac97b2832af3d911a9f23c08653f40ec77f7c0eedd694c4a1c1228fe9dd4d859d8b3d7419e21847de7bcfe
+DIST wine-6.19.tar.xz 24894356 BLAKE2B 
227424c5ff4887b8adca1452ded242d20793d8b5ea8cc8fc94d73f18d294bda5674d48102d6f61e6a5b0e1f76aaa4885ec530bd96b1ea70923bae479254d59d2
 SHA512 
6d58bca9a4b8ed94f34a532da6403341f325a30d8e1b78997de009ecaafad655d15733823d7d1c8bd906efc568a649f8b7bee5c10f2e271e449d6e1eaa8f7ce4
 DIST wine-6.2.tar.xz 24270924 BLAKE2B 
b83e7ff097d8f48cc46588a672515e8c1eafeafd592d4ced6a8347eaa33c31f9c5a2603958a10ce02463993c8ca5db77b227d0fbce452c1e3a637e5ea42cf635
 SHA512 
d28870ba58fc4ed9dc083f843d7f4ee8921722bb33e0b84c89f281fc27e5f827c0998ad629eb21c92f860dade77194d3c8a0f5b4c6ae3407fe7acef245cfa9a4
 DIST wine-6.3.tar.xz 24301496 BLAKE2B 
d36e46e369abc619d351dd3209c0c86c5e5924509fe98a9e158fd10b9ca57650b9bc20e64dc801ec1b09315ed77fd81b549ebce7f383a3f772717a2031878588
 SHA512 
20108ea5036d612e8dd61fe9254d67cad02d757ede87174ed27774e4e3537e0d1f4d67156fd430f1d01d5c68b899cb0c7b4be298d897a1ce823913efef822242
 DIST wine-6.4.tar.xz 24340220 BLAKE2B 
b09ea9237b71856184a03e64ef8cf7aa30591ebd6534a550e9365ea9ab773d81283520ca6b0efc8aa69063cdeae8da35fc22e08a40c73c6268db4d57b0442ad2
 SHA512 
f190e1b97defb4620e33d1a4e2afffd475f6b3998153c67c6d06840b4f3b93a50f88c6844de15e7f54ca712330f6fea857310861a78b961feb7f64a4869f3fe1
@@ -126,6 +127,7 @@ DIST wine-staging-6.15.tar.gz 9654539 BLAKE2B 
943cebf79bfe906a9dde42cfae13443059
 DIST wine-staging-6.16.tar.gz 9655388 BLAKE2B 
50feca959b0ff9056ed9e6f81f3dd11350391f30e4048ee6e4d4e5feaa837e31b580c22e63b6213fc77d866b362eb7922fd2c076bd9b6675abfe591a178a2d9c
 SHA512 
2789200466adaae2f4fa4afcbb6aa88619748e69a2cb39c1ac957b408c8021e2cbac7ad0b1f2e295cd87640f494e173739df076743ec0606e4b13e83d0ac2824
 DIST wine-staging-6.17.tar.gz 9655082 BLAKE2B 
9f2e0c800f221ecacba71942ef306fa5e2e8510572467ee528a58b0a63dc416281036eea419c55f46c7688418121184e620017e077ea873f3aadcda29f51f3ae
 SHA512 
c1eaa3682effd7a555ba2deed85a196eca5a9824634f3daba9453d861b0c74c456f6cddf0c1f47e003dc31c4ff7e7b049234e20afd2ce6bc6cbe6e03e87101ec
 DIST wine-staging-6.18.tar.gz 9663936 BLAKE2B 
cd1a0314aa3bf890d57432e0680e13927a7ef4c50f47fe9bc17980208a77137508703d9b3155cfee6a340d954e832e99d3d26518b425c4e60d8a3fd0ad2e
 SHA512 
f718b4a6f314e8db4f6ad4cb41449d251d973b0942072411a70749398cec9d60ebcf29078cf00a895f665ea7e7846c3fd7e5553d04b3b451ae757c95fb49af58
+DIST wine-staging-6.19.tar.gz 9690585 BLAKE2B 
de5c172b600e8de59241e93a8938d4f6a943f97d1cccaba2aa2551886893848f43df5d2e375b588deabe722ff34d80ff62dfed376d41d309c6a36e03678b771e
 SHA512 
f46d82dc034b0c701d00c70395edc306f6dcd3cd70091bb544c86c035e4221a370f6a1c39de4575e6cbb4eb587f5257d50ad5ada51fb6fee9f57b90dc0358034
 DIST wine-staging-6.2.tar.gz 9820682 BLAKE2B 
3de0c0ecbdabc1ffb965e6d5ebf5689fbeaf24ee33aaa2ff078db39d1542aa935b6d4d940fef570f1c60260748f4ef52b9789625b840f73e70ed3482995d505d
 SHA512 
558c46250babaacda92885c35c438797baff7b8eb45cb3cdf7f7572c35e6412e621182061a3a4e31444cc7580f99a61de6bd433bf2bb2b8139cdd718afd9cd2e
 DIST wine-staging-6.3.tar.gz 9796930 BLAKE2B 
b24e5ec57435a0d797e4d913b027226b3c891477d9df5d098be52348dff4eb704275c7c59d09f6cbdf7f86940a0e6c96bf28f94bd703fd32d6770a31426043fc
 SHA512 

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-staging/

2021-09-25 Thread Nick Sarnie
commit: 4d29e3509e7e70334db2eccd0aad66eede21162e
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sun Sep 26 00:46:25 2021 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sun Sep 26 00:46:25 2021 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=4d29e350

app-emulation/wine-staging: Fix build

Package-Manager: Portage-3.0.23, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-staging/Manifest | 1 +
 app-emulation/wine-staging/wine-staging-6.18.ebuild | 2 +-
 app-emulation/wine-staging/wine-staging-.ebuild | 2 +-
 3 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/app-emulation/wine-staging/Manifest 
b/app-emulation/wine-staging/Manifest
index aff60a1..ef61840 100644
--- a/app-emulation/wine-staging/Manifest
+++ b/app-emulation/wine-staging/Manifest
@@ -5,6 +5,7 @@ DIST gentoo-wine-patches-20190511.tar.xz 58996 BLAKE2B 
571c30d94341f567261893f88
 DIST gentoo-wine-patches-20191222.tar.xz 59236 BLAKE2B 
1b2c7b3ab69e5603d0f176a88c13b6d532f94f319ad29821faa699e828d90cfbe92c02b6e73b72eb16e565707c49885833fe557809ed16f4a6f0f182de9bb6e6
 SHA512 
a030fad55be5e1d909bc50e430c9a99846b88d7555f12749e101ba83f04df5af23eeb726b5ed78f847a66d11ac0a838bc69bd5bf8cf53da77ad454d2a2fe65cf
 DIST gentoo-wine-patches-20200523.tar.xz 59740 BLAKE2B 
951d7f305a6e5b3759c8095629d48de4830b8a0c9558de859a9e02d9824fe85553fda2bc0820ca97022a0ca63ac28473dadfe827821220445dbf1a7fd15c7c98
 SHA512 
46eea45c982b475e3ff444cbd87c6a0a235fc8dcaf3d83d89655a10ed8841a9ddb09e5a638a05803f3bf2c3bd34165c16067aba561efa4c183ee396dc31cdf75
 DIST gentoo-wine-patches-20210302.tar.xz 60112 BLAKE2B 
993cc671da00e5f44022af14f7b14f41155db4f2a02a971d17e7d40c3aece59e6b0dcd2793157c91bfe1f240a4b9e59a731f07dcb3314688f978e2f79e8062f1
 SHA512 
623cfa1420350d76d4b3897310bb81ce86740306a16ec974762cae886ae6717194b726cb4bfa588ea451414b399c50cca72125020738cdc3e13f6cc84983f858
+DIST gentoo-wine-patches-20210925.tar.xz 59836 BLAKE2B 
c6d41db309bf0470d0e8ef771d791240209f77d967031943232218e8e737987a4a74847d89d6bf8739ff0698b28b656a8b9ac830ee1da457be2aab27ededb123
 SHA512 
721d4d7b6a2c4336555a7faed7202a8ad6872ee37e4daea6fab2b5ff5bf5d73ce41f25d0bd4fd9b45e2c522cb19c1349144a40be32ccdd7ded7f61055d6d85c8
 DIST wine-4.0.tar.xz 21644692 BLAKE2B 
9c426ef2249c16e908a3617c2844d8b12a2df843721338b1cfb69459815b902cfa0ddf3d74c09dc900fb2ceb003e54d97a7c0afaac51a9caab7d21beb82e26c3
 SHA512 
7607fa7a3d5f7bcd3d8c4c9e7bb6e1987466110bbfc672782ebe57c6d9da348c58e76abf40b0a70c725dfd703163db6e194ee0e3db11a47b6b60e225163308dd
 DIST wine-4.1.tar.xz 21680916 BLAKE2B 
1a040606e34e1aec6f63d9692c6cbf915f5b32c817116aed68203e6bdedb8cb129dad440f7e51e9fb2ebaf1aa537d1584333f06b8b2c5d68f9ff37921d5b8b95
 SHA512 
2b28fc82111552009a042d682ea8f4e54d90f14bb99f1fbe12732090e7562527c229683562630edada0b1f4143de226734337b20d1b23d711191dcc0a834e4dc
 DIST wine-4.10.tar.xz 22109948 BLAKE2B 
60e627d1e88eaa71c08ab15f093b1b11a8ce619f6b4bde08ccabc6b28bfaa44822f407e14b78c67680e00eec01fa01ba8cd851faa73dd42fb77f394a8556ab7d
 SHA512 
cafc1d268719f723091429d9d8787044719f0936b00d47c6d01cef4d9c141fed7ba5b9776c1c63c68934a0a1071fb74daa0440aa52e77c4e42aca894163d6f54

diff --git a/app-emulation/wine-staging/wine-staging-6.18.ebuild 
b/app-emulation/wine-staging/wine-staging-6.18.ebuild
index 10c4491..a6c1ddd 100644
--- a/app-emulation/wine-staging/wine-staging-6.18.ebuild
+++ b/app-emulation/wine-staging/wine-staging-6.18.ebuild
@@ -30,7 +30,7 @@ S="${WORKDIR}/${MY_P}"
 
 STAGING_P="wine-staging-${MY_PV}"
 STAGING_DIR="${WORKDIR}/${STAGING_P}"
-GWP_V="20200523"
+GWP_V="20210925"
 PATCHDIR="${WORKDIR}/gentoo-wine-patches"
 
 DESCRIPTION="Free implementation of Windows(tm) on Unix, with Wine-Staging 
patchset"

diff --git a/app-emulation/wine-staging/wine-staging-.ebuild 
b/app-emulation/wine-staging/wine-staging-.ebuild
index 10c4491..a6c1ddd 100644
--- a/app-emulation/wine-staging/wine-staging-.ebuild
+++ b/app-emulation/wine-staging/wine-staging-.ebuild
@@ -30,7 +30,7 @@ S="${WORKDIR}/${MY_P}"
 
 STAGING_P="wine-staging-${MY_PV}"
 STAGING_DIR="${WORKDIR}/${STAGING_P}"
-GWP_V="20200523"
+GWP_V="20210925"
 PATCHDIR="${WORKDIR}/gentoo-wine-patches"
 
 DESCRIPTION="Free implementation of Windows(tm) on Unix, with Wine-Staging 
patchset"



[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-vanilla/

2021-09-25 Thread Nick Sarnie
commit: 3450382c956a1c32aac398e5f3c36e5512a1c6fd
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sun Sep 26 00:45:30 2021 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sun Sep 26 00:45:30 2021 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=3450382c

app-emulation/wine-vanilla: Fix build

Package-Manager: Portage-3.0.23, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-vanilla/Manifest | 1 +
 app-emulation/wine-vanilla/wine-vanilla-6.18.ebuild | 2 +-
 app-emulation/wine-vanilla/wine-vanilla-.ebuild | 2 +-
 3 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/app-emulation/wine-vanilla/Manifest 
b/app-emulation/wine-vanilla/Manifest
index 6155fc8..47062f0 100644
--- a/app-emulation/wine-vanilla/Manifest
+++ b/app-emulation/wine-vanilla/Manifest
@@ -5,6 +5,7 @@ DIST gentoo-wine-patches-20190511.tar.xz 58996 BLAKE2B 
571c30d94341f567261893f88
 DIST gentoo-wine-patches-20191222.tar.xz 59236 BLAKE2B 
1b2c7b3ab69e5603d0f176a88c13b6d532f94f319ad29821faa699e828d90cfbe92c02b6e73b72eb16e565707c49885833fe557809ed16f4a6f0f182de9bb6e6
 SHA512 
a030fad55be5e1d909bc50e430c9a99846b88d7555f12749e101ba83f04df5af23eeb726b5ed78f847a66d11ac0a838bc69bd5bf8cf53da77ad454d2a2fe65cf
 DIST gentoo-wine-patches-20200523.tar.xz 59740 BLAKE2B 
951d7f305a6e5b3759c8095629d48de4830b8a0c9558de859a9e02d9824fe85553fda2bc0820ca97022a0ca63ac28473dadfe827821220445dbf1a7fd15c7c98
 SHA512 
46eea45c982b475e3ff444cbd87c6a0a235fc8dcaf3d83d89655a10ed8841a9ddb09e5a638a05803f3bf2c3bd34165c16067aba561efa4c183ee396dc31cdf75
 DIST gentoo-wine-patches-20210302.tar.xz 60112 BLAKE2B 
993cc671da00e5f44022af14f7b14f41155db4f2a02a971d17e7d40c3aece59e6b0dcd2793157c91bfe1f240a4b9e59a731f07dcb3314688f978e2f79e8062f1
 SHA512 
623cfa1420350d76d4b3897310bb81ce86740306a16ec974762cae886ae6717194b726cb4bfa588ea451414b399c50cca72125020738cdc3e13f6cc84983f858
+DIST gentoo-wine-patches-20210925.tar.xz 59836 BLAKE2B 
c6d41db309bf0470d0e8ef771d791240209f77d967031943232218e8e737987a4a74847d89d6bf8739ff0698b28b656a8b9ac830ee1da457be2aab27ededb123
 SHA512 
721d4d7b6a2c4336555a7faed7202a8ad6872ee37e4daea6fab2b5ff5bf5d73ce41f25d0bd4fd9b45e2c522cb19c1349144a40be32ccdd7ded7f61055d6d85c8
 DIST wine-4.0.1.tar.xz 21665840 BLAKE2B 
b33b5ce8b4624dfbbbf473a88ed8c52d5e53855fa98ac3128e9b89dbeee6e92044ed1e662e1dc9669bd8d805424c36f2dd2c836c51bf6a5e4d78350926a13150
 SHA512 
dd240525e389f841123a569fd2f9b8da698b7707bc0de408dfd60ae73c5e24d522abb42b76571c840df52c686fdeae56e0a9c69db2cd31f04cdb345feeacf1dc
 DIST wine-4.0.2.tar.xz 21668348 BLAKE2B 
f1aa8ba3add9ae1e6fbb930a0c557c0015a699b21ba9988c6832c9a1b5180f98cbaadc561fbe4a22e97ff78732ee121a14f5a82b0637c71a4856fa5524ff2f5a
 SHA512 
14cb7eeba188562b73125c668f2020e1df6802e486552e422d3aa75b95f6fccedc0f87868f7e58ce71697941ff49757981ec93b9ef288da37ca8570658f194fc
 DIST wine-4.0.tar.xz 21644692 BLAKE2B 
9c426ef2249c16e908a3617c2844d8b12a2df843721338b1cfb69459815b902cfa0ddf3d74c09dc900fb2ceb003e54d97a7c0afaac51a9caab7d21beb82e26c3
 SHA512 
7607fa7a3d5f7bcd3d8c4c9e7bb6e1987466110bbfc672782ebe57c6d9da348c58e76abf40b0a70c725dfd703163db6e194ee0e3db11a47b6b60e225163308dd

diff --git a/app-emulation/wine-vanilla/wine-vanilla-6.18.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-6.18.ebuild
index 4acbaaf..5209a25 100644
--- a/app-emulation/wine-vanilla/wine-vanilla-6.18.ebuild
+++ b/app-emulation/wine-vanilla/wine-vanilla-6.18.ebuild
@@ -24,7 +24,7 @@ else
 fi
 S="${WORKDIR}/${MY_P}"
 
-GWP_V="20200523"
+GWP_V="20210925"
 PATCHDIR="${WORKDIR}/gentoo-wine-patches"
 
 DESCRIPTION="Free implementation of Windows(tm) on Unix, without external 
patchsets"

diff --git a/app-emulation/wine-vanilla/wine-vanilla-.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-.ebuild
index 4acbaaf..5209a25 100644
--- a/app-emulation/wine-vanilla/wine-vanilla-.ebuild
+++ b/app-emulation/wine-vanilla/wine-vanilla-.ebuild
@@ -24,7 +24,7 @@ else
 fi
 S="${WORKDIR}/${MY_P}"
 
-GWP_V="20200523"
+GWP_V="20210925"
 PATCHDIR="${WORKDIR}/gentoo-wine-patches"
 
 DESCRIPTION="Free implementation of Windows(tm) on Unix, without external 
patchsets"



[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-vanilla/

2021-09-25 Thread Nick Sarnie
commit: be71d18ce4552aa7afdece8b2220e1c51412fa02
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sun Sep 26 00:29:38 2021 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sun Sep 26 00:29:38 2021 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=be71d18c

app-emulation/wine-vanilla: Bump to 6.18

Package-Manager: Portage-3.0.23, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-vanilla/Manifest | 1 +
 .../wine-vanilla/{wine-vanilla-.ebuild => wine-vanilla-6.18.ebuild} | 2 +-
 app-emulation/wine-vanilla/wine-vanilla-.ebuild | 2 +-
 3 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/app-emulation/wine-vanilla/Manifest 
b/app-emulation/wine-vanilla/Manifest
index 082de35..6155fc8 100644
--- a/app-emulation/wine-vanilla/Manifest
+++ b/app-emulation/wine-vanilla/Manifest
@@ -66,6 +66,7 @@ DIST wine-6.14.tar.xz 24721316 BLAKE2B 
3965d4071006a54f595baf329c1b238c4faa506d6
 DIST wine-6.15.tar.xz 24751680 BLAKE2B 
f1e8df4f6a65f5776b260edf5a12a48810b24ea668be5ef8b405b64a057a16329a30d0b295eefb8f79d378faa243c20884de543e96213ed5ee22b6c752dab028
 SHA512 
bb4420a6fb0455aaab2f45354ea470acba9feeaea07b6c2cbf8afd49a6ef97bfc794cee330ecb12fb2098994738227d149cd5685d29310bb6cd0ed25d5fdc8bf
 DIST wine-6.16.tar.xz 24789520 BLAKE2B 
473ddec26139f7fedc091e2e037a88c8bde6f4061b196995aaa7e0352969fc8920edb47754c97478468a482f1d5a9be9e2cf858061d3add183fd90ee135a6ec3
 SHA512 
83d97eefeb35ee85d6ae180056d7b0e5864a90e1c2b63b6fd77d5cd38038b4eaa1fd067e7d5c5ee56d8cd811149db23a8581e1497bc1e36f9adad1012296b96e
 DIST wine-6.17.tar.xz 24838704 BLAKE2B 
98014c8226db703a62e7c9e73eb5d76a10eb751e81e0f20bf409099bca4ce5a996f67401e6f39b140671c82aded8c7ccd48310e55c9590715651ea5ae0db
 SHA512 
87550105e27afedc02084172bbb84793891db711ee443bb2626fea56e720517205a06944198c1d05958d47025ad31d9c890d539cd9e60fadfe2947d83325a658
+DIST wine-6.18.tar.xz 24860880 BLAKE2B 
411b74e92bf895f20e53ad7a203bd3fe84f1b414d8720b402bc17150fd663161e65be05b1fd5630dcc7a32fc6eba27dd0685f7b852dfb5852ea4f7fdb5af15a5
 SHA512 
d8f54f8fbb61b4af2a6f97328d33b0389ab0fb6a9dac97b2832af3d911a9f23c08653f40ec77f7c0eedd694c4a1c1228fe9dd4d859d8b3d7419e21847de7bcfe
 DIST wine-6.2.tar.xz 24270924 BLAKE2B 
b83e7ff097d8f48cc46588a672515e8c1eafeafd592d4ced6a8347eaa33c31f9c5a2603958a10ce02463993c8ca5db77b227d0fbce452c1e3a637e5ea42cf635
 SHA512 
d28870ba58fc4ed9dc083f843d7f4ee8921722bb33e0b84c89f281fc27e5f827c0998ad629eb21c92f860dade77194d3c8a0f5b4c6ae3407fe7acef245cfa9a4
 DIST wine-6.3.tar.xz 24301496 BLAKE2B 
d36e46e369abc619d351dd3209c0c86c5e5924509fe98a9e158fd10b9ca57650b9bc20e64dc801ec1b09315ed77fd81b549ebce7f383a3f772717a2031878588
 SHA512 
20108ea5036d612e8dd61fe9254d67cad02d757ede87174ed27774e4e3537e0d1f4d67156fd430f1d01d5c68b899cb0c7b4be298d897a1ce823913efef822242
 DIST wine-6.4.tar.xz 24340220 BLAKE2B 
b09ea9237b71856184a03e64ef8cf7aa30591ebd6534a550e9365ea9ab773d81283520ca6b0efc8aa69063cdeae8da35fc22e08a40c73c6268db4d57b0442ad2
 SHA512 
f190e1b97defb4620e33d1a4e2afffd475f6b3998153c67c6d06840b4f3b93a50f88c6844de15e7f54ca712330f6fea857310861a78b961feb7f64a4869f3fe1

diff --git a/app-emulation/wine-vanilla/wine-vanilla-.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-6.18.ebuild
similarity index 99%
copy from app-emulation/wine-vanilla/wine-vanilla-.ebuild
copy to app-emulation/wine-vanilla/wine-vanilla-6.18.ebuild
index 70c9eed..4acbaaf 100644
--- a/app-emulation/wine-vanilla/wine-vanilla-.ebuild
+++ b/app-emulation/wine-vanilla/wine-vanilla-6.18.ebuild
@@ -109,7 +109,7 @@ RDEPEND="${COMMON_DEPEND}
!app-emulation/wine:0
dos? ( >=games-emulation/dosbox-0.74_p20160629 )
gecko? ( app-emulation/wine-gecko:2.47.2[abi_x86_32?,abi_x86_64?] )
-   mono? ( app-emulation/wine-mono:6.3.0 )
+   mono? ( app-emulation/wine-mono:6.4.0 )
perl? (
dev-lang/perl
dev-perl/XML-Simple

diff --git a/app-emulation/wine-vanilla/wine-vanilla-.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-.ebuild
index 70c9eed..4acbaaf 100644
--- a/app-emulation/wine-vanilla/wine-vanilla-.ebuild
+++ b/app-emulation/wine-vanilla/wine-vanilla-.ebuild
@@ -109,7 +109,7 @@ RDEPEND="${COMMON_DEPEND}
!app-emulation/wine:0
dos? ( >=games-emulation/dosbox-0.74_p20160629 )
gecko? ( app-emulation/wine-gecko:2.47.2[abi_x86_32?,abi_x86_64?] )
-   mono? ( app-emulation/wine-mono:6.3.0 )
+   mono? ( app-emulation/wine-mono:6.4.0 )
perl? (
dev-lang/perl
dev-perl/XML-Simple



[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-mono/

2021-09-25 Thread Nick Sarnie
commit: e72e182b1e80f24c7fbdab6907d8524ddf9ce00e
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sun Sep 26 00:28:29 2021 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sun Sep 26 00:28:29 2021 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=e72e182b

app-emulation/wine-mono: Bump to 6.4.0

Package-Manager: Portage-3.0.23, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-mono/Manifest   |  2 ++
 app-emulation/wine-mono/wine-mono-6.4.0.ebuild | 29 ++
 2 files changed, 31 insertions(+)

diff --git a/app-emulation/wine-mono/Manifest b/app-emulation/wine-mono/Manifest
index c97ea79..80245f7 100644
--- a/app-emulation/wine-mono/Manifest
+++ b/app-emulation/wine-mono/Manifest
@@ -24,6 +24,8 @@ DIST wine-mono-6.2.0-x86.msi 87498240 BLAKE2B 
f7e20876732cbdfc472d5f850b167feceb
 DIST wine-mono-6.2.0-x86.tar.xz 43071332 BLAKE2B 
f334600697375757c734ff22274665b3bc1cb7495d465e1d209b240b9b2aafdd93f9f246f5415e9f36526bceee6066a13fe01a81d93779dac35687fe0d44f7df
 SHA512 
7e5ed7e4abf88d915d59715b107722135af08bb43e6356f9ae95fdafc539332150a82f85b67d15710ae4ece6c883733bab142f59894f70acd893cac85f6ca905
 DIST wine-mono-6.3.0-x86.msi 86689280 BLAKE2B 
5c3cbe92dc055e97fa6dc894659cbd2666bd6a2ae0ee08c998c5326379a205596d89127d22aeabdf73c99aa8e4ade4d5e05663d0a1e1f9f1d322c7c18a4cd4ea
 SHA512 
e71accf7d649c576728a41e9dda5dc9c21e3ebc0330e01be30c1f196bdb2925c5fefb6e9337cc8043f4b42721702dda4dc9224cb7a31e322410f4002d1f84f42
 DIST wine-mono-6.3.0-x86.tar.xz 44392520 BLAKE2B 
bdaa64005564a134605f924f256a709e40cb713bd1f24f2ac5e82a095e353a81487c74813c88e74ed02905cc23a3bf50e99e908a3536a9671f4920d9093cbe75
 SHA512 
d39bcbaa65e4299711351516e74d559887b152caa3731cc72bbb23412ed76f5b8cf124c2f46241b677b074277c680120a645f738cdcd840ff60465b20deda3b7
+DIST wine-mono-6.4.0-x86.msi 86398976 BLAKE2B 
d1d553f6115618744bea65d7e88fdf19bfdf677ad5c948d9d598fe461ad668f778e5a8ae2084c584c9d6dae9bee68b85f9837c20016ab82c2401644dcfa06c1a
 SHA512 
5e0eda47bd73b4f1d2d4017c1e6f1d14c9801067e085e9c991532c50454dd22b6594bd05733b4aae8a1010e8b443ff2bdbe70398880ea569142b33e253892f12
+DIST wine-mono-6.4.0-x86.tar.xz 44177712 BLAKE2B 
de08e829ade18be0d0896742aa66f3dd9ab96eb0c994ae164f0fc64fb6306dd278714bbea3cd20d9a04625bc502764a875d57fa530489a22d4f69cbe20696cfb
 SHA512 
4e793ab755e3a4b5ff1dd0354756a9635482db6fd98fc90cb710edfd5e1f553e124913e323681bc82827655a5b1056d33c1f9632b5ea1e3e72d547cd780f2d2e
 DIST wine-mono-bin-4.8.1.tar.gz 91047479 BLAKE2B 
ec970be25b6fcb6c4b93fecf7aa279397654be9614a12a31752b1b4c6f74fb8a52171112deaa64e8c55c8d8f88626f059a1876bcde001b0a032535f447babc77
 SHA512 
c3b8de735cb31805c1ac671fa7a5af53a2262e033f8eb1bba8bd82df77ea26305330500d661e25a2482e50ce17d4f14bca3973a4e48887c5ddfaab56c3ff59f8
 DIST wine-mono-bin-4.8.3.tar.gz 91309002 BLAKE2B 
d3a24fad76afce5a812d17cfcd585803393db95143d4c438164273eb50961120cd5081380738f43be0a574b6ffb676cb46fa70b933560e0164bd3f73b68d2fa9
 SHA512 
00564613d23cb724d04eb2515bb34dd561955a02800d17ec9cbc899697a5681aa47316bf5919ef27a61fe6f7d1d7ddf02e3d762e994d01cb4956301f2367f3c4
 DIST wine-mono-bin-4.9.0.tar.gz 90974210 BLAKE2B 
008bcbe83da76247eb242bad8f03d7591a0831e24e71195929c7589d570226a8215a02aab59b1a1d2d2dda9e5e8020de3aad8a9fd2d6d0467f5f775b50b5276e
 SHA512 
12bc6e3ca6d5ec7592ce7613b6c3ee1f6e415954f9866757d8c2fa7fa1b5b4488f1a58c368d482c47a4baad5c07431802a85e7d9df63029ef54d034669ccb01a

diff --git a/app-emulation/wine-mono/wine-mono-6.4.0.ebuild 
b/app-emulation/wine-mono/wine-mono-6.4.0.ebuild
new file mode 100644
index 000..b396802
--- /dev/null
+++ b/app-emulation/wine-mono/wine-mono-6.4.0.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Wine Mono is a replacement for the .NET runtime and class 
libraries in Wine"
+HOMEPAGE="https://www.winehq.org/;
+SRC_URI="
+   !shared? ( https://dl.winehq.org/wine/${PN}/${PV}/${P}-x86.msi )
+   shared? ( https://dl.winehq.org/wine/${PN}/${PV}/${P}-x86.tar.xz )
+"
+
+LICENSE="BSD-2 GPL-2 LGPL-2.1 MIT MPL-1.1"
+SLOT="${PV}"
+KEYWORDS="~amd64 ~x86"
+IUSE="+shared"
+
+DEPEND="!!app-emulation/wine:0"
+
+S="${WORKDIR}"
+
+src_install() {
+   insinto /usr/share/wine/mono
+   if use shared; then
+   doins -r "${P}"
+   else
+   doins "${DISTDIR}/${P}-x86.msi"
+   fi
+}



[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-staging/

2021-09-25 Thread Nick Sarnie
commit: e95bef843ad29e6ca38b6be3f0570b1a946e83d7
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sun Sep 26 00:30:32 2021 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sun Sep 26 00:30:32 2021 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=e95bef84

app-emulation/wine-staging: Bump to 6.18

Package-Manager: Portage-3.0.23, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-staging/Manifest | 2 ++
 .../wine-staging/{wine-staging-.ebuild => wine-staging-6.18.ebuild} | 2 +-
 app-emulation/wine-staging/wine-staging-.ebuild | 2 +-
 3 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/app-emulation/wine-staging/Manifest 
b/app-emulation/wine-staging/Manifest
index 6b665b2..aff60a1 100644
--- a/app-emulation/wine-staging/Manifest
+++ b/app-emulation/wine-staging/Manifest
@@ -60,6 +60,7 @@ DIST wine-6.14.tar.xz 24721316 BLAKE2B 
3965d4071006a54f595baf329c1b238c4faa506d6
 DIST wine-6.15.tar.xz 24751680 BLAKE2B 
f1e8df4f6a65f5776b260edf5a12a48810b24ea668be5ef8b405b64a057a16329a30d0b295eefb8f79d378faa243c20884de543e96213ed5ee22b6c752dab028
 SHA512 
bb4420a6fb0455aaab2f45354ea470acba9feeaea07b6c2cbf8afd49a6ef97bfc794cee330ecb12fb2098994738227d149cd5685d29310bb6cd0ed25d5fdc8bf
 DIST wine-6.16.tar.xz 24789520 BLAKE2B 
473ddec26139f7fedc091e2e037a88c8bde6f4061b196995aaa7e0352969fc8920edb47754c97478468a482f1d5a9be9e2cf858061d3add183fd90ee135a6ec3
 SHA512 
83d97eefeb35ee85d6ae180056d7b0e5864a90e1c2b63b6fd77d5cd38038b4eaa1fd067e7d5c5ee56d8cd811149db23a8581e1497bc1e36f9adad1012296b96e
 DIST wine-6.17.tar.xz 24838704 BLAKE2B 
98014c8226db703a62e7c9e73eb5d76a10eb751e81e0f20bf409099bca4ce5a996f67401e6f39b140671c82aded8c7ccd48310e55c9590715651ea5ae0db
 SHA512 
87550105e27afedc02084172bbb84793891db711ee443bb2626fea56e720517205a06944198c1d05958d47025ad31d9c890d539cd9e60fadfe2947d83325a658
+DIST wine-6.18.tar.xz 24860880 BLAKE2B 
411b74e92bf895f20e53ad7a203bd3fe84f1b414d8720b402bc17150fd663161e65be05b1fd5630dcc7a32fc6eba27dd0685f7b852dfb5852ea4f7fdb5af15a5
 SHA512 
d8f54f8fbb61b4af2a6f97328d33b0389ab0fb6a9dac97b2832af3d911a9f23c08653f40ec77f7c0eedd694c4a1c1228fe9dd4d859d8b3d7419e21847de7bcfe
 DIST wine-6.2.tar.xz 24270924 BLAKE2B 
b83e7ff097d8f48cc46588a672515e8c1eafeafd592d4ced6a8347eaa33c31f9c5a2603958a10ce02463993c8ca5db77b227d0fbce452c1e3a637e5ea42cf635
 SHA512 
d28870ba58fc4ed9dc083f843d7f4ee8921722bb33e0b84c89f281fc27e5f827c0998ad629eb21c92f860dade77194d3c8a0f5b4c6ae3407fe7acef245cfa9a4
 DIST wine-6.3.tar.xz 24301496 BLAKE2B 
d36e46e369abc619d351dd3209c0c86c5e5924509fe98a9e158fd10b9ca57650b9bc20e64dc801ec1b09315ed77fd81b549ebce7f383a3f772717a2031878588
 SHA512 
20108ea5036d612e8dd61fe9254d67cad02d757ede87174ed27774e4e3537e0d1f4d67156fd430f1d01d5c68b899cb0c7b4be298d897a1ce823913efef822242
 DIST wine-6.4.tar.xz 24340220 BLAKE2B 
b09ea9237b71856184a03e64ef8cf7aa30591ebd6534a550e9365ea9ab773d81283520ca6b0efc8aa69063cdeae8da35fc22e08a40c73c6268db4d57b0442ad2
 SHA512 
f190e1b97defb4620e33d1a4e2afffd475f6b3998153c67c6d06840b4f3b93a50f88c6844de15e7f54ca712330f6fea857310861a78b961feb7f64a4869f3fe1
@@ -123,6 +124,7 @@ DIST wine-staging-6.14.tar.gz 9658088 BLAKE2B 
d64bc0476b3d46b9ba812c956bb1eab1e4
 DIST wine-staging-6.15.tar.gz 9654539 BLAKE2B 
943cebf79bfe906a9dde42cfae13443059d89cd8996a2d25fad685796605a3a45b05f960c9dfb05d968ed919a23b273ecc56aa4fcd98cc38dcc45c22813d830e
 SHA512 
652e8319e4a06f64b7e4c05a139194b6b7189777632d26d79a3160447339cc5a93b42d810d8379eb7821485ccbbe8cd8e16e09e5223886027fae2f7737b8a115
 DIST wine-staging-6.16.tar.gz 9655388 BLAKE2B 
50feca959b0ff9056ed9e6f81f3dd11350391f30e4048ee6e4d4e5feaa837e31b580c22e63b6213fc77d866b362eb7922fd2c076bd9b6675abfe591a178a2d9c
 SHA512 
2789200466adaae2f4fa4afcbb6aa88619748e69a2cb39c1ac957b408c8021e2cbac7ad0b1f2e295cd87640f494e173739df076743ec0606e4b13e83d0ac2824
 DIST wine-staging-6.17.tar.gz 9655082 BLAKE2B 
9f2e0c800f221ecacba71942ef306fa5e2e8510572467ee528a58b0a63dc416281036eea419c55f46c7688418121184e620017e077ea873f3aadcda29f51f3ae
 SHA512 
c1eaa3682effd7a555ba2deed85a196eca5a9824634f3daba9453d861b0c74c456f6cddf0c1f47e003dc31c4ff7e7b049234e20afd2ce6bc6cbe6e03e87101ec
+DIST wine-staging-6.18.tar.gz 9663936 BLAKE2B 
cd1a0314aa3bf890d57432e0680e13927a7ef4c50f47fe9bc17980208a77137508703d9b3155cfee6a340d954e832e99d3d26518b425c4e60d8a3fd0ad2e
 SHA512 
f718b4a6f314e8db4f6ad4cb41449d251d973b0942072411a70749398cec9d60ebcf29078cf00a895f665ea7e7846c3fd7e5553d04b3b451ae757c95fb49af58
 DIST wine-staging-6.2.tar.gz 9820682 BLAKE2B 
3de0c0ecbdabc1ffb965e6d5ebf5689fbeaf24ee33aaa2ff078db39d1542aa935b6d4d940fef570f1c60260748f4ef52b9789625b840f73e70ed3482995d505d
 SHA512 
558c46250babaacda92885c35c438797baff7b8eb45cb3cdf7f7572c35e6412e621182061a3a4e31444cc7580f99a61de6bd433bf2bb2b8139cdd718afd9cd2e
 DIST wine-staging-6.3.tar.gz 9796930 BLAKE2B 

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-staging/

2021-09-10 Thread Nick Sarnie
commit: f61e081d8b73605155083644ca7df45ecc6179fb
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sat Sep 11 01:35:15 2021 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sat Sep 11 01:35:15 2021 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=f61e081d

app-emulation/wine-staging: Bump to 6.17

Package-Manager: Portage-3.0.23, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-staging/Manifest|   2 +
 .../wine-staging/wine-staging-6.17.ebuild  | 645 +
 2 files changed, 647 insertions(+)

diff --git a/app-emulation/wine-staging/Manifest 
b/app-emulation/wine-staging/Manifest
index 404fdaf..6b665b2 100644
--- a/app-emulation/wine-staging/Manifest
+++ b/app-emulation/wine-staging/Manifest
@@ -59,6 +59,7 @@ DIST wine-6.13.tar.xz 24704408 BLAKE2B 
abd79fd0d2a364fd6b7c2713924ad9883cf62e0fe
 DIST wine-6.14.tar.xz 24721316 BLAKE2B 
3965d4071006a54f595baf329c1b238c4faa506d60597cfb5f8ccb127b9881d34d66e89cbdeff0d05a5e4a203a541edea8953565e2edf464ce4d2bfbf5e7a437
 SHA512 
261858dcf11604a6078b39faf64bd05288194647f8397efe03abcda1934ec5452e18f85dbb269e728ef532ac8ad39af5bbf5d8603f3598a20e2ef16f60405581
 DIST wine-6.15.tar.xz 24751680 BLAKE2B 
f1e8df4f6a65f5776b260edf5a12a48810b24ea668be5ef8b405b64a057a16329a30d0b295eefb8f79d378faa243c20884de543e96213ed5ee22b6c752dab028
 SHA512 
bb4420a6fb0455aaab2f45354ea470acba9feeaea07b6c2cbf8afd49a6ef97bfc794cee330ecb12fb2098994738227d149cd5685d29310bb6cd0ed25d5fdc8bf
 DIST wine-6.16.tar.xz 24789520 BLAKE2B 
473ddec26139f7fedc091e2e037a88c8bde6f4061b196995aaa7e0352969fc8920edb47754c97478468a482f1d5a9be9e2cf858061d3add183fd90ee135a6ec3
 SHA512 
83d97eefeb35ee85d6ae180056d7b0e5864a90e1c2b63b6fd77d5cd38038b4eaa1fd067e7d5c5ee56d8cd811149db23a8581e1497bc1e36f9adad1012296b96e
+DIST wine-6.17.tar.xz 24838704 BLAKE2B 
98014c8226db703a62e7c9e73eb5d76a10eb751e81e0f20bf409099bca4ce5a996f67401e6f39b140671c82aded8c7ccd48310e55c9590715651ea5ae0db
 SHA512 
87550105e27afedc02084172bbb84793891db711ee443bb2626fea56e720517205a06944198c1d05958d47025ad31d9c890d539cd9e60fadfe2947d83325a658
 DIST wine-6.2.tar.xz 24270924 BLAKE2B 
b83e7ff097d8f48cc46588a672515e8c1eafeafd592d4ced6a8347eaa33c31f9c5a2603958a10ce02463993c8ca5db77b227d0fbce452c1e3a637e5ea42cf635
 SHA512 
d28870ba58fc4ed9dc083f843d7f4ee8921722bb33e0b84c89f281fc27e5f827c0998ad629eb21c92f860dade77194d3c8a0f5b4c6ae3407fe7acef245cfa9a4
 DIST wine-6.3.tar.xz 24301496 BLAKE2B 
d36e46e369abc619d351dd3209c0c86c5e5924509fe98a9e158fd10b9ca57650b9bc20e64dc801ec1b09315ed77fd81b549ebce7f383a3f772717a2031878588
 SHA512 
20108ea5036d612e8dd61fe9254d67cad02d757ede87174ed27774e4e3537e0d1f4d67156fd430f1d01d5c68b899cb0c7b4be298d897a1ce823913efef822242
 DIST wine-6.4.tar.xz 24340220 BLAKE2B 
b09ea9237b71856184a03e64ef8cf7aa30591ebd6534a550e9365ea9ab773d81283520ca6b0efc8aa69063cdeae8da35fc22e08a40c73c6268db4d57b0442ad2
 SHA512 
f190e1b97defb4620e33d1a4e2afffd475f6b3998153c67c6d06840b4f3b93a50f88c6844de15e7f54ca712330f6fea857310861a78b961feb7f64a4869f3fe1
@@ -121,6 +122,7 @@ DIST wine-staging-6.13.tar.gz 9658122 BLAKE2B 
cce777895de69df8c659f010e432ee1d1f
 DIST wine-staging-6.14.tar.gz 9658088 BLAKE2B 
d64bc0476b3d46b9ba812c956bb1eab1e4c3ec0dbd2145ae1f38c95ebd9b7151222e375690c1bd601f3416f362e50ea3f670e9940977005dc67623de22e82485
 SHA512 
5b4db5c1af316c8e18e2e318152a44e45521dd939e3a341dd533e819263109237c4fd0e25ee2b23bb7cc75f4c4afd7d8900b23d83f955e4ff56ee5fe7aa84fd0
 DIST wine-staging-6.15.tar.gz 9654539 BLAKE2B 
943cebf79bfe906a9dde42cfae13443059d89cd8996a2d25fad685796605a3a45b05f960c9dfb05d968ed919a23b273ecc56aa4fcd98cc38dcc45c22813d830e
 SHA512 
652e8319e4a06f64b7e4c05a139194b6b7189777632d26d79a3160447339cc5a93b42d810d8379eb7821485ccbbe8cd8e16e09e5223886027fae2f7737b8a115
 DIST wine-staging-6.16.tar.gz 9655388 BLAKE2B 
50feca959b0ff9056ed9e6f81f3dd11350391f30e4048ee6e4d4e5feaa837e31b580c22e63b6213fc77d866b362eb7922fd2c076bd9b6675abfe591a178a2d9c
 SHA512 
2789200466adaae2f4fa4afcbb6aa88619748e69a2cb39c1ac957b408c8021e2cbac7ad0b1f2e295cd87640f494e173739df076743ec0606e4b13e83d0ac2824
+DIST wine-staging-6.17.tar.gz 9655082 BLAKE2B 
9f2e0c800f221ecacba71942ef306fa5e2e8510572467ee528a58b0a63dc416281036eea419c55f46c7688418121184e620017e077ea873f3aadcda29f51f3ae
 SHA512 
c1eaa3682effd7a555ba2deed85a196eca5a9824634f3daba9453d861b0c74c456f6cddf0c1f47e003dc31c4ff7e7b049234e20afd2ce6bc6cbe6e03e87101ec
 DIST wine-staging-6.2.tar.gz 9820682 BLAKE2B 
3de0c0ecbdabc1ffb965e6d5ebf5689fbeaf24ee33aaa2ff078db39d1542aa935b6d4d940fef570f1c60260748f4ef52b9789625b840f73e70ed3482995d505d
 SHA512 
558c46250babaacda92885c35c438797baff7b8eb45cb3cdf7f7572c35e6412e621182061a3a4e31444cc7580f99a61de6bd433bf2bb2b8139cdd718afd9cd2e
 DIST wine-staging-6.3.tar.gz 9796930 BLAKE2B 
b24e5ec57435a0d797e4d913b027226b3c891477d9df5d098be52348dff4eb704275c7c59d09f6cbdf7f86940a0e6c96bf28f94bd703fd32d6770a31426043fc
 SHA512 

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-vanilla/

2021-09-10 Thread Nick Sarnie
commit: 1b9208fb20e48034743b04949a10cc0d912d9c74
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sat Sep 11 01:34:17 2021 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sat Sep 11 01:34:17 2021 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=1b9208fb

app-emulation/wine-vanilla: Bump to 6.17

Package-Manager: Portage-3.0.23, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-vanilla/Manifest|   1 +
 .../wine-vanilla/wine-vanilla-6.17.ebuild  | 558 +
 2 files changed, 559 insertions(+)

diff --git a/app-emulation/wine-vanilla/Manifest 
b/app-emulation/wine-vanilla/Manifest
index 85181ae..082de35 100644
--- a/app-emulation/wine-vanilla/Manifest
+++ b/app-emulation/wine-vanilla/Manifest
@@ -65,6 +65,7 @@ DIST wine-6.13.tar.xz 24704408 BLAKE2B 
abd79fd0d2a364fd6b7c2713924ad9883cf62e0fe
 DIST wine-6.14.tar.xz 24721316 BLAKE2B 
3965d4071006a54f595baf329c1b238c4faa506d60597cfb5f8ccb127b9881d34d66e89cbdeff0d05a5e4a203a541edea8953565e2edf464ce4d2bfbf5e7a437
 SHA512 
261858dcf11604a6078b39faf64bd05288194647f8397efe03abcda1934ec5452e18f85dbb269e728ef532ac8ad39af5bbf5d8603f3598a20e2ef16f60405581
 DIST wine-6.15.tar.xz 24751680 BLAKE2B 
f1e8df4f6a65f5776b260edf5a12a48810b24ea668be5ef8b405b64a057a16329a30d0b295eefb8f79d378faa243c20884de543e96213ed5ee22b6c752dab028
 SHA512 
bb4420a6fb0455aaab2f45354ea470acba9feeaea07b6c2cbf8afd49a6ef97bfc794cee330ecb12fb2098994738227d149cd5685d29310bb6cd0ed25d5fdc8bf
 DIST wine-6.16.tar.xz 24789520 BLAKE2B 
473ddec26139f7fedc091e2e037a88c8bde6f4061b196995aaa7e0352969fc8920edb47754c97478468a482f1d5a9be9e2cf858061d3add183fd90ee135a6ec3
 SHA512 
83d97eefeb35ee85d6ae180056d7b0e5864a90e1c2b63b6fd77d5cd38038b4eaa1fd067e7d5c5ee56d8cd811149db23a8581e1497bc1e36f9adad1012296b96e
+DIST wine-6.17.tar.xz 24838704 BLAKE2B 
98014c8226db703a62e7c9e73eb5d76a10eb751e81e0f20bf409099bca4ce5a996f67401e6f39b140671c82aded8c7ccd48310e55c9590715651ea5ae0db
 SHA512 
87550105e27afedc02084172bbb84793891db711ee443bb2626fea56e720517205a06944198c1d05958d47025ad31d9c890d539cd9e60fadfe2947d83325a658
 DIST wine-6.2.tar.xz 24270924 BLAKE2B 
b83e7ff097d8f48cc46588a672515e8c1eafeafd592d4ced6a8347eaa33c31f9c5a2603958a10ce02463993c8ca5db77b227d0fbce452c1e3a637e5ea42cf635
 SHA512 
d28870ba58fc4ed9dc083f843d7f4ee8921722bb33e0b84c89f281fc27e5f827c0998ad629eb21c92f860dade77194d3c8a0f5b4c6ae3407fe7acef245cfa9a4
 DIST wine-6.3.tar.xz 24301496 BLAKE2B 
d36e46e369abc619d351dd3209c0c86c5e5924509fe98a9e158fd10b9ca57650b9bc20e64dc801ec1b09315ed77fd81b549ebce7f383a3f772717a2031878588
 SHA512 
20108ea5036d612e8dd61fe9254d67cad02d757ede87174ed27774e4e3537e0d1f4d67156fd430f1d01d5c68b899cb0c7b4be298d897a1ce823913efef822242
 DIST wine-6.4.tar.xz 24340220 BLAKE2B 
b09ea9237b71856184a03e64ef8cf7aa30591ebd6534a550e9365ea9ab773d81283520ca6b0efc8aa69063cdeae8da35fc22e08a40c73c6268db4d57b0442ad2
 SHA512 
f190e1b97defb4620e33d1a4e2afffd475f6b3998153c67c6d06840b4f3b93a50f88c6844de15e7f54ca712330f6fea857310861a78b961feb7f64a4869f3fe1

diff --git a/app-emulation/wine-vanilla/wine-vanilla-6.17.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-6.17.ebuild
new file mode 100644
index 000..70c9eed
--- /dev/null
+++ b/app-emulation/wine-vanilla/wine-vanilla-6.17.ebuild
@@ -0,0 +1,558 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PLOCALES="ar ast bg ca cs da de el en en_US eo es fa fi fr he hi hr hu it ja 
ko lt ml nb_NO nl or pa pl pt_BR pt_PT rm ro ru si sk sl sr_RS@cyrillic 
sr_RS@latin sv ta te th tr uk wa zh_CN zh_TW"
+PLOCALE_BACKUP="en"
+
+inherit autotools eapi7-ver estack eutils flag-o-matic gnome2-utils multilib 
multilib-minimal pax-utils plocale toolchain-funcs virtualx xdg-utils
+
+MY_PN="${PN%%-*}"
+MY_P="${MY_PN}-${PV}"
+
+if [[ ${PV} == "" ]] ; then
+   EGIT_REPO_URI="https://source.winehq.org/git/wine.git;
+   EGIT_BRANCH="master"
+   inherit git-r3
+   SRC_URI=""
+   #KEYWORDS=""
+else
+   MAJOR_V=$(ver_cut 1)
+   SRC_URI="https://dl.winehq.org/wine/source/${MAJOR_V}.x/${MY_P}.tar.xz;
+   KEYWORDS="-* ~amd64 ~x86"
+fi
+S="${WORKDIR}/${MY_P}"
+
+GWP_V="20200523"
+PATCHDIR="${WORKDIR}/gentoo-wine-patches"
+
+DESCRIPTION="Free implementation of Windows(tm) on Unix, without external 
patchsets"
+HOMEPAGE="https://www.winehq.org/;
+SRC_URI="${SRC_URI}
+   
https://dev.gentoo.org/~sarnex/distfiles/wine/gentoo-wine-patches-${GWP_V}.tar.xz
+"
+
+LICENSE="LGPL-2.1"
+SLOT="${PV}"
+IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos elibc_glibc 
+faudio +fontconfig +gecko gphoto2 gsm gssapi gstreamer +jpeg kerberos 
kernel_FreeBSD +lcms ldap mingw +mono mp3 netapi nls odbc openal opencl +opengl 
osmesa oss +perl pcap +png prelink pulseaudio +realtime +run-exes samba scanner 
sdl selinux +ssl test +threads +truetype udev +udisks +unwind usb v4l vkd3d 
vulkan +X +xcomposite xinerama +xml"
+REQUIRED_USE="|| ( 

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-staging/

2021-09-03 Thread Jimi Huotari
commit: 60168e130f9aca20a2a47dfef7a038062c4a9864
Author: Jimi Huotari  gentoo  org>
AuthorDate: Fri Sep  3 11:28:48 2021 +
Commit: Jimi Huotari  gentoo  org>
CommitDate: Fri Sep  3 11:28:48 2021 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=60168e13

app-emulation/wine-staging: remove removal of wineconsole

The  versions got left out from the bunch...

Package-Manager: Portage-3.0.22, Repoman-3.0.3
Signed-off-by: Jimi Huotari  gentoo.org>

 app-emulation/wine-staging/wine-staging-.ebuild | 18 --
 1 file changed, 18 deletions(-)

diff --git a/app-emulation/wine-staging/wine-staging-.ebuild 
b/app-emulation/wine-staging/wine-staging-.ebuild
index 1b3a52f..f8a707a 100644
--- a/app-emulation/wine-staging/wine-staging-.ebuild
+++ b/app-emulation/wine-staging/wine-staging-.ebuild
@@ -577,24 +577,6 @@ multilib_src_install_all() {
"${D%/}${MY_MANDIR}"/man1/wine{dump,maker}.1 || die
fi
 
-   # Remove wineconsole if neither backend is installed #551124
-   if ! use X; then
-   rm "${D%/}${MY_PREFIX}"/bin/wineconsole* || die
-   rm "${D%/}${MY_MANDIR}"/man1/wineconsole* || die
-
-   if ! use mingw; then
-   rm_wineconsole() {
-   rm 
"${D%/}/usr/$(get_libdir)/wine-${WINE_VARIANT}"/wine/{,fakedlls/}wineconsole.exe*
 || die
-   }
-   else
-   rm_wineconsole() {
-   rm 
"${D%/}/usr/$(get_libdir)/wine-${WINE_VARIANT}"/wine/wineconsole.exe* || die
-   }
-   fi
-
-   multilib_foreach_abi rm_wineconsole
-   fi
-
use abi_x86_32 && pax-mark psmr 
"${D%/}${MY_PREFIX}"/bin/wine{,-preloader} #255055
use abi_x86_64 && pax-mark psmr 
"${D%/}${MY_PREFIX}"/bin/wine64{,-preloader}
 



[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-vanilla/

2021-09-03 Thread Jimi Huotari
commit: 65afdec0642178ecdfca890b3b35045d25ab7fba
Author: Jimi Huotari  gentoo  org>
AuthorDate: Fri Sep  3 11:33:04 2021 +
Commit: Jimi Huotari  gentoo  org>
CommitDate: Fri Sep  3 11:33:04 2021 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=65afdec0

app-emulation/wine-vanilla: remove removal of wineconsole

The  versions got left out from the bunch...

Package-Manager: Portage-3.0.22, Repoman-3.0.3
Signed-off-by: Jimi Huotari  gentoo.org>

 app-emulation/wine-vanilla/wine-vanilla-.ebuild | 18 --
 1 file changed, 18 deletions(-)

diff --git a/app-emulation/wine-vanilla/wine-vanilla-.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-.ebuild
index 7b3156c..70c9eed 100644
--- a/app-emulation/wine-vanilla/wine-vanilla-.ebuild
+++ b/app-emulation/wine-vanilla/wine-vanilla-.ebuild
@@ -498,24 +498,6 @@ multilib_src_install_all() {
"${D%/}${MY_MANDIR}"/man1/wine{dump,maker}.1 || die
fi
 
-   # Remove wineconsole if neither backend is installed #551124
-   if ! use X; then
-   rm "${D%/}${MY_PREFIX}"/bin/wineconsole* || die
-   rm "${D%/}${MY_MANDIR}"/man1/wineconsole* || die
-
-   if ! use mingw; then
-   rm_wineconsole() {
-   rm 
"${D%/}/usr/$(get_libdir)/wine-${WINE_VARIANT}"/wine/{,fakedlls/}wineconsole.exe*
 || die
-   }
-   else
-   rm_wineconsole() {
-   rm 
"${D%/}/usr/$(get_libdir)/wine-${WINE_VARIANT}"/wine/wineconsole.exe* || die
-   }
-   fi
-
-   multilib_foreach_abi rm_wineconsole
-   fi
-
use abi_x86_32 && pax-mark psmr 
"${D%/}${MY_PREFIX}"/bin/wine{,-preloader} #255055
use abi_x86_64 && pax-mark psmr 
"${D%/}${MY_PREFIX}"/bin/wine64{,-preloader}
 



[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-vanilla/

2021-09-03 Thread Jimi Huotari
commit: 447fccda775f8975614a8449661bade99ac1d5f0
Author: Jimi Huotari  gentoo  org>
AuthorDate: Fri Sep  3 10:43:02 2021 +
Commit: Jimi Huotari  gentoo  org>
CommitDate: Fri Sep  3 10:43:02 2021 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=447fccda

app-emulation/wine-vanilla: remove removal of wineconsole

The path has changed since release 6.8, and while it could be fixed,
at this time, removing wineconsole might do more harm than good.

Bug: https://bugs.gentoo.org/551124
Bug: https://bugs.gentoo.org/757999
Package-Manager: Portage-3.0.22, Repoman-3.0.3
Signed-off-by: Jimi Huotari  gentoo.org>

 app-emulation/wine-vanilla/wine-vanilla-6.10.ebuild | 18 --
 app-emulation/wine-vanilla/wine-vanilla-6.11.ebuild | 18 --
 app-emulation/wine-vanilla/wine-vanilla-6.12.ebuild | 18 --
 app-emulation/wine-vanilla/wine-vanilla-6.13.ebuild | 18 --
 app-emulation/wine-vanilla/wine-vanilla-6.14.ebuild | 18 --
 app-emulation/wine-vanilla/wine-vanilla-6.15.ebuild | 18 --
 app-emulation/wine-vanilla/wine-vanilla-6.16.ebuild | 18 --
 app-emulation/wine-vanilla/wine-vanilla-6.8.ebuild  | 18 --
 app-emulation/wine-vanilla/wine-vanilla-6.9.ebuild  | 18 --
 9 files changed, 162 deletions(-)

diff --git a/app-emulation/wine-vanilla/wine-vanilla-6.10.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-6.10.ebuild
index bb5fbdb..cd88ea4 100644
--- a/app-emulation/wine-vanilla/wine-vanilla-6.10.ebuild
+++ b/app-emulation/wine-vanilla/wine-vanilla-6.10.ebuild
@@ -499,24 +499,6 @@ multilib_src_install_all() {
"${D%/}${MY_MANDIR}"/man1/wine{dump,maker}.1 || die
fi
 
-   # Remove wineconsole if neither backend is installed #551124
-   if ! use X; then
-   rm "${D%/}${MY_PREFIX}"/bin/wineconsole* || die
-   rm "${D%/}${MY_MANDIR}"/man1/wineconsole* || die
-
-   if ! use mingw; then
-   rm_wineconsole() {
-   rm 
"${D%/}/usr/$(get_libdir)/wine-${WINE_VARIANT}"/wine/{,fakedlls/}wineconsole.exe*
 || die
-   }
-   else
-   rm_wineconsole() {
-   rm 
"${D%/}/usr/$(get_libdir)/wine-${WINE_VARIANT}"/wine/wineconsole.exe* || die
-   }
-   fi
-
-   multilib_foreach_abi rm_wineconsole
-   fi
-
use abi_x86_32 && pax-mark psmr 
"${D%/}${MY_PREFIX}"/bin/wine{,-preloader} #255055
use abi_x86_64 && pax-mark psmr 
"${D%/}${MY_PREFIX}"/bin/wine64{,-preloader}
 

diff --git a/app-emulation/wine-vanilla/wine-vanilla-6.11.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-6.11.ebuild
index bb5fbdb..cd88ea4 100644
--- a/app-emulation/wine-vanilla/wine-vanilla-6.11.ebuild
+++ b/app-emulation/wine-vanilla/wine-vanilla-6.11.ebuild
@@ -499,24 +499,6 @@ multilib_src_install_all() {
"${D%/}${MY_MANDIR}"/man1/wine{dump,maker}.1 || die
fi
 
-   # Remove wineconsole if neither backend is installed #551124
-   if ! use X; then
-   rm "${D%/}${MY_PREFIX}"/bin/wineconsole* || die
-   rm "${D%/}${MY_MANDIR}"/man1/wineconsole* || die
-
-   if ! use mingw; then
-   rm_wineconsole() {
-   rm 
"${D%/}/usr/$(get_libdir)/wine-${WINE_VARIANT}"/wine/{,fakedlls/}wineconsole.exe*
 || die
-   }
-   else
-   rm_wineconsole() {
-   rm 
"${D%/}/usr/$(get_libdir)/wine-${WINE_VARIANT}"/wine/wineconsole.exe* || die
-   }
-   fi
-
-   multilib_foreach_abi rm_wineconsole
-   fi
-
use abi_x86_32 && pax-mark psmr 
"${D%/}${MY_PREFIX}"/bin/wine{,-preloader} #255055
use abi_x86_64 && pax-mark psmr 
"${D%/}${MY_PREFIX}"/bin/wine64{,-preloader}
 

diff --git a/app-emulation/wine-vanilla/wine-vanilla-6.12.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-6.12.ebuild
index 5fac9b3..45791b7 100644
--- a/app-emulation/wine-vanilla/wine-vanilla-6.12.ebuild
+++ b/app-emulation/wine-vanilla/wine-vanilla-6.12.ebuild
@@ -500,24 +500,6 @@ multilib_src_install_all() {
"${D%/}${MY_MANDIR}"/man1/wine{dump,maker}.1 || die
fi
 
-   # Remove wineconsole if neither backend is installed #551124
-   if ! use X; then
-   rm "${D%/}${MY_PREFIX}"/bin/wineconsole* || die
-   rm "${D%/}${MY_MANDIR}"/man1/wineconsole* || die
-
-   if ! use mingw; then
-   rm_wineconsole() {
-   rm 
"${D%/}/usr/$(get_libdir)/wine-${WINE_VARIANT}"/wine/{,fakedlls/}wineconsole.exe*
 || die
-   }
-   else
-   rm_wineconsole() {
- 

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-staging/

2021-09-03 Thread Jimi Huotari
commit: ac0bc5018440b22a10921bb7fc9429ebef2a982c
Author: Jimi Huotari  gentoo  org>
AuthorDate: Fri Sep  3 10:47:58 2021 +
Commit: Jimi Huotari  gentoo  org>
CommitDate: Fri Sep  3 10:47:58 2021 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=ac0bc501

app-emulation/wine-staging: remove removal of wineconsole

The path has changed since release 6.8, and while it could be fixed,
at this time, removing wineconsole might do more harm than good.

Bug: https://bugs.gentoo.org/551124
Bug: https://bugs.gentoo.org/757999
Package-Manager: Portage-3.0.22, Repoman-3.0.3
Signed-off-by: Jimi Huotari  gentoo.org>

 app-emulation/wine-staging/wine-staging-6.10.ebuild | 18 --
 app-emulation/wine-staging/wine-staging-6.11.ebuild | 18 --
 app-emulation/wine-staging/wine-staging-6.12.ebuild | 18 --
 app-emulation/wine-staging/wine-staging-6.13.ebuild | 18 --
 app-emulation/wine-staging/wine-staging-6.14.ebuild | 18 --
 app-emulation/wine-staging/wine-staging-6.15.ebuild | 18 --
 app-emulation/wine-staging/wine-staging-6.16.ebuild | 18 --
 app-emulation/wine-staging/wine-staging-6.8.ebuild  | 18 --
 app-emulation/wine-staging/wine-staging-6.9.ebuild  | 18 --
 9 files changed, 162 deletions(-)

diff --git a/app-emulation/wine-staging/wine-staging-6.10.ebuild 
b/app-emulation/wine-staging/wine-staging-6.10.ebuild
index a1637bb..ae8c5c3 100644
--- a/app-emulation/wine-staging/wine-staging-6.10.ebuild
+++ b/app-emulation/wine-staging/wine-staging-6.10.ebuild
@@ -579,24 +579,6 @@ multilib_src_install_all() {
"${D%/}${MY_MANDIR}"/man1/wine{dump,maker}.1 || die
fi
 
-   # Remove wineconsole if neither backend is installed #551124
-   if ! use X; then
-   rm "${D%/}${MY_PREFIX}"/bin/wineconsole* || die
-   rm "${D%/}${MY_MANDIR}"/man1/wineconsole* || die
-
-   if ! use mingw; then
-   rm_wineconsole() {
-   rm 
"${D%/}/usr/$(get_libdir)/wine-${WINE_VARIANT}"/wine/{,fakedlls/}wineconsole.exe*
 || die
-   }
-   else
-   rm_wineconsole() {
-   rm 
"${D%/}/usr/$(get_libdir)/wine-${WINE_VARIANT}"/wine/wineconsole.exe* || die
-   }
-   fi
-
-   multilib_foreach_abi rm_wineconsole
-   fi
-
use abi_x86_32 && pax-mark psmr 
"${D%/}${MY_PREFIX}"/bin/wine{,-preloader} #255055
use abi_x86_64 && pax-mark psmr 
"${D%/}${MY_PREFIX}"/bin/wine64{,-preloader}
 

diff --git a/app-emulation/wine-staging/wine-staging-6.11.ebuild 
b/app-emulation/wine-staging/wine-staging-6.11.ebuild
index a1637bb..ae8c5c3 100644
--- a/app-emulation/wine-staging/wine-staging-6.11.ebuild
+++ b/app-emulation/wine-staging/wine-staging-6.11.ebuild
@@ -579,24 +579,6 @@ multilib_src_install_all() {
"${D%/}${MY_MANDIR}"/man1/wine{dump,maker}.1 || die
fi
 
-   # Remove wineconsole if neither backend is installed #551124
-   if ! use X; then
-   rm "${D%/}${MY_PREFIX}"/bin/wineconsole* || die
-   rm "${D%/}${MY_MANDIR}"/man1/wineconsole* || die
-
-   if ! use mingw; then
-   rm_wineconsole() {
-   rm 
"${D%/}/usr/$(get_libdir)/wine-${WINE_VARIANT}"/wine/{,fakedlls/}wineconsole.exe*
 || die
-   }
-   else
-   rm_wineconsole() {
-   rm 
"${D%/}/usr/$(get_libdir)/wine-${WINE_VARIANT}"/wine/wineconsole.exe* || die
-   }
-   fi
-
-   multilib_foreach_abi rm_wineconsole
-   fi
-
use abi_x86_32 && pax-mark psmr 
"${D%/}${MY_PREFIX}"/bin/wine{,-preloader} #255055
use abi_x86_64 && pax-mark psmr 
"${D%/}${MY_PREFIX}"/bin/wine64{,-preloader}
 

diff --git a/app-emulation/wine-staging/wine-staging-6.12.ebuild 
b/app-emulation/wine-staging/wine-staging-6.12.ebuild
index e7e3033..0fd71a5 100644
--- a/app-emulation/wine-staging/wine-staging-6.12.ebuild
+++ b/app-emulation/wine-staging/wine-staging-6.12.ebuild
@@ -579,24 +579,6 @@ multilib_src_install_all() {
"${D%/}${MY_MANDIR}"/man1/wine{dump,maker}.1 || die
fi
 
-   # Remove wineconsole if neither backend is installed #551124
-   if ! use X; then
-   rm "${D%/}${MY_PREFIX}"/bin/wineconsole* || die
-   rm "${D%/}${MY_MANDIR}"/man1/wineconsole* || die
-
-   if ! use mingw; then
-   rm_wineconsole() {
-   rm 
"${D%/}/usr/$(get_libdir)/wine-${WINE_VARIANT}"/wine/{,fakedlls/}wineconsole.exe*
 || die
-   }
-   else
-   rm_wineconsole() {
- 

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-staging/

2021-08-28 Thread Nick Sarnie
commit: 57eb510ce3d6ec72e8aac601dd13c68256316de2
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sun Aug 29 00:51:54 2021 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sun Aug 29 00:51:54 2021 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=57eb510c

app-emulation/wine-staging: Bump to 6.16

Package-Manager: Portage-3.0.22, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-staging/Manifest|   2 +
 .../wine-staging/wine-staging-6.16.ebuild  | 663 +
 2 files changed, 665 insertions(+)

diff --git a/app-emulation/wine-staging/Manifest 
b/app-emulation/wine-staging/Manifest
index 4894757..404fdaf 100644
--- a/app-emulation/wine-staging/Manifest
+++ b/app-emulation/wine-staging/Manifest
@@ -58,6 +58,7 @@ DIST wine-6.12.tar.xz 24666960 BLAKE2B 
d8f33ac0d15977c1e0c206662c370feac351c7399
 DIST wine-6.13.tar.xz 24704408 BLAKE2B 
abd79fd0d2a364fd6b7c2713924ad9883cf62e0febd7653984ce7520f41eaad71c06e0874ff46343ac7c253abb7d5e026b878dcf40235918f075e2bf7da0b8da
 SHA512 
7e1a16873f1a160960e44a38c7af743ea3a10bc545c5724745733d14093188134b74a4f60fbc54f38546b0ed053209b67e35ea131a9cda58ec8041855100c5ee
 DIST wine-6.14.tar.xz 24721316 BLAKE2B 
3965d4071006a54f595baf329c1b238c4faa506d60597cfb5f8ccb127b9881d34d66e89cbdeff0d05a5e4a203a541edea8953565e2edf464ce4d2bfbf5e7a437
 SHA512 
261858dcf11604a6078b39faf64bd05288194647f8397efe03abcda1934ec5452e18f85dbb269e728ef532ac8ad39af5bbf5d8603f3598a20e2ef16f60405581
 DIST wine-6.15.tar.xz 24751680 BLAKE2B 
f1e8df4f6a65f5776b260edf5a12a48810b24ea668be5ef8b405b64a057a16329a30d0b295eefb8f79d378faa243c20884de543e96213ed5ee22b6c752dab028
 SHA512 
bb4420a6fb0455aaab2f45354ea470acba9feeaea07b6c2cbf8afd49a6ef97bfc794cee330ecb12fb2098994738227d149cd5685d29310bb6cd0ed25d5fdc8bf
+DIST wine-6.16.tar.xz 24789520 BLAKE2B 
473ddec26139f7fedc091e2e037a88c8bde6f4061b196995aaa7e0352969fc8920edb47754c97478468a482f1d5a9be9e2cf858061d3add183fd90ee135a6ec3
 SHA512 
83d97eefeb35ee85d6ae180056d7b0e5864a90e1c2b63b6fd77d5cd38038b4eaa1fd067e7d5c5ee56d8cd811149db23a8581e1497bc1e36f9adad1012296b96e
 DIST wine-6.2.tar.xz 24270924 BLAKE2B 
b83e7ff097d8f48cc46588a672515e8c1eafeafd592d4ced6a8347eaa33c31f9c5a2603958a10ce02463993c8ca5db77b227d0fbce452c1e3a637e5ea42cf635
 SHA512 
d28870ba58fc4ed9dc083f843d7f4ee8921722bb33e0b84c89f281fc27e5f827c0998ad629eb21c92f860dade77194d3c8a0f5b4c6ae3407fe7acef245cfa9a4
 DIST wine-6.3.tar.xz 24301496 BLAKE2B 
d36e46e369abc619d351dd3209c0c86c5e5924509fe98a9e158fd10b9ca57650b9bc20e64dc801ec1b09315ed77fd81b549ebce7f383a3f772717a2031878588
 SHA512 
20108ea5036d612e8dd61fe9254d67cad02d757ede87174ed27774e4e3537e0d1f4d67156fd430f1d01d5c68b899cb0c7b4be298d897a1ce823913efef822242
 DIST wine-6.4.tar.xz 24340220 BLAKE2B 
b09ea9237b71856184a03e64ef8cf7aa30591ebd6534a550e9365ea9ab773d81283520ca6b0efc8aa69063cdeae8da35fc22e08a40c73c6268db4d57b0442ad2
 SHA512 
f190e1b97defb4620e33d1a4e2afffd475f6b3998153c67c6d06840b4f3b93a50f88c6844de15e7f54ca712330f6fea857310861a78b961feb7f64a4869f3fe1
@@ -119,6 +120,7 @@ DIST wine-staging-6.12.1.tar.gz 9658943 BLAKE2B 
9ea46ef75f2fd42790da35631893d634
 DIST wine-staging-6.13.tar.gz 9658122 BLAKE2B 
cce777895de69df8c659f010e432ee1d1f1e13c79d5453f4460e63e2572aaa7a9c92786170707c5616a8d182138822c0c6e27897706f919daf5597f6b595e478
 SHA512 
83a40b5a344db334541d94d58d287a1b8ff616114051129db20ac6b0365004a8753ec8d77a16da54ac26400eaa3e2d147d50a5ac8e17203898eb61cb06ff1f0c
 DIST wine-staging-6.14.tar.gz 9658088 BLAKE2B 
d64bc0476b3d46b9ba812c956bb1eab1e4c3ec0dbd2145ae1f38c95ebd9b7151222e375690c1bd601f3416f362e50ea3f670e9940977005dc67623de22e82485
 SHA512 
5b4db5c1af316c8e18e2e318152a44e45521dd939e3a341dd533e819263109237c4fd0e25ee2b23bb7cc75f4c4afd7d8900b23d83f955e4ff56ee5fe7aa84fd0
 DIST wine-staging-6.15.tar.gz 9654539 BLAKE2B 
943cebf79bfe906a9dde42cfae13443059d89cd8996a2d25fad685796605a3a45b05f960c9dfb05d968ed919a23b273ecc56aa4fcd98cc38dcc45c22813d830e
 SHA512 
652e8319e4a06f64b7e4c05a139194b6b7189777632d26d79a3160447339cc5a93b42d810d8379eb7821485ccbbe8cd8e16e09e5223886027fae2f7737b8a115
+DIST wine-staging-6.16.tar.gz 9655388 BLAKE2B 
50feca959b0ff9056ed9e6f81f3dd11350391f30e4048ee6e4d4e5feaa837e31b580c22e63b6213fc77d866b362eb7922fd2c076bd9b6675abfe591a178a2d9c
 SHA512 
2789200466adaae2f4fa4afcbb6aa88619748e69a2cb39c1ac957b408c8021e2cbac7ad0b1f2e295cd87640f494e173739df076743ec0606e4b13e83d0ac2824
 DIST wine-staging-6.2.tar.gz 9820682 BLAKE2B 
3de0c0ecbdabc1ffb965e6d5ebf5689fbeaf24ee33aaa2ff078db39d1542aa935b6d4d940fef570f1c60260748f4ef52b9789625b840f73e70ed3482995d505d
 SHA512 
558c46250babaacda92885c35c438797baff7b8eb45cb3cdf7f7572c35e6412e621182061a3a4e31444cc7580f99a61de6bd433bf2bb2b8139cdd718afd9cd2e
 DIST wine-staging-6.3.tar.gz 9796930 BLAKE2B 
b24e5ec57435a0d797e4d913b027226b3c891477d9df5d098be52348dff4eb704275c7c59d09f6cbdf7f86940a0e6c96bf28f94bd703fd32d6770a31426043fc
 SHA512 

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-vanilla/

2021-08-28 Thread Nick Sarnie
commit: 010a3965d11776d323f6929eb0788c096d80f5af
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sun Aug 29 00:50:55 2021 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sun Aug 29 00:50:55 2021 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=010a3965

app-emulation/wine-vanilla: Bump to 6.16

Package-Manager: Portage-3.0.22, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-vanilla/Manifest|   1 +
 .../wine-vanilla/wine-vanilla-6.16.ebuild  | 576 +
 2 files changed, 577 insertions(+)

diff --git a/app-emulation/wine-vanilla/Manifest 
b/app-emulation/wine-vanilla/Manifest
index 4aa0e14..85181ae 100644
--- a/app-emulation/wine-vanilla/Manifest
+++ b/app-emulation/wine-vanilla/Manifest
@@ -64,6 +64,7 @@ DIST wine-6.12.tar.xz 24666960 BLAKE2B 
d8f33ac0d15977c1e0c206662c370feac351c7399
 DIST wine-6.13.tar.xz 24704408 BLAKE2B 
abd79fd0d2a364fd6b7c2713924ad9883cf62e0febd7653984ce7520f41eaad71c06e0874ff46343ac7c253abb7d5e026b878dcf40235918f075e2bf7da0b8da
 SHA512 
7e1a16873f1a160960e44a38c7af743ea3a10bc545c5724745733d14093188134b74a4f60fbc54f38546b0ed053209b67e35ea131a9cda58ec8041855100c5ee
 DIST wine-6.14.tar.xz 24721316 BLAKE2B 
3965d4071006a54f595baf329c1b238c4faa506d60597cfb5f8ccb127b9881d34d66e89cbdeff0d05a5e4a203a541edea8953565e2edf464ce4d2bfbf5e7a437
 SHA512 
261858dcf11604a6078b39faf64bd05288194647f8397efe03abcda1934ec5452e18f85dbb269e728ef532ac8ad39af5bbf5d8603f3598a20e2ef16f60405581
 DIST wine-6.15.tar.xz 24751680 BLAKE2B 
f1e8df4f6a65f5776b260edf5a12a48810b24ea668be5ef8b405b64a057a16329a30d0b295eefb8f79d378faa243c20884de543e96213ed5ee22b6c752dab028
 SHA512 
bb4420a6fb0455aaab2f45354ea470acba9feeaea07b6c2cbf8afd49a6ef97bfc794cee330ecb12fb2098994738227d149cd5685d29310bb6cd0ed25d5fdc8bf
+DIST wine-6.16.tar.xz 24789520 BLAKE2B 
473ddec26139f7fedc091e2e037a88c8bde6f4061b196995aaa7e0352969fc8920edb47754c97478468a482f1d5a9be9e2cf858061d3add183fd90ee135a6ec3
 SHA512 
83d97eefeb35ee85d6ae180056d7b0e5864a90e1c2b63b6fd77d5cd38038b4eaa1fd067e7d5c5ee56d8cd811149db23a8581e1497bc1e36f9adad1012296b96e
 DIST wine-6.2.tar.xz 24270924 BLAKE2B 
b83e7ff097d8f48cc46588a672515e8c1eafeafd592d4ced6a8347eaa33c31f9c5a2603958a10ce02463993c8ca5db77b227d0fbce452c1e3a637e5ea42cf635
 SHA512 
d28870ba58fc4ed9dc083f843d7f4ee8921722bb33e0b84c89f281fc27e5f827c0998ad629eb21c92f860dade77194d3c8a0f5b4c6ae3407fe7acef245cfa9a4
 DIST wine-6.3.tar.xz 24301496 BLAKE2B 
d36e46e369abc619d351dd3209c0c86c5e5924509fe98a9e158fd10b9ca57650b9bc20e64dc801ec1b09315ed77fd81b549ebce7f383a3f772717a2031878588
 SHA512 
20108ea5036d612e8dd61fe9254d67cad02d757ede87174ed27774e4e3537e0d1f4d67156fd430f1d01d5c68b899cb0c7b4be298d897a1ce823913efef822242
 DIST wine-6.4.tar.xz 24340220 BLAKE2B 
b09ea9237b71856184a03e64ef8cf7aa30591ebd6534a550e9365ea9ab773d81283520ca6b0efc8aa69063cdeae8da35fc22e08a40c73c6268db4d57b0442ad2
 SHA512 
f190e1b97defb4620e33d1a4e2afffd475f6b3998153c67c6d06840b4f3b93a50f88c6844de15e7f54ca712330f6fea857310861a78b961feb7f64a4869f3fe1

diff --git a/app-emulation/wine-vanilla/wine-vanilla-6.16.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-6.16.ebuild
new file mode 100644
index 000..7b3156c
--- /dev/null
+++ b/app-emulation/wine-vanilla/wine-vanilla-6.16.ebuild
@@ -0,0 +1,576 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PLOCALES="ar ast bg ca cs da de el en en_US eo es fa fi fr he hi hr hu it ja 
ko lt ml nb_NO nl or pa pl pt_BR pt_PT rm ro ru si sk sl sr_RS@cyrillic 
sr_RS@latin sv ta te th tr uk wa zh_CN zh_TW"
+PLOCALE_BACKUP="en"
+
+inherit autotools eapi7-ver estack eutils flag-o-matic gnome2-utils multilib 
multilib-minimal pax-utils plocale toolchain-funcs virtualx xdg-utils
+
+MY_PN="${PN%%-*}"
+MY_P="${MY_PN}-${PV}"
+
+if [[ ${PV} == "" ]] ; then
+   EGIT_REPO_URI="https://source.winehq.org/git/wine.git;
+   EGIT_BRANCH="master"
+   inherit git-r3
+   SRC_URI=""
+   #KEYWORDS=""
+else
+   MAJOR_V=$(ver_cut 1)
+   SRC_URI="https://dl.winehq.org/wine/source/${MAJOR_V}.x/${MY_P}.tar.xz;
+   KEYWORDS="-* ~amd64 ~x86"
+fi
+S="${WORKDIR}/${MY_P}"
+
+GWP_V="20200523"
+PATCHDIR="${WORKDIR}/gentoo-wine-patches"
+
+DESCRIPTION="Free implementation of Windows(tm) on Unix, without external 
patchsets"
+HOMEPAGE="https://www.winehq.org/;
+SRC_URI="${SRC_URI}
+   
https://dev.gentoo.org/~sarnex/distfiles/wine/gentoo-wine-patches-${GWP_V}.tar.xz
+"
+
+LICENSE="LGPL-2.1"
+SLOT="${PV}"
+IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos elibc_glibc 
+faudio +fontconfig +gecko gphoto2 gsm gssapi gstreamer +jpeg kerberos 
kernel_FreeBSD +lcms ldap mingw +mono mp3 netapi nls odbc openal opencl +opengl 
osmesa oss +perl pcap +png prelink pulseaudio +realtime +run-exes samba scanner 
sdl selinux +ssl test +threads +truetype udev +udisks +unwind usb v4l vkd3d 
vulkan +X +xcomposite xinerama +xml"
+REQUIRED_USE="|| ( 

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/winetricks/

2021-08-25 Thread Jimi Huotari
commit: 6d23c87a055fff4d6e8aaa40a34a8574dae054f0
Author: Jimi Huotari  gentoo  org>
AuthorDate: Wed Aug 25 18:29:44 2021 +
Commit: Jimi Huotari  gentoo  org>
CommitDate: Wed Aug 25 18:29:44 2021 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=6d23c87a

app-emulation/winetricks: add version 20210825

Package-Manager: Portage-3.0.22, Repoman-3.0.3
Signed-off-by: Jimi Huotari  gentoo.org>

 app-emulation/winetricks/Manifest  |  1 +
 .../winetricks/winetricks-20210825.ebuild  | 91 ++
 2 files changed, 92 insertions(+)

diff --git a/app-emulation/winetricks/Manifest 
b/app-emulation/winetricks/Manifest
index 0e90059..23eabc5 100644
--- a/app-emulation/winetricks/Manifest
+++ b/app-emulation/winetricks/Manifest
@@ -1,2 +1,3 @@
 DIST winetricks-20210206.tar.gz 690837 BLAKE2B 
a1d068e9659f6b176873af49994f1e0ca884eaa1ac9b8f5dd6d7abe79a2b8b827a2334efa7862547b17cca5bcfc285ce2d65ac0e5736cddcc777d4df2dbc7af9
 SHA512 
57f2ce5fe531eb6ee9a578ca565fadf5ef2e6e1379abee640ee9dc0d6000c92ce983c7507002bc6ace613d6d0dd03260ede11f7bf267adf19eb67900a0449f58
+DIST winetricks-20210825.tar.gz 689728 BLAKE2B 
32fc9639f215180e03c79d55359c7aa005c005ed6a3a21916de7172dc541994a786b64f8323034b3e43e0619569b39f79dc98830546db1d684badf96cdb898c4
 SHA512 
b9eb61a0bfe4001cb23f41f3b4707333be81660372347b5e8fe887fe1e2278bd5e2b91e0c5ddd73010652902a8985f0e253792c8769216de397ca75fac8b0c81
 DIST winetricks-gentoo-2012.11.24.tar.bz2 6398 BLAKE2B 
54a4502f6e8ef15d21b02c43e3ce599e32d476c2559246064de14cc4ce2243ff11dde681d24c8a7f4913c3d7a10b855bda47e8fb8ecad31e00d839705416be6f
 SHA512 
59c93b73f3a7b2d11aefcde2ff66659ff1de21ad4b5f232f4b60572f3a48b15a6c49f369b1696862bf1b33fde190bf5598945e9536fb41ddec42d8def4d2be2a

diff --git a/app-emulation/winetricks/winetricks-20210825.ebuild 
b/app-emulation/winetricks/winetricks-20210825.ebuild
new file mode 100644
index 000..89dcbb5
--- /dev/null
+++ b/app-emulation/winetricks/winetricks-20210825.ebuild
@@ -0,0 +1,91 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit xdg
+
+if [[ ${PV} == "" ]] ; then
+   EGIT_REPO_URI="https://github.com/Winetricks/${PN}.git;
+   inherit git-r3
+   SRC_URI=""
+else
+   SRC_URI="https://github.com/Winetricks/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~amd64 ~x86"
+fi
+
+wtg="winetricks-gentoo-2012.11.24"
+
+SRC_URI="${SRC_URI}
+   gtk? ( https://dev.gentoo.org/~chiitoo/distfiles/${wtg}.tar.bz2 )
+   kde? ( https://dev.gentoo.org/~chiitoo/distfiles/${wtg}.tar.bz2 )
+"
+
+DESCRIPTION="Easy way to install DLLs needed to work around problems in Wine"
+HOMEPAGE="https://github.com/Winetricks/winetricks 
https://wiki.winehq.org/Winetricks;
+
+LICENSE="LGPL-2.1+"
+SLOT="0"
+IUSE="gtk kde rar test"
+RESTRICT="!test? ( test )"
+
+# dev-util/shellcheck is not available for x86
+RESTRICT+=" x86? ( test )"
+
+BDEPEND="
+   test? (
+   dev-python/bashate
+   dev-util/checkbashisms
+   || (
+   dev-util/shellcheck-bin
+   dev-util/shellcheck
+   )
+   )
+"
+DEPEND=""
+RDEPEND="${DEPEND}
+   app-arch/cabextract
+   app-arch/p7zip
+   app-arch/unzip
+   net-misc/wget
+   virtual/wine
+   x11-misc/xdg-utils
+   gtk? ( gnome-extra/zenity )
+   kde? ( kde-apps/kdialog )
+   rar? ( app-arch/unrar )
+"
+
+# Test targets include syntax checks only, not the "heavy duty" tests
+# that would require a lot of disk space, as well as network access.
+
+# This uses a non-standard "Wine" category, which is provided by
+# '/etc/xdg/menus/applications-merged/wine.menu' from the
+# 'app-emulation/wine-desktop-common' package.
+# https://bugs.gentoo.org/451552
+QA_DESKTOP_FILE="usr/share/applications/winetricks.desktop"
+
+src_unpack() {
+   if [[ ${PV} == "" ]]; then
+   git-r3_src_unpack
+
+   if use gtk || use kde; then
+   unpack ${wtg}.tar.bz2
+   fi
+
+   else
+   default
+   fi
+}
+
+src_test() {
+   ./tests/shell-checks || die "Test(s) failed."
+}
+
+src_install() {
+   default
+
+   if ! use gtk && ! use kde; then
+   rm -r "${ED}"/usr/share/applications || die
+   rm -r "${ED}"/usr/share/icons || die
+   fi
+}



[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-vanilla/

2021-08-15 Thread Nick Sarnie
commit: 83ceaff732ed14486e5fe172de80b36c4d6668ae
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sun Aug 15 14:38:29 2021 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sun Aug 15 14:38:29 2021 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=83ceaff7

app-emulation/wine-vanilla: Bump to 6.15

Closes: https://bugs.gentoo.org/808249
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-vanilla/Manifest  | 1 +
 .../wine-vanilla/{wine-vanilla-.ebuild => wine-vanilla-6.15.ebuild}  | 1 -
 app-emulation/wine-vanilla/wine-vanilla-.ebuild  | 1 -
 3 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/app-emulation/wine-vanilla/Manifest 
b/app-emulation/wine-vanilla/Manifest
index adc988b..4aa0e14 100644
--- a/app-emulation/wine-vanilla/Manifest
+++ b/app-emulation/wine-vanilla/Manifest
@@ -63,6 +63,7 @@ DIST wine-6.11.tar.xz 24599644 BLAKE2B 
47b8eefadd59e649ac331ee236b90dfffd86ea812
 DIST wine-6.12.tar.xz 24666960 BLAKE2B 
d8f33ac0d15977c1e0c206662c370feac351c7399c91cf5669fce50e60684ad85b40244925b4d304b540f5a78edc19b4ee32fe362250f8c390347d71320a09d8
 SHA512 
6d5646c44e656a88eb25174ce16038a8b0e1495c3deed8e959825cb26059fdda6e6519afeaeb28e4070fc5e05d7a3e1e5812ef09c31875f14f9233ba6a52f14c
 DIST wine-6.13.tar.xz 24704408 BLAKE2B 
abd79fd0d2a364fd6b7c2713924ad9883cf62e0febd7653984ce7520f41eaad71c06e0874ff46343ac7c253abb7d5e026b878dcf40235918f075e2bf7da0b8da
 SHA512 
7e1a16873f1a160960e44a38c7af743ea3a10bc545c5724745733d14093188134b74a4f60fbc54f38546b0ed053209b67e35ea131a9cda58ec8041855100c5ee
 DIST wine-6.14.tar.xz 24721316 BLAKE2B 
3965d4071006a54f595baf329c1b238c4faa506d60597cfb5f8ccb127b9881d34d66e89cbdeff0d05a5e4a203a541edea8953565e2edf464ce4d2bfbf5e7a437
 SHA512 
261858dcf11604a6078b39faf64bd05288194647f8397efe03abcda1934ec5452e18f85dbb269e728ef532ac8ad39af5bbf5d8603f3598a20e2ef16f60405581
+DIST wine-6.15.tar.xz 24751680 BLAKE2B 
f1e8df4f6a65f5776b260edf5a12a48810b24ea668be5ef8b405b64a057a16329a30d0b295eefb8f79d378faa243c20884de543e96213ed5ee22b6c752dab028
 SHA512 
bb4420a6fb0455aaab2f45354ea470acba9feeaea07b6c2cbf8afd49a6ef97bfc794cee330ecb12fb2098994738227d149cd5685d29310bb6cd0ed25d5fdc8bf
 DIST wine-6.2.tar.xz 24270924 BLAKE2B 
b83e7ff097d8f48cc46588a672515e8c1eafeafd592d4ced6a8347eaa33c31f9c5a2603958a10ce02463993c8ca5db77b227d0fbce452c1e3a637e5ea42cf635
 SHA512 
d28870ba58fc4ed9dc083f843d7f4ee8921722bb33e0b84c89f281fc27e5f827c0998ad629eb21c92f860dade77194d3c8a0f5b4c6ae3407fe7acef245cfa9a4
 DIST wine-6.3.tar.xz 24301496 BLAKE2B 
d36e46e369abc619d351dd3209c0c86c5e5924509fe98a9e158fd10b9ca57650b9bc20e64dc801ec1b09315ed77fd81b549ebce7f383a3f772717a2031878588
 SHA512 
20108ea5036d612e8dd61fe9254d67cad02d757ede87174ed27774e4e3537e0d1f4d67156fd430f1d01d5c68b899cb0c7b4be298d897a1ce823913efef822242
 DIST wine-6.4.tar.xz 24340220 BLAKE2B 
b09ea9237b71856184a03e64ef8cf7aa30591ebd6534a550e9365ea9ab773d81283520ca6b0efc8aa69063cdeae8da35fc22e08a40c73c6268db4d57b0442ad2
 SHA512 
f190e1b97defb4620e33d1a4e2afffd475f6b3998153c67c6d06840b4f3b93a50f88c6844de15e7f54ca712330f6fea857310861a78b961feb7f64a4869f3fe1

diff --git a/app-emulation/wine-vanilla/wine-vanilla-.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-6.15.ebuild
similarity index 99%
copy from app-emulation/wine-vanilla/wine-vanilla-.ebuild
copy to app-emulation/wine-vanilla/wine-vanilla-6.15.ebuild
index 6f3f1c5..7b3156c 100644
--- a/app-emulation/wine-vanilla/wine-vanilla-.ebuild
+++ b/app-emulation/wine-vanilla/wine-vanilla-6.15.ebuild
@@ -79,7 +79,6 @@ COMMON_DEPEND="
openal? ( media-libs/openal:=[${MULTILIB_USEDEP}] )
opencl? ( virtual/opencl[${MULTILIB_USEDEP}] )
opengl? (
-   virtual/glu[${MULTILIB_USEDEP}]
virtual/opengl[${MULTILIB_USEDEP}]
)
osmesa? ( >=media-libs/mesa-13[osmesa,${MULTILIB_USEDEP}] )

diff --git a/app-emulation/wine-vanilla/wine-vanilla-.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-.ebuild
index 6f3f1c5..7b3156c 100644
--- a/app-emulation/wine-vanilla/wine-vanilla-.ebuild
+++ b/app-emulation/wine-vanilla/wine-vanilla-.ebuild
@@ -79,7 +79,6 @@ COMMON_DEPEND="
openal? ( media-libs/openal:=[${MULTILIB_USEDEP}] )
opencl? ( virtual/opencl[${MULTILIB_USEDEP}] )
opengl? (
-   virtual/glu[${MULTILIB_USEDEP}]
virtual/opengl[${MULTILIB_USEDEP}]
)
osmesa? ( >=media-libs/mesa-13[osmesa,${MULTILIB_USEDEP}] )



[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-staging/

2021-08-15 Thread Nick Sarnie
commit: 6db481f82c37aaeb57a770d4776b4652c6374dc4
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sun Aug 15 14:40:49 2021 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sun Aug 15 14:40:49 2021 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=6db481f8

app-emulation/wine-staging: Bump to 6.15

Bug: https://bugs.gentoo.org/808249
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-staging/Manifest | 2 ++
 .../wine-staging/{wine-staging-.ebuild => wine-staging-6.15.ebuild} | 1 -
 app-emulation/wine-staging/wine-staging-.ebuild | 1 -
 3 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-emulation/wine-staging/Manifest 
b/app-emulation/wine-staging/Manifest
index 831809c..4894757 100644
--- a/app-emulation/wine-staging/Manifest
+++ b/app-emulation/wine-staging/Manifest
@@ -57,6 +57,7 @@ DIST wine-6.11.tar.xz 24599644 BLAKE2B 
47b8eefadd59e649ac331ee236b90dfffd86ea812
 DIST wine-6.12.tar.xz 24666960 BLAKE2B 
d8f33ac0d15977c1e0c206662c370feac351c7399c91cf5669fce50e60684ad85b40244925b4d304b540f5a78edc19b4ee32fe362250f8c390347d71320a09d8
 SHA512 
6d5646c44e656a88eb25174ce16038a8b0e1495c3deed8e959825cb26059fdda6e6519afeaeb28e4070fc5e05d7a3e1e5812ef09c31875f14f9233ba6a52f14c
 DIST wine-6.13.tar.xz 24704408 BLAKE2B 
abd79fd0d2a364fd6b7c2713924ad9883cf62e0febd7653984ce7520f41eaad71c06e0874ff46343ac7c253abb7d5e026b878dcf40235918f075e2bf7da0b8da
 SHA512 
7e1a16873f1a160960e44a38c7af743ea3a10bc545c5724745733d14093188134b74a4f60fbc54f38546b0ed053209b67e35ea131a9cda58ec8041855100c5ee
 DIST wine-6.14.tar.xz 24721316 BLAKE2B 
3965d4071006a54f595baf329c1b238c4faa506d60597cfb5f8ccb127b9881d34d66e89cbdeff0d05a5e4a203a541edea8953565e2edf464ce4d2bfbf5e7a437
 SHA512 
261858dcf11604a6078b39faf64bd05288194647f8397efe03abcda1934ec5452e18f85dbb269e728ef532ac8ad39af5bbf5d8603f3598a20e2ef16f60405581
+DIST wine-6.15.tar.xz 24751680 BLAKE2B 
f1e8df4f6a65f5776b260edf5a12a48810b24ea668be5ef8b405b64a057a16329a30d0b295eefb8f79d378faa243c20884de543e96213ed5ee22b6c752dab028
 SHA512 
bb4420a6fb0455aaab2f45354ea470acba9feeaea07b6c2cbf8afd49a6ef97bfc794cee330ecb12fb2098994738227d149cd5685d29310bb6cd0ed25d5fdc8bf
 DIST wine-6.2.tar.xz 24270924 BLAKE2B 
b83e7ff097d8f48cc46588a672515e8c1eafeafd592d4ced6a8347eaa33c31f9c5a2603958a10ce02463993c8ca5db77b227d0fbce452c1e3a637e5ea42cf635
 SHA512 
d28870ba58fc4ed9dc083f843d7f4ee8921722bb33e0b84c89f281fc27e5f827c0998ad629eb21c92f860dade77194d3c8a0f5b4c6ae3407fe7acef245cfa9a4
 DIST wine-6.3.tar.xz 24301496 BLAKE2B 
d36e46e369abc619d351dd3209c0c86c5e5924509fe98a9e158fd10b9ca57650b9bc20e64dc801ec1b09315ed77fd81b549ebce7f383a3f772717a2031878588
 SHA512 
20108ea5036d612e8dd61fe9254d67cad02d757ede87174ed27774e4e3537e0d1f4d67156fd430f1d01d5c68b899cb0c7b4be298d897a1ce823913efef822242
 DIST wine-6.4.tar.xz 24340220 BLAKE2B 
b09ea9237b71856184a03e64ef8cf7aa30591ebd6534a550e9365ea9ab773d81283520ca6b0efc8aa69063cdeae8da35fc22e08a40c73c6268db4d57b0442ad2
 SHA512 
f190e1b97defb4620e33d1a4e2afffd475f6b3998153c67c6d06840b4f3b93a50f88c6844de15e7f54ca712330f6fea857310861a78b961feb7f64a4869f3fe1
@@ -117,6 +118,7 @@ DIST wine-staging-6.11.tar.gz 9672754 BLAKE2B 
a2d77fcfe198f9c474bb754b02c3e279fa
 DIST wine-staging-6.12.1.tar.gz 9658943 BLAKE2B 
9ea46ef75f2fd42790da35631893d63471980794238862fab23f06433ecb6adbdd204de49b61f33e7600020d9b3156889709bcd58810f2f332ee890cbb17bd03
 SHA512 
d92f4e8e3cc81e9ede21135f35679d1b2de07bf75f4fd3878551cae74cdf5165c62573fd9e143458535565e21ef7f61cc413fdcef24f8958ac2de366a10a
 DIST wine-staging-6.13.tar.gz 9658122 BLAKE2B 
cce777895de69df8c659f010e432ee1d1f1e13c79d5453f4460e63e2572aaa7a9c92786170707c5616a8d182138822c0c6e27897706f919daf5597f6b595e478
 SHA512 
83a40b5a344db334541d94d58d287a1b8ff616114051129db20ac6b0365004a8753ec8d77a16da54ac26400eaa3e2d147d50a5ac8e17203898eb61cb06ff1f0c
 DIST wine-staging-6.14.tar.gz 9658088 BLAKE2B 
d64bc0476b3d46b9ba812c956bb1eab1e4c3ec0dbd2145ae1f38c95ebd9b7151222e375690c1bd601f3416f362e50ea3f670e9940977005dc67623de22e82485
 SHA512 
5b4db5c1af316c8e18e2e318152a44e45521dd939e3a341dd533e819263109237c4fd0e25ee2b23bb7cc75f4c4afd7d8900b23d83f955e4ff56ee5fe7aa84fd0
+DIST wine-staging-6.15.tar.gz 9654539 BLAKE2B 
943cebf79bfe906a9dde42cfae13443059d89cd8996a2d25fad685796605a3a45b05f960c9dfb05d968ed919a23b273ecc56aa4fcd98cc38dcc45c22813d830e
 SHA512 
652e8319e4a06f64b7e4c05a139194b6b7189777632d26d79a3160447339cc5a93b42d810d8379eb7821485ccbbe8cd8e16e09e5223886027fae2f7737b8a115
 DIST wine-staging-6.2.tar.gz 9820682 BLAKE2B 
3de0c0ecbdabc1ffb965e6d5ebf5689fbeaf24ee33aaa2ff078db39d1542aa935b6d4d940fef570f1c60260748f4ef52b9789625b840f73e70ed3482995d505d
 SHA512 
558c46250babaacda92885c35c438797baff7b8eb45cb3cdf7f7572c35e6412e621182061a3a4e31444cc7580f99a61de6bd433bf2bb2b8139cdd718afd9cd2e
 DIST wine-staging-6.3.tar.gz 9796930 BLAKE2B 

  1   2   3   4   5   6   >