summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-11-04libretools.conf: base WORKDIR off of $LIBREHOME, not /home/$LIBREUSERLuke Shumaker
2013-11-04libretools.conf: fix typoLuke Shumaker
2013-11-04gitget: fix option parsingLuke Shumaker
2013-11-04createworkdir: clean up outputLuke Shumaker
2013-11-04libremessages(1): clarify when gettext is used.Luke Shumaker
2013-11-04treepkg: fail early if there is a configuration errorLuke Shumaker
2013-11-04librerelease: don't redirect output of gpg --detach-signLuke Shumaker
This should fix fauno's issue with pinentry-curses, or at least fail more verbosely.
2013-11-04librerelease: mention `gpg-agent --daemon` instead of just `gpg-agent`Luke Shumaker
2013-11-04fullpkg: respect TMPDIRLuke Shumaker
2013-11-04touch up quoting on arraysLuke Shumaker
2013-11-04normalize on "[[" instead of "["Luke Shumaker
2013-11-03aur, is_built: internationalize usage()Luke Shumaker
2013-11-03treepkg: obey $TMPDIRLuke Shumaker
2013-11-03treepkg: internationalize (sometimes changing the format of a message)Luke Shumaker
Changes in message format: - Terminal-titles now begin with capital letters - "error!" -> "Error!" - "done" -> "Done" - signal handler errors changed from (treepkg) MESSAGE (leftovers on BUILDDIR) to treepkg: MESSAGE (leftovers on BUILDDIR)
2013-11-03librechroot: correct commentLuke Shumaker
2013-11-02librechroot: when detecting mount options, set LC_ALL instead of LANGLuke Shumaker
2013-11-02test: set LC_ALL instead of LANGLuke Shumaker
2013-11-02createworkdir: use gitget to set separate push and pull URLs.Luke Shumaker
2013-11-02createworkdir: clean up quotingLuke Shumaker
2013-11-02gitget: handle ref not being setLuke Shumaker
2013-10-30gitget: learn -p and -fLuke Shumaker
2013-10-30rename libregit to gitget, add bare repository supportLuke Shumaker
2013-10-30chcleanup: manually update repo.db instead of running `pacman -Sy`Luke Shumaker
2013-10-30librechroot: check argument countsLuke Shumaker
2013-10-26fix librefetch, add (some) tests for itv20131027Luke Shumaker
2013-10-26test: blacklist: shorten a couple of test namesLuke Shumaker
2013-10-26Merge pkgbuild-check-{nonfree,licenses}, add a summarize tool for it.Luke Shumaker
This should fix a number of bugs in those two scripts, and the summarize script simplifies aur and libremakepkg:hooks-check.sh
2013-10-26libremakepkg: configure [repo] to be first by default, not lastLuke Shumaker
2013-10-26librefetch: clean src-libre before runningLuke Shumaker
2013-10-26librechroot: check that copydir isn't mounted nosuid/noexecLuke Shumaker
2013-10-26librechroot: die if stdin isn't a TTY, be more verbose about it.Luke Shumaker
2013-10-26librechroot+indent: Add in a bunch of extra '\r's to work-around the systemd bugLuke Shumaker
2013-10-15librechroot: (bugfix) Use the correct exit status if stdout isn't a TTY.v20131015Luke Shumaker
Because of the work-around for systemd-nspawn's buggy I/O, it was discarding the exit status if stdout wasn't a TTY. My work-around for *this* is to set -o pipefail.
2013-10-15libremakepkg: hooks-chcleanup: fix variable name causing it to not runLuke Shumaker
2013-10-15test: libremakepkg: add a test for bug #442, chcleanup not runningLuke Shumaker
2013-10-15testenv: verify that there is a command passedLuke Shumaker
I keep running it without any arguments, thinking that I am now working inside of the test environment, when really it just exited right away with a 0 status.
2013-10-08conf.sh.3: fix the reference to {get,set}_conf_makepkg in the BUGS sectionLuke Shumaker
2013-10-07test: librerelease: also set REPODEST, as librerelease checks for it.v20131007Luke Shumaker
2013-10-07librechroot: If stdout isn't a TTY, pipe progs in the chroot through cat.Luke Shumaker
Also, warn if stdin isn't a TTY.
2013-10-07(oops) I missed an instance of get_conf_makepkg.Luke Shumaker
2013-10-07revert last commit, it makes systemd-nspawn not handle signals correctly.Luke Shumaker
I'm a fan of systemd-nspawn. I really am. It handles a lot of things the "right" way, so you don't have to. However, it handles PTYs and signals in an incredibly stupid way. Working around one is f---ed up by the other being wrong. Before I implemented the change that this reverts, this is what happens: systemd-nspawn> I need to create a PTY and proxy between it and stdio. I can specify a terminal size when doing this--I should set it to reflect the terminal I am connected to. systemd-nspawn> /dev/stdout: Are you a TTY? /dev/stdout> systemd-nspawn: No. ---- The correct thing to do here would be to either not set the size, ---- or set it to 80×24 systemd-nspawn> /dev/stdin: Are you a TTY? /dev/stdin> systemd-nspawn: Yes. systemd-nspawn> /dev/stdin: Great, what size are you? /dev/stdin> systemd-nspawn: I am X×Y. systemd-nspawn: libc: Please give me a PTY that is X×Y. ---- Why the f--- would you do this? The size only effects *output*. ---- If you don't know the characteristics of the output, set ---- reasonable defaults! Don't base it on the characteristics of the ---- input! My solution was to make /dev/stdin not be a TTY by closing it. This had the desired effect, but tripped up the signal handling. Here is how signals were handled before: systemd-nspawn> /dev/stdin: Are you a TTY? /dev/stdin> systemd-nspawn: Yes. systemd-nspawn> /dev/stdin: Great, please don't send SIGINT on C-c. I will handle it myself. *user presses C-c, systemd reads it* systemd-nspawn> child processes: here's a SIGINT. Here's what happens when I close, or do other things to make stdin not be a TTY: systemd-nspawn> /dev/stdin: Are you a TTY? /dev/stdin> systemd-nspawn: No. systemd-nspawn> /dev/stdin: Oh, OK. *user presses C-c, /dev/stdin interprets it* /dev/stdin> systemd-nspawn: Here's a SIGINT. systemd-nspawn> *dies, abandoning child processes* The clear correct thing to do would have been to *handle* SIGINT, and pass it along to the children.
2013-10-04libremakepkg: close stdin on most commands being sent through `indent`Luke Shumaker
Besides preventing interactive use, this prevents the program from knowing the size of the terminal.
2013-10-04librechroot/hook-chcleanup: look at /startdir/PKGBUILD, not /build/PKGBUILDLuke Shumaker
2013-10-04chcleanup: prevent searching PATH for PKGBUILDLuke Shumaker
2013-10-04test: Avoid letting environmental variables affect thingsLuke Shumaker
2013-10-04Fix tests for librereleaseLuke Shumaker
2013-10-04conf.sh: generalize {get,set}_conf_makepkg to {get,set}_varLuke Shumaker
2013-10-02Add documentation for lib/Luke Shumaker
* Add a bunch of man-pages * Add some comments to conf.sh * Add more information to librelib:usage()
2013-10-01libremakepkg: when prefixing output with ' | ', do better than sed.Luke Shumaker
There are two downsizes to using sed; it line-buffers, and (the existing pattern) doesn't handle '\r'. So, now I've included a Perl helper program to do a better job. I'd originally written it in C, and while that version was faster (the Perl version stutters occasionally), it required recompilation for different architectures. I could have gotten around that with tcc, but I didn't want to add any dependencies. Which is why I settled on Perl. It's part of group=(base), and it is required by packages in group=(base-devel), so I can count on it always being there. It doesn't handle every movement character, just '\n' and '\r', but that's enough for curl and pacman.
2013-09-30librerelease: add -u flag for upload-only; don't run db-updateLuke Shumaker