summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-06-08librestage: handle PKGDEST better, fix testsv20130608Luke Shumaker
2013-06-08libremakepkg: add -N flag to enable networking, for distcc supportLuke Shumaker
2013-06-08librerelease: fix sign_packages+pinentry-curses breaking the terminalLuke Shumaker
2013-06-08Merge branch 'master' of ↵Luke Shumaker
ssh://parabolagnulinux.org:1863/srv/git/packages/libretools
2013-06-08libretools.conf: tidy upLuke Shumaker
2013-06-08librerelease: print a message before running HOOK{PRE,POST}RELEASELuke Shumaker
2013-06-08librestage: go back to looping over all archesLuke Shumaker
This for users who cross-compile for multiple architectures.
2013-06-08aur: cleanup, fixLuke Shumaker
2013-06-08pkgbuild-check-nonfree: add -c flag to not download a new blacklistLuke Shumaker
2013-06-08pkgbuild-check-licenses: fixLuke Shumaker
2013-06-08libreblacklist: fix a few bugsLuke Shumaker
- set -e didn't work in blacklist-update when followed by || - it prompted before overwriting the local blacklist
2013-06-08is_built: make the version optionalLuke Shumaker
2013-06-08libretools.conf: change default DIFFTOOL orderLuke Shumaker
2013-06-08Add myself to the AUTHORS fileLuke Shumaker
2013-06-08Fail when it's not possible to sign packages (issue #347)Nicolás Reynolds
2013-06-05librechroot: fix clean-repov20130605.1Luke Shumaker
2013-06-05chroot.conf: configure CHROOTEXTRAPKG to be empty by defaultv20130605testing-20130605Luke Shumaker
2013-06-05librechroot: improve documentation for -C and -MLuke Shumaker
2013-06-05add a system to skip tests that require networking or sudo.Luke Shumaker
2013-06-05fix the tests to work when libretools isn't installedLuke Shumaker
2013-06-05testenv: do a better job of cleaning up temorary filesLuke Shumaker
2013-06-05librechroot: check if the command doesn't exist and fail earlyLuke Shumaker
2013-06-05libre{chroot,makepkg}: improve handling of when not configuredLuke Shumaker
2013-06-05libreblacklist: fix call to check_varsLuke Shumaker
2013-06-05test/.gitignore: ignore roundup temporary filesLuke Shumaker
2013-06-05unit tests: make XDG_CONFIG_HOME not exist when checking usage textLuke Shumaker
2013-06-05librelib: print to stderr if it can't find the libraryLuke Shumaker
2013-06-05unit tests: sudo was unsetting LIBRETOOLS_LIBDIRLuke Shumaker
2013-06-05add unit tests for aur and is_builtLuke Shumaker
2013-06-05pkgbuild-check-licenses: touch upLuke Shumaker
2013-06-05is_built: document exit codesLuke Shumaker
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-05fullpkg-find:copy_files(): comment on being stolen from makechrootpkgLuke Shumaker
2013-06-05use common.sh:get_full_version() universallyLuke Shumaker
2013-06-05fix up mipsrelease/fullpkg-build/HOOKLOCALRELEASELuke Shumaker
HOOKLOCALRELEASE: - set to librestage by default, because the mips value is mipsrelease, which calls librestage - document what arguments it is given. fullpkg-build: - Run HOOKLOCALRELEASE in a way that is consistent with treepkg does and what mipsrelease takes. Note that what fullpkg-build did is what mipsrelease documentation said, but not what it actually did. - Don't run librestage; if we want it to run, run it with HOOKLOCALRELEASE mipsrelease: Telling diff to ignore whitespace helps with this one. - use get_full_version from common.sh/libremessages - give a code path to display usage() - correct usage() - fix a little quoting - make sure makepkg.conf variables are set
2013-06-05librerelease: use a single REPODEST instead of PARABOLAHOST + LIBREDESTDIRLuke Shumaker
2013-06-05libretools.conf: add ssh value for ABSLIBREGIT in commentLuke Shumaker
2013-06-05conf.sh: add a mechanism to save environmental variablesLuke Shumaker
This mimics the behavior of makepkg.
2013-06-05conf.sh: fix leaked local variablesLuke Shumaker
2013-06-05librerelease: Use makepkg.conf:GPGKEY instead of libretools.conf:SIGIDLuke Shumaker
2013-06-05librerelease: add a HOOKPOSTRELEASELuke Shumaker
2013-06-05librerelease: clean upLuke Shumaker
Besides a few code-technique things, - delay executing an action like clean until all options are parsed; before `librerelease -nc` and `librerelease -nc` were very different. - fix the clean action
2013-06-05libre{stage,release}: Standardize message for running as root.Luke Shumaker
2013-06-05librerelease: wrap the end bit in `function main {...}; main "$@"`Luke Shumaker
2013-06-05librerelease: format usage() to be consistentLuke Shumaker
also, use print(), which has gettext support built in
2013-06-05librerelease: use tab for indentLuke Shumaker
2013-06-05librechroot: capitalization and punctuation in usage()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-05add a few tests for libremakepkgLuke Shumaker