[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/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/winetricks/

2021-04-16 Thread Jimi Huotari
commit: 7846dc0b1f7fac0a5f650942389f84a2f9941d80
Author: Jimi Huotari  gentoo  org>
AuthorDate: Fri Apr 16 21:06:43 2021 +
Commit: Jimi Huotari  gentoo  org>
CommitDate: Fri Apr 16 21:06:43 2021 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=7846dc0b

app-emulation/winetricks: sync keywords with ::gentoo

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

 app-emulation/winetricks/winetricks-20210206.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-emulation/winetricks/winetricks-20210206.ebuild 
b/app-emulation/winetricks/winetricks-20210206.ebuild
index 89dcbb5..60fe34b 100644
--- a/app-emulation/winetricks/winetricks-20210206.ebuild
+++ b/app-emulation/winetricks/winetricks-20210206.ebuild
@@ -11,7 +11,7 @@ if [[ ${PV} == "" ]] ; then
SRC_URI=""
 else
SRC_URI="https://github.com/Winetricks/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 ~x86"
+   KEYWORDS="amd64 x86"
 fi
 
 wtg="winetricks-gentoo-2012.11.24"



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

2021-04-16 Thread Jimi Huotari
commit: 6abe1d794b606fc39bddfe4ac37c85eb5d65a3c3
Author: Jimi Huotari  gentoo  org>
AuthorDate: Fri Apr 16 21:07:33 2021 +
Commit: Jimi Huotari  gentoo  org>
CommitDate: Fri Apr 16 21:07:33 2021 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=6abe1d79

app-emulation/winetricks: remove version 20200412

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

 app-emulation/winetricks/Manifest  |  1 -
 .../winetricks/winetricks-20200412.ebuild  | 93 --
 2 files changed, 94 deletions(-)

diff --git a/app-emulation/winetricks/Manifest 
b/app-emulation/winetricks/Manifest
index 7cc8561..0e90059 100644
--- a/app-emulation/winetricks/Manifest
+++ b/app-emulation/winetricks/Manifest
@@ -1,3 +1,2 @@
-DIST winetricks-20200412.tar.gz 684548 BLAKE2B 
e29eba0c73ec0649523dac0f0efd145a5c9fe60d94ae98bc55ec430f511cc5bdf3149d87289973a85a373f2f91c3bd5521470853e06f5ec4af83fc810aa4fdc5
 SHA512 
d6ca5628b7d296b3168ef088ca0b03aff8b73da8a139061ca64fac0685ec29bf2b7e075b89226f8ce3af511947eac45d4c72cfb1199e6b72666fc67547b77588
 DIST winetricks-20210206.tar.gz 690837 BLAKE2B 
a1d068e9659f6b176873af49994f1e0ca884eaa1ac9b8f5dd6d7abe79a2b8b827a2334efa7862547b17cca5bcfc285ce2d65ac0e5736cddcc777d4df2dbc7af9
 SHA512 
57f2ce5fe531eb6ee9a578ca565fadf5ef2e6e1379abee640ee9dc0d6000c92ce983c7507002bc6ace613d6d0dd03260ede11f7bf267adf19eb67900a0449f58
 DIST winetricks-gentoo-2012.11.24.tar.bz2 6398 BLAKE2B 
54a4502f6e8ef15d21b02c43e3ce599e32d476c2559246064de14cc4ce2243ff11dde681d24c8a7f4913c3d7a10b855bda47e8fb8ecad31e00d839705416be6f
 SHA512 
59c93b73f3a7b2d11aefcde2ff66659ff1de21ad4b5f232f4b60572f3a48b15a6c49f369b1696862bf1b33fde190bf5598945e9536fb41ddec42d8def4d2be2a

diff --git a/app-emulation/winetricks/winetricks-20200412.ebuild 
b/app-emulation/winetricks/winetricks-20200412.ebuild
deleted file mode 100644
index aa2e4ef..000
--- a/app-emulation/winetricks/winetricks-20200412.ebuild
+++ /dev/null
@@ -1,93 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit desktop 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
-   cd "${WORKDIR}/${wtg}" || die
-   domenu winetricks.desktop
-   insinto /usr/share/icons/hicolor/scalable/apps
-   doins wine-winetricks.svg
-   fi
-}



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

2021-02-22 Thread Jimi Huotari
commit: 5b58371330a4c6cf210c1a67fe3753b392ebea1f
Author: Jimi Huotari  gentoo  org>
AuthorDate: Mon Feb 22 13:22:30 2021 +
Commit: Jimi Huotari  gentoo  org>
CommitDate: Mon Feb 22 13:22:30 2021 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=5b583713

app-emulation/winetricks: add version 20210206

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

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

diff --git a/app-emulation/winetricks/Manifest 
b/app-emulation/winetricks/Manifest
index c534cd4..827a7d2 100644
--- a/app-emulation/winetricks/Manifest
+++ b/app-emulation/winetricks/Manifest
@@ -1,3 +1,4 @@
 DIST winetricks-20200412.tar.gz 684548 BLAKE2B 
e29eba0c73ec0649523dac0f0efd145a5c9fe60d94ae98bc55ec430f511cc5bdf3149d87289973a85a373f2f91c3bd5521470853e06f5ec4af83fc810aa4fdc5
 SHA512 
d6ca5628b7d296b3168ef088ca0b03aff8b73da8a139061ca64fac0685ec29bf2b7e075b89226f8ce3af511947eac45d4c72cfb1199e6b72666fc67547b77588
 DIST winetricks-20201206.tar.gz 690966 BLAKE2B 
8304d64657fdd921974f0c326bb4e0e1d859a69e573a7387c945c7dbfd20540621cc9c89718069b569309ac2358872083d651d29ddce616d1c2cf9a12ed39943
 SHA512 
6965bea9bc8bb212fe2b851a53dd144c52b37466cd0d6d6a933e4e0c16b202647f1b19804159642ce9fda566872ca51e8326e8716fafdea43cd09f24ed6b4a25
+DIST winetricks-20210206.tar.gz 690837 BLAKE2B 
a1d068e9659f6b176873af49994f1e0ca884eaa1ac9b8f5dd6d7abe79a2b8b827a2334efa7862547b17cca5bcfc285ce2d65ac0e5736cddcc777d4df2dbc7af9
 SHA512 
57f2ce5fe531eb6ee9a578ca565fadf5ef2e6e1379abee640ee9dc0d6000c92ce983c7507002bc6ace613d6d0dd03260ede11f7bf267adf19eb67900a0449f58
 DIST winetricks-gentoo-2012.11.24.tar.bz2 6398 BLAKE2B 
54a4502f6e8ef15d21b02c43e3ce599e32d476c2559246064de14cc4ce2243ff11dde681d24c8a7f4913c3d7a10b855bda47e8fb8ecad31e00d839705416be6f
 SHA512 
59c93b73f3a7b2d11aefcde2ff66659ff1de21ad4b5f232f4b60572f3a48b15a6c49f369b1696862bf1b33fde190bf5598945e9536fb41ddec42d8def4d2be2a

diff --git a/app-emulation/winetricks/winetricks-20210206.ebuild 
b/app-emulation/winetricks/winetricks-20210206.ebuild
new file mode 100644
index 000..89dcbb5
--- /dev/null
+++ b/app-emulation/winetricks/winetricks-20210206.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/winetricks/

2021-02-22 Thread Jimi Huotari
commit: 000f7755f99d72cec3da812cb142093c5c59b549
Author: Jimi Huotari  gentoo  org>
AuthorDate: Mon Feb 22 13:23:07 2021 +
Commit: Jimi Huotari  gentoo  org>
CommitDate: Mon Feb 22 13:23:07 2021 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=000f7755

app-emulation/winetricks: remove version 20201206

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

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

diff --git a/app-emulation/winetricks/Manifest 
b/app-emulation/winetricks/Manifest
index 827a7d2..7cc8561 100644
--- a/app-emulation/winetricks/Manifest
+++ b/app-emulation/winetricks/Manifest
@@ -1,4 +1,3 @@
 DIST winetricks-20200412.tar.gz 684548 BLAKE2B 
e29eba0c73ec0649523dac0f0efd145a5c9fe60d94ae98bc55ec430f511cc5bdf3149d87289973a85a373f2f91c3bd5521470853e06f5ec4af83fc810aa4fdc5
 SHA512 
d6ca5628b7d296b3168ef088ca0b03aff8b73da8a139061ca64fac0685ec29bf2b7e075b89226f8ce3af511947eac45d4c72cfb1199e6b72666fc67547b77588
-DIST winetricks-20201206.tar.gz 690966 BLAKE2B 
8304d64657fdd921974f0c326bb4e0e1d859a69e573a7387c945c7dbfd20540621cc9c89718069b569309ac2358872083d651d29ddce616d1c2cf9a12ed39943
 SHA512 
6965bea9bc8bb212fe2b851a53dd144c52b37466cd0d6d6a933e4e0c16b202647f1b19804159642ce9fda566872ca51e8326e8716fafdea43cd09f24ed6b4a25
 DIST winetricks-20210206.tar.gz 690837 BLAKE2B 
a1d068e9659f6b176873af49994f1e0ca884eaa1ac9b8f5dd6d7abe79a2b8b827a2334efa7862547b17cca5bcfc285ce2d65ac0e5736cddcc777d4df2dbc7af9
 SHA512 
57f2ce5fe531eb6ee9a578ca565fadf5ef2e6e1379abee640ee9dc0d6000c92ce983c7507002bc6ace613d6d0dd03260ede11f7bf267adf19eb67900a0449f58
 DIST winetricks-gentoo-2012.11.24.tar.bz2 6398 BLAKE2B 
54a4502f6e8ef15d21b02c43e3ce599e32d476c2559246064de14cc4ce2243ff11dde681d24c8a7f4913c3d7a10b855bda47e8fb8ecad31e00d839705416be6f
 SHA512 
59c93b73f3a7b2d11aefcde2ff66659ff1de21ad4b5f232f4b60572f3a48b15a6c49f369b1696862bf1b33fde190bf5598945e9536fb41ddec42d8def4d2be2a

diff --git a/app-emulation/winetricks/winetricks-20201206.ebuild 
b/app-emulation/winetricks/winetricks-20201206.ebuild
deleted file mode 100644
index 89dcbb5..000
--- a/app-emulation/winetricks/winetricks-20201206.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/winetricks/

2021-01-17 Thread Jimi Huotari
commit: 8f430c78960ce512620a821ca98a4af12339e595
Author: Jimi Huotari  gentoo  org>
AuthorDate: Sun Jan 17 21:35:03 2021 +
Commit: Jimi Huotari  gentoo  org>
CommitDate: Mon Jan 18 02:24:47 2021 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=8f430c78

app-emulation/winetricks: add version 20201206

Bug: https://bugs.gentoo.org/764527
Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Jimi Huotari  gentoo.org>

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

diff --git a/app-emulation/winetricks/Manifest 
b/app-emulation/winetricks/Manifest
index 2848d25..c534cd4 100644
--- a/app-emulation/winetricks/Manifest
+++ b/app-emulation/winetricks/Manifest
@@ -1,2 +1,3 @@
 DIST winetricks-20200412.tar.gz 684548 BLAKE2B 
e29eba0c73ec0649523dac0f0efd145a5c9fe60d94ae98bc55ec430f511cc5bdf3149d87289973a85a373f2f91c3bd5521470853e06f5ec4af83fc810aa4fdc5
 SHA512 
d6ca5628b7d296b3168ef088ca0b03aff8b73da8a139061ca64fac0685ec29bf2b7e075b89226f8ce3af511947eac45d4c72cfb1199e6b72666fc67547b77588
+DIST winetricks-20201206.tar.gz 690966 BLAKE2B 
8304d64657fdd921974f0c326bb4e0e1d859a69e573a7387c945c7dbfd20540621cc9c89718069b569309ac2358872083d651d29ddce616d1c2cf9a12ed39943
 SHA512 
6965bea9bc8bb212fe2b851a53dd144c52b37466cd0d6d6a933e4e0c16b202647f1b19804159642ce9fda566872ca51e8326e8716fafdea43cd09f24ed6b4a25
 DIST winetricks-gentoo-2012.11.24.tar.bz2 6398 BLAKE2B 
54a4502f6e8ef15d21b02c43e3ce599e32d476c2559246064de14cc4ce2243ff11dde681d24c8a7f4913c3d7a10b855bda47e8fb8ecad31e00d839705416be6f
 SHA512 
59c93b73f3a7b2d11aefcde2ff66659ff1de21ad4b5f232f4b60572f3a48b15a6c49f369b1696862bf1b33fde190bf5598945e9536fb41ddec42d8def4d2be2a

diff --git a/app-emulation/winetricks/winetricks-20201206.ebuild 
b/app-emulation/winetricks/winetricks-20201206.ebuild
new file mode 100644
index 000..89dcbb5
--- /dev/null
+++ b/app-emulation/winetricks/winetricks-20201206.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/winetricks/

2021-01-17 Thread Jimi Huotari
commit: 3469965598ae6ee79fb864ea8d86e6c6a0b005d2
Author: Jimi Huotari  gentoo  org>
AuthorDate: Mon Jan 18 01:05:10 2021 +
Commit: Jimi Huotari  gentoo  org>
CommitDate: Mon Jan 18 02:19:40 2021 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=34699655

app-emulation/winetricks: fix conditions for desktop and icon files

Also remove inheriting 'desktop' since it's no longer used.

Bug: https://bugs.gentoo.org/749029
Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Jimi Huotari  gentoo.org>

 app-emulation/winetricks/winetricks-.ebuild | 12 +---
 1 file changed, 5 insertions(+), 7 deletions(-)

diff --git a/app-emulation/winetricks/winetricks-.ebuild 
b/app-emulation/winetricks/winetricks-.ebuild
index 3b4cea7..89dcbb5 100644
--- a/app-emulation/winetricks/winetricks-.ebuild
+++ b/app-emulation/winetricks/winetricks-.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
-inherit desktop xdg
+inherit xdg
 
 if [[ ${PV} == "" ]] ; then
