* [gentoo-commits] repo/gentoo:master commit in: sys-boot/woeusb/
@ 2018-04-26 18:16 Pacho Ramos
0 siblings, 0 replies; 27+ messages in thread
From: Pacho Ramos @ 2018-04-26 18:16 UTC (permalink / raw
To: gentoo-commits
commit: 9c522f1be2d8ab7d4ebdebc051ed6886a1d7cdd2
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 26 18:14:56 2018 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Thu Apr 26 18:16:13 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c522f1b
sys-boot/woeusb: Fix deps
Package-Manager: Portage-2.3.31, Repoman-2.3.9
sys-boot/woeusb/woeusb-3.1.5.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sys-boot/woeusb/woeusb-3.1.5.ebuild b/sys-boot/woeusb/woeusb-3.1.5.ebuild
index 0ba1d2aa896..d1da4080908 100644
--- a/sys-boot/woeusb/woeusb-3.1.5.ebuild
+++ b/sys-boot/woeusb/woeusb-3.1.5.ebuild
@@ -15,8 +15,7 @@ SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="minimal"
-DEPEND=""
-RDEPEND="${DEPEND}
+RDEPEND="
sys-apps/util-linux
sys-block/parted
sys-fs/dosfstools
@@ -24,6 +23,7 @@ RDEPEND="${DEPEND}
sys-boot/grub:2[grub_platforms_pc]
!minimal? ( x11-libs/wxGTK:${WX_GTK_VER} )
"
+DEPEND="${RDEPEND}"
S="${WORKDIR}/WoeUSB-${PV}"
^ permalink raw reply related [flat|nested] 27+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-boot/woeusb/
@ 2018-04-26 18:16 Pacho Ramos
0 siblings, 0 replies; 27+ messages in thread
From: Pacho Ramos @ 2018-04-26 18:16 UTC (permalink / raw
To: gentoo-commits
commit: 3f55b89dc08b6106907082106d605a971e71ad3b
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 26 18:14:03 2018 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Thu Apr 26 18:16:11 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f55b89d
sys-boot/woeusb: Add woeusb
To have a working tool to generate bootable Win7 (and others) pendrives
Package-Manager: Portage-2.3.31, Repoman-2.3.9
sys-boot/woeusb/Manifest | 1 +
sys-boot/woeusb/metadata.xml | 10 +++++++
sys-boot/woeusb/woeusb-3.1.5.ebuild | 58 +++++++++++++++++++++++++++++++++++++
3 files changed, 69 insertions(+)
diff --git a/sys-boot/woeusb/Manifest b/sys-boot/woeusb/Manifest
new file mode 100644
index 00000000000..4bd4f091734
--- /dev/null
+++ b/sys-boot/woeusb/Manifest
@@ -0,0 +1 @@
+DIST woeusb-3.1.5.tar.gz 399712 BLAKE2B d52b29249af680577299a02cb9a2c1436aef73a0240bff2525c494657c197a2fc0709e0ff6f35eb5d18592145347af284a998deacecff37effd95b75ab13bc9a SHA512 5cf4eb45b126d71bcb376148383faf9713bc06ec4ee3ccc2dfa6528d9fba382bceaae2cdd47f2d8ba775dad1ca8e6258af40fc6362336927894398193600c965
diff --git a/sys-boot/woeusb/metadata.xml b/sys-boot/woeusb/metadata.xml
new file mode 100644
index 00000000000..8e2305513d4
--- /dev/null
+++ b/sys-boot/woeusb/metadata.xml
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<maintainer type="person">
+ <email>pacho@gentoo.org</email>
+</maintainer>
+<use>
+ <flag name="minimal">Install only woeusb tool</flag>
+</use>
+</pkgmetadata>
diff --git a/sys-boot/woeusb/woeusb-3.1.5.ebuild b/sys-boot/woeusb/woeusb-3.1.5.ebuild
new file mode 100644
index 00000000000..0ba1d2aa896
--- /dev/null
+++ b/sys-boot/woeusb/woeusb-3.1.5.ebuild
@@ -0,0 +1,58 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+WX_GTK_VER="3.0-gtk3"
+
+inherit autotools wxwidgets
+
+DESCRIPTION="Creates windows installer on usb media from an iso image"
+HOMEPAGE="https://github.com/slacka/WoeUSB"
+SRC_URI="https://github.com/slacka/WoeUSB/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="minimal"
+
+DEPEND=""
+RDEPEND="${DEPEND}
+ sys-apps/util-linux
+ sys-block/parted
+ sys-fs/dosfstools
+ sys-fs/ntfs3g
+ sys-boot/grub:2[grub_platforms_pc]
+ !minimal? ( x11-libs/wxGTK:${WX_GTK_VER} )
+"
+
+S="${WORKDIR}/WoeUSB-${PV}"
+
+src_prepare() {
+ default
+ find . -type f -print0 | xargs -0 sed -i "s/@@WOEUSB_VERSION@@/${PV}/" || die
+ if ! use minimal; then
+ setup-wxwidgets
+ eautoreconf
+ fi
+}
+
+src_configure() {
+ ! use minimal && default
+}
+
+src_compile() {
+ ! use minimal && default
+}
+
+src_test() {
+ ! use minimal && default
+}
+
+src_install() {
+ if use minimal; then
+ dosbin src/woeusb
+ einstalldocs
+ else
+ default
+ fi
+}
^ permalink raw reply related [flat|nested] 27+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-boot/woeusb/
@ 2018-07-06 13:43 Thomas Deutschmann
0 siblings, 0 replies; 27+ messages in thread
From: Thomas Deutschmann @ 2018-07-06 13:43 UTC (permalink / raw
To: gentoo-commits
commit: 128d59454ef5105c8de75c2c402623879feb01f5
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 6 13:39:08 2018 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Fri Jul 6 13:42:07 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=128d5945
sys-boot/woeusb: x86 stable (bug #659342)
Package-Manager: Portage-2.3.41, Repoman-2.3.9
sys-boot/woeusb/woeusb-3.1.5.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-boot/woeusb/woeusb-3.1.5.ebuild b/sys-boot/woeusb/woeusb-3.1.5.ebuild
index d1da4080908..803545692f5 100644
--- a/sys-boot/woeusb/woeusb-3.1.5.ebuild
+++ b/sys-boot/woeusb/woeusb-3.1.5.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/slacka/WoeUSB/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
IUSE="minimal"
RDEPEND="
^ permalink raw reply related [flat|nested] 27+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-boot/woeusb/
@ 2018-07-09 13:51 Mikle Kolyada
0 siblings, 0 replies; 27+ messages in thread
From: Mikle Kolyada @ 2018-07-09 13:51 UTC (permalink / raw
To: gentoo-commits
commit: 5add5dada25c43d5448cbb6ac2dcbd42c1237a45
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 9 13:48:39 2018 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Mon Jul 9 13:48:39 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5add5dad
sys-boot/woeusb: amd64 stable wrt bug #659342
Package-Manager: Portage-2.3.40, Repoman-2.3.9
sys-boot/woeusb/woeusb-3.1.5.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-boot/woeusb/woeusb-3.1.5.ebuild b/sys-boot/woeusb/woeusb-3.1.5.ebuild
index 803545692f5..a3f3d813207 100644
--- a/sys-boot/woeusb/woeusb-3.1.5.ebuild
+++ b/sys-boot/woeusb/woeusb-3.1.5.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/slacka/WoeUSB/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
IUSE="minimal"
RDEPEND="
^ permalink raw reply related [flat|nested] 27+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-boot/woeusb/
@ 2018-10-14 19:57 Pacho Ramos
0 siblings, 0 replies; 27+ messages in thread
From: Pacho Ramos @ 2018-10-14 19:57 UTC (permalink / raw
To: gentoo-commits
commit: 16755e1b9385fe2aa1016c4895c9296dfe941962
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 14 19:56:48 2018 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sun Oct 14 19:56:59 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16755e1b
sys-boot/woeusb: wxGTK[X] is needed (#660822 by Markus Rathgeb)
Closes: https://bugs.gentoo.org/660822
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
sys-boot/woeusb/woeusb-3.1.5.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sys-boot/woeusb/woeusb-3.1.5.ebuild b/sys-boot/woeusb/woeusb-3.1.5.ebuild
index a3f3d813207..6e6027efa6a 100644
--- a/sys-boot/woeusb/woeusb-3.1.5.ebuild
+++ b/sys-boot/woeusb/woeusb-3.1.5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -21,7 +21,7 @@ RDEPEND="
sys-fs/dosfstools
sys-fs/ntfs3g
sys-boot/grub:2[grub_platforms_pc]
- !minimal? ( x11-libs/wxGTK:${WX_GTK_VER} )
+ !minimal? ( x11-libs/wxGTK:${WX_GTK_VER}[X] )
"
DEPEND="${RDEPEND}"
^ permalink raw reply related [flat|nested] 27+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-boot/woeusb/
@ 2019-01-05 12:56 Pacho Ramos
0 siblings, 0 replies; 27+ messages in thread
From: Pacho Ramos @ 2019-01-05 12:56 UTC (permalink / raw
To: gentoo-commits
commit: e5182f505070b800716ae579f670824686d73367
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 5 12:55:59 2019 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sat Jan 5 12:55:59 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5182f50
sys-boot/woeusb: Bump to 3.2.12
Thanks-to: Christina Vitting
Thanks-to: Buo-ren, Lin
Closes: https://bugs.gentoo.org/673596
Package-Manager: Portage-2.3.53, Repoman-2.3.12
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
sys-boot/woeusb/Manifest | 1 +
sys-boot/woeusb/woeusb-3.2.12.ebuild | 58 ++++++++++++++++++++++++++++++++++++
2 files changed, 59 insertions(+)
diff --git a/sys-boot/woeusb/Manifest b/sys-boot/woeusb/Manifest
index 4bd4f091734..7a57f4c7ff7 100644
--- a/sys-boot/woeusb/Manifest
+++ b/sys-boot/woeusb/Manifest
@@ -1 +1,2 @@
DIST woeusb-3.1.5.tar.gz 399712 BLAKE2B d52b29249af680577299a02cb9a2c1436aef73a0240bff2525c494657c197a2fc0709e0ff6f35eb5d18592145347af284a998deacecff37effd95b75ab13bc9a SHA512 5cf4eb45b126d71bcb376148383faf9713bc06ec4ee3ccc2dfa6528d9fba382bceaae2cdd47f2d8ba775dad1ca8e6258af40fc6362336927894398193600c965
+DIST woeusb-3.2.12.tar.gz 386189 BLAKE2B 53629a185d0b8ff55cb2e60eaa6cb8f9e106d3f5b24f57cf8f777dbf5b9a1e43ed423e53e4710acf9ac5ce3171da7dbfcd40b5b3f297b0db240e7c0f9a687fc0 SHA512 9a4e20003970a3313b080bde9a534fb1724382555281aa510092a3698622dae46f22483ff8968903b5685e00ebfb454718de6db7f3c61c4a2e122c961bfc270f
diff --git a/sys-boot/woeusb/woeusb-3.2.12.ebuild b/sys-boot/woeusb/woeusb-3.2.12.ebuild
new file mode 100644
index 00000000000..81c09abcf2e
--- /dev/null
+++ b/sys-boot/woeusb/woeusb-3.2.12.ebuild
@@ -0,0 +1,58 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+WX_GTK_VER="3.0-gtk3"
+
+inherit autotools wxwidgets
+
+DESCRIPTION="Creates windows installer on usb media from an iso image"
+HOMEPAGE="https://github.com/slacka/WoeUSB"
+SRC_URI="https://github.com/slacka/WoeUSB/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="minimal"
+
+RDEPEND="
+ sys-apps/util-linux
+ sys-block/parted
+ sys-fs/dosfstools
+ sys-fs/ntfs3g
+ sys-boot/grub:2[grub_platforms_pc]
+ !minimal? ( x11-libs/wxGTK:${WX_GTK_VER}[X] )
+"
+DEPEND="${RDEPEND}"
+
+S="${WORKDIR}/WoeUSB-${PV}"
+
+src_prepare() {
+ default
+ find . -type f -print0 | xargs -0 sed -i "s/@@WOEUSB_VERSION@@/${PV}/" || die
+ if ! use minimal; then
+ setup-wxwidgets
+ eautoreconf
+ fi
+}
+
+src_configure() {
+ ! use minimal && default
+}
+
+src_compile() {
+ ! use minimal && default
+}
+
+src_test() {
+ ! use minimal && default
+}
+
+src_install() {
+ if use minimal; then
+ dosbin src/woeusb
+ einstalldocs
+ else
+ default
+ fi
+}
^ permalink raw reply related [flat|nested] 27+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-boot/woeusb/
@ 2019-04-17 11:49 Mikle Kolyada
0 siblings, 0 replies; 27+ messages in thread
From: Mikle Kolyada @ 2019-04-17 11:49 UTC (permalink / raw
To: gentoo-commits
commit: 28396fb1166c3ed4313db949c7755794b85d7b0d
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 17 11:48:02 2019 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Wed Apr 17 11:49:40 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28396fb1
sys-boot/woeusb: amd64 stable wrt bug #683334
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"
sys-boot/woeusb/woeusb-3.2.12.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-boot/woeusb/woeusb-3.2.12.ebuild b/sys-boot/woeusb/woeusb-3.2.12.ebuild
index 81c09abcf2e..cad25750e3c 100644
--- a/sys-boot/woeusb/woeusb-3.2.12.ebuild
+++ b/sys-boot/woeusb/woeusb-3.2.12.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/slacka/WoeUSB/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
IUSE="minimal"
RDEPEND="
^ permalink raw reply related [flat|nested] 27+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-boot/woeusb/
@ 2019-04-18 20:59 Pacho Ramos
0 siblings, 0 replies; 27+ messages in thread
From: Pacho Ramos @ 2019-04-18 20:59 UTC (permalink / raw
To: gentoo-commits
commit: 36e64d196922628ca5187724c2091c7514c67b06
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 18 20:59:18 2019 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Thu Apr 18 20:59:18 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36e64d19
sys-boot/woeusb: Version bump
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
sys-boot/woeusb/Manifest | 1 +
sys-boot/woeusb/woeusb-3.3.0.ebuild | 58 +++++++++++++++++++++++++++++++++++++
2 files changed, 59 insertions(+)
diff --git a/sys-boot/woeusb/Manifest b/sys-boot/woeusb/Manifest
index 7a57f4c7ff7..d7077238214 100644
--- a/sys-boot/woeusb/Manifest
+++ b/sys-boot/woeusb/Manifest
@@ -1,2 +1,3 @@
DIST woeusb-3.1.5.tar.gz 399712 BLAKE2B d52b29249af680577299a02cb9a2c1436aef73a0240bff2525c494657c197a2fc0709e0ff6f35eb5d18592145347af284a998deacecff37effd95b75ab13bc9a SHA512 5cf4eb45b126d71bcb376148383faf9713bc06ec4ee3ccc2dfa6528d9fba382bceaae2cdd47f2d8ba775dad1ca8e6258af40fc6362336927894398193600c965
DIST woeusb-3.2.12.tar.gz 386189 BLAKE2B 53629a185d0b8ff55cb2e60eaa6cb8f9e106d3f5b24f57cf8f777dbf5b9a1e43ed423e53e4710acf9ac5ce3171da7dbfcd40b5b3f297b0db240e7c0f9a687fc0 SHA512 9a4e20003970a3313b080bde9a534fb1724382555281aa510092a3698622dae46f22483ff8968903b5685e00ebfb454718de6db7f3c61c4a2e122c961bfc270f
+DIST woeusb-3.3.0.tar.gz 386251 BLAKE2B 9767fc3ab3ae438ff126c05a197cb41550704b93f3b508ad88b7a39c74777fdd863794970ebc839f79f8b2f1da9f6041bb355783ec1040e31814fead8185439c SHA512 8cac015df2309e4978f38adae9b9da04d896301f8d9d971d3d21801b24c3287d7d405bc4b2b1e0ff285497b5777462eb8cd6ce7dce079daf49b4d5d313a449a3
diff --git a/sys-boot/woeusb/woeusb-3.3.0.ebuild b/sys-boot/woeusb/woeusb-3.3.0.ebuild
new file mode 100644
index 00000000000..81c09abcf2e
--- /dev/null
+++ b/sys-boot/woeusb/woeusb-3.3.0.ebuild
@@ -0,0 +1,58 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+WX_GTK_VER="3.0-gtk3"
+
+inherit autotools wxwidgets
+
+DESCRIPTION="Creates windows installer on usb media from an iso image"
+HOMEPAGE="https://github.com/slacka/WoeUSB"
+SRC_URI="https://github.com/slacka/WoeUSB/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="minimal"
+
+RDEPEND="
+ sys-apps/util-linux
+ sys-block/parted
+ sys-fs/dosfstools
+ sys-fs/ntfs3g
+ sys-boot/grub:2[grub_platforms_pc]
+ !minimal? ( x11-libs/wxGTK:${WX_GTK_VER}[X] )
+"
+DEPEND="${RDEPEND}"
+
+S="${WORKDIR}/WoeUSB-${PV}"
+
+src_prepare() {
+ default
+ find . -type f -print0 | xargs -0 sed -i "s/@@WOEUSB_VERSION@@/${PV}/" || die
+ if ! use minimal; then
+ setup-wxwidgets
+ eautoreconf
+ fi
+}
+
+src_configure() {
+ ! use minimal && default
+}
+
+src_compile() {
+ ! use minimal && default
+}
+
+src_test() {
+ ! use minimal && default
+}
+
+src_install() {
+ if use minimal; then
+ dosbin src/woeusb
+ einstalldocs
+ else
+ default
+ fi
+}
^ permalink raw reply related [flat|nested] 27+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-boot/woeusb/
@ 2019-06-04 20:58 Thomas Deutschmann
0 siblings, 0 replies; 27+ messages in thread
From: Thomas Deutschmann @ 2019-06-04 20:58 UTC (permalink / raw
To: gentoo-commits
commit: 29372137a65ced51ed246b0e7c86684f5d5d175a
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 4 20:44:55 2019 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Tue Jun 4 20:58:11 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29372137
sys-boot/woeusb: x86 stable (bug #683334)
Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
sys-boot/woeusb/woeusb-3.2.12.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-boot/woeusb/woeusb-3.2.12.ebuild b/sys-boot/woeusb/woeusb-3.2.12.ebuild
index cad25750e3c..573d9db62c7 100644
--- a/sys-boot/woeusb/woeusb-3.2.12.ebuild
+++ b/sys-boot/woeusb/woeusb-3.2.12.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/slacka/WoeUSB/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
IUSE="minimal"
RDEPEND="
^ permalink raw reply related [flat|nested] 27+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-boot/woeusb/
@ 2019-07-31 12:06 Agostino Sarubbo
0 siblings, 0 replies; 27+ messages in thread
From: Agostino Sarubbo @ 2019-07-31 12:06 UTC (permalink / raw
To: gentoo-commits
commit: f666fdb89df2afe78ae8162421a1eaaa760de6ef
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 31 12:06:29 2019 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Wed Jul 31 12:06:29 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f666fdb8
sys-boot/woeusb: amd64 stable wrt bug #691106
Package-Manager: Portage-2.3.66, Repoman-2.3.16
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
sys-boot/woeusb/woeusb-3.3.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-boot/woeusb/woeusb-3.3.0.ebuild b/sys-boot/woeusb/woeusb-3.3.0.ebuild
index 81c09abcf2e..cad25750e3c 100644
--- a/sys-boot/woeusb/woeusb-3.3.0.ebuild
+++ b/sys-boot/woeusb/woeusb-3.3.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/slacka/WoeUSB/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
IUSE="minimal"
RDEPEND="
^ permalink raw reply related [flat|nested] 27+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-boot/woeusb/
@ 2019-07-31 13:10 Agostino Sarubbo
0 siblings, 0 replies; 27+ messages in thread
From: Agostino Sarubbo @ 2019-07-31 13:10 UTC (permalink / raw
To: gentoo-commits
commit: f7feec4ddebad71e2001f135e7d48de4b6f6d56c
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 31 13:09:55 2019 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Wed Jul 31 13:09:55 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7feec4d
sys-boot/woeusb: x86 stable wrt bug #691106
Package-Manager: Portage-2.3.66, Repoman-2.3.16
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
sys-boot/woeusb/woeusb-3.3.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-boot/woeusb/woeusb-3.3.0.ebuild b/sys-boot/woeusb/woeusb-3.3.0.ebuild
index cad25750e3c..573d9db62c7 100644
--- a/sys-boot/woeusb/woeusb-3.3.0.ebuild
+++ b/sys-boot/woeusb/woeusb-3.3.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/slacka/WoeUSB/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
IUSE="minimal"
RDEPEND="
^ permalink raw reply related [flat|nested] 27+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-boot/woeusb/
@ 2019-08-01 12:58 Pacho Ramos
0 siblings, 0 replies; 27+ messages in thread
From: Pacho Ramos @ 2019-08-01 12:58 UTC (permalink / raw
To: gentoo-commits
commit: 636b532bf806f7cadb931cb7671e678e735342fd
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 1 12:57:29 2019 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Thu Aug 1 12:58:40 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=636b532b
sys-boot/woeusb: Drop old
Package-Manager: Portage-2.3.69, Repoman-2.3.16
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
sys-boot/woeusb/Manifest | 2 --
sys-boot/woeusb/woeusb-3.1.5.ebuild | 58 ------------------------------------
sys-boot/woeusb/woeusb-3.2.12.ebuild | 58 ------------------------------------
3 files changed, 118 deletions(-)
diff --git a/sys-boot/woeusb/Manifest b/sys-boot/woeusb/Manifest
index d7077238214..c64b842cf3b 100644
--- a/sys-boot/woeusb/Manifest
+++ b/sys-boot/woeusb/Manifest
@@ -1,3 +1 @@
-DIST woeusb-3.1.5.tar.gz 399712 BLAKE2B d52b29249af680577299a02cb9a2c1436aef73a0240bff2525c494657c197a2fc0709e0ff6f35eb5d18592145347af284a998deacecff37effd95b75ab13bc9a SHA512 5cf4eb45b126d71bcb376148383faf9713bc06ec4ee3ccc2dfa6528d9fba382bceaae2cdd47f2d8ba775dad1ca8e6258af40fc6362336927894398193600c965
-DIST woeusb-3.2.12.tar.gz 386189 BLAKE2B 53629a185d0b8ff55cb2e60eaa6cb8f9e106d3f5b24f57cf8f777dbf5b9a1e43ed423e53e4710acf9ac5ce3171da7dbfcd40b5b3f297b0db240e7c0f9a687fc0 SHA512 9a4e20003970a3313b080bde9a534fb1724382555281aa510092a3698622dae46f22483ff8968903b5685e00ebfb454718de6db7f3c61c4a2e122c961bfc270f
DIST woeusb-3.3.0.tar.gz 386251 BLAKE2B 9767fc3ab3ae438ff126c05a197cb41550704b93f3b508ad88b7a39c74777fdd863794970ebc839f79f8b2f1da9f6041bb355783ec1040e31814fead8185439c SHA512 8cac015df2309e4978f38adae9b9da04d896301f8d9d971d3d21801b24c3287d7d405bc4b2b1e0ff285497b5777462eb8cd6ce7dce079daf49b4d5d313a449a3
diff --git a/sys-boot/woeusb/woeusb-3.1.5.ebuild b/sys-boot/woeusb/woeusb-3.1.5.ebuild
deleted file mode 100644
index 6e6027efa6a..00000000000
--- a/sys-boot/woeusb/woeusb-3.1.5.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-WX_GTK_VER="3.0-gtk3"
-
-inherit autotools wxwidgets
-
-DESCRIPTION="Creates windows installer on usb media from an iso image"
-HOMEPAGE="https://github.com/slacka/WoeUSB"
-SRC_URI="https://github.com/slacka/WoeUSB/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="minimal"
-
-RDEPEND="
- sys-apps/util-linux
- sys-block/parted
- sys-fs/dosfstools
- sys-fs/ntfs3g
- sys-boot/grub:2[grub_platforms_pc]
- !minimal? ( x11-libs/wxGTK:${WX_GTK_VER}[X] )
-"
-DEPEND="${RDEPEND}"
-
-S="${WORKDIR}/WoeUSB-${PV}"
-
-src_prepare() {
- default
- find . -type f -print0 | xargs -0 sed -i "s/@@WOEUSB_VERSION@@/${PV}/" || die
- if ! use minimal; then
- setup-wxwidgets
- eautoreconf
- fi
-}
-
-src_configure() {
- ! use minimal && default
-}
-
-src_compile() {
- ! use minimal && default
-}
-
-src_test() {
- ! use minimal && default
-}
-
-src_install() {
- if use minimal; then
- dosbin src/woeusb
- einstalldocs
- else
- default
- fi
-}
diff --git a/sys-boot/woeusb/woeusb-3.2.12.ebuild b/sys-boot/woeusb/woeusb-3.2.12.ebuild
deleted file mode 100644
index 573d9db62c7..00000000000
--- a/sys-boot/woeusb/woeusb-3.2.12.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-WX_GTK_VER="3.0-gtk3"
-
-inherit autotools wxwidgets
-
-DESCRIPTION="Creates windows installer on usb media from an iso image"
-HOMEPAGE="https://github.com/slacka/WoeUSB"
-SRC_URI="https://github.com/slacka/WoeUSB/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="minimal"
-
-RDEPEND="
- sys-apps/util-linux
- sys-block/parted
- sys-fs/dosfstools
- sys-fs/ntfs3g
- sys-boot/grub:2[grub_platforms_pc]
- !minimal? ( x11-libs/wxGTK:${WX_GTK_VER}[X] )
-"
-DEPEND="${RDEPEND}"
-
-S="${WORKDIR}/WoeUSB-${PV}"
-
-src_prepare() {
- default
- find . -type f -print0 | xargs -0 sed -i "s/@@WOEUSB_VERSION@@/${PV}/" || die
- if ! use minimal; then
- setup-wxwidgets
- eautoreconf
- fi
-}
-
-src_configure() {
- ! use minimal && default
-}
-
-src_compile() {
- ! use minimal && default
-}
-
-src_test() {
- ! use minimal && default
-}
-
-src_install() {
- if use minimal; then
- dosbin src/woeusb
- einstalldocs
- else
- default
- fi
-}
^ permalink raw reply related [flat|nested] 27+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-boot/woeusb/
@ 2020-02-22 15:32 Pacho Ramos
0 siblings, 0 replies; 27+ messages in thread
From: Pacho Ramos @ 2020-02-22 15:32 UTC (permalink / raw
To: gentoo-commits
commit: 7618d42499b9f1236bb432ef738c6688e255497f
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 22 15:28:58 2020 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sat Feb 22 15:28:58 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7618d424
sys-boot/woeusb: Bump to 3.3.1
Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
sys-boot/woeusb/Manifest | 1 +
sys-boot/woeusb/woeusb-3.3.1.ebuild | 59 +++++++++++++++++++++++++++++++++++++
2 files changed, 60 insertions(+)
diff --git a/sys-boot/woeusb/Manifest b/sys-boot/woeusb/Manifest
index c64b842cf3b..2232b8a4703 100644
--- a/sys-boot/woeusb/Manifest
+++ b/sys-boot/woeusb/Manifest
@@ -1 +1,2 @@
DIST woeusb-3.3.0.tar.gz 386251 BLAKE2B 9767fc3ab3ae438ff126c05a197cb41550704b93f3b508ad88b7a39c74777fdd863794970ebc839f79f8b2f1da9f6041bb355783ec1040e31814fead8185439c SHA512 8cac015df2309e4978f38adae9b9da04d896301f8d9d971d3d21801b24c3287d7d405bc4b2b1e0ff285497b5777462eb8cd6ce7dce079daf49b4d5d313a449a3
+DIST woeusb-3.3.1.tar.gz 386399 BLAKE2B 1423ecca39018c674b0eea36de732f54cfcdd14b8cc465e6d3c0639192cbd8355436b7a39ba453b19fa6f1c5b1f6938ef12f49710bc2a4af0f2eaed967e03ce7 SHA512 e3460efabaee199eb5ffc73ca99fe2d9141ed3a5f72acd2f8910b093b2b3a93928ee4eeb27d634293448f036101d8bf24aef65dc338c80e6e3e1738004594d52
diff --git a/sys-boot/woeusb/woeusb-3.3.1.ebuild b/sys-boot/woeusb/woeusb-3.3.1.ebuild
new file mode 100644
index 00000000000..2828715f8b0
--- /dev/null
+++ b/sys-boot/woeusb/woeusb-3.3.1.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+WX_GTK_VER="3.0-gtk3"
+
+inherit autotools wxwidgets
+
+DESCRIPTION="Creates windows installer on usb media from an iso image"
+HOMEPAGE="https://github.com/slacka/WoeUSB"
+SRC_URI="https://github.com/slacka/WoeUSB/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="minimal"
+
+RDEPEND="
+ sys-apps/util-linux
+ sys-block/parted
+ sys-fs/dosfstools
+ sys-fs/ntfs3g
+ sys-boot/grub:2[grub_platforms_pc]
+ !minimal? ( x11-libs/wxGTK:${WX_GTK_VER}[X] )
+"
+DEPEND="${RDEPEND}"
+BDEPEND=""
+
+S="${WORKDIR}/WoeUSB-${PV}"
+
+src_prepare() {
+ default
+ find . -type f -print0 | xargs -0 sed -i "s/@@WOEUSB_VERSION@@/${PV}/" || die
+ if ! use minimal; then
+ setup-wxwidgets
+ eautoreconf
+ fi
+}
+
+src_configure() {
+ ! use minimal && default
+}
+
+src_compile() {
+ ! use minimal && default
+}
+
+src_test() {
+ ! use minimal && default
+}
+
+src_install() {
+ if use minimal; then
+ dosbin src/woeusb
+ einstalldocs
+ else
+ default
+ fi
+}
^ permalink raw reply related [flat|nested] 27+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-boot/woeusb/
@ 2020-03-29 10:41 Mikle Kolyada
0 siblings, 0 replies; 27+ messages in thread
From: Mikle Kolyada @ 2020-03-29 10:41 UTC (permalink / raw
To: gentoo-commits
commit: f4c7ba1aebce77998c5c5d4986a0497a6884b4a0
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 29 10:40:52 2020 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sun Mar 29 10:40:52 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4c7ba1a
sys-boot/woeusb: amd64 stable wrt bug #715094
Package-Manager: Portage-2.3.89, Repoman-2.3.20
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
sys-boot/woeusb/woeusb-3.3.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-boot/woeusb/woeusb-3.3.1.ebuild b/sys-boot/woeusb/woeusb-3.3.1.ebuild
index 2828715f8b0..942e5936d82 100644
--- a/sys-boot/woeusb/woeusb-3.3.1.ebuild
+++ b/sys-boot/woeusb/woeusb-3.3.1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/slacka/WoeUSB/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
IUSE="minimal"
RDEPEND="
^ permalink raw reply related [flat|nested] 27+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-boot/woeusb/
@ 2020-03-31 7:22 Agostino Sarubbo
0 siblings, 0 replies; 27+ messages in thread
From: Agostino Sarubbo @ 2020-03-31 7:22 UTC (permalink / raw
To: gentoo-commits
commit: 2ddf2eed19d03e2774cc2e131e59e060cca61da9
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 31 07:22:04 2020 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Tue Mar 31 07:22:04 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ddf2eed
sys-boot/woeusb: x86 stable wrt bug #715094
Package-Manager: Portage-2.3.89, Repoman-2.3.20
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
sys-boot/woeusb/woeusb-3.3.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-boot/woeusb/woeusb-3.3.1.ebuild b/sys-boot/woeusb/woeusb-3.3.1.ebuild
index 942e5936d82..a07611f4377 100644
--- a/sys-boot/woeusb/woeusb-3.3.1.ebuild
+++ b/sys-boot/woeusb/woeusb-3.3.1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/slacka/WoeUSB/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
IUSE="minimal"
RDEPEND="
^ permalink raw reply related [flat|nested] 27+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-boot/woeusb/
@ 2020-04-01 22:58 Pacho Ramos
0 siblings, 0 replies; 27+ messages in thread
From: Pacho Ramos @ 2020-04-01 22:58 UTC (permalink / raw
To: gentoo-commits
commit: c9abccd81fbb81cb7479d308dc05731d665ea3b2
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 1 22:58:24 2020 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Wed Apr 1 22:58:24 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9abccd8
sys-boot/woeusb: Drop old
Package-Manager: Portage-2.3.96, Repoman-2.3.22
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
sys-boot/woeusb/Manifest | 1 -
sys-boot/woeusb/woeusb-3.3.0.ebuild | 58 -------------------------------------
2 files changed, 59 deletions(-)
diff --git a/sys-boot/woeusb/Manifest b/sys-boot/woeusb/Manifest
index 2232b8a4703..8bb853f6f1a 100644
--- a/sys-boot/woeusb/Manifest
+++ b/sys-boot/woeusb/Manifest
@@ -1,2 +1 @@
-DIST woeusb-3.3.0.tar.gz 386251 BLAKE2B 9767fc3ab3ae438ff126c05a197cb41550704b93f3b508ad88b7a39c74777fdd863794970ebc839f79f8b2f1da9f6041bb355783ec1040e31814fead8185439c SHA512 8cac015df2309e4978f38adae9b9da04d896301f8d9d971d3d21801b24c3287d7d405bc4b2b1e0ff285497b5777462eb8cd6ce7dce079daf49b4d5d313a449a3
DIST woeusb-3.3.1.tar.gz 386399 BLAKE2B 1423ecca39018c674b0eea36de732f54cfcdd14b8cc465e6d3c0639192cbd8355436b7a39ba453b19fa6f1c5b1f6938ef12f49710bc2a4af0f2eaed967e03ce7 SHA512 e3460efabaee199eb5ffc73ca99fe2d9141ed3a5f72acd2f8910b093b2b3a93928ee4eeb27d634293448f036101d8bf24aef65dc338c80e6e3e1738004594d52
diff --git a/sys-boot/woeusb/woeusb-3.3.0.ebuild b/sys-boot/woeusb/woeusb-3.3.0.ebuild
deleted file mode 100644
index 573d9db62c7..00000000000
--- a/sys-boot/woeusb/woeusb-3.3.0.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-WX_GTK_VER="3.0-gtk3"
-
-inherit autotools wxwidgets
-
-DESCRIPTION="Creates windows installer on usb media from an iso image"
-HOMEPAGE="https://github.com/slacka/WoeUSB"
-SRC_URI="https://github.com/slacka/WoeUSB/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="minimal"
-
-RDEPEND="
- sys-apps/util-linux
- sys-block/parted
- sys-fs/dosfstools
- sys-fs/ntfs3g
- sys-boot/grub:2[grub_platforms_pc]
- !minimal? ( x11-libs/wxGTK:${WX_GTK_VER}[X] )
-"
-DEPEND="${RDEPEND}"
-
-S="${WORKDIR}/WoeUSB-${PV}"
-
-src_prepare() {
- default
- find . -type f -print0 | xargs -0 sed -i "s/@@WOEUSB_VERSION@@/${PV}/" || die
- if ! use minimal; then
- setup-wxwidgets
- eautoreconf
- fi
-}
-
-src_configure() {
- ! use minimal && default
-}
-
-src_compile() {
- ! use minimal && default
-}
-
-src_test() {
- ! use minimal && default
-}
-
-src_install() {
- if use minimal; then
- dosbin src/woeusb
- einstalldocs
- else
- default
- fi
-}
^ permalink raw reply related [flat|nested] 27+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-boot/woeusb/
@ 2021-07-08 12:51 Pacho Ramos
0 siblings, 0 replies; 27+ messages in thread
From: Pacho Ramos @ 2021-07-08 12:51 UTC (permalink / raw
To: gentoo-commits
commit: eb9056d643c2c7fd9b4e738cc0f73de10fbd76c6
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 8 12:51:28 2021 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Thu Jul 8 12:51:42 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb9056d6
sys-boot/woeusb: Move to maintainer-needed
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
sys-boot/woeusb/metadata.xml | 3 ---
1 file changed, 3 deletions(-)
diff --git a/sys-boot/woeusb/metadata.xml b/sys-boot/woeusb/metadata.xml
index 8e2305513d4..33ad81821b8 100644
--- a/sys-boot/woeusb/metadata.xml
+++ b/sys-boot/woeusb/metadata.xml
@@ -1,9 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
-<maintainer type="person">
- <email>pacho@gentoo.org</email>
-</maintainer>
<use>
<flag name="minimal">Install only woeusb tool</flag>
</use>
^ permalink raw reply related [flat|nested] 27+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-boot/woeusb/
@ 2021-07-16 6:01 Joonas Niilola
0 siblings, 0 replies; 27+ messages in thread
From: Joonas Niilola @ 2021-07-16 6:01 UTC (permalink / raw
To: gentoo-commits
commit: 6a8b6fa7fe85f830b9b7553a05bc9595490c4380
Author: Marco Scardovi <someone <AT> example <DOT> com>
AuthorDate: Sun Jul 11 07:50:26 2021 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Fri Jul 16 06:00:09 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a8b6fa7
sys-boot/woeusb: add myself as maintainer
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Marco Scardovi <marco <AT> scardovi.com>
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
sys-boot/woeusb/metadata.xml | 14 +++++++++++---
1 file changed, 11 insertions(+), 3 deletions(-)
diff --git a/sys-boot/woeusb/metadata.xml b/sys-boot/woeusb/metadata.xml
index 33ad81821b8..1974cac0c1c 100644
--- a/sys-boot/woeusb/metadata.xml
+++ b/sys-boot/woeusb/metadata.xml
@@ -1,7 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
-<use>
- <flag name="minimal">Install only woeusb tool</flag>
-</use>
+ <maintainer type="person" proxied="yes">
+ <email>marco@scardovi.com</email>
+ <name>Marco Scardovi</name>
+ </maintainer>
+ <maintainer type="project" proxied="proxy">
+ <email>proxy-maint@gentoo.org</email>
+ <name>Proxy Maintainers</name>
+ </maintainer>
+ <upstream>
+ <remote-id type="github">WoeUSB/WoeUSB</remote-id>
+ </upstream>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 27+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-boot/woeusb/
@ 2021-07-16 6:01 Joonas Niilola
0 siblings, 0 replies; 27+ messages in thread
From: Joonas Niilola @ 2021-07-16 6:01 UTC (permalink / raw
To: gentoo-commits
commit: 0790841c691104c135a1edf5f8c1c03051d39d5b
Author: Marco Scardovi <someone <AT> example <DOT> com>
AuthorDate: Sun Jul 11 07:48:00 2021 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Fri Jul 16 06:00:05 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0790841c
sys-boot/woeusb: bump to 5.1.2
This new version drops the GUI interface, so I will maintain
both old version (v3) and new (v5+).
Closes: https://bugs.gentoo.org/764491
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Marco Scardovi <marco <AT> scardovi.com>
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
sys-boot/woeusb/Manifest | 1 +
sys-boot/woeusb/woeusb-5.1.2.ebuild | 32 ++++++++++++++++++++++++++++++++
2 files changed, 33 insertions(+)
diff --git a/sys-boot/woeusb/Manifest b/sys-boot/woeusb/Manifest
index 8bb853f6f1a..df150530eef 100644
--- a/sys-boot/woeusb/Manifest
+++ b/sys-boot/woeusb/Manifest
@@ -1 +1,2 @@
DIST woeusb-3.3.1.tar.gz 386399 BLAKE2B 1423ecca39018c674b0eea36de732f54cfcdd14b8cc465e6d3c0639192cbd8355436b7a39ba453b19fa6f1c5b1f6938ef12f49710bc2a4af0f2eaed967e03ce7 SHA512 e3460efabaee199eb5ffc73ca99fe2d9141ed3a5f72acd2f8910b093b2b3a93928ee4eeb27d634293448f036101d8bf24aef65dc338c80e6e3e1738004594d52
+DIST woeusb-5.1.2.tar.gz 160660 BLAKE2B 86fd0581ea2524d61ef48d9adf633d350ae214842ee8f26c2937f312fce864fa188fb40dd35e8e9b15c3eef46869f0099ee005e3c49fc219486d006357f74f09 SHA512 ee1341cdcaf203e4c5007e3ac19deb0b3bbee9e7eeb5ca9a74742d107b1b3e77e5b938d2f7de9ce23b7fba51d6a266ea26fb221300613c1c4c8d0cd4f8299f8b
diff --git a/sys-boot/woeusb/woeusb-5.1.2.ebuild b/sys-boot/woeusb/woeusb-5.1.2.ebuild
new file mode 100644
index 00000000000..77f857db083
--- /dev/null
+++ b/sys-boot/woeusb/woeusb-5.1.2.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools
+
+DESCRIPTION="Creates windows installer on usb media from an iso image"
+HOMEPAGE="https://github.com/WoeUSB/WoeUSB"
+SRC_URI="https://github.com/WoeUSB/WoeUSB/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="CC-BY-SA-4.0 GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+RESTRICT="test" # No test suite
+
+RDEPEND="
+ app-arch/wimlib
+ sys-apps/util-linux
+ sys-block/parted
+ sys-boot/grub:2[grub_platforms_pc]
+ sys-fs/dosfstools
+ sys-fs/ntfs3g
+"
+DEPEND="${RDEPEND}"
+
+S="${WORKDIR}/WoeUSB-${PV}"
+
+src_prepare() {
+ default
+ sed -i -e "s/@@WOEUSB_VERSION@@/${PV}/" sbin/"${PN}" || die
+}
^ permalink raw reply related [flat|nested] 27+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-boot/woeusb/
@ 2021-07-18 14:34 Ionen Wolkens
0 siblings, 0 replies; 27+ messages in thread
From: Ionen Wolkens @ 2021-07-18 14:34 UTC (permalink / raw
To: gentoo-commits
commit: 9e80d9c3b2cb6bded8553aaee68414c744f7d127
Author: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 18 14:16:25 2021 +0000
Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Sun Jul 18 14:33:06 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e80d9c3
sys-boot/woeusb: install script+manpage, tidy a bit
Not familiar with this package but given maintainer
is in process of retiring from maintenance, fixing
on their behalf.
Also remove a few useless bits, e.g. no autotools
files in this version.
Closes: https://bugs.gentoo.org/802735
Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
sys-boot/woeusb/woeusb-5.1.2.ebuild | 19 +++++++++++--------
1 file changed, 11 insertions(+), 8 deletions(-)
diff --git a/sys-boot/woeusb/woeusb-5.1.2.ebuild b/sys-boot/woeusb/woeusb-5.1.2.ebuild
index 77f857db083..4f1d25c96d0 100644
--- a/sys-boot/woeusb/woeusb-5.1.2.ebuild
+++ b/sys-boot/woeusb/woeusb-5.1.2.ebuild
@@ -3,16 +3,14 @@
EAPI=8
-inherit autotools
-
DESCRIPTION="Creates windows installer on usb media from an iso image"
HOMEPAGE="https://github.com/WoeUSB/WoeUSB"
SRC_URI="https://github.com/WoeUSB/WoeUSB/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/WoeUSB-${PV}"
LICENSE="CC-BY-SA-4.0 GPL-3+"
SLOT="0"
KEYWORDS="~amd64 ~x86"
-RESTRICT="test" # No test suite
RDEPEND="
app-arch/wimlib
@@ -20,13 +18,18 @@ RDEPEND="
sys-block/parted
sys-boot/grub:2[grub_platforms_pc]
sys-fs/dosfstools
- sys-fs/ntfs3g
-"
+ sys-fs/ntfs3g"
DEPEND="${RDEPEND}"
-S="${WORKDIR}/WoeUSB-${PV}"
-
src_prepare() {
default
- sed -i -e "s/@@WOEUSB_VERSION@@/${PV}/" sbin/"${PN}" || die
+
+ sed -i "s/@@WOEUSB_VERSION@@/${PV}/" sbin/${PN} share/man/man1/${PN}.1 || die
+}
+
+src_install() {
+ dosbin sbin/${PN}
+ doman share/man/man1/${PN}.1
+
+ einstalldocs
}
^ permalink raw reply related [flat|nested] 27+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-boot/woeusb/
@ 2021-07-18 14:35 Ionen Wolkens
0 siblings, 0 replies; 27+ messages in thread
From: Ionen Wolkens @ 2021-07-18 14:35 UTC (permalink / raw
To: gentoo-commits
commit: 9af65174b4d772ff4d37cf4541a2d0cccb2989e9
Author: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 18 14:34:43 2021 +0000
Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Sun Jul 18 14:34:43 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9af65174
sys-boot/woeusb: revbump for previous fix
Bug: https://bugs.gentoo.org/802735
Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
sys-boot/woeusb/{woeusb-5.1.2.ebuild => woeusb-5.1.2-r1.ebuild} | 0
1 file changed, 0 insertions(+), 0 deletions(-)
diff --git a/sys-boot/woeusb/woeusb-5.1.2.ebuild b/sys-boot/woeusb/woeusb-5.1.2-r1.ebuild
similarity index 100%
rename from sys-boot/woeusb/woeusb-5.1.2.ebuild
rename to sys-boot/woeusb/woeusb-5.1.2-r1.ebuild
^ permalink raw reply [flat|nested] 27+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-boot/woeusb/
@ 2021-12-03 7:37 Agostino Sarubbo
0 siblings, 0 replies; 27+ messages in thread
From: Agostino Sarubbo @ 2021-12-03 7:37 UTC (permalink / raw
To: gentoo-commits
commit: 8193a9f60e3c3c0e5bcbc565a835d3846ebc5029
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 3 07:37:27 2021 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Fri Dec 3 07:37:27 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8193a9f6
sys-boot/woeusb: amd64 stable wrt bug #828044
Package-Manager: Portage-3.0.20, Repoman-3.0.3
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
sys-boot/woeusb/woeusb-5.1.2-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-boot/woeusb/woeusb-5.1.2-r1.ebuild b/sys-boot/woeusb/woeusb-5.1.2-r1.ebuild
index 4f1d25c96d02..ce6f53833d12 100644
--- a/sys-boot/woeusb/woeusb-5.1.2-r1.ebuild
+++ b/sys-boot/woeusb/woeusb-5.1.2-r1.ebuild
@@ -10,7 +10,7 @@ S="${WORKDIR}/WoeUSB-${PV}"
LICENSE="CC-BY-SA-4.0 GPL-3+"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
RDEPEND="
app-arch/wimlib
^ permalink raw reply related [flat|nested] 27+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-boot/woeusb/
@ 2021-12-03 14:20 Arthur Zamarin
0 siblings, 0 replies; 27+ messages in thread
From: Arthur Zamarin @ 2021-12-03 14:20 UTC (permalink / raw
To: gentoo-commits
commit: 7e178d937875baa20cff13193b4aab429256e237
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 3 14:19:39 2021 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Dec 3 14:20:06 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e178d93
sys-boot/woeusb: Stabilize 5.1.2-r1 x86, #828044
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
sys-boot/woeusb/woeusb-5.1.2-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-boot/woeusb/woeusb-5.1.2-r1.ebuild b/sys-boot/woeusb/woeusb-5.1.2-r1.ebuild
index ce6f53833d12..880f376f6148 100644
--- a/sys-boot/woeusb/woeusb-5.1.2-r1.ebuild
+++ b/sys-boot/woeusb/woeusb-5.1.2-r1.ebuild
@@ -10,7 +10,7 @@ S="${WORKDIR}/WoeUSB-${PV}"
LICENSE="CC-BY-SA-4.0 GPL-3+"
SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
RDEPEND="
app-arch/wimlib
^ permalink raw reply related [flat|nested] 27+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-boot/woeusb/
@ 2021-12-04 8:04 Joonas Niilola
0 siblings, 0 replies; 27+ messages in thread
From: Joonas Niilola @ 2021-12-04 8:04 UTC (permalink / raw
To: gentoo-commits
commit: 0ed4ecddfe4c74140be9d35949c9e8fe28d3b3c4
Author: Petrus.Z <silencly07 <AT> gmail <DOT> com>
AuthorDate: Fri Dec 3 04:38:52 2021 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Sat Dec 4 08:03:31 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ed4ecdd
sys-boot/woeusb: drop 5.2.2
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Petrus Zhao <petrus.zy.07 <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/23157
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
sys-boot/woeusb/Manifest | 1 -
sys-boot/woeusb/woeusb-5.2.2.ebuild | 35 -----------------------------------
2 files changed, 36 deletions(-)
diff --git a/sys-boot/woeusb/Manifest b/sys-boot/woeusb/Manifest
index dc400cd3518b..8af700a42c96 100644
--- a/sys-boot/woeusb/Manifest
+++ b/sys-boot/woeusb/Manifest
@@ -1,4 +1,3 @@
DIST woeusb-3.3.1.tar.gz 386399 BLAKE2B 1423ecca39018c674b0eea36de732f54cfcdd14b8cc465e6d3c0639192cbd8355436b7a39ba453b19fa6f1c5b1f6938ef12f49710bc2a4af0f2eaed967e03ce7 SHA512 e3460efabaee199eb5ffc73ca99fe2d9141ed3a5f72acd2f8910b093b2b3a93928ee4eeb27d634293448f036101d8bf24aef65dc338c80e6e3e1738004594d52
DIST woeusb-5.1.2.tar.gz 160660 BLAKE2B 86fd0581ea2524d61ef48d9adf633d350ae214842ee8f26c2937f312fce864fa188fb40dd35e8e9b15c3eef46869f0099ee005e3c49fc219486d006357f74f09 SHA512 ee1341cdcaf203e4c5007e3ac19deb0b3bbee9e7eeb5ca9a74742d107b1b3e77e5b938d2f7de9ce23b7fba51d6a266ea26fb221300613c1c4c8d0cd4f8299f8b
-DIST woeusb-5.2.2.tar.gz 161802 BLAKE2B 5650dc77b8bae640fae8e0ceef4ab69fe87627c8a3e2663f48d58f3c86772ac53d853bea28289cfd7fead3e111a174a536f3ba133ecd7fbbc94a0c86ed1d2520 SHA512 d020907d67094eb5ec1928ca1089ce0db9a66276e1c11925e5f5a2b76dfb8bc22e433bc9a5e2a667d3ec1d0ffa63560f1a4d5657ae0451e381989be74c080667
DIST woeusb-5.2.4.tar.gz 163043 BLAKE2B 101175b86d0798009a32b705bfd8e63597dd9a36dff3ce0afcdf72e26d3447ee898fdbf7c87b5f95bffde31736d5fb8c719484a47bf3c1bc0d91ee68a6a05573 SHA512 e44087ef4f0c69cb8378c6e398b3ae5e59f7f111442b3ef2d65f4bbf2dacab862c753f7afc10c9dbbf0541476ada218da3c0210cb569bb7edec606689a93ec0c
diff --git a/sys-boot/woeusb/woeusb-5.2.2.ebuild b/sys-boot/woeusb/woeusb-5.2.2.ebuild
deleted file mode 100644
index 4f1d25c96d02..000000000000
--- a/sys-boot/woeusb/woeusb-5.2.2.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DESCRIPTION="Creates windows installer on usb media from an iso image"
-HOMEPAGE="https://github.com/WoeUSB/WoeUSB"
-SRC_URI="https://github.com/WoeUSB/WoeUSB/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-S="${WORKDIR}/WoeUSB-${PV}"
-
-LICENSE="CC-BY-SA-4.0 GPL-3+"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="
- app-arch/wimlib
- sys-apps/util-linux
- sys-block/parted
- sys-boot/grub:2[grub_platforms_pc]
- sys-fs/dosfstools
- sys-fs/ntfs3g"
-DEPEND="${RDEPEND}"
-
-src_prepare() {
- default
-
- sed -i "s/@@WOEUSB_VERSION@@/${PV}/" sbin/${PN} share/man/man1/${PN}.1 || die
-}
-
-src_install() {
- dosbin sbin/${PN}
- doman share/man/man1/${PN}.1
-
- einstalldocs
-}
^ permalink raw reply related [flat|nested] 27+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-boot/woeusb/
@ 2021-12-04 8:04 Joonas Niilola
0 siblings, 0 replies; 27+ messages in thread
From: Joonas Niilola @ 2021-12-04 8:04 UTC (permalink / raw
To: gentoo-commits
commit: 4fbe5335dacf1aef367cba126ff1b286c4c9ef44
Author: Petrus.Z <silencly07 <AT> gmail <DOT> com>
AuthorDate: Fri Dec 3 04:37:55 2021 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Sat Dec 4 08:03:26 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4fbe5335
sys-boot/woeusb: version bump to 5.2.4
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Petrus Zhao <petrus.zy.07 <AT> gmail.com>
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
sys-boot/woeusb/Manifest | 1 +
sys-boot/woeusb/woeusb-5.2.4.ebuild | 35 +++++++++++++++++++++++++++++++++++
2 files changed, 36 insertions(+)
diff --git a/sys-boot/woeusb/Manifest b/sys-boot/woeusb/Manifest
index 6afc46d0485e..dc400cd3518b 100644
--- a/sys-boot/woeusb/Manifest
+++ b/sys-boot/woeusb/Manifest
@@ -1,3 +1,4 @@
DIST woeusb-3.3.1.tar.gz 386399 BLAKE2B 1423ecca39018c674b0eea36de732f54cfcdd14b8cc465e6d3c0639192cbd8355436b7a39ba453b19fa6f1c5b1f6938ef12f49710bc2a4af0f2eaed967e03ce7 SHA512 e3460efabaee199eb5ffc73ca99fe2d9141ed3a5f72acd2f8910b093b2b3a93928ee4eeb27d634293448f036101d8bf24aef65dc338c80e6e3e1738004594d52
DIST woeusb-5.1.2.tar.gz 160660 BLAKE2B 86fd0581ea2524d61ef48d9adf633d350ae214842ee8f26c2937f312fce864fa188fb40dd35e8e9b15c3eef46869f0099ee005e3c49fc219486d006357f74f09 SHA512 ee1341cdcaf203e4c5007e3ac19deb0b3bbee9e7eeb5ca9a74742d107b1b3e77e5b938d2f7de9ce23b7fba51d6a266ea26fb221300613c1c4c8d0cd4f8299f8b
DIST woeusb-5.2.2.tar.gz 161802 BLAKE2B 5650dc77b8bae640fae8e0ceef4ab69fe87627c8a3e2663f48d58f3c86772ac53d853bea28289cfd7fead3e111a174a536f3ba133ecd7fbbc94a0c86ed1d2520 SHA512 d020907d67094eb5ec1928ca1089ce0db9a66276e1c11925e5f5a2b76dfb8bc22e433bc9a5e2a667d3ec1d0ffa63560f1a4d5657ae0451e381989be74c080667
+DIST woeusb-5.2.4.tar.gz 163043 BLAKE2B 101175b86d0798009a32b705bfd8e63597dd9a36dff3ce0afcdf72e26d3447ee898fdbf7c87b5f95bffde31736d5fb8c719484a47bf3c1bc0d91ee68a6a05573 SHA512 e44087ef4f0c69cb8378c6e398b3ae5e59f7f111442b3ef2d65f4bbf2dacab862c753f7afc10c9dbbf0541476ada218da3c0210cb569bb7edec606689a93ec0c
diff --git a/sys-boot/woeusb/woeusb-5.2.4.ebuild b/sys-boot/woeusb/woeusb-5.2.4.ebuild
new file mode 100644
index 000000000000..4f1d25c96d02
--- /dev/null
+++ b/sys-boot/woeusb/woeusb-5.2.4.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="Creates windows installer on usb media from an iso image"
+HOMEPAGE="https://github.com/WoeUSB/WoeUSB"
+SRC_URI="https://github.com/WoeUSB/WoeUSB/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/WoeUSB-${PV}"
+
+LICENSE="CC-BY-SA-4.0 GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+ app-arch/wimlib
+ sys-apps/util-linux
+ sys-block/parted
+ sys-boot/grub:2[grub_platforms_pc]
+ sys-fs/dosfstools
+ sys-fs/ntfs3g"
+DEPEND="${RDEPEND}"
+
+src_prepare() {
+ default
+
+ sed -i "s/@@WOEUSB_VERSION@@/${PV}/" sbin/${PN} share/man/man1/${PN}.1 || die
+}
+
+src_install() {
+ dosbin sbin/${PN}
+ doman share/man/man1/${PN}.1
+
+ einstalldocs
+}
^ permalink raw reply related [flat|nested] 27+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-boot/woeusb/
@ 2022-01-13 9:41 Agostino Sarubbo
0 siblings, 0 replies; 27+ messages in thread
From: Agostino Sarubbo @ 2022-01-13 9:41 UTC (permalink / raw
To: gentoo-commits
commit: c8af660de0327104039251260a8bb89c6c87b197
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 13 09:41:30 2022 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Thu Jan 13 09:41:30 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8af660d
sys-boot/woeusb: x86 stable wrt bug #831072
Package-Manager: Portage-3.0.28, Repoman-3.0.3
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
sys-boot/woeusb/woeusb-5.2.4.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sys-boot/woeusb/woeusb-5.2.4.ebuild b/sys-boot/woeusb/woeusb-5.2.4.ebuild
index 4f1d25c96d02..3221b4b1d51a 100644
--- a/sys-boot/woeusb/woeusb-5.2.4.ebuild
+++ b/sys-boot/woeusb/woeusb-5.2.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -10,7 +10,7 @@ S="${WORKDIR}/WoeUSB-${PV}"
LICENSE="CC-BY-SA-4.0 GPL-3+"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
RDEPEND="
app-arch/wimlib
^ permalink raw reply related [flat|nested] 27+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-boot/woeusb/
@ 2022-01-13 13:14 Jakov Smolić
0 siblings, 0 replies; 27+ messages in thread
From: Jakov Smolić @ 2022-01-13 13:14 UTC (permalink / raw
To: gentoo-commits
commit: f5faf167a7137a42b498829e5ec72386219fbae9
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 13 13:14:02 2022 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Thu Jan 13 13:14:02 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5faf167
sys-boot/woeusb: Stabilize 5.2.4 amd64, #831072
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
sys-boot/woeusb/woeusb-5.2.4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-boot/woeusb/woeusb-5.2.4.ebuild b/sys-boot/woeusb/woeusb-5.2.4.ebuild
index 3221b4b1d51a..84a8f2131b58 100644
--- a/sys-boot/woeusb/woeusb-5.2.4.ebuild
+++ b/sys-boot/woeusb/woeusb-5.2.4.ebuild
@@ -10,7 +10,7 @@ S="${WORKDIR}/WoeUSB-${PV}"
LICENSE="CC-BY-SA-4.0 GPL-3+"
SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
RDEPEND="
app-arch/wimlib
^ permalink raw reply related [flat|nested] 27+ messages in thread
end of thread, other threads:[~2022-01-13 13:14 UTC | newest]
Thread overview: 27+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-03-31 7:22 [gentoo-commits] repo/gentoo:master commit in: sys-boot/woeusb/ Agostino Sarubbo
-- strict thread matches above, loose matches on Subject: below --
2022-01-13 13:14 Jakov Smolić
2022-01-13 9:41 Agostino Sarubbo
2021-12-04 8:04 Joonas Niilola
2021-12-04 8:04 Joonas Niilola
2021-12-03 14:20 Arthur Zamarin
2021-12-03 7:37 Agostino Sarubbo
2021-07-18 14:35 Ionen Wolkens
2021-07-18 14:34 Ionen Wolkens
2021-07-16 6:01 Joonas Niilola
2021-07-16 6:01 Joonas Niilola
2021-07-08 12:51 Pacho Ramos
2020-04-01 22:58 Pacho Ramos
2020-03-29 10:41 Mikle Kolyada
2020-02-22 15:32 Pacho Ramos
2019-08-01 12:58 Pacho Ramos
2019-07-31 13:10 Agostino Sarubbo
2019-07-31 12:06 Agostino Sarubbo
2019-06-04 20:58 Thomas Deutschmann
2019-04-18 20:59 Pacho Ramos
2019-04-17 11:49 Mikle Kolyada
2019-01-05 12:56 Pacho Ramos
2018-10-14 19:57 Pacho Ramos
2018-07-09 13:51 Mikle Kolyada
2018-07-06 13:43 Thomas Deutschmann
2018-04-26 18:16 Pacho Ramos
2018-04-26 18:16 Pacho Ramos
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox