[aur-general] I can't update or upload packages in AUR
Hello, I have a problem, when i try to upload any package in AUR here: http://aur.archlinux.org/pkgsubmit.php uploading ends (after ~1 min) by just a blank page. It's AUR bug? I can't update my package about 3 days. I can't upload a new package either. I adopt pcsx-df package, and the sources links in the PKBUILD its broken. This is my PKBUILD: # Maintainer: Jose Valecillos <valecillosjg (at) gmail (dot) com> pkgname=pcsx-df pkgver=1.818 pkgrel=1 pkgdesc="Debian fork of the abandoned original PCSX" arch=(i686 x86_64) url="http://pcsx-df.game-host.org/pcsx-df/" license=('GPL') depends=('libglade' 'libgl' 'libxv' 'alsa-lib' 'bzip2') makedepends=('pkgconfig' 'mesa' 'diffutils') options=('!libtool') provides=('pcsx') source=(http://pcsx-df.game-host.org/pcsx-df/files/pcsx-df-${pkgver}.tar.gz http://pcsx-df.game-host.org/pcsx-df/files/dfOpenGL-1.1.0.tar.gz) [ "${CARCH}" == "i686" ] && makedepends="${makedepends[@]} nasm" build() { cd ${startdir}/src/pcsx-df-${pkgver} flags="--enable-alsa" if [ ! "${CARCH}" == "i686" ]; then flags="${flags} --disable-nasm" fi ./configure --prefix=/usr $flags make || return 1 make DESTDIR="$startdir/pkg" install cd ../dfOpenGL make clean make || return 1 install -m755 libdfOpenGL.so ${startdir}/pkg/usr/lib/games/psemu/libdfOpenGL.so } md5sums=('9315b421396a34bfd57be5d25f88dff7' '36ccf31d0b88f099bf4acd6a16b5b04c') -- José Valecillos
On Thu, Feb 26, 2009 at 07:12:51PM +1930, José Valecillos wrote:
Hello, I have a problem, when i try to upload any package in AUR here: http://aur.archlinux.org/pkgsubmit.php uploading ends (after ~1 min) by just a blank page. It's AUR bug? I can't update my package about 3 days. I can't upload a new package either.
Yep must be a glitch in the parser. I'd guess that it's probably this line is causing the hang up:
[ "${CARCH}" == "i686" ] && makedepends="${makedepends[@]} nasm"
-----Original Message-----
Date: Thu, 26 Feb 2009 01:24:00 +0100 Subject: Re: [aur-general] I can't update or upload packages in AUR From: Loui Chang <louipc.ist@gmail.com> To: "Discussion about the Arch User Repository (AUR)" <aur-general@archlinux.org>
On Thu, Feb 26, 2009 at 07:12:51PM +1930, José Valecillos wrote:
Hello, I have a problem, when i try to upload any package in AUR here: http://aur.archlinux.org/pkgsubmit.php uploading ends (after ~1 min) by just a blank page. It's AUR bug? I can't update my package about 3 days. I can't upload a new package either.
Yep must be a glitch in the parser. I'd guess that it's probably this line is causing the hang up:
[ "${CARCH}" == "i686" ] && makedepends="${makedepends[@]} nasm"
Hello, will using tools like aurup or aurploader cause trouble here? BTW there is at least one other user with that problem, see http://bbs.archlinux.org/viewtopic.php?id=65378 Regards Stefan
I drop these line and works...I don't know exactly what is the function os this line anyway... It was in the PKGBUILD of the original owner. Thanks for answer! -- José Valecillos
On Thu, Feb 26, 2009 at 3:15 AM, José Valecillos <valecillosjg@gmail.com> wrote:
I drop these line and works...I don't know exactly what is the function os this line anyway... It was in the PKGBUILD of the original owner.
Thanks for answer!
I know nothing about the package, but the intention was obvious : support the x86_64 architecture by disabling nasm with a configure flag, thus adding nasm to makedepends only for the i686 architecture. I see you completely dropped support for x86_64 in your PKGBUILD. I have no interest for it, but maybe I will check later if it builds.
I've had this problem with qtcreator but suddenly after several days of trying to upload it it uploaded.
On Thu, Feb 26, 2009 at 05:20:43PM +0100, Lukáš Jirkovský wrote:
I've had this problem with qtcreator but suddenly after several days of trying to upload it it uploaded.
The problem won't be magically fixed after a few days. It was a change in the parser that solved it.
2009/2/26 Loui Chang <louipc.ist@gmail.com>:
On Thu, Feb 26, 2009 at 05:20:43PM +0100, Lukáš Jirkovský wrote:
I've had this problem with qtcreator but suddenly after several days of trying to upload it it uploaded.
The problem won't be magically fixed after a few days. It was a change in the parser that solved it.
Oh, thanks!
participants (5)
-
José Valecillos
-
Loui Chang
-
Lukáš Jirkovský
-
stefan-husmann@t-online.de
-
Xavier