EGIT_REPO_URI="https://github.com/Winetricks/${PN}.git";
@@ -84,10 +84,8 @@ src_test() {
 src_install() {
default
 
-   if use gtk || use kde; then
-   cd "${WORKDIR}/${wtg}" || die
-   domenu winetricks.desktop
-   insinto /usr/share/icons/hicolor/scalable/apps
-   doins wine-winetricks.svg
+   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/

2020-11-16 Thread Jimi Huotari
commit: 27cb0e866d8849f38c31c04b05e6f596b83c1468
Author: Jimi Huotari  gentoo  org>
AuthorDate: Tue Nov 17 00:32:11 2020 +
Commit: Jimi Huotari  gentoo  org>
CommitDate: Tue Nov 17 00:32:11 2020 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=27cb0e86

app-emulation/winetricks: remove older versions

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

 app-emulation/winetricks/Manifest  |  2 -
 .../winetricks/winetricks-20190912.ebuild  | 86 -
 .../winetricks/winetricks-20191224.ebuild  | 88 --
 3 files changed, 176 deletions(-)

diff --git a/app-emulation/winetricks/Manifest 
b/app-emulation/winetricks/Manifest
index 23a38cf..2848d25 100644
--- a/app-emulation/winetricks/Manifest
+++ b/app-emulation/winetricks/Manifest
@@ -1,4 +1,2 @@
-DIST winetricks-20190912.tar.gz 679544 BLAKE2B 
633c407f8560fa3aa38806befded957d0bf1276164483b08fb3ef285fe873531d6362ae6305f5a33a85891d75990e6e0271fe954358e49425c4f36f0f918f48d
 SHA512 
a0017cc08c56a511e523116daf2024b1462460d00b3d07de87720c7912dccab3d953db3653d7d611c5ae3b457a45de8d36688ee703e805c1e1f5be5c0fa7739f
-DIST winetricks-20191224.tar.gz 683074 BLAKE2B 
53e89f57883c7527e083610d4ea036887cc8e058d281ee77b0e8fd7dec8520bcd27d5d86f6cadfa5d11bc191a33571086128e6729642e7f302dc37e27b1ce402
 SHA512 
31c0866e78d866e569da6c1123af7823a07b6358a79fcba84296938d89a39447ec9f504ca524471abc74ec2e3b24024bbc8a579413b4fe0ee74b1d5612f5d41a
 DIST winetricks-20200412.tar.gz 684548 BLAKE2B 
e29eba0c73ec0649523dac0f0efd145a5c9fe60d94ae98bc55ec430f511cc5bdf3149d87289973a85a373f2f91c3bd5521470853e06f5ec4af83fc810aa4fdc5
 SHA512 
d6ca5628b7d296b3168ef088ca0b03aff8b73da8a139061ca64fac0685ec29bf2b7e075b89226f8ce3af511947eac45d4c72cfb1199e6b72666fc67547b77588
 DIST winetricks-gentoo-2012.11.24.tar.bz2 6398 BLAKE2B 
54a4502f6e8ef15d21b02c43e3ce599e32d476c2559246064de14cc4ce2243ff11dde681d24c8a7f4913c3d7a10b855bda47e8fb8ecad31e00d839705416be6f
 SHA512 
59c93b73f3a7b2d11aefcde2ff66659ff1de21ad4b5f232f4b60572f3a48b15a6c49f369b1696862bf1b33fde190bf5598945e9536fb41ddec42d8def4d2be2a

diff --git a/app-emulation/winetricks/winetricks-20190912.ebuild 
b/app-emulation/winetricks/winetricks-20190912.ebuild
deleted file mode 100644
index dab00ad..000
--- a/app-emulation/winetricks/winetricks-20190912.ebuild
+++ /dev/null
@@ -1,86 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit desktop 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"
-
-BDEPEND="
-   test? (
-   dev-python/bashate
-   dev-util/checkbashisms
-   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
-   cd "${WORKDIR}/${wtg}" || die
-   domenu winetricks.desktop
-   insinto /usr/share/icons/hicolor/scalable/apps
-   doins wine-winetricks.svg
-   fi
-}

diff --git a/app-emulation/winetricks/winetricks-20191224.ebuild 
b/app-emulation/winetricks/winetricks-20191224.ebuild
deleted file mode 100644
index 2a88c5a..000
--- a/app-emulation/winetricks/winetricks-20191224.ebuild
+++ /dev/null
@@ -1,88 +0,0 @@
-#

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

2020-11-16 Thread Jimi Huotari
commit: 4b3efd4392694bd62a5dce5a5220147bc48b80ce
Author: Jimi Huotari  gentoo  org>
AuthorDate: Tue Nov 17 00:25:38 2020 +
Commit: Jimi Huotari  gentoo  org>
CommitDate: Tue Nov 17 00:31:09 2020 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=4b3efd43

app-emulation/winetricks: sync with ::gentoo

Update stable status on 20200412, and add a shellcheck restriction
for x86.

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

 app-emulation/winetricks/winetricks-20200412.ebuild | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/app-emulation/winetricks/winetricks-20200412.ebuild 
b/app-emulation/winetricks/winetricks-20200412.ebuild
index 380da37..aa2e4ef 100644
--- a/app-emulation/winetricks/winetricks-20200412.ebuild
+++ b/app-emulation/winetricks/winetricks-20200412.ebuild
@@ -11,7 +11,7 @@ if [[ ${PV} == "" ]] ; then
SRC_URI=""
 else
SRC_URI="https://github.com/Winetricks/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 ~x86"
+   KEYWORDS="amd64 x86"
 fi
 
 wtg="winetricks-gentoo-2012.11.24"
@@ -29,6 +29,9 @@ 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



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

2020-11-16 Thread Jimi Huotari
commit: 302380f3ebeb69fbbf815c702403dcdf19704150
Author: Jimi Huotari  gentoo  org>
AuthorDate: Tue Nov 17 00:29:42 2020 +
Commit: Jimi Huotari  gentoo  org>
CommitDate: Tue Nov 17 00:30:59 2020 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=302380f3

app-emulation/winetricks: restrict shellcheck tests on x86

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

 app-emulation/winetricks/winetricks-.ebuild | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/app-emulation/winetricks/winetricks-.ebuild 
b/app-emulation/winetricks/winetricks-.ebuild
index 380da37..3b4cea7 100644
--- a/app-emulation/winetricks/winetricks-.ebuild
+++ b/app-emulation/winetricks/winetricks-.ebuild
@@ -29,6 +29,9 @@ 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



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

2020-06-30 Thread Jimi Huotari
commit: ce4366c9671d979fc3322e7d83cccd4a81b1ad2a
Author: Jimi Huotari  gentoo  org>
AuthorDate: Thu Jun 25 17:27:25 2020 +
Commit: Jimi Huotari  gentoo  org>
CommitDate: Thu Jun 25 17:28:20 2020 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=ce4366c9

app-emulation/winetricks: add 'dev-util/shellcheck-bin' as an option

Reported-by: Jannik Glückert  gmail.com>
Bug: https://bugs.gentoo.org/727540
Package-Manager: Portage-2.3.102, Repoman-2.3.23
Signed-off-by: Jimi Huotari  gentoo.org>

 app-emulation/winetricks/winetricks-20200412.ebuild | 5 -
 app-emulation/winetricks/winetricks-.ebuild | 7 +--
 2 files changed, 9 insertions(+), 3 deletions(-)

diff --git a/app-emulation/winetricks/winetricks-20200412.ebuild 
b/app-emulation/winetricks/winetricks-20200412.ebuild
index a35bc33..380da37 100644
--- a/app-emulation/winetricks/winetricks-20200412.ebuild
+++ b/app-emulation/winetricks/winetricks-20200412.ebuild
@@ -33,7 +33,10 @@ BDEPEND="
test? (
dev-python/bashate
dev-util/checkbashisms
-   dev-util/shellcheck
+   || (
+   dev-util/shellcheck-bin
+   dev-util/shellcheck
+   )
)
 "
 DEPEND=""

diff --git a/app-emulation/winetricks/winetricks-.ebuild 
b/app-emulation/winetricks/winetricks-.ebuild
index b189cfc..380da37 100644
--- a/app-emulation/winetricks/winetricks-.ebuild
+++ b/app-emulation/winetricks/winetricks-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -33,7 +33,10 @@ BDEPEND="
test? (
dev-python/bashate
dev-util/checkbashisms
-   dev-util/shellcheck
+   || (
+   dev-util/shellcheck-bin
+   dev-util/shellcheck
+   )
)
 "
 DEPEND=""



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

2020-04-15 Thread Jimi Huotari
commit: 6ded90b97171c0d2a2d99e479f1dd4b157a7c323
Author: Jimi Huotari  gentoo  org>
AuthorDate: Wed Apr 15 12:36:37 2020 +
Commit: Jimi Huotari  gentoo  org>
CommitDate: Wed Apr 15 12:36:37 2020 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=6ded90b9

app-emulation/winetricks: add version 20200412

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

 app-emulation/winetricks/Manifest  |  1 +
 .../winetricks/winetricks-20200412.ebuild  | 87 ++
 2 files changed, 88 insertions(+)

diff --git a/app-emulation/winetricks/Manifest 
b/app-emulation/winetricks/Manifest
index 3e226af..23a38cf 100644
--- a/app-emulation/winetricks/Manifest
+++ b/app-emulation/winetricks/Manifest
@@ -1,3 +1,4 @@
 DIST winetricks-20190912.tar.gz 679544 BLAKE2B 
633c407f8560fa3aa38806befded957d0bf1276164483b08fb3ef285fe873531d6362ae6305f5a33a85891d75990e6e0271fe954358e49425c4f36f0f918f48d
 SHA512 
a0017cc08c56a511e523116daf2024b1462460d00b3d07de87720c7912dccab3d953db3653d7d611c5ae3b457a45de8d36688ee703e805c1e1f5be5c0fa7739f
 DIST winetricks-20191224.tar.gz 683074 BLAKE2B 
53e89f57883c7527e083610d4ea036887cc8e058d281ee77b0e8fd7dec8520bcd27d5d86f6cadfa5d11bc191a33571086128e6729642e7f302dc37e27b1ce402
 SHA512 
31c0866e78d866e569da6c1123af7823a07b6358a79fcba84296938d89a39447ec9f504ca524471abc74ec2e3b24024bbc8a579413b4fe0ee74b1d5612f5d41a
+DIST winetricks-20200412.tar.gz 684548 BLAKE2B 
e29eba0c73ec0649523dac0f0efd145a5c9fe60d94ae98bc55ec430f511cc5bdf3149d87289973a85a373f2f91c3bd5521470853e06f5ec4af83fc810aa4fdc5
 SHA512 
d6ca5628b7d296b3168ef088ca0b03aff8b73da8a139061ca64fac0685ec29bf2b7e075b89226f8ce3af511947eac45d4c72cfb1199e6b72666fc67547b77588
 DIST winetricks-gentoo-2012.11.24.tar.bz2 6398 BLAKE2B 
54a4502f6e8ef15d21b02c43e3ce599e32d476c2559246064de14cc4ce2243ff11dde681d24c8a7f4913c3d7a10b855bda47e8fb8ecad31e00d839705416be6f
 SHA512 
59c93b73f3a7b2d11aefcde2ff66659ff1de21ad4b5f232f4b60572f3a48b15a6c49f369b1696862bf1b33fde190bf5598945e9536fb41ddec42d8def4d2be2a

diff --git a/app-emulation/winetricks/winetricks-20200412.ebuild 
b/app-emulation/winetricks/winetricks-20200412.ebuild
new file mode 100644
index 000..a35bc33
--- /dev/null
+++ b/app-emulation/winetricks/winetricks-20200412.ebuild
@@ -0,0 +1,87 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit desktop 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 )"
+
+BDEPEND="
+   test? (
+   dev-python/bashate
+   dev-util/checkbashisms
+   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
+   cd "${WORKDIR}/${wtg}" || die
+   domenu winetricks.desktop
+   insinto /usr/share/icons/hicolor/scalable/apps
+   doins wine-winetricks.svg
+   fi
+}



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

2019-12-24 Thread Nick Sarnie
commit: e54635636d425a600ccdd33a471ffe0adeb18603
Author: Nick Sarnie  gentoo  org>
AuthorDate: Wed Dec 25 00:58:19 2019 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Wed Dec 25 00:58:19 2019 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=e5463563

app-emulation/winetricks: Sync with ::gentoo

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

 app-emulation/winetricks/winetricks-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-emulation/winetricks/winetricks-.ebuild 
b/app-emulation/winetricks/winetricks-.ebuild
index 35602d1..b189cfc 100644
--- a/app-emulation/winetricks/winetricks-.ebuild
+++ b/app-emulation/winetricks/winetricks-.ebuild
@@ -27,6 +27,7 @@ HOMEPAGE="https://github.com/Winetricks/winetricks 
https://wiki.winehq.org/Winet
 LICENSE="LGPL-2.1+"
 SLOT="0"
 IUSE="gtk kde rar test"
+RESTRICT="!test? ( test )"
 
 BDEPEND="
test? (
@@ -47,7 +48,6 @@ RDEPEND="${DEPEND}
kde? ( kde-apps/kdialog )
rar? ( app-arch/unrar )
 "
-RESTRICT="!test? ( test )"
 
 # Test targets include syntax checks only, not the "heavy duty" tests
 # that would require a lot of disk space, as well as network access.



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

2019-12-24 Thread Nick Sarnie
commit: 2c590eb99eeb3d988d91653a27f12d0647e16831
Author: Nick Sarnie  gentoo  org>
AuthorDate: Wed Dec 25 00:56:31 2019 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Wed Dec 25 00:56:31 2019 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=2c590eb9

app-emulation/winetricks: Fix warning again

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

 app-emulation/winetricks/winetricks-.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/app-emulation/winetricks/winetricks-.ebuild 
b/app-emulation/winetricks/winetricks-.ebuild
index 900a5b5..35602d1 100644
--- a/app-emulation/winetricks/winetricks-.ebuild
+++ b/app-emulation/winetricks/winetricks-.ebuild
@@ -47,6 +47,7 @@ RDEPEND="${DEPEND}
kde? ( kde-apps/kdialog )
rar? ( app-arch/unrar )
 "
+RESTRICT="!test? ( test )"
 
 # Test targets include syntax checks only, not the "heavy duty" tests
 # that would require a lot of disk space, as well as network access.



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

2019-12-24 Thread Nick Sarnie
commit: 7719a5458186b19d7e1b63d7dc68031e9f77dcce
Author: Nick Sarnie  gentoo  org>
AuthorDate: Wed Dec 25 00:24:46 2019 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Wed Dec 25 00:24:46 2019 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=7719a545

app-emulation/winetricks: Fix warning

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

 app-emulation/winetricks/winetricks-20191224.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/app-emulation/winetricks/winetricks-20191224.ebuild 
b/app-emulation/winetricks/winetricks-20191224.ebuild
index 900a5b5..2a88c5a 100644
--- a/app-emulation/winetricks/winetricks-20191224.ebuild
+++ b/app-emulation/winetricks/winetricks-20191224.ebuild
@@ -48,6 +48,8 @@ RDEPEND="${DEPEND}
rar? ( app-arch/unrar )
 "
 
+RESTRICT="!test? ( test )"
+
 # Test targets include syntax checks only, not the "heavy duty" tests
 # that would require a lot of disk space, as well as network access.
 



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

2019-12-24 Thread Jimi Huotari
commit: 210c9ee629ddc2d50c62e317b010869a6587ec63
Author: Jimi Huotari  gentoo  org>
AuthorDate: Tue Dec 24 21:47:49 2019 +
Commit: Jimi Huotari  gentoo  org>
CommitDate: Tue Dec 24 21:47:49 2019 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=210c9ee6

app-emulation/winetricks: add version 20191224

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

 app-emulation/winetricks/Manifest  |  1 +
 .../winetricks/winetricks-20191224.ebuild  | 86 ++
 2 files changed, 87 insertions(+)

diff --git a/app-emulation/winetricks/Manifest 
b/app-emulation/winetricks/Manifest
index 2c6ad93..3e226af 100644
--- a/app-emulation/winetricks/Manifest
+++ b/app-emulation/winetricks/Manifest
@@ -1,2 +1,3 @@
 DIST winetricks-20190912.tar.gz 679544 BLAKE2B 
633c407f8560fa3aa38806befded957d0bf1276164483b08fb3ef285fe873531d6362ae6305f5a33a85891d75990e6e0271fe954358e49425c4f36f0f918f48d
 SHA512 
a0017cc08c56a511e523116daf2024b1462460d00b3d07de87720c7912dccab3d953db3653d7d611c5ae3b457a45de8d36688ee703e805c1e1f5be5c0fa7739f
+DIST winetricks-20191224.tar.gz 683074 BLAKE2B 
53e89f57883c7527e083610d4ea036887cc8e058d281ee77b0e8fd7dec8520bcd27d5d86f6cadfa5d11bc191a33571086128e6729642e7f302dc37e27b1ce402
 SHA512 
31c0866e78d866e569da6c1123af7823a07b6358a79fcba84296938d89a39447ec9f504ca524471abc74ec2e3b24024bbc8a579413b4fe0ee74b1d5612f5d41a
 DIST winetricks-gentoo-2012.11.24.tar.bz2 6398 BLAKE2B 
54a4502f6e8ef15d21b02c43e3ce599e32d476c2559246064de14cc4ce2243ff11dde681d24c8a7f4913c3d7a10b855bda47e8fb8ecad31e00d839705416be6f
 SHA512 
59c93b73f3a7b2d11aefcde2ff66659ff1de21ad4b5f232f4b60572f3a48b15a6c49f369b1696862bf1b33fde190bf5598945e9536fb41ddec42d8def4d2be2a

diff --git a/app-emulation/winetricks/winetricks-20191224.ebuild 
b/app-emulation/winetricks/winetricks-20191224.ebuild
new file mode 100644
index 000..900a5b5
--- /dev/null
+++ b/app-emulation/winetricks/winetricks-20191224.ebuild
@@ -0,0 +1,86 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit desktop 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"
+
+BDEPEND="
+   test? (
+   dev-python/bashate
+   dev-util/checkbashisms
+   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
+   cd "${WORKDIR}/${wtg}" || die
+   domenu winetricks.desktop
+   insinto /usr/share/icons/hicolor/scalable/apps
+   doins wine-winetricks.svg
+   fi
+}



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

2019-11-26 Thread Jimi Huotari
commit: a64e9258f83626ecb1cc9a8d9571b653141c74aa
Author: Jimi Huotari  gentoo  org>
AuthorDate: Tue Nov 26 15:31:28 2019 +
Commit: Jimi Huotari  gentoo  org>
CommitDate: Tue Nov 26 15:31:28 2019 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=a64e9258

app-emulation/winetricks: remove old stable version 20190310

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

 app-emulation/winetricks/Manifest  |  1 -
 .../winetricks/winetricks-20190310.ebuild  | 86 --
 2 files changed, 87 deletions(-)

diff --git a/app-emulation/winetricks/Manifest 
b/app-emulation/winetricks/Manifest
index e34b9ba..2c6ad93 100644
--- a/app-emulation/winetricks/Manifest
+++ b/app-emulation/winetricks/Manifest
@@ -1,3 +1,2 @@
-DIST winetricks-20190310.tar.gz 673467 BLAKE2B 
b6c6a6d28e49f9b2745ac623f9a9d35bdcaa402c11b3f2055f3d2ef2d13ccff6adcda47261447aff7b70bfcd9bc65ea2a278368616df93f031fe212aa3201a5d
 SHA512 
4f08228306a84cd2e1ecf0df46e951dfc5844716fadab903eca7ed09f15ed2bbba7ca5bf48384f934783be6a85b812129427a296a580561ee5b8483df0e64025
 DIST winetricks-20190912.tar.gz 679544 BLAKE2B 
633c407f8560fa3aa38806befded957d0bf1276164483b08fb3ef285fe873531d6362ae6305f5a33a85891d75990e6e0271fe954358e49425c4f36f0f918f48d
 SHA512 
a0017cc08c56a511e523116daf2024b1462460d00b3d07de87720c7912dccab3d953db3653d7d611c5ae3b457a45de8d36688ee703e805c1e1f5be5c0fa7739f
 DIST winetricks-gentoo-2012.11.24.tar.bz2 6398 BLAKE2B 
54a4502f6e8ef15d21b02c43e3ce599e32d476c2559246064de14cc4ce2243ff11dde681d24c8a7f4913c3d7a10b855bda47e8fb8ecad31e00d839705416be6f
 SHA512 
59c93b73f3a7b2d11aefcde2ff66659ff1de21ad4b5f232f4b60572f3a48b15a6c49f369b1696862bf1b33fde190bf5598945e9536fb41ddec42d8def4d2be2a

diff --git a/app-emulation/winetricks/winetricks-20190310.ebuild 
b/app-emulation/winetricks/winetricks-20190310.ebuild
deleted file mode 100644
index dab00ad..000
--- a/app-emulation/winetricks/winetricks-20190310.ebuild
+++ /dev/null
@@ -1,86 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit desktop 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"
-
-BDEPEND="
-   test? (
-   dev-python/bashate
-   dev-util/checkbashisms
-   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
-   cd "${WORKDIR}/${wtg}" || die
-   domenu winetricks.desktop
-   insinto /usr/share/icons/hicolor/scalable/apps
-   doins wine-winetricks.svg
-   fi
-}



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

2019-11-26 Thread Jimi Huotari
commit: ab80e865a44cf6e72ae207eb1f5039589ecf4d27
Author: Jimi Huotari  gentoo  org>
AuthorDate: Tue Nov 26 15:27:00 2019 +
Commit: Jimi Huotari  gentoo  org>
CommitDate: Tue Nov 26 15:27:43 2019 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=ab80e865

app-emulation/winetricks: sync KEYWORDS with the Gentoo repository

Version 20190912 is now 'stable'.

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

 app-emulation/winetricks/winetricks-20190912.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-emulation/winetricks/winetricks-20190912.ebuild 
b/app-emulation/winetricks/winetricks-20190912.ebuild
index 900a5b5..dab00ad 100644
--- a/app-emulation/winetricks/winetricks-20190912.ebuild
+++ b/app-emulation/winetricks/winetricks-20190912.ebuild
@@ -11,7 +11,7 @@ if [[ ${PV} == "" ]] ; then
SRC_URI=""
 else
SRC_URI="https://github.com/Winetricks/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 ~x86"
+   KEYWORDS="amd64 x86"
 fi
 
 wtg="winetricks-gentoo-2012.11.24"



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

2019-09-16 Thread Jimi Huotari
commit: d68ebe1f1b535744536bead4588995a0020b77ef
Author: Jimi Huotari  gentoo  org>
AuthorDate: Mon Sep 16 21:44:13 2019 +
Commit: Jimi Huotari  gentoo  org>
CommitDate: Mon Sep 16 21:44:13 2019 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=d68ebe1f

app-emulation/winetricks: drop old version 20190615

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

 app-emulation/winetricks/Manifest  |  1 -
 .../winetricks/winetricks-20190615.ebuild  | 86 --
 2 files changed, 87 deletions(-)

diff --git a/app-emulation/winetricks/Manifest 
b/app-emulation/winetricks/Manifest
index 9b949b5..e34b9ba 100644
--- a/app-emulation/winetricks/Manifest
+++ b/app-emulation/winetricks/Manifest
@@ -1,4 +1,3 @@
 DIST winetricks-20190310.tar.gz 673467 BLAKE2B 
b6c6a6d28e49f9b2745ac623f9a9d35bdcaa402c11b3f2055f3d2ef2d13ccff6adcda47261447aff7b70bfcd9bc65ea2a278368616df93f031fe212aa3201a5d
 SHA512 
4f08228306a84cd2e1ecf0df46e951dfc5844716fadab903eca7ed09f15ed2bbba7ca5bf48384f934783be6a85b812129427a296a580561ee5b8483df0e64025
-DIST winetricks-20190615.tar.gz 681040 BLAKE2B 
f66a23b47b4bf48f44be99c6d9fa890638cb19273bb0f556c0ca91133e2941b44fde7214616a9f379fbb4713249339edec7486b080e16c632a127d9a818de1fe
 SHA512 
dbb078e8d4e001db506b6038e1898dc2e319432e85d1539a53635454efc5d635238ca03a07ee57aec9349b903027586fef34461f4e8eba0b41d25d99d15e7ba8
 DIST winetricks-20190912.tar.gz 679544 BLAKE2B 
633c407f8560fa3aa38806befded957d0bf1276164483b08fb3ef285fe873531d6362ae6305f5a33a85891d75990e6e0271fe954358e49425c4f36f0f918f48d
 SHA512 
a0017cc08c56a511e523116daf2024b1462460d00b3d07de87720c7912dccab3d953db3653d7d611c5ae3b457a45de8d36688ee703e805c1e1f5be5c0fa7739f
 DIST winetricks-gentoo-2012.11.24.tar.bz2 6398 BLAKE2B 
54a4502f6e8ef15d21b02c43e3ce599e32d476c2559246064de14cc4ce2243ff11dde681d24c8a7f4913c3d7a10b855bda47e8fb8ecad31e00d839705416be6f
 SHA512 
59c93b73f3a7b2d11aefcde2ff66659ff1de21ad4b5f232f4b60572f3a48b15a6c49f369b1696862bf1b33fde190bf5598945e9536fb41ddec42d8def4d2be2a

diff --git a/app-emulation/winetricks/winetricks-20190615.ebuild 
b/app-emulation/winetricks/winetricks-20190615.ebuild
deleted file mode 100644
index 900a5b5..000
--- a/app-emulation/winetricks/winetricks-20190615.ebuild
+++ /dev/null
@@ -1,86 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit desktop 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"
-
-BDEPEND="
-   test? (
-   dev-python/bashate
-   dev-util/checkbashisms
-   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
-   cd "${WORKDIR}/${wtg}" || die
-   domenu winetricks.desktop
-   insinto /usr/share/icons/hicolor/scalable/apps
-   doins wine-winetricks.svg
-   fi
-}



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

2019-09-13 Thread Jimi Huotari
commit: b834cd1bf69009b62087fab9f7750c319b30ffbb
Author: Jimi Huotari  gentoo  org>
AuthorDate: Fri Sep 13 11:33:23 2019 +
Commit: Jimi Huotari  gentoo  org>
CommitDate: Fri Sep 13 11:33:23 2019 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=b834cd1b

app-emulation/winetricks: version bump to 20190912

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

 app-emulation/winetricks/Manifest  |  1 +
 .../winetricks/winetricks-20190912.ebuild  | 86 ++
 2 files changed, 87 insertions(+)

diff --git a/app-emulation/winetricks/Manifest 
b/app-emulation/winetricks/Manifest
index ef63151..9b949b5 100644
--- a/app-emulation/winetricks/Manifest
+++ b/app-emulation/winetricks/Manifest
@@ -1,3 +1,4 @@
 DIST winetricks-20190310.tar.gz 673467 BLAKE2B 
b6c6a6d28e49f9b2745ac623f9a9d35bdcaa402c11b3f2055f3d2ef2d13ccff6adcda47261447aff7b70bfcd9bc65ea2a278368616df93f031fe212aa3201a5d
 SHA512 
4f08228306a84cd2e1ecf0df46e951dfc5844716fadab903eca7ed09f15ed2bbba7ca5bf48384f934783be6a85b812129427a296a580561ee5b8483df0e64025
 DIST winetricks-20190615.tar.gz 681040 BLAKE2B 
f66a23b47b4bf48f44be99c6d9fa890638cb19273bb0f556c0ca91133e2941b44fde7214616a9f379fbb4713249339edec7486b080e16c632a127d9a818de1fe
 SHA512 
dbb078e8d4e001db506b6038e1898dc2e319432e85d1539a53635454efc5d635238ca03a07ee57aec9349b903027586fef34461f4e8eba0b41d25d99d15e7ba8
+DIST winetricks-20190912.tar.gz 679544 BLAKE2B 
633c407f8560fa3aa38806befded957d0bf1276164483b08fb3ef285fe873531d6362ae6305f5a33a85891d75990e6e0271fe954358e49425c4f36f0f918f48d
 SHA512 
a0017cc08c56a511e523116daf2024b1462460d00b3d07de87720c7912dccab3d953db3653d7d611c5ae3b457a45de8d36688ee703e805c1e1f5be5c0fa7739f
 DIST winetricks-gentoo-2012.11.24.tar.bz2 6398 BLAKE2B 
54a4502f6e8ef15d21b02c43e3ce599e32d476c2559246064de14cc4ce2243ff11dde681d24c8a7f4913c3d7a10b855bda47e8fb8ecad31e00d839705416be6f
 SHA512 
59c93b73f3a7b2d11aefcde2ff66659ff1de21ad4b5f232f4b60572f3a48b15a6c49f369b1696862bf1b33fde190bf5598945e9536fb41ddec42d8def4d2be2a

diff --git a/app-emulation/winetricks/winetricks-20190912.ebuild 
b/app-emulation/winetricks/winetricks-20190912.ebuild
new file mode 100644
index 000..900a5b5
--- /dev/null
+++ b/app-emulation/winetricks/winetricks-20190912.ebuild
@@ -0,0 +1,86 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit desktop 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"
+
+BDEPEND="
+   test? (
+   dev-python/bashate
+   dev-util/checkbashisms
+   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
+   cd "${WORKDIR}/${wtg}" || die
+   domenu winetricks.desktop
+   insinto /usr/share/icons/hicolor/scalable/apps
+   doins wine-winetricks.svg
+   fi
+}



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

2019-06-21 Thread Jimi Huotari
commit: 3f72c295a71b2d1ed71dd5564b39df46aea32d33
Author: Jimi Huotari  gentoo  org>
AuthorDate: Fri Jun 21 08:31:25 2019 +
Commit: Jimi Huotari  gentoo  org>
CommitDate: Fri Jun 21 08:31:25 2019 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=3f72c295

app-emulation/winetricks: version bump to 20190615

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

 app-emulation/winetricks/Manifest  |  1 +
 .../winetricks/winetricks-20190615.ebuild  | 86 ++
 2 files changed, 87 insertions(+)

diff --git a/app-emulation/winetricks/Manifest 
b/app-emulation/winetricks/Manifest
index 98183dc..ef63151 100644
--- a/app-emulation/winetricks/Manifest
+++ b/app-emulation/winetricks/Manifest
@@ -1,2 +1,3 @@
 DIST winetricks-20190310.tar.gz 673467 BLAKE2B 
b6c6a6d28e49f9b2745ac623f9a9d35bdcaa402c11b3f2055f3d2ef2d13ccff6adcda47261447aff7b70bfcd9bc65ea2a278368616df93f031fe212aa3201a5d
 SHA512 
4f08228306a84cd2e1ecf0df46e951dfc5844716fadab903eca7ed09f15ed2bbba7ca5bf48384f934783be6a85b812129427a296a580561ee5b8483df0e64025
+DIST winetricks-20190615.tar.gz 681040 BLAKE2B 
f66a23b47b4bf48f44be99c6d9fa890638cb19273bb0f556c0ca91133e2941b44fde7214616a9f379fbb4713249339edec7486b080e16c632a127d9a818de1fe
 SHA512 
dbb078e8d4e001db506b6038e1898dc2e319432e85d1539a53635454efc5d635238ca03a07ee57aec9349b903027586fef34461f4e8eba0b41d25d99d15e7ba8
 DIST winetricks-gentoo-2012.11.24.tar.bz2 6398 BLAKE2B 
54a4502f6e8ef15d21b02c43e3ce599e32d476c2559246064de14cc4ce2243ff11dde681d24c8a7f4913c3d7a10b855bda47e8fb8ecad31e00d839705416be6f
 SHA512 
59c93b73f3a7b2d11aefcde2ff66659ff1de21ad4b5f232f4b60572f3a48b15a6c49f369b1696862bf1b33fde190bf5598945e9536fb41ddec42d8def4d2be2a

diff --git a/app-emulation/winetricks/winetricks-20190615.ebuild 
b/app-emulation/winetricks/winetricks-20190615.ebuild
new file mode 100644
index 000..900a5b5
--- /dev/null
+++ b/app-emulation/winetricks/winetricks-20190615.ebuild
@@ -0,0 +1,86 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit desktop 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"
+
+BDEPEND="
+   test? (
+   dev-python/bashate
+   dev-util/checkbashisms
+   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
+   cd "${WORKDIR}/${wtg}" || die
+   domenu winetricks.desktop
+   insinto /usr/share/icons/hicolor/scalable/apps
+   doins wine-winetricks.svg
+   fi
+}



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

2019-05-27 Thread Jimi Huotari
commit: d5af98e038634132a0fe7389f0247aecdcea9869
Author: Jimi Huotari  gentoo  org>
AuthorDate: Mon May 27 08:40:37 2019 +
Commit: Jimi Huotari  gentoo  org>
CommitDate: Mon May 27 08:40:37 2019 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=d5af98e0

app-emulation/winetricks: sync KEYWORDS with the Gentoo repository

Version 20190310 is now 'stable'.

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

 app-emulation/winetricks/winetricks-20190310.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-emulation/winetricks/winetricks-20190310.ebuild 
b/app-emulation/winetricks/winetricks-20190310.ebuild
index 900a5b5..dab00ad 100644
--- a/app-emulation/winetricks/winetricks-20190310.ebuild
+++ b/app-emulation/winetricks/winetricks-20190310.ebuild
@@ -11,7 +11,7 @@ if [[ ${PV} == "" ]] ; then
SRC_URI=""
 else
SRC_URI="https://github.com/Winetricks/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 ~x86"
+   KEYWORDS="amd64 x86"
 fi
 
 wtg="winetricks-gentoo-2012.11.24"



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

2019-05-27 Thread Jimi Huotari
commit: e000670c5222ca61c2eb85851b5cc832fed4fee0
Author: Jimi Huotari  gentoo  org>
AuthorDate: Mon May 27 08:41:42 2019 +
Commit: Jimi Huotari  gentoo  org>
CommitDate: Mon May 27 08:41:42 2019 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=e000670c

app-emulation/winetricks: remove old stable version

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

 app-emulation/winetricks/Manifest  |  1 -
 .../winetricks/winetricks-20170823.ebuild  | 84 --
 2 files changed, 85 deletions(-)

diff --git a/app-emulation/winetricks/Manifest 
b/app-emulation/winetricks/Manifest
index 4d413db..98183dc 100644
--- a/app-emulation/winetricks/Manifest
+++ b/app-emulation/winetricks/Manifest
@@ -1,3 +1,2 @@
-DIST winetricks-20170823.tar.gz 639027 BLAKE2B 
ce0de22ff3363bd6fd675d07ea235ed5fb03ea7a84b3242329c094d6a9190c61813a1f360e74ece49d43d2dbf48dbbb1e94c4febc6e1a0d84cf1df895b0be6f9
 SHA512 
edc805be1a1c4fa64ae16b14fdd46786e259b88a0cde7afdf24bf934fa79f4acf3d9e599727fa589f155ec265569953b9e419cda79d54057157cbb1510261e3a
 DIST winetricks-20190310.tar.gz 673467 BLAKE2B 
b6c6a6d28e49f9b2745ac623f9a9d35bdcaa402c11b3f2055f3d2ef2d13ccff6adcda47261447aff7b70bfcd9bc65ea2a278368616df93f031fe212aa3201a5d
 SHA512 
4f08228306a84cd2e1ecf0df46e951dfc5844716fadab903eca7ed09f15ed2bbba7ca5bf48384f934783be6a85b812129427a296a580561ee5b8483df0e64025
 DIST winetricks-gentoo-2012.11.24.tar.bz2 6398 BLAKE2B 
54a4502f6e8ef15d21b02c43e3ce599e32d476c2559246064de14cc4ce2243ff11dde681d24c8a7f4913c3d7a10b855bda47e8fb8ecad31e00d839705416be6f
 SHA512 
59c93b73f3a7b2d11aefcde2ff66659ff1de21ad4b5f232f4b60572f3a48b15a6c49f369b1696862bf1b33fde190bf5598945e9536fb41ddec42d8def4d2be2a

diff --git a/app-emulation/winetricks/winetricks-20170823.ebuild 
b/app-emulation/winetricks/winetricks-20170823.ebuild
deleted file mode 100644
index 111786b..000
--- a/app-emulation/winetricks/winetricks-20170823.ebuild
+++ /dev/null
@@ -1,84 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit gnome2-utils eutils
-
-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/~tetromino/distfiles/wine/${wtg}.tar.bz2 )
-   kde? ( https://dev.gentoo.org/~tetromino/distfiles/wine/${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"
-
-DEPEND=""
-RDEPEND="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 )"
-
-# Uses non-standard "Wine" category, which is provided by app-emulation/wine; 
#451552
-QA_DESKTOP_FILE="usr/share/applications/winetricks.desktop"
-
-# Tests require network access and run Wine, which is unreliable from a 
portage environment.
-RESTRICT="test"
-
-src_unpack() {
-   if [[ ${PV} == "" ]] ; then
-   git-r3_src_unpack
-   if use gtk || use kde; then
-   unpack ${wtg}.tar.bz2
-   fi
-   else
-   default
-   fi
-}
-
-src_install() {
-   default
-   if use gtk || use kde; then
-   cd "${WORKDIR}/${wtg}" || die
-   domenu winetricks.desktop
-   insinto /usr/share/icons/hicolor/scalable/apps
-   doins wine-winetricks.svg
-   fi
-}
-
-pkg_preinst() {
-   if use gtk || use kde; then
-   gnome2_icon_savelist
-   fi
-}
-
-pkg_postinst() {
-   if use gtk || use kde; then
-   gnome2_icon_cache_update
-   fi
-}
-
-pkg_postrm() {
-   if use gtk || use kde; then
-   gnome2_icon_cache_update
-   fi
-}



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

2019-03-10 Thread Jimi Huotari
commit: 5fe45551afc70b56abf8310412e3243314aafdc7
Author: Jimi Huotari  gentoo  org>
AuthorDate: Sun Mar 10 13:21:09 2019 +
Commit: Jimi Huotari  gentoo  org>
CommitDate: Sun Mar 10 13:21:09 2019 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=5fe45551

app-emulation/winetricks: version bump to 20190310

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

 app-emulation/winetricks/Manifest  |  1 +
 .../winetricks/winetricks-20190310.ebuild  | 86 ++
 2 files changed, 87 insertions(+)

diff --git a/app-emulation/winetricks/Manifest 
b/app-emulation/winetricks/Manifest
index 396906c..2853543 100644
--- a/app-emulation/winetricks/Manifest
+++ b/app-emulation/winetricks/Manifest
@@ -1,3 +1,4 @@
 DIST winetricks-20170823.tar.gz 639027 BLAKE2B 
ce0de22ff3363bd6fd675d07ea235ed5fb03ea7a84b3242329c094d6a9190c61813a1f360e74ece49d43d2dbf48dbbb1e94c4febc6e1a0d84cf1df895b0be6f9
 SHA512 
edc805be1a1c4fa64ae16b14fdd46786e259b88a0cde7afdf24bf934fa79f4acf3d9e599727fa589f155ec265569953b9e419cda79d54057157cbb1510261e3a
 DIST winetricks-20181203.tar.gz 671138 BLAKE2B 
4a6f7154509bdd4c0ec73da8b94e44f80ca732f3e3e6c85149676df4eebfe586bcc1ffafffd4937e7d3b5efe6bde015bfc8ba53a1489d553001a9600c178b1bd
 SHA512 
ff960b7830fd688315a6cef9c50f45435d95f4d8bb8feb5f3cab3c24302369b5876afdc8145d395be4b33c9d11c3606312aaf84cb675eeb511479c46490b1585
+DIST winetricks-20190310.tar.gz 673467 BLAKE2B 
b6c6a6d28e49f9b2745ac623f9a9d35bdcaa402c11b3f2055f3d2ef2d13ccff6adcda47261447aff7b70bfcd9bc65ea2a278368616df93f031fe212aa3201a5d
 SHA512 
4f08228306a84cd2e1ecf0df46e951dfc5844716fadab903eca7ed09f15ed2bbba7ca5bf48384f934783be6a85b812129427a296a580561ee5b8483df0e64025
 DIST winetricks-gentoo-2012.11.24.tar.bz2 6398 BLAKE2B 
54a4502f6e8ef15d21b02c43e3ce599e32d476c2559246064de14cc4ce2243ff11dde681d24c8a7f4913c3d7a10b855bda47e8fb8ecad31e00d839705416be6f
 SHA512 
59c93b73f3a7b2d11aefcde2ff66659ff1de21ad4b5f232f4b60572f3a48b15a6c49f369b1696862bf1b33fde190bf5598945e9536fb41ddec42d8def4d2be2a

diff --git a/app-emulation/winetricks/winetricks-20190310.ebuild 
b/app-emulation/winetricks/winetricks-20190310.ebuild
new file mode 100644
index 000..900a5b5
--- /dev/null
+++ b/app-emulation/winetricks/winetricks-20190310.ebuild
@@ -0,0 +1,86 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit desktop 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"
+
+BDEPEND="
+   test? (
+   dev-python/bashate
+   dev-util/checkbashisms
+   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
+   cd "${WORKDIR}/${wtg}" || die
+   domenu winetricks.desktop
+   insinto /usr/share/icons/hicolor/scalable/apps
+   doins wine-winetricks.svg
+   fi
+}



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

2019-03-10 Thread Jimi Huotari
commit: 3e2d22f83571987f09dce8665fea6ccf0505dcdd
Author: Jimi Huotari  gentoo  org>
AuthorDate: Sun Mar 10 13:19:43 2019 +
Commit: Jimi Huotari  gentoo  org>
CommitDate: Sun Mar 10 13:19:43 2019 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=3e2d22f8

app-emulation/winetricks: update 'SRC_URI'

Move 'winetricks-gentoo-2012.11.24' to another dev-space due to
retirement.

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

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

diff --git a/app-emulation/winetricks/winetricks-.ebuild 
b/app-emulation/winetricks/winetricks-.ebuild
index 8c6edd0..900a5b5 100644
--- a/app-emulation/winetricks/winetricks-.ebuild
+++ b/app-emulation/winetricks/winetricks-.ebuild
@@ -17,8 +17,8 @@ fi
 wtg="winetricks-gentoo-2012.11.24"
 
 SRC_URI="${SRC_URI}
-   gtk? ( https://dev.gentoo.org/~tetromino/distfiles/wine/${wtg}.tar.bz2 )
-   kde? ( https://dev.gentoo.org/~tetromino/distfiles/wine/${wtg}.tar.bz2 )
+   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"



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

2019-03-10 Thread Jimi Huotari
commit: 523e649c20c37e1f34ddb3861d3f09e0cd27
Author: Jimi Huotari  gentoo  org>
AuthorDate: Sun Mar 10 13:15:41 2019 +
Commit: Jimi Huotari  gentoo  org>
CommitDate: Sun Mar 10 13:15:41 2019 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=523e649c

app-emulation/winetricks: bump live ebuild to EAPI="7"

Also apply minor formatting adjustments.

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

 .../winetricks/winetricks-.ebuild  | 48 +-
 1 file changed, 19 insertions(+), 29 deletions(-)

diff --git a/app-emulation/winetricks/winetricks-.ebuild 
b/app-emulation/winetricks/winetricks-.ebuild
index 58d2e71..8c6edd0 100644
--- a/app-emulation/winetricks/winetricks-.ebuild
+++ b/app-emulation/winetricks/winetricks-.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
-inherit gnome2-utils eutils
+inherit desktop xdg
 
 if [[ ${PV} == "" ]] ; then
EGIT_REPO_URI="https://github.com/Winetricks/${PN}.git";
@@ -14,11 +14,12 @@ else
KEYWORDS="~amd64 ~x86"
 fi
 
-wtg=winetricks-gentoo-2012.11.24
+wtg="winetricks-gentoo-2012.11.24"
 
 SRC_URI="${SRC_URI}
gtk? ( https://dev.gentoo.org/~tetromino/distfiles/wine/${wtg}.tar.bz2 )
-   kde? ( https://dev.gentoo.org/~tetromino/distfiles/wine/${wtg}.tar.bz2 
)"
+   kde? ( https://dev.gentoo.org/~tetromino/distfiles/wine/${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";
@@ -27,13 +28,16 @@ LICENSE="LGPL-2.1+"
 SLOT="0"
 IUSE="gtk kde rar test"
 
-DEPEND="test? (
+BDEPEND="
+   test? (
dev-python/bashate
dev-util/checkbashisms
dev-util/shellcheck
-   )"
-
-RDEPEND="app-arch/cabextract
+   )
+"
+DEPEND=""
+RDEPEND="${DEPEND}
+   app-arch/cabextract
app-arch/p7zip
app-arch/unzip
net-misc/wget
@@ -41,7 +45,8 @@ RDEPEND="app-arch/cabextract
x11-misc/xdg-utils
gtk? ( gnome-extra/zenity )
kde? ( kde-apps/kdialog )
-   rar? ( app-arch/unrar )"
+   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.
@@ -53,11 +58,13 @@ RDEPEND="app-arch/cabextract
 QA_DESKTOP_FILE="usr/share/applications/winetricks.desktop"
 
 src_unpack() {
-   if [[ ${PV} == "" ]] ; then
+   if [[ ${PV} == "" ]]; then
git-r3_src_unpack
+
if use gtk || use kde; then
unpack ${wtg}.tar.bz2
fi
+
else
default
fi
@@ -69,6 +76,7 @@ src_test() {
 
 src_install() {
default
+
if use gtk || use kde; then
cd "${WORKDIR}/${wtg}" || die
domenu winetricks.desktop
@@ -76,21 +84,3 @@ src_install() {
doins wine-winetricks.svg
fi
 }
-
-pkg_preinst() {
-   if use gtk || use kde; then
-   gnome2_icon_savelist
-   fi
-}
-
-pkg_postinst() {
-   if use gtk || use kde; then
-   gnome2_icon_cache_update
-   fi
-}
-
-pkg_postrm() {
-   if use gtk || use kde; then
-   gnome2_icon_cache_update
-   fi
-}



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

2019-03-10 Thread Jimi Huotari
commit: 6acfa910d61754372394356d3d8b0639ef062d5a
Author: Jimi Huotari  gentoo  org>
AuthorDate: Sun Mar 10 13:22:15 2019 +
Commit: Jimi Huotari  gentoo  org>
CommitDate: Sun Mar 10 13:22:15 2019 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=6acfa910

app-emulation/winetricks: remove old version

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

 app-emulation/winetricks/Manifest  |  1 -
 .../winetricks/winetricks-20181203.ebuild  | 96 --
 2 files changed, 97 deletions(-)

diff --git a/app-emulation/winetricks/Manifest 
b/app-emulation/winetricks/Manifest
index 2853543..4d413db 100644
--- a/app-emulation/winetricks/Manifest
+++ b/app-emulation/winetricks/Manifest
@@ -1,4 +1,3 @@
 DIST winetricks-20170823.tar.gz 639027 BLAKE2B 
ce0de22ff3363bd6fd675d07ea235ed5fb03ea7a84b3242329c094d6a9190c61813a1f360e74ece49d43d2dbf48dbbb1e94c4febc6e1a0d84cf1df895b0be6f9
 SHA512 
edc805be1a1c4fa64ae16b14fdd46786e259b88a0cde7afdf24bf934fa79f4acf3d9e599727fa589f155ec265569953b9e419cda79d54057157cbb1510261e3a
-DIST winetricks-20181203.tar.gz 671138 BLAKE2B 
4a6f7154509bdd4c0ec73da8b94e44f80ca732f3e3e6c85149676df4eebfe586bcc1ffafffd4937e7d3b5efe6bde015bfc8ba53a1489d553001a9600c178b1bd
 SHA512 
ff960b7830fd688315a6cef9c50f45435d95f4d8bb8feb5f3cab3c24302369b5876afdc8145d395be4b33c9d11c3606312aaf84cb675eeb511479c46490b1585
 DIST winetricks-20190310.tar.gz 673467 BLAKE2B 
b6c6a6d28e49f9b2745ac623f9a9d35bdcaa402c11b3f2055f3d2ef2d13ccff6adcda47261447aff7b70bfcd9bc65ea2a278368616df93f031fe212aa3201a5d
 SHA512 
4f08228306a84cd2e1ecf0df46e951dfc5844716fadab903eca7ed09f15ed2bbba7ca5bf48384f934783be6a85b812129427a296a580561ee5b8483df0e64025
 DIST winetricks-gentoo-2012.11.24.tar.bz2 6398 BLAKE2B 
54a4502f6e8ef15d21b02c43e3ce599e32d476c2559246064de14cc4ce2243ff11dde681d24c8a7f4913c3d7a10b855bda47e8fb8ecad31e00d839705416be6f
 SHA512 
59c93b73f3a7b2d11aefcde2ff66659ff1de21ad4b5f232f4b60572f3a48b15a6c49f369b1696862bf1b33fde190bf5598945e9536fb41ddec42d8def4d2be2a

diff --git a/app-emulation/winetricks/winetricks-20181203.ebuild 
b/app-emulation/winetricks/winetricks-20181203.ebuild
deleted file mode 100644
index 484e858..000
--- a/app-emulation/winetricks/winetricks-20181203.ebuild
+++ /dev/null
@@ -1,96 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit gnome2-utils eutils
-
-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/~tetromino/distfiles/wine/${wtg}.tar.bz2 )
-   kde? ( https://dev.gentoo.org/~tetromino/distfiles/wine/${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"
-
-DEPEND="test? (
-   dev-python/bashate
-   dev-util/checkbashisms
-   dev-util/shellcheck
-   )"
-
-RDEPEND="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
-   cd "${WORKDIR}/${wtg}" || die
-   domenu winetricks.desktop
-   insinto /usr/share/icons/hicolor/scalable/apps
-   doins wine-winetricks.svg
-   fi
-}
-
-pkg_preinst() {
-   if use gtk || use kde; then
-   gnome2_icon_savelist
-   fi
-}
-
-pkg_postinst() {
-   if use gtk || use kde; then
-   gnome2_icon_cache_update
-   fi
-}
-
-pkg_postrm() {
-   if use gtk || use kde; then
-   gnome2_icon_cache_update
-   fi
-}



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

2019-01-17 Thread Jimi Huotari
commit: b2083134070398173e04a33385c047fd9889bd82
Author: Jimi Huotari  gentoo  org>
AuthorDate: Thu Jan 17 21:12:54 2019 +
Commit: Jimi Huotari  gentoo  org>
CommitDate: Thu Jan 17 21:12:54 2019 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=b2083134

app-emulation/winetricks: Remove older version.

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

 app-emulation/winetricks/Manifest  |  1 -
 .../winetricks/winetricks-20180815.ebuild  | 96 --
 2 files changed, 97 deletions(-)

diff --git a/app-emulation/winetricks/Manifest 
b/app-emulation/winetricks/Manifest
index 721dc39..396906c 100644
--- a/app-emulation/winetricks/Manifest
+++ b/app-emulation/winetricks/Manifest
@@ -1,4 +1,3 @@
 DIST winetricks-20170823.tar.gz 639027 BLAKE2B 
ce0de22ff3363bd6fd675d07ea235ed5fb03ea7a84b3242329c094d6a9190c61813a1f360e74ece49d43d2dbf48dbbb1e94c4febc6e1a0d84cf1df895b0be6f9
 SHA512 
edc805be1a1c4fa64ae16b14fdd46786e259b88a0cde7afdf24bf934fa79f4acf3d9e599727fa589f155ec265569953b9e419cda79d54057157cbb1510261e3a
-DIST winetricks-20180815.tar.gz 666135 BLAKE2B 
4bdac7980bf180d296c9d42074b7e0a6fa4c04e704e3022ae3c07a56f787ddd0d30dbb253f247772bf53861df71affc88acef1cd92c2db6fc1962e6a31b57939
 SHA512 
81222610f6c29e67d1b3914912dd1980fca9b7f15f283b78128780d1e667c7203b27ab3c5c4220e855c6f329a5df58c585fb70d3a7fff07db648bf63a556ad6f
 DIST winetricks-20181203.tar.gz 671138 BLAKE2B 
4a6f7154509bdd4c0ec73da8b94e44f80ca732f3e3e6c85149676df4eebfe586bcc1ffafffd4937e7d3b5efe6bde015bfc8ba53a1489d553001a9600c178b1bd
 SHA512 
ff960b7830fd688315a6cef9c50f45435d95f4d8bb8feb5f3cab3c24302369b5876afdc8145d395be4b33c9d11c3606312aaf84cb675eeb511479c46490b1585
 DIST winetricks-gentoo-2012.11.24.tar.bz2 6398 BLAKE2B 
54a4502f6e8ef15d21b02c43e3ce599e32d476c2559246064de14cc4ce2243ff11dde681d24c8a7f4913c3d7a10b855bda47e8fb8ecad31e00d839705416be6f
 SHA512 
59c93b73f3a7b2d11aefcde2ff66659ff1de21ad4b5f232f4b60572f3a48b15a6c49f369b1696862bf1b33fde190bf5598945e9536fb41ddec42d8def4d2be2a

diff --git a/app-emulation/winetricks/winetricks-20180815.ebuild 
b/app-emulation/winetricks/winetricks-20180815.ebuild
deleted file mode 100644
index 58d2e71..000
--- a/app-emulation/winetricks/winetricks-20180815.ebuild
+++ /dev/null
@@ -1,96 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit gnome2-utils eutils
-
-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/~tetromino/distfiles/wine/${wtg}.tar.bz2 )
-   kde? ( https://dev.gentoo.org/~tetromino/distfiles/wine/${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"
-
-DEPEND="test? (
-   dev-python/bashate
-   dev-util/checkbashisms
-   dev-util/shellcheck
-   )"
-
-RDEPEND="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
-   cd "${WORKDIR}/${wtg}" || die
-   domenu winetricks.desktop
-   insinto /usr/share/icons/hicolor/scalable/apps
-   doins wine-winetricks.svg
-   fi
-}
-
-pkg_preinst() {
-   if use gtk || use kde; then
-   gnome2_icon_savelist
-   fi
-}
-
-pkg_postinst() {
-   if use gtk || use kde; then
-   gnome2_icon_cache_update
-   fi
-}
-
-pkg_postrm() {
-   if use gtk || use kde; then
-   gnome2_icon_cache_update
-   fi
-}



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

2019-01-17 Thread Jimi Huotari
commit: 1a43bacc6298d10579433e49967fd4542532e470
Author: Jimi Huotari  gentoo  org>
AuthorDate: Thu Jan 17 20:43:30 2019 +
Commit: Jimi Huotari  gentoo  org>
CommitDate: Thu Jan 17 21:11:40 2019 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=1a43bacc

app-emulation/winetricks: Version bump to 20181203.

Bug: https://bugs.gentoo.org/675528
Package-Manager: Portage-2.3.56, Repoman-2.3.12
Signed-off-by: Jimi Huotari  gentoo.org>

 app-emulation/winetricks/Manifest  |  1 +
 .../winetricks/winetricks-20181203.ebuild  | 96 ++
 2 files changed, 97 insertions(+)

diff --git a/app-emulation/winetricks/Manifest 
b/app-emulation/winetricks/Manifest
index ba33f13..721dc39 100644
--- a/app-emulation/winetricks/Manifest
+++ b/app-emulation/winetricks/Manifest
@@ -1,3 +1,4 @@
 DIST winetricks-20170823.tar.gz 639027 BLAKE2B 
ce0de22ff3363bd6fd675d07ea235ed5fb03ea7a84b3242329c094d6a9190c61813a1f360e74ece49d43d2dbf48dbbb1e94c4febc6e1a0d84cf1df895b0be6f9
 SHA512 
edc805be1a1c4fa64ae16b14fdd46786e259b88a0cde7afdf24bf934fa79f4acf3d9e599727fa589f155ec265569953b9e419cda79d54057157cbb1510261e3a
 DIST winetricks-20180815.tar.gz 666135 BLAKE2B 
4bdac7980bf180d296c9d42074b7e0a6fa4c04e704e3022ae3c07a56f787ddd0d30dbb253f247772bf53861df71affc88acef1cd92c2db6fc1962e6a31b57939
 SHA512 
81222610f6c29e67d1b3914912dd1980fca9b7f15f283b78128780d1e667c7203b27ab3c5c4220e855c6f329a5df58c585fb70d3a7fff07db648bf63a556ad6f
+DIST winetricks-20181203.tar.gz 671138 BLAKE2B 
4a6f7154509bdd4c0ec73da8b94e44f80ca732f3e3e6c85149676df4eebfe586bcc1ffafffd4937e7d3b5efe6bde015bfc8ba53a1489d553001a9600c178b1bd
 SHA512 
ff960b7830fd688315a6cef9c50f45435d95f4d8bb8feb5f3cab3c24302369b5876afdc8145d395be4b33c9d11c3606312aaf84cb675eeb511479c46490b1585
 DIST winetricks-gentoo-2012.11.24.tar.bz2 6398 BLAKE2B 
54a4502f6e8ef15d21b02c43e3ce599e32d476c2559246064de14cc4ce2243ff11dde681d24c8a7f4913c3d7a10b855bda47e8fb8ecad31e00d839705416be6f
 SHA512 
59c93b73f3a7b2d11aefcde2ff66659ff1de21ad4b5f232f4b60572f3a48b15a6c49f369b1696862bf1b33fde190bf5598945e9536fb41ddec42d8def4d2be2a

diff --git a/app-emulation/winetricks/winetricks-20181203.ebuild 
b/app-emulation/winetricks/winetricks-20181203.ebuild
new file mode 100644
index 000..484e858
--- /dev/null
+++ b/app-emulation/winetricks/winetricks-20181203.ebuild
@@ -0,0 +1,96 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit gnome2-utils eutils
+
+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/~tetromino/distfiles/wine/${wtg}.tar.bz2 )
+   kde? ( https://dev.gentoo.org/~tetromino/distfiles/wine/${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"
+
+DEPEND="test? (
+   dev-python/bashate
+   dev-util/checkbashisms
+   dev-util/shellcheck
+   )"
+
+RDEPEND="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
+   cd "${WORKDIR}/${wtg}" || die
+   domenu winetricks.desktop
+   insinto /usr/share/icons/hicolor/scalable/apps
+   doins wine-winetricks.svg
+   fi
+}
+
+pkg_preinst() {
+   if use gtk || use kde; then
+   gnome2_icon_savelist
+   fi
+}
+
+pkg_postinst() {
+   if use gtk || use kde; then
+   gnome2_icon_cache_update
+   fi
+}
+
+pkg_postrm() {
+   if use gtk || use kde; then
+   gnome2_icon_cache_update
+   fi
+}

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

2018-08-30 Thread Jimi Huotari
commit: 3b29812dc029f16470aa97efe84dbdacf4310ccb
Author: Jimi Huotari  gentoo  org>
AuthorDate: Thu Aug 30 08:59:02 2018 +
Commit: Jimi Huotari  gentoo  org>
CommitDate: Thu Aug 30 08:59:02 2018 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=3b29812d

app-emulation/winetricks: Remove older versions.

Package-Manager: Portage-2.3.48, Repoman-2.3.10

 app-emulation/winetricks/Manifest  |  3 -
 .../winetricks/winetricks-20180217.ebuild  | 96 --
 .../winetricks/winetricks-20180513.ebuild  | 96 --
 .../winetricks/winetricks-20180603.ebuild  | 96 --
 4 files changed, 291 deletions(-)

diff --git a/app-emulation/winetricks/Manifest 
b/app-emulation/winetricks/Manifest
index 694a010..ba33f13 100644
--- a/app-emulation/winetricks/Manifest
+++ b/app-emulation/winetricks/Manifest
@@ -1,6 +1,3 @@
 DIST winetricks-20170823.tar.gz 639027 BLAKE2B 
ce0de22ff3363bd6fd675d07ea235ed5fb03ea7a84b3242329c094d6a9190c61813a1f360e74ece49d43d2dbf48dbbb1e94c4febc6e1a0d84cf1df895b0be6f9
 SHA512 
edc805be1a1c4fa64ae16b14fdd46786e259b88a0cde7afdf24bf934fa79f4acf3d9e599727fa589f155ec265569953b9e419cda79d54057157cbb1510261e3a
-DIST winetricks-20180217.tar.gz 646726 BLAKE2B 
3cde3ca1cd7c74946732c530a49ca532975e037bc2907e88239b4697b3828dfcde3ce250d95e6c03ca36cc36b4e00cd545b0f6b63f984722a737674aff808e27
 SHA512 
3f90ef3381d89c0dac8c4b7acea04d71fe898207c534d4fe00c3db4e5c2e18db90602b78672e8ecf6f754206a999465ba5d8f1f5962e0291386badfc8202cd73
-DIST winetricks-20180513.tar.gz 652299 BLAKE2B 
fb4c55e534e368d5d7e94247feed031d0f6f98a2f3604f6187e32d25659f1cfa7f5589806e429ee054b4a94c00ebd6ac63cb99012fd94a99622891132a477001
 SHA512 
49fc022fc3db068145baf3a51444dc937deb092aceac8e31259888fea21ffe86f747a0d4dbd5ff10f253a94b15de090c01f20dacbe838c8444bdb00b98cbf5c6
-DIST winetricks-20180603.tar.gz 651678 BLAKE2B 
a70ae685bd49e429199619176e130681ab2d28ba8659f68bdba298d82e610c77df86c3d998273e60bb53d9da24bddcfe80f6d89e044007c1477a92bbc0e6043f
 SHA512 
e88b0d4375331c94d3e2d995985b6c28fd208f1e32b1e4d84f33997a8a69fc9f8a4173325a571f5d10f233bcf40fe4cde644401c1563c8cfe7915748448a08cd
 DIST winetricks-20180815.tar.gz 666135 BLAKE2B 
4bdac7980bf180d296c9d42074b7e0a6fa4c04e704e3022ae3c07a56f787ddd0d30dbb253f247772bf53861df71affc88acef1cd92c2db6fc1962e6a31b57939
 SHA512 
81222610f6c29e67d1b3914912dd1980fca9b7f15f283b78128780d1e667c7203b27ab3c5c4220e855c6f329a5df58c585fb70d3a7fff07db648bf63a556ad6f
 DIST winetricks-gentoo-2012.11.24.tar.bz2 6398 BLAKE2B 
54a4502f6e8ef15d21b02c43e3ce599e32d476c2559246064de14cc4ce2243ff11dde681d24c8a7f4913c3d7a10b855bda47e8fb8ecad31e00d839705416be6f
 SHA512 
59c93b73f3a7b2d11aefcde2ff66659ff1de21ad4b5f232f4b60572f3a48b15a6c49f369b1696862bf1b33fde190bf5598945e9536fb41ddec42d8def4d2be2a

diff --git a/app-emulation/winetricks/winetricks-20180217.ebuild 
b/app-emulation/winetricks/winetricks-20180217.ebuild
deleted file mode 100644
index 58d2e71..000
--- a/app-emulation/winetricks/winetricks-20180217.ebuild
+++ /dev/null
@@ -1,96 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit gnome2-utils eutils
-
-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/~tetromino/distfiles/wine/${wtg}.tar.bz2 )
-   kde? ( https://dev.gentoo.org/~tetromino/distfiles/wine/${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"
-
-DEPEND="test? (
-   dev-python/bashate
-   dev-util/checkbashisms
-   dev-util/shellcheck
-   )"
-
-RDEPEND="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
-   e

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

2018-08-30 Thread Jimi Huotari
commit: 0e9ae2776f9980d22b1c74c8f51eeef464d98656
Author: Jimi Huotari  gentoo  org>
AuthorDate: Thu Aug 30 08:55:49 2018 +
Commit: Jimi Huotari  gentoo  org>
CommitDate: Thu Aug 30 08:55:49 2018 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=0e9ae277

app-emulation/winetricks: Sync with the main Gentoo repository tree.

Package-Manager: Portage-2.3.48, Repoman-2.3.10

 app-emulation/winetricks/Manifest  |  1 +
 .../winetricks/winetricks-20180815.ebuild  | 96 ++
 2 files changed, 97 insertions(+)

diff --git a/app-emulation/winetricks/Manifest 
b/app-emulation/winetricks/Manifest
index cfa85e1..694a010 100644
--- a/app-emulation/winetricks/Manifest
+++ b/app-emulation/winetricks/Manifest
@@ -2,4 +2,5 @@ DIST winetricks-20170823.tar.gz 639027 BLAKE2B 
ce0de22ff3363bd6fd675d07ea235ed5f
 DIST winetricks-20180217.tar.gz 646726 BLAKE2B 
3cde3ca1cd7c74946732c530a49ca532975e037bc2907e88239b4697b3828dfcde3ce250d95e6c03ca36cc36b4e00cd545b0f6b63f984722a737674aff808e27
 SHA512 
3f90ef3381d89c0dac8c4b7acea04d71fe898207c534d4fe00c3db4e5c2e18db90602b78672e8ecf6f754206a999465ba5d8f1f5962e0291386badfc8202cd73
 DIST winetricks-20180513.tar.gz 652299 BLAKE2B 
fb4c55e534e368d5d7e94247feed031d0f6f98a2f3604f6187e32d25659f1cfa7f5589806e429ee054b4a94c00ebd6ac63cb99012fd94a99622891132a477001
 SHA512 
49fc022fc3db068145baf3a51444dc937deb092aceac8e31259888fea21ffe86f747a0d4dbd5ff10f253a94b15de090c01f20dacbe838c8444bdb00b98cbf5c6
 DIST winetricks-20180603.tar.gz 651678 BLAKE2B 
a70ae685bd49e429199619176e130681ab2d28ba8659f68bdba298d82e610c77df86c3d998273e60bb53d9da24bddcfe80f6d89e044007c1477a92bbc0e6043f
 SHA512 
e88b0d4375331c94d3e2d995985b6c28fd208f1e32b1e4d84f33997a8a69fc9f8a4173325a571f5d10f233bcf40fe4cde644401c1563c8cfe7915748448a08cd
+DIST winetricks-20180815.tar.gz 666135 BLAKE2B 
4bdac7980bf180d296c9d42074b7e0a6fa4c04e704e3022ae3c07a56f787ddd0d30dbb253f247772bf53861df71affc88acef1cd92c2db6fc1962e6a31b57939
 SHA512 
81222610f6c29e67d1b3914912dd1980fca9b7f15f283b78128780d1e667c7203b27ab3c5c4220e855c6f329a5df58c585fb70d3a7fff07db648bf63a556ad6f
 DIST winetricks-gentoo-2012.11.24.tar.bz2 6398 BLAKE2B 
54a4502f6e8ef15d21b02c43e3ce599e32d476c2559246064de14cc4ce2243ff11dde681d24c8a7f4913c3d7a10b855bda47e8fb8ecad31e00d839705416be6f
 SHA512 
59c93b73f3a7b2d11aefcde2ff66659ff1de21ad4b5f232f4b60572f3a48b15a6c49f369b1696862bf1b33fde190bf5598945e9536fb41ddec42d8def4d2be2a

diff --git a/app-emulation/winetricks/winetricks-20180815.ebuild 
b/app-emulation/winetricks/winetricks-20180815.ebuild
new file mode 100644
index 000..58d2e71
--- /dev/null
+++ b/app-emulation/winetricks/winetricks-20180815.ebuild
@@ -0,0 +1,96 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit gnome2-utils eutils
+
+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/~tetromino/distfiles/wine/${wtg}.tar.bz2 )
+   kde? ( https://dev.gentoo.org/~tetromino/distfiles/wine/${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"
+
+DEPEND="test? (
+   dev-python/bashate
+   dev-util/checkbashisms
+   dev-util/shellcheck
+   )"
+
+RDEPEND="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
+   cd "${WORKDIR}/${wtg}" || die
+   domenu winetricks.desktop
+   insinto /usr/share/icons/hicolor/scalable/apps
+   doins wine-winetricks.svg

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

