From 859fa25cb0d72bac71cec0bfea677d08f32b019d Mon Sep 17 00:00:00 2001 From: Emiel Wiedijk Date: Thu, 14 Jun 2018 12:56:29 +0200 Subject: [PATCH 1/8] Initial release --- .SRCINFO | 20 ++++++++++++++++++++ .gitignore | 4 ++++ PKGBUILD | 31 +++++++++++++++++++++++++++++++ 3 files changed, 55 insertions(+) create mode 100644 .SRCINFO create mode 100644 .gitignore create mode 100644 PKGBUILD diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 0000000..b2b539c --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,20 @@ +pkgbase = woeusb + pkgdesc = A Linux program to create Windows USB stick installer from a real Windows DVD or an image + pkgver = 3.2.1 + pkgrel = 1 + url = https://github.com/slacka/WoeUSB + arch = x86_64 + license = GPL3 + makedepends = git + depends = wxgtk2 + depends = grub + depends = dosfstools + depends = parted + depends = wget + depends = ntfs-3g + optdepends = gksu + source = woeusb-3.2.1::https://github.com/slacka/WoeUSB/archive/v3.2.1.tar.gz + sha256sums = 4016e79892524a29d855fecb7027a680844ae71aff95baf766dce64771c2b930 + +pkgname = woeusb + diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2e3e85e --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +pkg/ +src/ +*.pkg.tar* +woeusb-* diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..e3e1f69 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,31 @@ +# Maintainer: aimileus +# Contributor: Salvador Pardiñas +pkgname=woeusb +pkgver=3.2.1 +pkgrel=1 +pkgdesc="A Linux program to create Windows USB stick installer from a real Windows DVD or an image" +arch=('x86_64') +url="https://github.com/slacka/WoeUSB" +license=('GPL3') +depends=('wxgtk2' 'grub' 'dosfstools' 'parted' 'wget' 'ntfs-3g') +optdepends=('gksu') +makedepends=('git') +source=("$pkgname-$pkgver::https://github.com/slacka/WoeUSB/archive/v$pkgver.tar.gz") +sha256sums=('4016e79892524a29d855fecb7027a680844ae71aff95baf766dce64771c2b930') + +prepare() { + cd "WoeUSB-$pkgver" + autoreconf --install +} + +build() { + cd "WoeUSB-$pkgver" + ./configure --prefix=/usr + make +} + +package() { + cd "WoeUSB-$pkgver" + make DESTDIR="$pkgdir/" install +} + From 9dbf6e3bd599ae890c94ee3d09b51c48de91a38d Mon Sep 17 00:00:00 2001 From: Emiel Wiedijk Date: Thu, 5 Jul 2018 13:52:59 +0200 Subject: [PATCH 2/8] Add woeusb-git to conflicts array This package obviously conflicts with woeusb-git, so I added it to the provides and conflicts arrays. Technically, woeusb-git is suppossed to conflict with woeusb. [1] That is why the conflicts/provides arrays were empty. On the other hand, woeusb-git is far more popular at the moment, so I updated these arrays anyway. [1] https://wiki.archlinux.org/index.php/PKGBUILD#conflicts --- .SRCINFO | 4 +++- PKGBUILD | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index b2b539c..0f96a32 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = woeusb pkgdesc = A Linux program to create Windows USB stick installer from a real Windows DVD or an image pkgver = 3.2.1 - pkgrel = 1 + pkgrel = 2 url = https://github.com/slacka/WoeUSB arch = x86_64 license = GPL3 @@ -13,6 +13,8 @@ pkgbase = woeusb depends = wget depends = ntfs-3g optdepends = gksu + provides = woeusb-git + conflicts = woeusb-git source = woeusb-3.2.1::https://github.com/slacka/WoeUSB/archive/v3.2.1.tar.gz sha256sums = 4016e79892524a29d855fecb7027a680844ae71aff95baf766dce64771c2b930 diff --git a/PKGBUILD b/PKGBUILD index e3e1f69..6f09033 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ # Contributor: Salvador Pardiñas pkgname=woeusb pkgver=3.2.1 -pkgrel=1 +pkgrel=2 pkgdesc="A Linux program to create Windows USB stick installer from a real Windows DVD or an image" arch=('x86_64') url="https://github.com/slacka/WoeUSB" @@ -10,6 +10,8 @@ license=('GPL3') depends=('wxgtk2' 'grub' 'dosfstools' 'parted' 'wget' 'ntfs-3g') optdepends=('gksu') makedepends=('git') +conflicts=('woeusb-git') +provides=('woeusb-git') source=("$pkgname-$pkgver::https://github.com/slacka/WoeUSB/archive/v$pkgver.tar.gz") sha256sums=('4016e79892524a29d855fecb7027a680844ae71aff95baf766dce64771c2b930') From c3eeb3dcd8d61cf1466a03d01d8ba6742c249714 Mon Sep 17 00:00:00 2001 From: Emiel Wiedijk Date: Tue, 14 Aug 2018 21:14:58 +0200 Subject: [PATCH 3/8] woeusb 3.2.2-1 --- .SRCINFO | 8 ++++---- PKGBUILD | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 0f96a32..2c0fa6d 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = woeusb pkgdesc = A Linux program to create Windows USB stick installer from a real Windows DVD or an image - pkgver = 3.2.1 - pkgrel = 2 + pkgver = 3.2.2 + pkgrel = 1 url = https://github.com/slacka/WoeUSB arch = x86_64 license = GPL3 @@ -15,8 +15,8 @@ pkgbase = woeusb optdepends = gksu provides = woeusb-git conflicts = woeusb-git - source = woeusb-3.2.1::https://github.com/slacka/WoeUSB/archive/v3.2.1.tar.gz - sha256sums = 4016e79892524a29d855fecb7027a680844ae71aff95baf766dce64771c2b930 + source = woeusb-3.2.2::https://github.com/slacka/WoeUSB/archive/v3.2.2.tar.gz + sha256sums = 472746470e7874c81a72d5189f3d1fa9004ba1ea1d3c9715e78b64cbf8fc0948 pkgname = woeusb diff --git a/PKGBUILD b/PKGBUILD index 6f09033..0de268c 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,8 +1,8 @@ # Maintainer: aimileus # Contributor: Salvador Pardiñas pkgname=woeusb -pkgver=3.2.1 -pkgrel=2 +pkgver=3.2.2 +pkgrel=1 pkgdesc="A Linux program to create Windows USB stick installer from a real Windows DVD or an image" arch=('x86_64') url="https://github.com/slacka/WoeUSB" @@ -13,7 +13,7 @@ makedepends=('git') conflicts=('woeusb-git') provides=('woeusb-git') source=("$pkgname-$pkgver::https://github.com/slacka/WoeUSB/archive/v$pkgver.tar.gz") -sha256sums=('4016e79892524a29d855fecb7027a680844ae71aff95baf766dce64771c2b930') +sha256sums=('472746470e7874c81a72d5189f3d1fa9004ba1ea1d3c9715e78b64cbf8fc0948') prepare() { cd "WoeUSB-$pkgver" From a6b137120f79c111910033f0ca09fe1eabdcefe3 Mon Sep 17 00:00:00 2001 From: Emiel Wiedijk Date: Tue, 14 Aug 2018 21:15:43 +0200 Subject: [PATCH 4/8] Add tar.gz extension to source tarballs --- .SRCINFO | 2 +- PKGBUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 2c0fa6d..5f16586 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -15,7 +15,7 @@ pkgbase = woeusb optdepends = gksu provides = woeusb-git conflicts = woeusb-git - source = woeusb-3.2.2::https://github.com/slacka/WoeUSB/archive/v3.2.2.tar.gz + source = woeusb-3.2.2.tar.gz::https://github.com/slacka/WoeUSB/archive/v3.2.2.tar.gz sha256sums = 472746470e7874c81a72d5189f3d1fa9004ba1ea1d3c9715e78b64cbf8fc0948 pkgname = woeusb diff --git a/PKGBUILD b/PKGBUILD index 0de268c..38802fc 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -12,7 +12,7 @@ optdepends=('gksu') makedepends=('git') conflicts=('woeusb-git') provides=('woeusb-git') -source=("$pkgname-$pkgver::https://github.com/slacka/WoeUSB/archive/v$pkgver.tar.gz") +source=("$pkgname-$pkgver.tar.gz::https://github.com/slacka/WoeUSB/archive/v$pkgver.tar.gz") sha256sums=('472746470e7874c81a72d5189f3d1fa9004ba1ea1d3c9715e78b64cbf8fc0948') prepare() { From 6fb02e8a8c1eb12794e6f0f101e04a7fd7b93f27 Mon Sep 17 00:00:00 2001 From: Emiel Wiedijk Date: Mon, 17 Sep 2018 21:32:47 +0200 Subject: [PATCH 5/8] woeusb 3.2.9-1 --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 5f16586..13d584f 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = woeusb pkgdesc = A Linux program to create Windows USB stick installer from a real Windows DVD or an image - pkgver = 3.2.2 + pkgver = 3.2.9 pkgrel = 1 url = https://github.com/slacka/WoeUSB arch = x86_64 @@ -15,8 +15,8 @@ pkgbase = woeusb optdepends = gksu provides = woeusb-git conflicts = woeusb-git - source = woeusb-3.2.2.tar.gz::https://github.com/slacka/WoeUSB/archive/v3.2.2.tar.gz - sha256sums = 472746470e7874c81a72d5189f3d1fa9004ba1ea1d3c9715e78b64cbf8fc0948 + source = woeusb-3.2.9.tar.gz::https://github.com/slacka/WoeUSB/archive/v3.2.9.tar.gz + sha256sums = 85b338f097f4049c119f75e83e601948451619c5506d50daa4967bdc4ad1eafd pkgname = woeusb diff --git a/PKGBUILD b/PKGBUILD index 38802fc..ac9c8d1 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: aimileus # Contributor: Salvador Pardiñas pkgname=woeusb -pkgver=3.2.2 +pkgver=3.2.9 pkgrel=1 pkgdesc="A Linux program to create Windows USB stick installer from a real Windows DVD or an image" arch=('x86_64') @@ -13,7 +13,7 @@ makedepends=('git') conflicts=('woeusb-git') provides=('woeusb-git') source=("$pkgname-$pkgver.tar.gz::https://github.com/slacka/WoeUSB/archive/v$pkgver.tar.gz") -sha256sums=('472746470e7874c81a72d5189f3d1fa9004ba1ea1d3c9715e78b64cbf8fc0948') +sha256sums=('85b338f097f4049c119f75e83e601948451619c5506d50daa4967bdc4ad1eafd') prepare() { cd "WoeUSB-$pkgver" From ad12fd82a4e68dad082ccd347910d028db473a92 Mon Sep 17 00:00:00 2001 From: Emiel Wiedijk Date: Fri, 28 Sep 2018 13:30:57 +0200 Subject: [PATCH 6/8] woeusb 3.2.10-1 --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 13d584f..93abc4b 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = woeusb pkgdesc = A Linux program to create Windows USB stick installer from a real Windows DVD or an image - pkgver = 3.2.9 + pkgver = 3.2.10 pkgrel = 1 url = https://github.com/slacka/WoeUSB arch = x86_64 @@ -15,8 +15,8 @@ pkgbase = woeusb optdepends = gksu provides = woeusb-git conflicts = woeusb-git - source = woeusb-3.2.9.tar.gz::https://github.com/slacka/WoeUSB/archive/v3.2.9.tar.gz - sha256sums = 85b338f097f4049c119f75e83e601948451619c5506d50daa4967bdc4ad1eafd + source = woeusb-3.2.10.tar.gz::https://github.com/slacka/WoeUSB/archive/v3.2.10.tar.gz + sha256sums = 4cfe2338c2d3faac83fe4ea6d3ac0b0d0d51b95d021ec80d33fcb6c0e81d5567 pkgname = woeusb diff --git a/PKGBUILD b/PKGBUILD index ac9c8d1..f8f8fa1 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: aimileus # Contributor: Salvador Pardiñas pkgname=woeusb -pkgver=3.2.9 +pkgver=3.2.10 pkgrel=1 pkgdesc="A Linux program to create Windows USB stick installer from a real Windows DVD or an image" arch=('x86_64') @@ -13,7 +13,7 @@ makedepends=('git') conflicts=('woeusb-git') provides=('woeusb-git') source=("$pkgname-$pkgver.tar.gz::https://github.com/slacka/WoeUSB/archive/v$pkgver.tar.gz") -sha256sums=('85b338f097f4049c119f75e83e601948451619c5506d50daa4967bdc4ad1eafd') +sha256sums=('4cfe2338c2d3faac83fe4ea6d3ac0b0d0d51b95d021ec80d33fcb6c0e81d5567') prepare() { cd "WoeUSB-$pkgver" From 3c3471782ceb2af055c4c5e42adb832dd0d2382b Mon Sep 17 00:00:00 2001 From: Emiel Wiedijk Date: Sun, 30 Dec 2018 16:53:21 +0100 Subject: [PATCH 7/8] woeusb 3.2.12-1 --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 93abc4b..b8c92fd 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = woeusb pkgdesc = A Linux program to create Windows USB stick installer from a real Windows DVD or an image - pkgver = 3.2.10 + pkgver = 3.2.12 pkgrel = 1 url = https://github.com/slacka/WoeUSB arch = x86_64 @@ -15,8 +15,8 @@ pkgbase = woeusb optdepends = gksu provides = woeusb-git conflicts = woeusb-git - source = woeusb-3.2.10.tar.gz::https://github.com/slacka/WoeUSB/archive/v3.2.10.tar.gz - sha256sums = 4cfe2338c2d3faac83fe4ea6d3ac0b0d0d51b95d021ec80d33fcb6c0e81d5567 + source = woeusb-3.2.12.tar.gz::https://github.com/slacka/WoeUSB/archive/v3.2.12.tar.gz + sha256sums = a70226893fa99a0f7fb00609d54f6a2b1d27c4f2c5e12b612cdbe5735a5053f4 pkgname = woeusb diff --git a/PKGBUILD b/PKGBUILD index f8f8fa1..94e186e 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: aimileus # Contributor: Salvador Pardiñas pkgname=woeusb -pkgver=3.2.10 +pkgver=3.2.12 pkgrel=1 pkgdesc="A Linux program to create Windows USB stick installer from a real Windows DVD or an image" arch=('x86_64') @@ -13,7 +13,7 @@ makedepends=('git') conflicts=('woeusb-git') provides=('woeusb-git') source=("$pkgname-$pkgver.tar.gz::https://github.com/slacka/WoeUSB/archive/v$pkgver.tar.gz") -sha256sums=('4cfe2338c2d3faac83fe4ea6d3ac0b0d0d51b95d021ec80d33fcb6c0e81d5567') +sha256sums=('a70226893fa99a0f7fb00609d54f6a2b1d27c4f2c5e12b612cdbe5735a5053f4') prepare() { cd "WoeUSB-$pkgver" From 0a7f900118e4ae4905a4279758a8ee159e68db14 Mon Sep 17 00:00:00 2001 From: Giovanni Harting <539@idlegandalf.com> Date: Thu, 25 Apr 2019 12:51:22 +0200 Subject: [PATCH 8/8] v3.3.0; removed unused makedep; moved configure to prepare --- .SRCINFO | 7 +++---- PKGBUILD | 11 ++++++----- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index b8c92fd..b0a1d3f 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,11 +1,10 @@ pkgbase = woeusb pkgdesc = A Linux program to create Windows USB stick installer from a real Windows DVD or an image - pkgver = 3.2.12 + pkgver = 3.3.0 pkgrel = 1 url = https://github.com/slacka/WoeUSB arch = x86_64 license = GPL3 - makedepends = git depends = wxgtk2 depends = grub depends = dosfstools @@ -15,8 +14,8 @@ pkgbase = woeusb optdepends = gksu provides = woeusb-git conflicts = woeusb-git - source = woeusb-3.2.12.tar.gz::https://github.com/slacka/WoeUSB/archive/v3.2.12.tar.gz - sha256sums = a70226893fa99a0f7fb00609d54f6a2b1d27c4f2c5e12b612cdbe5735a5053f4 + source = woeusb-3.3.0.tar.gz::https://github.com/slacka/WoeUSB/archive/v3.3.0.tar.gz + sha256sums = dc0e1a233143a33182339915d043a419c089b8bfb0d3813b17acbff2bdb285bb pkgname = woeusb diff --git a/PKGBUILD b/PKGBUILD index 94e186e..cafa8df 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,7 +1,9 @@ -# Maintainer: aimileus +# Maintainer: Giovanni Harting <539@idlegandalf.com> +# Contributor: aimileus # Contributor: Salvador Pardiñas + pkgname=woeusb -pkgver=3.2.12 +pkgver=3.3.0 pkgrel=1 pkgdesc="A Linux program to create Windows USB stick installer from a real Windows DVD or an image" arch=('x86_64') @@ -9,20 +11,19 @@ url="https://github.com/slacka/WoeUSB" license=('GPL3') depends=('wxgtk2' 'grub' 'dosfstools' 'parted' 'wget' 'ntfs-3g') optdepends=('gksu') -makedepends=('git') conflicts=('woeusb-git') provides=('woeusb-git') source=("$pkgname-$pkgver.tar.gz::https://github.com/slacka/WoeUSB/archive/v$pkgver.tar.gz") -sha256sums=('a70226893fa99a0f7fb00609d54f6a2b1d27c4f2c5e12b612cdbe5735a5053f4') +sha256sums=('dc0e1a233143a33182339915d043a419c089b8bfb0d3813b17acbff2bdb285bb') prepare() { cd "WoeUSB-$pkgver" autoreconf --install + ./configure --prefix=/usr } build() { cd "WoeUSB-$pkgver" - ./configure --prefix=/usr make }