You are not logged in.
Trying to submit a PKGBUILD called:
gstreamer0.10-pitfdll-cvs
I am getting an error "Invalid name: only lowercase letters are allowed."
Does this mean that numbers are not allowed in the package names in AUR?
The error goes away once I remove the numbers but that creates other errors, such as a mismatch with the name in the PKGBUILD file.
This package is just another plugin for the gstreamer0.10 series of packages in Arch.
Offline
# $Id: PKGBUILD,v 1.3 2006/05/30 23:33:50 notz Exp $
# Maintainer: Jan de Groot <jgc>
pkgname=gstreamer0.10-amrnb
pkgver=0.10.3
pkgrel=1
pkgdesc="AMR narrow-band speech codec Gstreamer plugin"
arch=(i686 x86_64)
depends=(gstreamer0.10-ugly amrnb)
makedepends=(intltool pkgconfig)
url="http://gstreamer.freedesktop.org/"
groups=(gstreamer0.10-plugins)
_relname=gst-plugins-ugly
source=(${url}/src/${_relname}/${_relname}-${pkgver}.tar.bz2
uglyconf)
md5sums=(af6f238507b0040bf84fcbc6a241e559 825050222a558d0cedeea3cfd2f716ea)
build() {
cd ${startdir}/src/${_relname}-${pkgver}
plugins="amrnb"
. ${startdir}/src/uglyconf
rm -f ${startdir}/pkg/usr/lib/gstreamer-0.10/*.{,l}a
}
heres an example of gstreamer .10 plugin.. use that and just change the values u need to.. maybe u made some mistake
however, the only person who submitted gstreamer0.10 plugins to aur was a trusted user.. so maybe he had the right to bypass the error
Darkstar:
Athlon 64 3500+ (OC ~2.49ghz)
Leadtek GeForce 6800 128mb (unlocked/OC)
Rosewill Value DDR400 1GB
WDC SE 80GB
NEC 3550 DVDRW DL 16X
Offline
AUR doesnt accept periods in the pkgname. [community] doesnt have the problem
Offline
I think you should report that as a bug in the AUR flyspray.
Offline
Reported to the AUR bug tracker as
Offline
try using lowercase numbers
Offline
wasnt there some people rewriting the aur? aur 2.0 or something? with cmd-line access and everything... how's that going?
KISS = "It can scarcely be denied that the supreme goal of all theory is to make the irreducible basic elements as simple and as few as possible without having to surrender the adequate representation of a single datum of experience." - Albert Einstein
Offline
wasnt there some people rewriting the aur? aur 2.0 or something? with cmd-line access and everything... how's that going?
*cough* planning until I legitimately have a lot of time on my hands
The suggestion box only accepts patches.
Offline
B4 I forget what started this little mess, allow me to present:
# Contributor: Kurt B Cox <kurtbcox>
pkgname=gstreamer0.10-pitfdll-cvs
pkgver=20060421
pkgrel=1
pkgdesc="A set of plugins for Gstreamer for proprietary codecs"
url="http://pitfdll.sourceforge.net"
license="GPL"
depends=('gstreamer0.10-base' 'codecs')
makedepends=('cvs')
groups=(gstreamer0.10-plugins)
provides=('gstreamer0.10-pitfdll')
conflicts=('gstreamer0.10-pitfdll')
options=('NOLIBTOOL')
_cvsroot=":pserver:anonymous:@pitfdll.cvs.sourceforge.net:/cvsroot/pitfdll"
_cvsmod="pitfdll"
build() {
cd $startdir/src
msg "Connecting to $_cvsmod.sourceforge.net CVS server...."
cvs -z3 -d $_cvsroot co -D $pkgver -f $_cvsmod
msg "CVS checkout done or server timeout"
msg "Starting make..."
[ -d $_cvsmod-build ] && rm -r $_cvsmod-build
cp -r $_cvsmod $_cvsmod-build
cd $_cvsmod-build
./autogen.sh --prefix=/usr --with-dlldir=/usr/lib/win32
make || return 1
make DESTDIR=$startdir/pkg install || return 1
}
# vim:syntax=sh
Offline
B4 I forget what started this little mess, allow me to present:
Thanks, bin missing this. Works fine for me!
Offline