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
pull/17/head
Jesus Alvarez 11 years ago
parent ebad5e6e05
commit f0ebd41d43
  1. 2
      conf.sh
  2. 4
      spl-utils/PKGBUILD
  3. 4
      spl/PKGBUILD
  4. 4
      zfs-utils/PKGBUILD
  5. 6
      zfs/PKGBUILD

@ -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"

@ -1,7 +1,7 @@
# Maintainer: Jesus Alvarez <jeezusjr at gmail dot com>
# Contributor: Kyle Fuller <inbox at kylefuller dot co dot uk>
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/"

@ -1,7 +1,7 @@
# Maintainer: Jesus Alvarez <jeezusjr at gmail dot com>
# Contributor: Kyle Fuller <inbox at kylefuller dot co dot uk>
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")

@ -1,7 +1,7 @@
# Maintainer: Jesus Alvarez <jeezusjr at gmail dot com>
# Contributor: Kyle Fuller <inbox at kylefuller dot co dot uk>
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")

@ -1,7 +1,7 @@
# Maintainer: Jesus Alvarez <jeezusjr at gmail dot com>
# Contributor: Kyle Fuller <inbox at kylefuller dot co dot uk>
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/"

Loading…
Cancel
Save