index : asp32 | |
Archlinux32 fork of asp - obsolete | gitolite user |
summaryrefslogtreecommitdiff |
Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-10-15 | package.inc.sh: mangle the arch=() entry of the PKGBUILD0.1 | Erich Eckner | |
2018-10-15 | add Erich Eckner to man page | Erich Eckner | |
2018-10-15 | .gitignore: asp32-* new | Erich Eckner | |
2018-10-15 | Makefile: upload target new, rest refurbished | Erich Eckner | |
2018-10-15 | README.md: say, we moved to git.archlinux32.org | Erich Eckner | |
2018-10-15 | introduce our modification repository (not yet functional) | Erich Eckner | |
2018-10-15 | updated README.md | Andreas Baumann | |
2018-10-15 | renamed to arch32 | Andreas Baumann | |
2018-09-08 | prepare v3v3 | Dave Reisner | |
2018-08-19 | Use --local when creating a git clone for checkout | Dave Reisner | |
While we're here, merge our 'git config' command into the clone. | |||
2018-08-19 | Avoid cd, references to $startdir | Dave Reisner | |
just set GIT_DIR appropriately and always operate from the original $PWD. As part of this, let's cleanup our error handling in initialize() a fair bit. | |||
2018-04-04 | simplify quiet_git | Dave Reisner | |
No need to define a whole array for passing -q | |||
2018-04-04 | urlencode query param in archweb requests | Andreas Grapentin | |
Some packages, e.g. libsigc++-docs, needs to be properly hex-escaped. | |||
2018-02-10 | avoid coloring when parsing output of 'git branch' | Dave Reisner | |
Fixes #22. | |||
2017-11-26 | archweb: use jq's -e flag to indicate not-found as failure | Dave Reisner | |
2017-11-18 | Avoid corrupting caches when network is unavailable | Dave Reisner | |
This removes the use of a tempfile entirely, and only updates the cache when `git ls-remote` succeeds. Based on a PR by polygamma: https://github.com/falconindy/asp/pull/20 | |||
2017-08-20 | Bump version to v2v2 | Dave Reisner | |
2017-08-20 | Use https as the default git transport | Dave Reisner | |
Closes #17. | |||
2017-08-20 | simplify subtree decision making | Dave Reisner | |
2017-07-08 | add set-git-protocol command | Dave Reisner | |
While we're at it, separate our help output into two sections, since we're accumulating a growing list of subcommands which operate not on packages, but on the meta level of the asp repo. Closes #15. | |||
2017-07-08 | avoid the need to maintain a separate list of actions | Dave Reisner | |
We have our nice action__ prefix on all of our action disspatchers, so let's just use that to our advantage. While we're here, fix the return code when we encounter an ambiguous action | |||
2017-07-07 | fully qualify remote ref to avoid ambiguity | Dave Reisner | |
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) | |||
2017-07-07 | ensure package_resolve returns an error on failed lookup | Dave Reisner | |
2017-06-19 | alphabetize action list, usage, manpage | Dave Reisner | |
2017-06-18 | package: prefer tar over bsdtar | Dave Reisner | |
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. | |||
2017-05-30 | hide git repo prefix in list-{all,local} output | Dave Reisner | |
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. | |||
2017-05-23 | always preserve exit statuses on return | Dave Reisner | |
2017-05-14 | declare victory: asp replaces abs, not just attempts to | Dave Reisner | |
2017-05-09 | Merge pull request #11 from pouar/fix | Dave Reisner | |
The curly braces in '${XDG_CACHE_HOME:-$HOME/.cache}/asp' seem to confuse the parser | |||
2017-05-09 | fix manpage | Pouar | |
2017-04-13 | bump version to v1v1 | Dave Reisner | |
2017-04-13 | Ensure we do proper versioning in the script and manpage | Dave Reisner | |
Fixup how we do versioning for git builds, and fix the missing package version in the manpage and the static version in the script. | |||
2017-04-06 | man: fix URL to svn-to-git repos | Dave Reisner | |
2017-04-06 | make ASPCACHE dir creation fatal | Dave Reisner | |
2017-04-05 | add syntax check test | Dave Reisner | |
2017-04-05 | remote: avoid need for awk post-processing | Dave Reisner | |
2017-04-05 | quote $subtree expansion | Dave Reisner | |
2017-04-04 | avoid leaking git output for completions | Dave Reisner | |
completions might trigger tracking of a new package. it all goes to stderr, but let's not crowd the output regardless. | |||
2017-04-04 | add ls-files to shell completion | Dave Reisner | |
2017-04-03 | lazily initialize ASPROOT if it doesn't yet exist | Dave Reisner | |
2017-03-31 | assorted cleanup | Dave Reisner | |
mostly to make shellcheck happy | |||
2017-03-25 | Merge pull request #10 from gubiq/patch-1 | Dave Reisner | |
Update README.md | |||
2017-03-25 | Update README.md | Björn Fries | |
2017-03-25 | fix defaulting expansion in ASPROOT definition | Dave Reisner | |
And keep the doc up to date... | |||
2017-03-25 | Handle split packages | Dave Reisner | |
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. | |||
2017-03-25 | move default ASPROOT to XDG_CACHE_HOME or similar | Dave Reisner | |
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. | |||
2017-03-25 | improve manual, add ls-files and extra arg to show | Dave Reisner | |
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. | |||
2017-03-25 | avoid variable pollution when using params by ref | Dave Reisner | |
2017-03-25 | gc: merge prune and gc into single step | Dave Reisner | |
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. | |||
2017-03-12 | support showing files from repos dir | Dave Reisner | |