summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorLaurent Jourden2020-09-16 09:20:24 +0200
committerLaurent Jourden2020-09-16 09:47:09 +0200
commit2ba688cf4a4286ea877d290fd8f9ecb56963be6a (patch)
tree358fc4af22fec4acd4a9a8dfd2b81c7f07bb218d
parentd343f29993db33fc00254107e4321789084e60ae (diff)
downloadaur-2ba688cf4a4286ea877d290fd8f9ecb56963be6a.tar.gz
update to version 0.5.2
-rw-r--r--.SRCINFO14
-rw-r--r--PKGBUILD10
-rw-r--r--archuseriso.install17
3 files changed, 31 insertions, 10 deletions
diff --git a/.SRCINFO b/.SRCINFO
index aac23bc8ded1..05eda4b8da84 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,8 +1,9 @@
pkgbase = archuseriso
pkgdesc = Profiles for building Arch Linux Live ISO images. Featuring persistence, encryption.
- pkgver = 0.5.1
- pkgrel = 2
+ pkgver = 0.5.2
+ pkgrel = 1
url = https://github.com/laurent85v/archuseriso
+ install = archuseriso.install
arch = any
license = GPL3
depends = arch-install-scripts
@@ -13,14 +14,15 @@ pkgbase = archuseriso
depends = squashfs-tools
depends = syslinux
optdepends = devtools: ZFS building option
+ optdepends = f2fs-tools: F2FS file system option
optdepends = pacman-contrib: ZFS building option
conflicts = archuseriso
- source = http://dl.gnutux.fr/sources/archuseriso/archuseriso-0.5.1.tar.gz
- source = http://dl.gnutux.fr/sources/archuseriso/archuseriso-0.5.1.tar.gz.sig
+ source = http://dl.gnutux.fr/sources/archuseriso/archuseriso-0.5.2.tar.gz
+ source = http://dl.gnutux.fr/sources/archuseriso/archuseriso-0.5.2.tar.gz.sig
validpgpkeys = A5143BB56952B3189F49A175FAC4560863BEEC34
- sha256sums = 7c7af707688f4fe3fc9b91ecda76bd278d950b76b4f40aedad637db91e6106c6
+ sha256sums = 4b12fd4c5f19218cc66252dc059b6b5df681f5a297a76f12c235ee68c900ad9c
sha256sums = SKIP
- b2sums = 1327b5bf25269a598304c0b60dc15dfdab6d9937876afd0d258db82476808cca4b6f782adae8886778e0ee548a48376d56f1c53f634bc69ec28512e1849a6fd4
+ b2sums = 25ab1ec30cd6290fecfc69fc9f1f3482db0500f1801b2e765e3b5298afed3477944603f5432e76768371dc4dbfa1137e9b4e27a2ecdc8e955b5bb366778af808
b2sums = SKIP
pkgname = archuseriso
diff --git a/PKGBUILD b/PKGBUILD
index 29f485318bd2..d47e361080df 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,21 +1,23 @@
# Maintainer: Laurent Jourden <laurent85@enarel.fr>
pkgname=archuseriso
-pkgver=0.5.1
-pkgrel=2
+pkgver=0.5.2
+pkgrel=1
pkgdesc="Profiles for building Arch Linux Live ISO images. Featuring persistence, encryption."
arch=('any')
url="https://github.com/laurent85v/archuseriso"
license=('GPL3')
depends=('arch-install-scripts' 'bash' 'dosfstools' 'e2fsprogs' 'libisoburn' 'squashfs-tools' 'syslinux')
optdepends=('devtools: ZFS building option'
+ 'f2fs-tools: F2FS file system option'
'pacman-contrib: ZFS building option')
conflicts=('archuseriso')
+install=archuseriso.install
source=("http://dl.gnutux.fr/sources/${pkgname}/${pkgname}-${pkgver}.tar.gz"
"http://dl.gnutux.fr/sources/${pkgname}/${pkgname}-${pkgver}.tar.gz.sig")
-sha256sums=('7c7af707688f4fe3fc9b91ecda76bd278d950b76b4f40aedad637db91e6106c6'
+sha256sums=('4b12fd4c5f19218cc66252dc059b6b5df681f5a297a76f12c235ee68c900ad9c'
'SKIP')
-b2sums=('1327b5bf25269a598304c0b60dc15dfdab6d9937876afd0d258db82476808cca4b6f782adae8886778e0ee548a48376d56f1c53f634bc69ec28512e1849a6fd4'
+b2sums=('25ab1ec30cd6290fecfc69fc9f1f3482db0500f1801b2e765e3b5298afed3477944603f5432e76768371dc4dbfa1137e9b4e27a2ecdc8e955b5bb366778af808'
'SKIP')
validpgpkeys=('A5143BB56952B3189F49A175FAC4560863BEEC34') # Laurent Jourden
diff --git a/archuseriso.install b/archuseriso.install
new file mode 100644
index 000000000000..5302f8c330d0
--- /dev/null
+++ b/archuseriso.install
@@ -0,0 +1,17 @@
+post_install() {
+ echo
+ echo '==='
+ echo 'Advisory:'
+ echo
+ echo 'New option for the F2FS file system'
+ echo
+ echo 'Get help:'
+ echo 'aui-mkusb --help'
+ echo 'aui-mkinstall --help'
+ echo '==='
+ echo
+}
+
+post_upgrade() {
+ post_install
+}