Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-boot/woeusb/
Date: Fri, 16 Jul 2021 06:01:28
Message-Id: 1626415205.0790841c691104c135a1edf5f8c1c03051d39d5b.juippis@gentoo
1 commit: 0790841c691104c135a1edf5f8c1c03051d39d5b
2 Author: Marco Scardovi <someone <AT> example <DOT> com>
3 AuthorDate: Sun Jul 11 07:48:00 2021 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Fri Jul 16 06:00:05 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0790841c
7
8 sys-boot/woeusb: bump to 5.1.2
9
10 This new version drops the GUI interface, so I will maintain
11 both old version (v3) and new (v5+).
12
13 Closes: https://bugs.gentoo.org/764491
14
15 Package-Manager: Portage-3.0.20, Repoman-3.0.3
16 Signed-off-by: Marco Scardovi <marco <AT> scardovi.com>
17 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
18
19 sys-boot/woeusb/Manifest | 1 +
20 sys-boot/woeusb/woeusb-5.1.2.ebuild | 32 ++++++++++++++++++++++++++++++++
21 2 files changed, 33 insertions(+)
22
23 diff --git a/sys-boot/woeusb/Manifest b/sys-boot/woeusb/Manifest
24 index 8bb853f6f1a..df150530eef 100644
25 --- a/sys-boot/woeusb/Manifest
26 +++ b/sys-boot/woeusb/Manifest
27 @@ -1 +1,2 @@
28 DIST woeusb-3.3.1.tar.gz 386399 BLAKE2B 1423ecca39018c674b0eea36de732f54cfcdd14b8cc465e6d3c0639192cbd8355436b7a39ba453b19fa6f1c5b1f6938ef12f49710bc2a4af0f2eaed967e03ce7 SHA512 e3460efabaee199eb5ffc73ca99fe2d9141ed3a5f72acd2f8910b093b2b3a93928ee4eeb27d634293448f036101d8bf24aef65dc338c80e6e3e1738004594d52
29 +DIST woeusb-5.1.2.tar.gz 160660 BLAKE2B 86fd0581ea2524d61ef48d9adf633d350ae214842ee8f26c2937f312fce864fa188fb40dd35e8e9b15c3eef46869f0099ee005e3c49fc219486d006357f74f09 SHA512 ee1341cdcaf203e4c5007e3ac19deb0b3bbee9e7eeb5ca9a74742d107b1b3e77e5b938d2f7de9ce23b7fba51d6a266ea26fb221300613c1c4c8d0cd4f8299f8b
30
31 diff --git a/sys-boot/woeusb/woeusb-5.1.2.ebuild b/sys-boot/woeusb/woeusb-5.1.2.ebuild
32 new file mode 100644
33 index 00000000000..77f857db083
34 --- /dev/null
35 +++ b/sys-boot/woeusb/woeusb-5.1.2.ebuild
36 @@ -0,0 +1,32 @@
37 +# Copyright 1999-2021 Gentoo Authors
38 +# Distributed under the terms of the GNU General Public License v2
39 +
40 +EAPI=8
41 +
42 +inherit autotools
43 +
44 +DESCRIPTION="Creates windows installer on usb media from an iso image"
45 +HOMEPAGE="https://github.com/WoeUSB/WoeUSB"
46 +SRC_URI="https://github.com/WoeUSB/WoeUSB/archive/v${PV}.tar.gz -> ${P}.tar.gz"
47 +
48 +LICENSE="CC-BY-SA-4.0 GPL-3+"
49 +SLOT="0"
50 +KEYWORDS="~amd64 ~x86"
51 +RESTRICT="test" # No test suite
52 +
53 +RDEPEND="
54 + app-arch/wimlib
55 + sys-apps/util-linux
56 + sys-block/parted
57 + sys-boot/grub:2[grub_platforms_pc]
58 + sys-fs/dosfstools
59 + sys-fs/ntfs3g
60 +"
61 +DEPEND="${RDEPEND}"
62 +
63 +S="${WORKDIR}/WoeUSB-${PV}"
64 +
65 +src_prepare() {
66 + default
67 + sed -i -e "s/@@WOEUSB_VERSION@@/${PV}/" sbin/"${PN}" || die
68 +}