You are not logged in.

#1 2015-06-20 16:26:40

Salan54
Member
Registered: 2011-09-06
Posts: 25

[SOLVED] pkgrel not reflected in Package Details

I've just made a commit on the zulucrypt package.
I changed the pkgrel variable from 3 to 4 and made a few modifications in PKGBUILD.
The commit passes successfully. Here is the "new" PKGBUILD :

# Maintainer: Salan54 <salan at fremenil dot com>
# Created: 2013-03-17
# QT4 version
pkgname=zulucrypt
pkgver=4.7.6
pkgrel=4
_altpkgname=zuluCrypt
pkgdesc="a cli and gui frontend to cryptsetup."
url="http://mhogomchungu.github.io/zuluCrypt/"
arch=('x86_64' 'i686')
license=('GPL')
depends=('cryptsetup' 'qt5-base' 'libpwquality' 'libsecret' )
optdepends=('kdeutils-kwalletmanager: retrieve volume keys from kde kwallet')
conflicts=('zulucrypt-git')
makedepends=('cmake')
options=('!buildflags')
source=("https://github.com/mhogomchungu/zuluCrypt/releases/download/${pkgver}/${_altpkgname}-${pkgver}.tar.bz2")
md5sums=('0870b0228a6e7d6cdc529d6e1047b0fd')
changelog=${pkgname}.changelog
install=${pkgname}.install

build() {
  cd "${srcdir}/${_altpkgname}-${pkgver}"
  mkdir -p build
  cd build
  cmake -DCMAKE_INSTALL_PREFIX=/usr/ -DLIB_SUFFIX=lib -DNOGUI=false -DQT5=true -DHOMEMOUNTPREFIX=false -DNOKDE=true -DCMAKE_BUILD_TYPE=release . ..
  make
}

package() {
  echo "changelog updated"
  cp "${srcdir}/${_altpkgname}-${pkgver}"/changelog ../${pkgname}.changelog
  cd "${srcdir}/${_altpkgname}-${pkgver}"
  cd build
  make DESTDIR="$pkgdir" install
}
 
# vim:set ts=2 sw=2 et:

But, in the "Package Details" webpage : https://aur4.archlinux.org/packages/zulucrypt/,
The version is still zulucrypt 4.7.6-3... it should have been zulucrypt 4.7.6-4, or did I miss something ?
Thanks for your answers,
Salan

Last edited by Salan54 (2015-06-20 16:36:18)

Offline

#2 2015-06-20 16:28:03

Scimmia
Fellow
Registered: 2012-09-01
Posts: 13,729

Re: [SOLVED] pkgrel not reflected in Package Details

Did you update the .SRCINFO file?

Offline

#3 2015-06-20 16:35:07

Salan54
Member
Registered: 2011-09-06
Posts: 25

Re: [SOLVED] pkgrel not reflected in Package Details

Ooops...
I forgot to update the .SRCINFO file. That's done.
Thanks for your quick answer.

Offline

Board footer

Powered by FluxBB