diff options
author | Petrus.Z <silencly07@gmail.com> | 2021-11-08 11:13:02 +0800 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-11-22 10:03:09 +0000 |
commit | 4a05fa2d7f6617f301814c05ea156405658f7172 (patch) | |
tree | 9279bd3622b16af0b6c7b06ec40b13abaebdc4d8 /sys-boot | |
parent | app-editors/gvim: Stabilize 8.2.3582 sparc, #820698 (diff) | |
download | gentoo-4a05fa2d7f6617f301814c05ea156405658f7172.tar.gz gentoo-4a05fa2d7f6617f301814c05ea156405658f7172.tar.bz2 gentoo-4a05fa2d7f6617f301814c05ea156405658f7172.zip |
sys-boot/woeusb: version bump to 5.2.2
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Petrus Zhao <petrus.zy.07@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/22862
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'sys-boot')
-rw-r--r-- | sys-boot/woeusb/Manifest | 1 | ||||
-rw-r--r-- | sys-boot/woeusb/metadata.xml | 9 | ||||
-rw-r--r-- | sys-boot/woeusb/woeusb-5.2.2.ebuild | 35 |
3 files changed, 44 insertions, 1 deletions
diff --git a/sys-boot/woeusb/Manifest b/sys-boot/woeusb/Manifest index df150530eef6..6afc46d0485e 100644 --- a/sys-boot/woeusb/Manifest +++ b/sys-boot/woeusb/Manifest @@ -1,2 +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 diff --git a/sys-boot/woeusb/metadata.xml b/sys-boot/woeusb/metadata.xml index 8c8afcf15383..79a6fbb9aea2 100644 --- a/sys-boot/woeusb/metadata.xml +++ b/sys-boot/woeusb/metadata.xml @@ -1,7 +1,14 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> <pkgmetadata> - <!-- maintainer-needed --> + <maintainer type="person" proxied="yes"> + <email>petrus.zy.07@gmail.com</email> + <name>Petrus Zhao</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> diff --git a/sys-boot/woeusb/woeusb-5.2.2.ebuild b/sys-boot/woeusb/woeusb-5.2.2.ebuild new file mode 100644 index 000000000000..4f1d25c96d02 --- /dev/null +++ b/sys-boot/woeusb/woeusb-5.2.2.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 +} |