2018-06-03 Thread Nick Sarnie
commit: 6fc042b65a79ab09145141ecc78dad76344b2d3b
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sun Jun  3 17:03:44 2018 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sun Jun  3 17:03:55 2018 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=6fc042b6

app-emulation/winetricks: Version bump to 20180603

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 app-emulation/winetricks/Manifest  |  1 +
 .../winetricks/winetricks-20180603.ebuild  | 96 ++
 2 files changed, 97 insertions(+)

diff --git a/app-emulation/winetricks/Manifest 
b/app-emulation/winetricks/Manifest
index e50eaeb..cfa85e1 100644
--- a/app-emulation/winetricks/Manifest
+++ b/app-emulation/winetricks/Manifest
@@ -1,4 +1,5 @@
 DIST winetricks-20170823.tar.gz 639027 BLAKE2B 
ce0de22ff3363bd6fd675d07ea235ed5fb03ea7a84b3242329c094d6a9190c61813a1f360e74ece49d43d2dbf48dbbb1e94c4febc6e1a0d84cf1df895b0be6f9
 SHA512 
edc805be1a1c4fa64ae16b14fdd46786e259b88a0cde7afdf24bf934fa79f4acf3d9e599727fa589f155ec265569953b9e419cda79d54057157cbb1510261e3a
 DIST winetricks-20180217.tar.gz 646726 BLAKE2B 
