summaryrefslogtreecommitdiff
path: root/src/abslibre-tools/librestage
AgeCommit message (Collapse)Author
2018-05-30librefetch: Update for makepkg 5.1Luke Shumaker
2018-01-02Change my email address lukeshu@sbcglobal.net -> lukeshu@parabola.nuLuke Shumaker
2017-05-25start moving things to use the libremessages exit codesLuke Shumaker
2017-05-24Merge conf.sh:load_files and conf.sh:check_vars into load_confLuke Shumaker
2017-05-05librestage: fix a typo in an error messageLuke Shumaker
2017-05-05librestage: get the list of arches from the PKGBUILD, not a global conf.Luke Shumaker
Also, pacman-git produces ${pkgbase}-debug packages instead of the ${pkgname}-debug packages that pacman <=5.0.1 produces. This commit adds support for staging both, so we are ready when the new pacman comes out.
2017-05-05librestage: ditch xbs in favor of uploading sourceballsLuke Shumaker
2017-04-20Consistently use ". $(librelib slug)" to load libraries.Luke Shumaker
2014-07-27librestage: be more careful about the xbs configurationLuke Shumaker
2014-07-05quote calls to librelibLuke Shumaker
2014-07-05xbs: create separate release-client and release-server sub-commandsLuke Shumaker
2014-07-05librestage: clean up variable usageLuke Shumaker
2014-07-05librestage: Drop support for multiple repos, add support for guessing reposLuke Shumaker
2014-07-04librestage: simplify (I learned a new bit of bash syntax :) )Luke Shumaker
This mostly reverts the indent-change done by adding -debug support
2014-07-01librestage: Also stage -debug packages.Luke Shumaker
You might want to "ignore whitespace" when looking at this diff.
2014-06-20Move the staging lock file descriptor from 10 to 8. >=10 isn't safe.Luke Shumaker
2014-06-20I think xbs is in a workable stage.Luke Shumaker
2014-06-20Merge branch 'master' into lukeshu/xbsLuke Shumaker
2014-06-20librestage: use the (new-ish) find_cached_packageLuke Shumaker
2014-06-17minor touch ups in abslibre-toolsLuke Shumaker
2014-03-22Audit the authors and copyright years of files against git logsLuke Shumaker
2014-03-21Do an audit of copyright and license claimsLuke Shumaker
2014-02-02Normalize to use the string "Copyright (C)"Luke Shumaker
2014-02-02I forgot to bump the copyright year on all the files I've touched this yearLuke Shumaker
2014-01-20normalize to use >&2 instead of /dev/stderrLuke Shumaker
2014-01-05librestage: fix staging generated sourcesLuke Shumaker
2014-01-04librestage: stage files generated by librefetchLuke Shumaker
2013-09-22Merge commit '610699'Luke Shumaker
Conflicts: src/abslibre-tools/createworkdir
2013-09-21abslibre-tools: internationalizeLuke Shumaker
2013-09-12Merge branch 'fauno~2' (early part) into masterLuke Shumaker
2013-09-11libre{stage,release}: fix https://labs.parabola.nu/issues/379Luke Shumaker
2013-06-27add {load,unset}_PKGBUILD to conf.sh, use it.Luke Shumaker
There are a bunch of caveats to loading a PKGBUILD file. This way it is all done correctly in one place. unset_PKGBUILD unsets any functions and variables that are normally set in a PKGBUILD. The list is far more complete than any existing implementation. load_PKGBUILD loads the file given, or "./PKGBUILD" if none is given. But first it calls unset_PKGBUILD and then sets CARCH.
2013-06-08librestage: handle PKGDEST better, fix testsv20130608Luke Shumaker
2013-06-08librestage: go back to looping over all archesLuke Shumaker
This for users who cross-compile for multiple architectures.
2013-06-05Double bracket ==/</> compare lexicographically, not numerically.Luke Shumaker
Unfortunately for me, that means that it works correctly *most* of the time. But, for example, [[ 10 < 2 ]], and negatives don't work.
2013-06-05libre{stage,release}: Standardize message for running as root.Luke Shumaker
2013-06-05librestage: clean up, add unit testsLuke Shumaker
Contained the text "# TODO refactor this", and I can't just stick to that fragment of code, can I? I actually didn't change too much, despite what the diff looks like. - move everything into a main() routine - redo the usage() text - rename a few variables - fix where "${#repos}" should have been "${#repos[@]}" - use [[...]] instead of [...] - use "if A; then B; else C; fi" instead of "A || C && B" - use CARCH instead of looping over every possible architecture. - only look for files that match PKGEXT, as set in makepkg.conf - pull out duplicate code for error handling - don't warn when creating "staging/REPONAME"
2013-06-05librestage: use tabs to indentLuke Shumaker
2013-06-05[many tools]: miscellaneous minor cleanupsLuke Shumaker
2013-06-05[all tools]: use conf.sh (and libremessages if necessary)Luke Shumaker
2012-12-21librestage: use get_full_version() for finding the package file.Luke Shumaker
This fixes a bug with it assuming that version is the same across split packages (and possibly other bugs).
2012-11-07organize the filesLuke Shumaker