Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
... | |||||
* | Perform var substitutions on some control fields. | P. J. McDermott | 2012-10-23 | 1 | -1/+6 |
| | |||||
* | Reduce binary package dependency fields. | P. J. McDermott | 2012-10-22 | 1 | -0/+12 |
| | |||||
* | Expect >= 1 platconf dirs from ob_get_system_path. | P. J. McDermott | 2012-10-20 | 1 | -7/+17 |
| | |||||
* | s/config/platconf/ in ob-installplatconf. | P. J. McDermott | 2012-10-20 | 1 | -4/+4 |
| | | | | This changed in SPF 2.0. | ||||
* | Add build helper directory to beginning of PATH. | P. J. McDermott | 2012-10-20 | 1 | -1/+1 |
| | | | | | This should prevent the unintended use of old copies of build helper utilities that happened to be installed in a directory in the PATH. | ||||
* | Fix creation of documentation directories. | P. J. McDermott | 2012-10-20 | 1 | -3/+5 |
| | | | | | | | | | | | | | | | | | | | Before: $ ls -l usr/share/doc total 4 drwxr-xr-x 2 pj pj 4096 Oct 19 23:24 fakeroot-doc $ ls -l usr/share/doc/fakeroot-doc total 0 lrwxrwxrwx 1 pj pj 23 Oct 19 23:24 fakeroot -> /usr/share/doc/fakeroot After: $ ls -l usr/share/doc total 0 lrwxrwxrwx 1 pj pj 23 Oct 20 12:58 fakeroot-doc -> /usr/share/doc/fakeroot $ ls -l usr/share/doc/fakeroot-doc lrwxrwxrwx 1 pj pj 23 Oct 20 12:58 usr/share/doc/fakeroot-doc -> /usr/share/doc/fakeroot | ||||
* | Additionally license everything under GPLv2. | P. J. McDermott | 2012-10-16 | 13 | -13/+13 |
| | |||||
* | Fix missing platform for src opk files. | P. J. McDermott | 2012-10-16 | 1 | -1/+1 |
| | |||||
* | Add host platform to opk file names. | P. J. McDermott | 2012-10-16 | 1 | -2/+5 |
| | |||||
* | Don't hardcode the host arch in ob-buildopk. | P. J. McDermott | 2012-10-16 | 1 | -3/+6 |
| | |||||
* | Make ob-gencontrol write a "Platform" field. | P. J. McDermott | 2012-10-16 | 1 | -4/+8 |
| | |||||
* | Make ob-gencontrol write a "Maintainer" field. | P. J. McDermott | 2012-10-16 | 1 | -0/+1 |
| | |||||
* | Don't rely on POSIX-conformant comment parsing. | P. J. McDermott | 2012-10-13 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | POSIX.1-2008 specifies that comments in makefile syntax start with a "#" and continue "until an **unescaped** <newline> is reached" (empahsis added). FreeBSD's pmake apparently ignores the backslash before the newline in comments and prints a "Need an operator" error message while parsing a generated src/Makefile: $ make Making executable files... "Makefile", line 49: Need an operator make: fatal errors encountered -- cannot continue NetBSD's pmake on the other hand appears to be POSIX-conformant in this regard. See also: http://pubs.opengroup.org/onlinepubs/9699919799/utilities/make.html#tag_20_76_13_01 https://www.gnu.org/savannah-checkouts/gnu/autoconf/manual/autoconf-2.69/html_node/Backslash_002dNewline-Comments.html | ||||
* | Run mkdir in ob-installdocs only if necessary. | P. J. McDermott | 2012-10-11 | 1 | -2/+8 |
| | |||||
* | Only set toolchain prefix when cross building. | P. J. McDermott | 2012-10-11 | 1 | -1/+7 |
| | |||||
* | Temporarily disable invocation of ob-genchanges. | P. J. McDermott | 2012-10-11 | 1 | -1/+1 |
| | |||||
* | Don't omit arch:all packages from OPK_PACKAGES. | P. J. McDermott | 2012-10-10 | 1 | -1/+2 |
| | |||||
* | Ensure ob-* utils can be run w/o BINDIR in PATH. | P. J. McDermott | 2012-10-09 | 2 | -11/+12 |
| | |||||
* | Unset IFS after changing it. | P. J. McDermott | 2012-10-09 | 1 | -1/+2 |
| | |||||
* | Fix patch pathnames. | P. J. McDermott | 2012-10-09 | 1 | -0/+1 |
| | |||||
* | Replace unsafe/unnecessary ls command in for loop. | P. J. McDermott | 2012-10-09 | 1 | -1/+8 |
| | |||||
* | Fix install destination of runtime platconf files. | P. J. McDermott | 2012-10-09 | 1 | -1/+1 |
| | |||||
* | Install platconf files only for built packages. | P. J. McDermott | 2012-10-09 | 1 | -1/+1 |
| | |||||
* | Install docs only for built packages. | P. J. McDermott | 2012-10-09 | 1 | -1/+1 |
| | |||||
* | Pack archives only for built packages. | P. J. McDermott | 2012-10-09 | 1 | -1/+1 |
| | |||||
* | Generate control files only for built packages. | P. J. McDermott | 2012-10-09 | 1 | -1/+1 |
| | |||||
* | Move build helper check into ob_get_system_path(). | P. J. McDermott | 2012-10-08 | 1 | -6/+4 |
| | |||||
* | Shorten some variable names in ob-unpacksource. | P. J. McDermott | 2012-10-08 | 1 | -18/+18 |
| | |||||
* | Support uncompressed upstream source archives. | P. J. McDermott | 2012-10-08 | 1 | -5/+8 |
| | |||||
* | Run ob-{installdocs,gencontrol,buildopk} as UID 0. | P. J. McDermott | 2012-10-08 | 1 | -5/+6 |
| | |||||
* | Implement setup_build_helper(). | P. J. McDermott | 2012-10-08 | 1 | -2/+12 |
| | |||||
* | Wrap a line that grew. | P. J. McDermott | 2012-10-08 | 1 | -2/+4 |
| | |||||
* | Set arch env vars for build systems. | P. J. McDermott | 2012-10-08 | 1 | -2/+13 |
| | |||||
* | Update environment variable names in ob-* utils. | P. J. McDermott | 2012-10-08 | 6 | -16/+16 |
| | |||||
* | Make -T option effective. | P. J. McDermott | 2012-10-08 | 1 | -8/+13 |
| | |||||
* | Set OPK_PACKAGES env var (specified by SPF 2.0). | P. J. McDermott | 2012-10-08 | 1 | -1/+2 |
| | |||||
* | s/_PLATFORM/_PLAT/ in env vars specified by SPF. | P. J. McDermott | 2012-10-08 | 1 | -7/+7 |
| | |||||
* | s/OB_/OPK_/ in env vars specified by SPF 2.0. | P. J. McDermott | 2012-10-08 | 1 | -35/+35 |
| | |||||
* | Prefix source binary package names with "src-". | P. J. McDermott | 2012-10-08 | 3 | -5/+5 |
| | |||||
* | Fix some inconsistent quoting in utilities. | P. J. McDermott | 2012-10-04 | 3 | -12/+12 |
| | |||||
* | Fix an "rm" command in ob-buildopk. | P. J. McDermott | 2012-10-04 | 1 | -1/+1 |
| | |||||
* | Refactor opkbuild a bit. | P. J. McDermott | 2012-10-04 | 1 | -37/+67 |
| | |||||
* | Remove some more old oh-* utilities. | P. J. McDermott | 2012-10-04 | 3 | -269/+0 |
| | |||||
* | Fix message about mutually exclusive options. | P. J. McDermott | 2012-10-04 | 1 | -5/+5 |
| | |||||
* | Print build/host arch/plat in opkbuild. | P. J. McDermott | 2012-10-04 | 1 | -0/+12 |
| | |||||
* | Remove an old TODO tag. | P. J. McDermott | 2012-10-04 | 1 | -1/+0 |
| | | | | The task was done in the previous commit. | ||||
* | Use ob_get_system_path() in utilities. | P. J. McDermott | 2012-10-04 | 4 | -11/+17 |
| | |||||
* | Implement ob-installdocs. | P. J. McDermott | 2012-10-04 | 1 | -0/+28 |
| | |||||
* | Fix some issues in ob-buildopk. | P. J. McDermott | 2012-10-03 | 1 | -3/+4 |
| | |||||
* | Fix "SH" build system macro in ob-installdocs. | P. J. McDermott | 2012-10-03 | 1 | -1/+1 |
| |