3cde3ca1cd7c74946732c530a49ca532975e037bc2907e88239b4697b3828dfcde3ce250d95e6c03ca36cc36b4e00cd545b0f6b63f984722a737674aff808e27
 SHA512 
3f90ef3381d89c0dac8c4b7acea04d71fe898207c534d4fe00c3db4e5c2e18db90602b78672e8ecf6f754206a999465ba5d8f1f5962e0291386badfc8202cd73
 DIST winetricks-20180513.tar.gz 652299 BLAKE2B 
fb4c55e534e368d5d7e94247feed031d0f6f98a2f3604f6187e32d25659f1cfa7f5589806e429ee054b4a94c00ebd6ac63cb99012fd94a99622891132a477001
 SHA512 
49fc022fc3db068145baf3a51444dc937deb092aceac8e31259888fea21ffe86f747a0d4dbd5ff10f253a94b15de090c01f20dacbe838c8444bdb00b98cbf5c6
+DIST winetricks-20180603.tar.gz 651678 BLAKE2B 
a70ae685bd49e429199619176e130681ab2d28ba8659f68bdba298d82e610c77df86c3d998273e60bb53d9da24bddcfe80f6d89e044007c1477a92bbc0e6043f
 SHA512 
e88b0d4375331c94d3e2d995985b6c28fd208f1e32b1e4d84f33997a8a69fc9f8a4173325a571f5d10f233bcf40fe4cde644401c1563c8cfe7915748448a08cd
 DIST winetricks-gentoo-2012.11.24.tar.bz2 6398 BLAKE2B 
