Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-01-03 | librefetch: accept HTTP URLs, but don't create if they aren't in $MIRROR | Luke Shumaker | |
But, don't update the documentation. I have a feeling things will change again in the next few commits. | |||
2014-01-03 | fullpkg-find: touch up dependency listing | Luke Shumaker | |
2014-01-03 | touch up misc qouting | Luke Shumaker | |
2014-01-03 | librefetch: change default MIRROR location | Luke Shumaker | |
2014-01-03 | Phase out DIFFTOOL for DIFFPROG (issue #438) | Luke Shumaker | |
https://labs.parabola.nu/issues/438 | |||
2013-11-16 | makechrootpkg.sh: The delete message always said 'temporary copy' | Luke Shumaker | |
2013-11-12 | is_built: needs libremessagesv20131112 | Luke Shumaker | |
2013-11-07 | libremakepkg: useless use of `cat` | Luke Shumaker | |
2013-11-04 | libretools.conf: base WORKDIR off of $LIBREHOME, not /home/$LIBREUSER | Luke Shumaker | |
2013-11-04 | libretools.conf: fix typo | Luke Shumaker | |
2013-11-04 | gitget: fix option parsing | Luke Shumaker | |
2013-11-04 | createworkdir: clean up output | Luke Shumaker | |
2013-11-04 | libremessages(1): clarify when gettext is used. | Luke Shumaker | |
2013-11-04 | treepkg: fail early if there is a configuration error | Luke Shumaker | |
2013-11-04 | librerelease: don't redirect output of gpg --detach-sign | Luke Shumaker | |
This should fix fauno's issue with pinentry-curses, or at least fail more verbosely. | |||
2013-11-04 | librerelease: mention `gpg-agent --daemon` instead of just `gpg-agent` | Luke Shumaker | |
2013-11-04 | fullpkg: respect TMPDIR | Luke Shumaker | |
2013-11-04 | touch up quoting on arrays | Luke Shumaker | |
2013-11-04 | normalize on "[[" instead of "[" | Luke Shumaker | |
2013-11-03 | aur, is_built: internationalize usage() | Luke Shumaker | |
2013-11-03 | treepkg: obey $TMPDIR | Luke Shumaker | |
2013-11-03 | treepkg: 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-03 | librechroot: correct comment | Luke Shumaker | |
2013-11-02 | librechroot: when detecting mount options, set LC_ALL instead of LANG | Luke Shumaker | |
2013-11-02 | createworkdir: use gitget to set separate push and pull URLs. | Luke Shumaker | |
2013-11-02 | createworkdir: clean up quoting | Luke Shumaker | |
2013-11-02 | gitget: handle ref not being set | Luke Shumaker | |
2013-10-30 | gitget: learn -p and -f | Luke Shumaker | |
2013-10-30 | rename libregit to gitget, add bare repository support | Luke Shumaker | |
2013-10-30 | chcleanup: manually update repo.db instead of running `pacman -Sy` | Luke Shumaker | |
2013-10-30 | librechroot: check argument counts | Luke Shumaker | |
2013-10-26 | fix librefetch, add (some) tests for itv20131027 | Luke Shumaker | |
2013-10-26 | Merge 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-26 | libremakepkg: configure [repo] to be first by default, not last | Luke Shumaker | |
2013-10-26 | librefetch: clean src-libre before running | Luke Shumaker | |
2013-10-26 | librechroot: check that copydir isn't mounted nosuid/noexec | Luke Shumaker | |
2013-10-26 | librechroot: die if stdin isn't a TTY, be more verbose about it. | Luke Shumaker | |
2013-10-26 | librechroot+indent: Add in a bunch of extra '\r's to work-around the systemd bug | Luke Shumaker | |
2013-10-15 | librechroot: (bugfix) Use the correct exit status if stdout isn't a TTY.v20131015 | Luke 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-15 | libremakepkg: hooks-chcleanup: fix variable name causing it to not run | Luke Shumaker | |
2013-10-08 | conf.sh.3: fix the reference to {get,set}_conf_makepkg in the BUGS section | Luke Shumaker | |
2013-10-07 | librechroot: 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-07 | revert 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-04 | libremakepkg: 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-04 | librechroot/hook-chcleanup: look at /startdir/PKGBUILD, not /build/PKGBUILD | Luke Shumaker | |
2013-10-04 | chcleanup: prevent searching PATH for PKGBUILD | Luke Shumaker | |
2013-10-04 | conf.sh: generalize {get,set}_conf_makepkg to {get,set}_var | Luke Shumaker | |
2013-10-02 | Add 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-01 | libremakepkg: 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. |