From f0ebd41d43c325f18d58a3e9f14a3e861b2e6542 Mon Sep 17 00:00:00 2001 From: Jesus Alvarez Date: Mon, 13 Jan 2014 17:22:57 -0800 Subject: [PATCH] Fix incorrect syntax in pkgname The PKGBUILDS were using parenthesis in the pkgname variable, this caused AUR to reject the packages because it checked for the opening parens and considered the package to be a split package, rejecting it. https://mailman.archlinux.org/pipermail/aur-dev/2012-November/002241.html --- conf.sh | 2 +- spl-utils/PKGBUILD | 4 ++-- spl/PKGBUILD | 4 ++-- zfs-utils/PKGBUILD | 4 ++-- zfs/PKGBUILD | 6 +++--- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/conf.sh b/conf.sh index ea42961..df684af 100644 --- a/conf.sh +++ b/conf.sh @@ -1,5 +1,5 @@ # Version information -PKGREL="2" # The pkgrel of all the archzfs packages +PKGREL="3" # The pkgrel of all the archzfs packages # ZFSonLinux version ZOL_VERSION="0.6.2" diff --git a/spl-utils/PKGBUILD b/spl-utils/PKGBUILD index 75cf002..a20d08c 100644 --- a/spl-utils/PKGBUILD +++ b/spl-utils/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Jesus Alvarez # Contributor: Kyle Fuller -pkgname=("spl-utils") +pkgname="spl-utils" # # This script doesn't use bash variables for the version number because AUR # doesn't properly parse bash variables. We use a custom build script to @@ -12,7 +12,7 @@ pkgname=("spl-utils") # https://github.com/demizer/archzfs/blob/master/build.sh # pkgver=0.6.2_3.12.7 -pkgrel=2 +pkgrel=3 pkgdesc="Solaris Porting Layer kernel module support files." arch=("i686" "x86_64") url="http://zfsonlinux.org/" diff --git a/spl/PKGBUILD b/spl/PKGBUILD index 7734e66..4d3aa74 100644 --- a/spl/PKGBUILD +++ b/spl/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Jesus Alvarez # Contributor: Kyle Fuller -pkgname=("spl") +pkgname="spl" # # This script doesn't use bash variables for the version number because AUR # doesn't properly parse bash variables. We use a custom build script to @@ -12,7 +12,7 @@ pkgname=("spl") # https://github.com/demizer/archzfs/blob/master/build.sh # pkgver=0.6.2_3.12.7 -pkgrel=2 +pkgrel=3 pkgdesc="Solaris Porting Layer kernel modules." depends=("spl-utils" "linux=3.12.7-2") makedepends=("linux-headers=3.12.7-2") diff --git a/zfs-utils/PKGBUILD b/zfs-utils/PKGBUILD index 31a1bfe..8578110 100644 --- a/zfs-utils/PKGBUILD +++ b/zfs-utils/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Jesus Alvarez # Contributor: Kyle Fuller -pkgname=("zfs-utils") +pkgname="zfs-utils" # # This script doesn't use bash variables for the version number because AUR # doesn't properly parse bash variables. We use a custom build script to @@ -12,7 +12,7 @@ pkgname=("zfs-utils") # https://github.com/demizer/archzfs/blob/master/build.sh # pkgver=0.6.2_3.12.7 -pkgrel=2 +pkgrel=3 pkgdesc="Kernel module support files for the Zettabyte File System." depends=("spl") arch=("i686" "x86_64") diff --git a/zfs/PKGBUILD b/zfs/PKGBUILD index 2cd22e2..ff83871 100644 --- a/zfs/PKGBUILD +++ b/zfs/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Jesus Alvarez # Contributor: Kyle Fuller -pkgname=("zfs") +pkgname="zfs" # # This script doesn't use bash variables for the version number because AUR # doesn't properly parse bash variables. We use a custom build script to @@ -12,9 +12,9 @@ pkgname=("zfs") # https://github.com/demizer/archzfs/blob/master/build.sh # pkgver=0.6.2_3.12.7 -pkgrel=2 +pkgrel=3 pkgdesc="Kernel modules for the Zettabyte File System." -depends=("spl=0.6.2_3.12.7-2" "zfs-utils" "linux=3.12.7-2") +depends=("spl=0.6.2_3.12.7-3" "zfs-utils" "linux=3.12.7-2") makedepends=("linux-headers=3.12.7-2") arch=("i686" "x86_64") url="http://zfsonlinux.org/"