Package Details: asp-git 6.r0.gc5efea2-1

Git Clone URL: https://aur.archlinux.org/asp-git.git (read-only, click to copy)
Package Base: asp-git
Description: Arch Linux build source file management (git version)
Upstream URL: https://github.com/archlinux/asp
Licenses: MIT
Conflicts: asp
Provides: asp
Submitter: falconindy
Maintainer: eatmyvenom
Last Packager: eatmyvenom
Votes: 24
Popularity: 0.000889
First Submitted: 2014-07-31 16:57 (UTC)
Last Updated: 2021-01-01 11:05 (UTC)

Required by (8)

Sources (1)

Latest Comments

1 2 Next › Last »

konsonanz commented on 2022-03-25 23:06 (UTC)

This package does currently not build, since github dropped the support for cloning via git:// urls [0]. To fix the issue, the source field can be adapted like this:

-source=("git://github.com/archlinux/asp")
+source=("git+https://github.com/archlinux/asp.git")

[0] https://github.blog/2021-09-01-improving-git-protocol-security-github/

falconindy commented on 2018-01-19 10:04 (UTC)

m4 is part of base-devel. You're expected to have this installed if you're going to be building any packages.

Esspy commented on 2018-01-19 07:04 (UTC)

hi,

asp-git will build with warning without m4 package being installed. this results in empty file in /usr/bin/asp. after installing m4, asp works as expected. please add m4 to dependencies.

alfredo.ardito commented on 2017-05-16 08:13 (UTC)

When I got those errors I used yaourt directly.

falconindy commented on 2017-05-14 12:40 (UTC)

Please use the most recent PKGBUILD...

alfredo.ardito commented on 2017-05-10 20:13 (UTC)

Got these errors building asp-git ==> Starting pkgver()... ==> ERROR: pkgver is not allowed to contain colons, hyphens or whitespace. ==> ERROR: pkgver() generated an invalid version: 1-2-gfc74b09 ==> ERROR: Makepkg was unable to build asp-git. ==> Restart building asp-git ? [y/N] ==> --------------------------------

falconindy commented on 2017-04-04 01:04 (UTC)

In the future, feature requests need to go to github. The AUR is not an issue tracker.

alive4ever commented on 2017-04-03 10:40 (UTC)

Regarding source, it would be wise to use git+https:// as source, since git:// may be blocked and https can't be blocked.

alive4ever commented on 2017-04-03 10:38 (UTC)

I encountered an error regarding missing ~/.cache/asp directory, which asp doesn't solve automatically. Had to create ~/.cache/asp manually for this to work. How about adding a simple test for the existence of $ASPROOT? When $ASPROOT directory is not available, create it. [ -d "$ASPROOT" ] || mkdir -p "$ASPROOT"

falconindy commented on 2017-03-25 14:33 (UTC)

By semi-popular demand, ASPROOT now defaults to $XDG_CACHE_HOME/asp, falling back on $HOME/.cache/asp. Unless you previously set ASPROOT yourself, this change affects you, and you should move your $HOME/asp to the new location.