54a4502f6e8ef15d21b02c43e3ce599e32d476c2559246064de14cc4ce2243ff11dde681d24c8a7f4913c3d7a10b855bda47e8fb8ecad31e00d839705416be6f
 SHA512 
59c93b73f3a7b2d11aefcde2ff66659ff1de21ad4b5f232f4b60572f3a48b15a6c49f369b1696862bf1b33fde190bf5598945e9536fb41ddec42d8def4d2be2a

diff --git a/app-emulation/winetricks/winetricks-20180603.ebuild 
b/app-emulation/winetricks/winetricks-20180603.ebuild
new file mode 100644
index 000..58d2e71
--- /dev/null
+++ b/app-emulation/winetricks/winetricks-20180603.ebuild
@@ -0,0 +1,96 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit gnome2-utils eutils
+
+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/~tetromino/distfiles/wine/${wtg}.tar.bz2 )
+   kde? ( https://dev.gentoo.org/~tetromino/distfiles/wine/${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"
+
+DEPEND="test? (
+   dev-python/bashate
+   dev-util/checkbashisms
+   dev-util/shellcheck
+   )"
+
+RDEPEND="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
+   cd "${WORKDIR}/${wtg}" || die
+   domenu winetricks.desktop
+   insinto /usr/share/icons/hicolor/scalable/apps
+   doins wine-winetricks.svg
+   fi
+}
+
+pkg_preinst() {
+   if use gtk || use kde; then
+   gnome2_icon_savel

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

2018-05-16 Thread Jimi Huotari
commit: b5e2bed091b77b3632f8234585e7aa06f562460d
Author: Jimi Huotari  gentoo  org>
AuthorDate: Wed May 16 14:31:03 2018 +
Commit: Jimi Huotari  gentoo  org>
CommitDate: Wed May 16 14:31:03 2018 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=b5e2bed0

app-emulation/winetricks: Version bump to 20180513.

Package-Manager: Portage-2.3.36, Repoman-2.3.9

 app-emulation/winetricks/Manifest  |  1 +
 .../winetricks/winetricks-20180513.ebuild  | 96 ++
 2 files changed, 97 insertions(+)

diff --git a/app-emulation/winetricks/Manifest 
b/app-emulation/winetricks/Manifest
index 4d6213b..e50eaeb 100644
--- a/app-emulation/winetricks/Manifest
+++ b/app-emulation/winetricks/Manifest
@@ -1,3 +1,4 @@
 DIST winetricks-20170823.tar.gz 639027 BLAKE2B 
ce0de22ff3363bd6fd675d07ea235ed5fb03ea7a84b3242329c094d6a9190c61813a1f360e74ece49d43d2dbf48dbbb1e94c4febc6e1a0d84cf1df895b0be6f9
 SHA512 
edc805be1a1c4fa64ae16b14fdd46786e259b88a0cde7afdf24bf934fa79f4acf3d9e599727fa589f155ec265569953b9e419cda79d54057157cbb1510261e3a
 DIST winetricks-20180217.tar.gz 646726 BLAKE2B 
3cde3ca1cd7c74946732c530a49ca532975e037bc2907e88239b4697b3828dfcde3ce250d95e6c03ca36cc36b4e00cd545b0f6b63f984722a737674aff808e27
 SHA512 
3f90ef3381d89c0dac8c4b7acea04d71fe898207c534d4fe00c3db4e5c2e18db90602b78672e8ecf6f754206a999465ba5d8f1f5962e0291386badfc8202cd73
+DIST winetricks-20180513.tar.gz 652299 BLAKE2B 
fb4c55e534e368d5d7e94247feed031d0f6f98a2f3604f6187e32d25659f1cfa7f5589806e429ee054b4a94c00ebd6ac63cb99012fd94a99622891132a477001
 SHA512 
49fc022fc3db068145baf3a51444dc937deb092aceac8e31259888fea21ffe86f747a0d4dbd5ff10f253a94b15de090c01f20dacbe838c8444bdb00b98cbf5c6
 DIST winetricks-gentoo-2012.11.24.tar.bz2 6398 BLAKE2B 
54a4502f6e8ef15d21b02c43e3ce599e32d476c2559246064de14cc4ce2243ff11dde681d24c8a7f4913c3d7a10b855bda47e8fb8ecad31e00d839705416be6f
 SHA512 
59c93b73f3a7b2d11aefcde2ff66659ff1de21ad4b5f232f4b60572f3a48b15a6c49f369b1696862bf1b33fde190bf5598945e9536fb41ddec42d8def4d2be2a

diff --git a/app-emulation/winetricks/winetricks-20180513.ebuild 
b/app-emulation/winetricks/winetricks-20180513.ebuild
new file mode 100644
index 000..58d2e71
--- /dev/null
+++ b/app-emulation/winetricks/winetricks-20180513.ebuild
@@ -0,0 +1,96 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit gnome2-utils eutils
+
+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/~tetromino/distfiles/wine/${wtg}.tar.bz2 )
+   kde? ( https://dev.gentoo.org/~tetromino/distfiles/wine/${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"
+
+DEPEND="test? (
+   dev-python/bashate
+   dev-util/checkbashisms
+   dev-util/shellcheck
+   )"
+
+RDEPEND="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
+   cd "${WORKDIR}/${wtg}" || die
+   domenu winetricks.desktop
+   insinto /usr/share/icons/hicolor/scalable/apps
+   doins wine-winetricks.svg
+   fi
+}
+
+pkg_preinst() {
+   if use gtk || use kde; then
+   gnome2_icon_savelist
+   fi
+}
+
+pkg_postinst() {
+   if use gtk || use kde; then
+   gnome2_icon_cache_update
+   fi
+}
+
+pkg_postrm() {
+   if use gtk || use kde; then
+   gnome2_icon_cache_update
+   fi
+}



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

