summaryrefslogtreecommitdiff
path: root/src/chroot-tools/librechroot
AgeCommit message (Collapse)Author
2014-11-25librechroot: touch upLuke Shumaker
2014-11-06librechroot: touch up messagesLuke Shumaker
2014-07-05quote calls to librelibLuke Shumaker
2014-06-16Merge branch 'master' of ↵Luke Shumaker
ssh://projects.parabolagnulinux.org:1863/~git/packages/libretools Conflicts: src/librefetch/librefetch.8.ronn
2014-05-11Create CHROOTARCH in chroot.conf for when $CARCH != $(uname -m)Luke Shumaker
This is the case on mips, where CARCH is misp64el, but uname -m is mips64.
2014-03-25Fix quoting/escaping with 'rm' in traps.Luke Shumaker
2014-03-23Most of my desired re-licensings were authorized on the dev listLuke 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-03-06Update for the new version of systemdv20140306Luke Shumaker
2014-02-09fix `librechroot update`Luke Shumaker
2014-02-05librechroot update: correctly handle 'filesystem' upgradesLuke Shumaker
2014-02-02librechroot: fix setting CHROOTEXTRAPKGLuke 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-18librechroot: fix commentLuke Shumaker
2014-01-18I went comma-happy when writing librechroot:usage()Luke Shumaker
2013-11-03librechroot: correct commentLuke Shumaker
2013-11-02librechroot: when detecting mount options, set LC_ALL instead of LANGLuke Shumaker
2013-10-30librechroot: check argument countsLuke 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-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-04librechroot/hook-chcleanup: look at /startdir/PKGBUILD, not /build/PKGBUILDLuke Shumaker
2013-09-22Merge commit '610699'Luke Shumaker
Conflicts: src/abslibre-tools/createworkdir
2013-09-22fix typo in usage text for librechrootLuke Shumaker
2013-09-12Merge branch 'fauno~2' (early part) into masterLuke Shumaker
2013-09-11Update to the new version of devtools (huge commit).Luke Shumaker
User-facing changes: - libremessages: `lock_open_write` became `lock` - libremessages: `lock_open_read` became `slock` - librechroot: learned the `-r` and `-w` flags to do bind mounts. Internal changes: The changes to librechroot were pretty straight-forward; the biggest change is that `archroot` got split into `mkarchroot` and `arch-nspawn`. libremakepkg got a major overhaul Honestly, the changes to libremakepklg probably could have been a lot smaller, but... I wanted to do it right/be clean. makechrootpkg in devtools got cleaned up a lot, actually a lot of the same changes I was making. But, the small differences between the way we did things made it less than simple to adjust. The biggest changes in terms of conflict for me are how devtools now uses bind-mounts to put files in the chroot, and that the /chrootbuild file is more complicated. I handled a lot of the complexity by moving things out of the main program, and adding hooks for non-core functionality, including chcleanup, distcc compatability hacks, and PKGBUILD/pkg checking. Unfortunately, the files containing the hooks are currently hard-coded. Perhaps they will be truly pluggable in the future. That might be neat. Or over-complicated. We'll see where it goes.
2013-09-11chroot-tools: internationalizeLuke Shumaker
2013-06-23librechroot: fix mkdir spitting to stderr in clean-pkgs.Luke Shumaker
2013-06-11librechroot: clarify what config files are installed.Luke Shumaker
2013-06-05librechroot: fix clean-repov20130605.1Luke Shumaker
2013-06-05librechroot: improve documentation for -C and -MLuke 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-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-05librechroot: capitalization and punctuation in usage()Luke Shumaker
2013-06-05Add tests for librechroot's help system, make them pass.Luke Shumaker
They didn't pass because on several errors it printed to stdout, not stderr
2013-06-05Phase out `load_conf_*` and `check_conf_*` functionsLuke Shumaker
Replace their usages with `load_files *` and `check_vars *`
2013-05-28librechroot: fix typos, add unit testtesting-20130528.2Luke Shumaker
2013-05-28librechroot: didn't always create repo.db symlinktesting-20130528.1Luke Shumaker
Fix this and remove code duplication by pulling the relevant code into a function.
2013-05-26redo the library system; avoid hard-coded pathsLuke Shumaker
* install all library files to $(libexecdir)/libretools, instead of - $(bindir) - $(datadir)/libretools - $(datadir)/devtools * symlink the executable library files into $(bindir) * add the tool `librelib` * instead of ". /path/to/lib.sh", use ". $(librelib lib.sh)" * mark all libraries with shebangs of what options they support * move blacklist.sh to libreblacklist
2013-05-22fix https://labs.parabola.nu/issues/335Luke Shumaker
2013-05-08librechroot: improve usage() textLuke Shumaker
2013-05-07have `librechroot install-file` add the packages to the local repo.Luke Shumaker
2013-05-07It appears that I left out implementing `librechroot update`Luke Shumaker
2013-05-02librechroot: improve message outputLuke Shumaker