Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-boot/woeusb/
Date: Wed, 01 Apr 2020 22:58:43
Message-Id: 1585781904.c9abccd81fbb81cb7479d308dc05731d665ea3b2.pacho@gentoo
1 commit: c9abccd81fbb81cb7479d308dc05731d665ea3b2
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Wed Apr 1 22:58:24 2020 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Wed Apr 1 22:58:24 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9abccd8
7
8 sys-boot/woeusb: Drop old
9
10 Package-Manager: Portage-2.3.96, Repoman-2.3.22
11 Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
12
13 sys-boot/woeusb/Manifest | 1 -
14 sys-boot/woeusb/woeusb-3.3.0.ebuild | 58 -------------------------------------
15 2 files changed, 59 deletions(-)
16
17 diff --git a/sys-boot/woeusb/Manifest b/sys-boot/woeusb/Manifest
18 index 2232b8a4703..8bb853f6f1a 100644
19 --- a/sys-boot/woeusb/Manifest
20 +++ b/sys-boot/woeusb/Manifest
21 @@ -1,2 +1 @@
22 -DIST woeusb-3.3.0.tar.gz 386251 BLAKE2B 9767fc3ab3ae438ff126c05a197cb41550704b93f3b508ad88b7a39c74777fdd863794970ebc839f79f8b2f1da9f6041bb355783ec1040e31814fead8185439c SHA512 8cac015df2309e4978f38adae9b9da04d896301f8d9d971d3d21801b24c3287d7d405bc4b2b1e0ff285497b5777462eb8cd6ce7dce079daf49b4d5d313a449a3
23 DIST woeusb-3.3.1.tar.gz 386399 BLAKE2B 1423ecca39018c674b0eea36de732f54cfcdd14b8cc465e6d3c0639192cbd8355436b7a39ba453b19fa6f1c5b1f6938ef12f49710bc2a4af0f2eaed967e03ce7 SHA512 e3460efabaee199eb5ffc73ca99fe2d9141ed3a5f72acd2f8910b093b2b3a93928ee4eeb27d634293448f036101d8bf24aef65dc338c80e6e3e1738004594d52
24
25 diff --git a/sys-boot/woeusb/woeusb-3.3.0.ebuild b/sys-boot/woeusb/woeusb-3.3.0.ebuild
26 deleted file mode 100644
27 index 573d9db62c7..00000000000
28 --- a/sys-boot/woeusb/woeusb-3.3.0.ebuild
29 +++ /dev/null
30 @@ -1,58 +0,0 @@
31 -# Copyright 1999-2019 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -WX_GTK_VER="3.0-gtk3"
36 -
37 -inherit autotools wxwidgets
38 -
39 -DESCRIPTION="Creates windows installer on usb media from an iso image"
40 -HOMEPAGE="https://github.com/slacka/WoeUSB"
41 -SRC_URI="https://github.com/slacka/WoeUSB/archive/v${PV}.tar.gz -> ${P}.tar.gz"
42 -
43 -LICENSE="GPL-3"
44 -SLOT="0"
45 -KEYWORDS="amd64 x86"
46 -IUSE="minimal"
47 -
48 -RDEPEND="
49 - sys-apps/util-linux
50 - sys-block/parted
51 - sys-fs/dosfstools
52 - sys-fs/ntfs3g
53 - sys-boot/grub:2[grub_platforms_pc]
54 - !minimal? ( x11-libs/wxGTK:${WX_GTK_VER}[X] )
55 -"
56 -DEPEND="${RDEPEND}"
57 -
58 -S="${WORKDIR}/WoeUSB-${PV}"
59 -
60 -src_prepare() {
61 - default
62 - find . -type f -print0 | xargs -0 sed -i "s/@@WOEUSB_VERSION@@/${PV}/" || die
63 - if ! use minimal; then
64 - setup-wxwidgets
65 - eautoreconf
66 - fi
67 -}
68 -
69 -src_configure() {
70 - ! use minimal && default
71 -}
72 -
73 -src_compile() {
74 - ! use minimal && default
75 -}
76 -
77 -src_test() {
78 - ! use minimal && default
79 -}
80 -
81 -src_install() {
82 - if use minimal; then
83 - dosbin src/woeusb
84 - einstalldocs
85 - else
86 - default
87 - fi
88 -}