Age | Commit message (Collapse) | Author |
|
This solves the problem of:
$ asp checkout foo
$ asp list-arches foo
warning: refname 'packages/packages/foo' is ambiguous.
x86_64
i686
Same for list-repos (duh, shared codepath)
|
|
|
|
|
|
bsdtar is common to all Arch systems, but other distros (debian-ish)
might only have tar installed by default. Sadly, bsdtar has slightly
nicer semantics in it's -s than GNU tar's transform when matchin
directories in the tarball.
|
|
This is an implementation detail -- no one should really need to know
or core which repo the package came from. Moreover, there's nothing you
can do with this information. It's conceivable that a package of the
same name could exist in both git repos, but this would be semantically
forbidden by Arch packaging policies, and not well handled by asp
regardless of showing the prefix here.
Fixes GH#14.
|
|
|
|
|
|
The curly braces in '${XDG_CACHE_HOME:-$HOME/.cache}/asp' seem to confuse the parser
|
|
|
|
|
|
Fixup how we do versioning for git builds, and fix the missing package
version in the manpage and the static version in the script.
|
|
|
|
|
|
|
|
|
|
|
|
completions might trigger tracking of a new package. it all goes to
stderr, but let's not crowd the output regardless.
|
|
|
|
|
|
mostly to make shellcheck happy
|
|
Update README.md
|
|
|
|
And keep the doc up to date...
|
|
When a basic lookup fails, attempt to resolve the package name through
archweb to get the pkgbase, under the assumption that this might be a
split package. This adds jq as a new dependency.
Closes #8.
|
|
Others have asked for this in the past, see:
https://github.com/falconindy/asp/issues/7#issuecomment-57004965
https://github.com/falconindy/asp/pull/9
asp might get more traction with the prospect of it more widely
replacing ABS, and I suspect this will come up again.
|
|
Since aceefc28ca701feb8, the manpage has been out of date, not
mentioning new features. While we're here, extend the manpage to better
cover the arguments to our subcommands.
|
|
|
|
pass --prune=all to gc to ensure that we properly cleanup unpacked and
packed objects and don't have the weird bloating effect after a first
pass, e.g.:
$ asp disk-usage
==> Using 640K on disk.
$ asp gc
Nothing new to pack.
$ asp disk-usage
==> Using 8.4M on disk.
$ asp gc
Nothing new to pack.
$ asp disk-usage
==> Using 328K on disk.
|
|
|
|
I'm too stubborn to turn extdebug on, so let's just give up on
BASH_ARGC (which never worked properly because former stubbornness
about extdebug), and just pass $#.
|
|
|
|
|
|
|
|
|
|
|
|
This offers some command line convenience, allowing the user only
specify an action prefix as long as it can be resolved without
ambiguitiy. For example, as of this commit, 'asp up' would then
translate to 'asp update', and 'asp d' would be an error (as 'difflog'
and 'disk-usage' are both candidates).
|
|
|
|
|
|
This ought to save some people trouble if they choose to develop on the
default created branch.
|
|
|
|
...instead of dumping *all* error output to the eternal bit bucket.
|
|
refnames need the packages/ prefix, not just the package name. Caused by
2f04d93b37172e5.
Fixes GH#6.
|
|
|
|
this isn't useful for us, because our branches are just pointers -- we
manually maintain them on 'update'.
|
|
|
|
This ensures that 'git pull' works in a checked-out repo after an
update.
https://bbs.archlinux.org/viewtopic.php?pid=1455457#p1455457
|
|
|
|
|
|
|
|
The rest of this is just noise.
|