2018-04-12 Thread Jimi Huotari
commit: 279b841bc529b8861d16fcae985824d9ba436b7b
Author: Jimi Huotari  gentoo  org>
AuthorDate: Wed Apr 11 19:37:06 2018 +
Commit: Jimi Huotari  gentoo  org>
CommitDate: Wed Apr 11 19:37:06 2018 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=279b841b

app-emulation/winetricks: Version bump to 20180217.

Closes: https://bugs.gentoo.org/652766
Package-Manager: Portage-2.3.28, Repoman-2.3.9

 app-emulation/winetricks/Manifest  |  7 +-
 .../winetricks/winetricks-20180217.ebuild  | 96 ++
 2 files changed, 100 insertions(+), 3 deletions(-)

diff --git a/app-emulation/winetricks/Manifest 
b/app-emulation/winetricks/Manifest
index eb053ca..72face1 100644
--- a/app-emulation/winetricks/Manifest
+++ b/app-emulation/winetricks/Manifest
@@ -1,3 +1,4 @@
-DIST winetricks-20170823.tar.gz 639027 SHA256 
0e7e007b0dd39f773213a5540e7c44e4105d9435ef067c0efdcc6fda70c029de SHA512 
edc805be1a1c4fa64ae16b14fdd46786e259b88a0cde7afdf24bf934fa79f4acf3d9e599727fa589f155ec265569953b9e419cda79d54057157cbb1510261e3a
 WHIRLPOOL 
