You are not logged in.

#1 2014-10-28 14:53:54

iia
Member
Registered: 2014-06-03
Posts: 8

svn source with empty username and password

I'm trying to create a PKGBUILD for version 2.0 of FLTK, which is needed for a program I want to use. Both username and password for the SVN repository are empty, but I can't seem to get the $source variable to work without prompting for a password. Here's what I have so far:

pkgname="fltk2-svn"
pkgver=2.0
pkgrel=1
pkgdesc="Fast Light Toolkit. Discontinued 2.0 branch"
arch=('i686' 'x86_64')
url="http://fltk.org/software.php"
license=('LGPL' 'custom')
depends=()
provides=('fltk2')
conflicts=('fltk2')
makedepends=('subversion')
source=("fltk2::svn+http://seriss.com/public/fltk/fltk/trunk")
md5sums=('SKIP')

# I'll get right on this once the download actually works
pkgver() {
  echo "$pkgver"
}

# TODO
buidl() {
  false
}

# TODO
package() {
  false
}

This prompts for a username and password, which I don't want. Other versions I've tried,

source=("fltk2::svn+'':''@http://seriss.com/public/fltk/fltk/trunk")
source=("fltk2::svn+:@http://seriss.com/public/fltk/fltk/trunk")

just display an error code.

svn: E125002: ':@http:/seriss.com/public/fltk/fltk/trunk' does not appear to be a URL

What's the correct thing to put in there?

Offline

Board footer

Powered by FluxBB