f1d556a36b20982a1a41514aea60c2834f40bfb0cbb6512cfcbe3bdef5dc07fdc585c06acb0b8c372dfbc3b549ee0bb52b907fc818e598676b27e1f8669f3eba
-DIST winetricks-20171222.tar.gz 645227 SHA256 
971e1979c87375979cef4d2ca3335b8993df2454932ffc4956cb8588b49bd04d SHA512 
fcee2dcac4c68a2c8f61995146d83a81ee85364e400ceadfed1ae1a6f49ea389a6d044fc9ae2324dbbaf93ec3eb616ab167ed880b1a583e89708cf66fb8c5965
 WHIRLPOOL 
438c1c7e8c703827278559824379ad40b6234f1b2f860b2c2efef3b0b25ace81bb0111762a449ed2ea61cda7c207e4b55747712e6d97cb48e8b3f68620d57b8b
-DIST winetricks-gentoo-2012.11.24.tar.bz2 6398 SHA256 
dded8c294cc5c2e71e4a5d1531ab165178cf3d2d1d890d0656368c2e499bfeb9 SHA512 
59c93b73f3a7b2d11aefcde2ff66659ff1de21ad4b5f232f4b60572f3a48b15a6c49f369b1696862bf1b33fde190bf5598945e9536fb41ddec42d8def4d2be2a
 WHIRLPOOL 
268da9e06712a678fbbcfff8eac1fca364b5e46f0a9c48a591eb88f03260b1a55f203eb2908bfe1f0a534b77c866127ff6f7049b0e43fe8abeaaa26fe55de75b
+DIST winetricks-20170823.tar.gz 639027 BLAKE2B 
ce0de22ff3363bd6fd675d07ea235ed5fb03ea7a84b3242329c094d6a9190c61813a1f360e74ece49d43d2dbf48dbbb1e94c4febc6e1a0d84cf1df895b0be6f9
 SHA512 
edc805be1a1c4fa64ae16b14fdd46786e259b88a0cde7afdf24bf934fa79f4acf3d9e599727fa589f155ec265569953b9e419cda79d54057157cbb1510261e3a
+DIST winetricks-20171222.tar.gz 645227 BLAKE2B 
b3d798071593851eb7293270ab40438f114576c58e9c4df2ec685192a1eb1b2f8fbbb9d71a7575472575d56941a6fdeb1b7b2c33e87e0e40885ba8489764c392
 SHA512 
fcee2dcac4c68a2c8f61995146d83a81ee85364e400ceadfed1ae1a6f49ea389a6d044fc9ae2324dbbaf93ec3eb616ab167ed880b1a583e89708cf66fb8c5965
+DIST winetricks-20180217.tar.gz 646726 BLAKE2B 
3cde3ca1cd7c74946732c530a49ca532975e037bc2907e88239b4697b3828dfcde3ce250d95e6c03ca36cc36b4e00cd545b0f6b63f984722a737674aff808e27
 SHA512 
3f90ef3381d89c0dac8c4b7acea04d71fe898207c534d4fe00c3db4e5c2e18db90602b78672e8ecf6f754206a999465ba5d8f1f5962e0291386badfc8202cd73
+DIST winetricks-gentoo-2012.11.24.tar.bz2 6398 BLAKE2B 
54a4502f6e8ef15d21b02c43e3ce599e32d476c2559246064de14cc4ce2243ff11dde681d24c8a7f4913c3d7a10b855bda47e8fb8ecad31e00d839705416be6f
 SHA512 
59c93b73f3a7b2d11aefcde2ff66659ff1de21ad4b5f232f4b60572f3a48b15a6c49f369b1696862bf1b33fde190bf5598945e9536fb41ddec42d8def4d2be2a

diff --git a/app-emulation/winetricks/winetricks-20180217.ebuild 
b/app-emulation/winetricks/winetricks-20180217.ebuild
new file mode 100644
index 000..58d2e71
--- /dev/null
+++ b/app-emulation/winetricks/winetricks-20180217.ebuild
@@ -0,0 +1,96 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit gnome2-utils eutils
+
+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/~tetromino/distfiles/wine/${wtg}.tar.bz2 )
+   kde? ( https://dev.gentoo.org/~tetromino/distfiles/wine/${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"
+
+DEPEND="test? (
+   dev-python/bashate
+   dev-util/checkbashisms
+   dev-util/shellcheck
+   )"
+
+RDEPEND="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" cat

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

2018-04-12 Thread Jimi Huotari
commit: 912c28c6071fdb5b7058c12716439ada3396ed2c
Author: Jimi Huotari  gentoo  org>
AuthorDate: Thu Apr 12 09:49:30 2018 +
Commit: Jimi Huotari  gentoo  org>
CommitDate: Thu Apr 12 09:49:30 2018 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=912c28c6

app-emulation/winetricks: Remove version 20171222.

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 app-emulation/winetricks/Manifest  |  1 -
 .../winetricks/winetricks-20171222.ebuild  | 96 --
 2 files changed, 97 deletions(-)

diff --git a/app-emulation/winetricks/Manifest 
b/app-emulation/winetricks/Manifest
index 72face1..4d6213b 100644
--- a/app-emulation/winetricks/Manifest
+++ b/app-emulation/winetricks/Manifest
@@ -1,4 +1,3 @@
 DIST winetricks-20170823.tar.gz 639027 BLAKE2B 
ce0de22ff3363bd6fd675d07ea235ed5fb03ea7a84b3242329c094d6a9190c61813a1f360e74ece49d43d2dbf48dbbb1e94c4febc6e1a0d84cf1df895b0be6f9
 SHA512 
edc805be1a1c4fa64ae16b14fdd46786e259b88a0cde7afdf24bf934fa79f4acf3d9e599727fa589f155ec265569953b9e419cda79d54057157cbb1510261e3a
-DIST winetricks-20171222.tar.gz 645227 BLAKE2B 
b3d798071593851eb7293270ab40438f114576c58e9c4df2ec685192a1eb1b2f8fbbb9d71a7575472575d56941a6fdeb1b7b2c33e87e0e40885ba8489764c392
 SHA512 
fcee2dcac4c68a2c8f61995146d83a81ee85364e400ceadfed1ae1a6f49ea389a6d044fc9ae2324dbbaf93ec3eb616ab167ed880b1a583e89708cf66fb8c5965
 DIST winetricks-20180217.tar.gz 646726 BLAKE2B 
3cde3ca1cd7c74946732c530a49ca532975e037bc2907e88239b4697b3828dfcde3ce250d95e6c03ca36cc36b4e00cd545b0f6b63f984722a737674aff808e27
 SHA512 
3f90ef3381d89c0dac8c4b7acea04d71fe898207c534d4fe00c3db4e5c2e18db90602b78672e8ecf6f754206a999465ba5d8f1f5962e0291386badfc8202cd73
 DIST winetricks-gentoo-2012.11.24.tar.bz2 6398 BLAKE2B 
54a4502f6e8ef15d21b02c43e3ce599e32d476c2559246064de14cc4ce2243ff11dde681d24c8a7f4913c3d7a10b855bda47e8fb8ecad31e00d839705416be6f
 SHA512 
59c93b73f3a7b2d11aefcde2ff66659ff1de21ad4b5f232f4b60572f3a48b15a6c49f369b1696862bf1b33fde190bf5598945e9536fb41ddec42d8def4d2be2a

diff --git a/app-emulation/winetricks/winetricks-20171222.ebuild 
b/app-emulation/winetricks/winetricks-20171222.ebuild
deleted file mode 100644
index 58d2e71..000
--- a/app-emulation/winetricks/winetricks-20171222.ebuild
+++ /dev/null
@@ -1,96 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit gnome2-utils eutils
-
-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/~tetromino/distfiles/wine/${wtg}.tar.bz2 )
-   kde? ( https://dev.gentoo.org/~tetromino/distfiles/wine/${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"
-
-DEPEND="test? (
-   dev-python/bashate
-   dev-util/checkbashisms
-   dev-util/shellcheck
-   )"
-
-RDEPEND="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
-   cd "${WORKDIR}/${wtg}" || die
-   domenu winetricks.desktop
-   insinto /usr/share/icons/hicolor/scalable/apps
-   doins wine-winetricks.svg
-   fi
-}
-
-pkg_preinst() {
-   if use gtk || use kde; then
-   gnome2_icon_savelist
-   fi
-}
-
-pkg_postinst() {
-   if use gtk || use kde; then
-   gnome2_icon_cache_update
-   fi
-}
-
-pkg_postrm() {
-   if use gtk || use kde; then
-   gnome2_icon_cache_update
-   fi
-}



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

2018-01-20 Thread Jimi Huotari
commit: ccff5f9de55baf85c4849da46ca49de1647ed927
Author: Jimi Huotari  gentoo  org>
AuthorDate: Sat Jan 20 12:29:18 2018 +
Commit: Jimi Huotari  gentoo  org>
CommitDate: Sat Jan 20 12:29:18 2018 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=ccff5f9d

app-emulation/winetricks: Move syntax test dependencies to DEPEND.

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 app-emulation/winetricks/winetricks-20171222.ebuild | 12 +++-
 app-emulation/winetricks/winetricks-.ebuild | 12 +++-
 2 files changed, 14 insertions(+), 10 deletions(-)

diff --git a/app-emulation/winetricks/winetricks-20171222.ebuild 
b/app-emulation/winetricks/winetricks-20171222.ebuild
index 1b2a029..58d2e71 100644
--- a/app-emulation/winetricks/winetricks-20171222.ebuild
+++ b/app-emulation/winetricks/winetricks-20171222.ebuild
@@ -27,7 +27,12 @@ LICENSE="LGPL-2.1+"
 SLOT="0"
 IUSE="gtk kde rar test"
 
-DEPEND=""
+DEPEND="test? (
+   dev-python/bashate
+   dev-util/checkbashisms
+   dev-util/shellcheck
+   )"
+
 RDEPEND="app-arch/cabextract
app-arch/p7zip
app-arch/unzip
@@ -36,10 +41,7 @@ RDEPEND="app-arch/cabextract
x11-misc/xdg-utils
gtk? ( gnome-extra/zenity )
kde? ( kde-apps/kdialog )
-   rar? ( app-arch/unrar )
-   test? ( dev-python/bashate
-   dev-util/checkbashisms
-   dev-util/shellcheck )"
+   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.

diff --git a/app-emulation/winetricks/winetricks-.ebuild 
b/app-emulation/winetricks/winetricks-.ebuild
index 1b2a029..58d2e71 100644
--- a/app-emulation/winetricks/winetricks-.ebuild
+++ b/app-emulation/winetricks/winetricks-.ebuild
@@ -27,7 +27,12 @@ LICENSE="LGPL-2.1+"
 SLOT="0"
 IUSE="gtk kde rar test"
 
-DEPEND=""
+DEPEND="test? (
+   dev-python/bashate
+   dev-util/checkbashisms
+   dev-util/shellcheck
+   )"
+
 RDEPEND="app-arch/cabextract
app-arch/p7zip
app-arch/unzip
@@ -36,10 +41,7 @@ RDEPEND="app-arch/cabextract
x11-misc/xdg-utils
gtk? ( gnome-extra/zenity )
kde? ( kde-apps/kdialog )
-   rar? ( app-arch/unrar )
-   test? ( dev-python/bashate
-   dev-util/checkbashisms
-   dev-util/shellcheck )"
+   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.



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

2018-01-14 Thread Jimi Huotari
commit: 53c06920a5a995626dbd1205ca52ee9e1dd72fc1
Author: Jimi Huotari  gentoo  org>
AuthorDate: Sun Jan 14 17:54:06 2018 +
Commit: Jimi Huotari  gentoo  org>
CommitDate: Sun Jan 14 17:54:06 2018 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=53c06920

app-emulation/winetricks: Update the comments on 'QA_DESKTOP_FILE'.

The 'app-emulation/wine' references are no longer accurate.

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 app-emulation/winetricks/winetricks-.ebuild | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/app-emulation/winetricks/winetricks-.ebuild 
b/app-emulation/winetricks/winetricks-.ebuild
index 77031dd..1b2a029 100644
--- a/app-emulation/winetricks/winetricks-.ebuild
+++ b/app-emulation/winetricks/winetricks-.ebuild
@@ -44,7 +44,10 @@ RDEPEND="app-arch/cabextract
 # Test targets include syntax checks only, not the "heavy duty" tests
 # that would require a lot of disk space, as well as network access.
 
-# Uses non-standard "Wine" category, which is provided by app-emulation/wine; 
#451552
+# 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() {



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

2018-01-14 Thread Jimi Huotari
commit: 1d8e1fb35763b7d27deb11b86dc4339907bda8bd
Author: Jimi Huotari  gentoo  org>
AuthorDate: Sun Jan 14 17:49:01 2018 +
Commit: Jimi Huotari  gentoo  org>
CommitDate: Sun Jan 14 17:49:01 2018 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=1d8e1fb3

app-emulation/winetricks: Add support for tests.

Add support for syntax checks using 'dev-python/bashate',
'dev-util/checkbashisms', and 'dev-util/shellcheck' via
FEATURES="test".

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 app-emulation/winetricks/winetricks-.ebuild | 17 -
 1 file changed, 12 insertions(+), 5 deletions(-)

diff --git a/app-emulation/winetricks/winetricks-.ebuild 
b/app-emulation/winetricks/winetricks-.ebuild
index a1bb7b2..77031dd 100644
--- a/app-emulation/winetricks/winetricks-.ebuild
+++ b/app-emulation/winetricks/winetricks-.ebuild
@@ -25,7 +25,7 @@ HOMEPAGE="https://github.com/Winetricks/winetricks 
https://wiki.winehq.org/Winet
 
 LICENSE="LGPL-2.1+"
 SLOT="0"
-IUSE="gtk kde rar"
+IUSE="gtk kde rar test"
 
 DEPEND=""
 RDEPEND="app-arch/cabextract
@@ -36,14 +36,17 @@ RDEPEND="app-arch/cabextract
x11-misc/xdg-utils
gtk? ( gnome-extra/zenity )
kde? ( kde-apps/kdialog )
-   rar? ( app-arch/unrar )"
+   rar? ( app-arch/unrar )
+   test? ( dev-python/bashate
+   dev-util/checkbashisms
+   dev-util/shellcheck )"
+
+# Test targets include syntax checks only, not the "heavy duty" tests
+# that would require a lot of disk space, as well as network access.
 
 # Uses non-standard "Wine" category, which is provided by app-emulation/wine; 
#451552
 QA_DESKTOP_FILE="usr/share/applications/winetricks.desktop"
 
-# Tests require network access and run Wine, which is unreliable from a 
portage environment.
-RESTRICT="test"
-
 src_unpack() {
if [[ ${PV} == "" ]] ; then
git-r3_src_unpack
@@ -55,6 +58,10 @@ src_unpack() {
fi
 }
 
+src_test() {
+   ./tests/shell-checks || die "Test(s) failed."
+}
+
 src_install() {
default
if use gtk || use kde; then



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

2018-01-14 Thread Jimi Huotari
commit: dd682454fd5d9b137b7857d9f33ca512b12ab9a7
Author: Jimi Huotari  gentoo  org>
AuthorDate: Sun Jan 14 17:56:26 2018 +
Commit: Jimi Huotari  gentoo  org>
CommitDate: Sun Jan 14 17:56:26 2018 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=dd682454

app-emulation/winetricks: Version bump to 20171222.

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 app-emulation/winetricks/Manifest  |  1 +
 .../winetricks/winetricks-20171222.ebuild  | 94 ++
 2 files changed, 95 insertions(+)

diff --git a/app-emulation/winetricks/Manifest 
b/app-emulation/winetricks/Manifest
index f0d9956..eb053ca 100644
--- a/app-emulation/winetricks/Manifest
+++ b/app-emulation/winetricks/Manifest
@@ -1,2 +1,3 @@
 DIST winetricks-20170823.tar.gz 639027 SHA256 
0e7e007b0dd39f773213a5540e7c44e4105d9435ef067c0efdcc6fda70c029de SHA512 
edc805be1a1c4fa64ae16b14fdd46786e259b88a0cde7afdf24bf934fa79f4acf3d9e599727fa589f155ec265569953b9e419cda79d54057157cbb1510261e3a
 WHIRLPOOL 
f1d556a36b20982a1a41514aea60c2834f40bfb0cbb6512cfcbe3bdef5dc07fdc585c06acb0b8c372dfbc3b549ee0bb52b907fc818e598676b27e1f8669f3eba
+DIST winetricks-20171222.tar.gz 645227 SHA256 
971e1979c87375979cef4d2ca3335b8993df2454932ffc4956cb8588b49bd04d SHA512 
fcee2dcac4c68a2c8f61995146d83a81ee85364e400ceadfed1ae1a6f49ea389a6d044fc9ae2324dbbaf93ec3eb616ab167ed880b1a583e89708cf66fb8c5965
 WHIRLPOOL 
438c1c7e8c703827278559824379ad40b6234f1b2f860b2c2efef3b0b25ace81bb0111762a449ed2ea61cda7c207e4b55747712e6d97cb48e8b3f68620d57b8b
 DIST winetricks-gentoo-2012.11.24.tar.bz2 6398 SHA256 
dded8c294cc5c2e71e4a5d1531ab165178cf3d2d1d890d0656368c2e499bfeb9 SHA512 
59c93b73f3a7b2d11aefcde2ff66659ff1de21ad4b5f232f4b60572f3a48b15a6c49f369b1696862bf1b33fde190bf5598945e9536fb41ddec42d8def4d2be2a
 WHIRLPOOL 
268da9e06712a678fbbcfff8eac1fca364b5e46f0a9c48a591eb88f03260b1a55f203eb2908bfe1f0a534b77c866127ff6f7049b0e43fe8abeaaa26fe55de75b

diff --git a/app-emulation/winetricks/winetricks-20171222.ebuild 
b/app-emulation/winetricks/winetricks-20171222.ebuild
new file mode 100644
index 000..1b2a029
--- /dev/null
+++ b/app-emulation/winetricks/winetricks-20171222.ebuild
@@ -0,0 +1,94 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit gnome2-utils eutils
+
+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/~tetromino/distfiles/wine/${wtg}.tar.bz2 )
+   kde? ( https://dev.gentoo.org/~tetromino/distfiles/wine/${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"
+
+DEPEND=""
+RDEPEND="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? ( dev-python/bashate
+   dev-util/checkbashisms
+   dev-util/shellcheck )"
+
+# 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
+   cd "${WORKDIR}/${wtg}" || die
+   domenu winetricks.desktop
+   insinto /usr/share/icons/hicolor/scalable/apps
+   doins wine-winetricks.svg
+   fi
+}
+
+pkg_preinst() {
+   if use gtk || use kde; then
+   gnome2_icon_savelist
+   fi
+}
+
+pkg_postinst() {
+   if use gtk || use kde; then
+   gnome2_icon_cache_update
+   fi
+}
+
+pkg_postrm() {
+   if use gtk || use kde; then
+   gnome2_icon_cache_update
+   fi
+}



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

2018-01-14 Thread Jimi Huotari
commit: 745f57cdcd43b13b7663eb0bc57af796016fd1dc
Author: Jimi Huotari  gentoo  org>
AuthorDate: Sun Jan 14 17:41:41 2018 +
Commit: Jimi Huotari  gentoo  org>
CommitDate: Sun Jan 14 17:45:52 2018 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=745f57cd

app-emulation/winetricks: Drop the 'app-emulation/wine' dependency.

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 app-emulation/winetricks/winetricks-20170823.ebuild | 7 ++-
 app-emulation/winetricks/winetricks-.ebuild | 7 ++-
 2 files changed, 4 insertions(+), 10 deletions(-)

diff --git a/app-emulation/winetricks/winetricks-20170823.ebuild 
b/app-emulation/winetricks/winetricks-20170823.ebuild
index b1e5c8b..111786b 100644
--- a/app-emulation/winetricks/winetricks-20170823.ebuild
+++ b/app-emulation/winetricks/winetricks-20170823.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -32,11 +32,8 @@ RDEPEND="app-arch/cabextract
app-arch/p7zip
app-arch/unzip
net-misc/wget
+   virtual/wine
x11-misc/xdg-utils
-   || (
-   app-emulation/wine
-   virtual/wine
-   )
gtk? ( gnome-extra/zenity )
kde? ( kde-apps/kdialog )
rar? ( app-arch/unrar )"

diff --git a/app-emulation/winetricks/winetricks-.ebuild 
b/app-emulation/winetricks/winetricks-.ebuild
index 655af7a..a1bb7b2 100644
--- a/app-emulation/winetricks/winetricks-.ebuild
+++ b/app-emulation/winetricks/winetricks-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -32,11 +32,8 @@ RDEPEND="app-arch/cabextract
app-arch/p7zip
app-arch/unzip
net-misc/wget
+   virtual/wine
x11-misc/xdg-utils
-   || (
-   app-emulation/wine
-   virtual/wine
-   )
gtk? ( gnome-extra/zenity )
kde? ( kde-apps/kdialog )
rar? ( app-arch/unrar )"