Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | ob-*, opkbuild: s/src-/src:/ | Patrick McDermott | 2020-07-02 | 1 | -1/+1 |
| | | | | | | | pro-archman already handles this. The (outdated and probably broken) initial port bootstrap scripts will need to be updated for this, if they're ever used again. Some instructions in the wiki need to be updated. | ||||
* | ob-buildopk: Don't chown data | Patrick McDermott | 2020-06-30 | 1 | -1/+1 |
| | | | | This partially reverts commit 483800ef9ecf5ce98c0f6894e222bf08a68bb617. | ||||
* | ob-buildopk: Fix crash on src packages | Patrick McDermott | 2020-06-22 | 1 | -1/+6 |
| | | | | Due to attempted architecture-qualification. | ||||
* | ob-*: Architecture-qualify package names | Patrick McDermott | 2020-06-21 | 1 | -6/+10 |
| | |||||
* | ob-buildopk: Really check for BB tar reverse ordering bug | Patrick McDermott | 2019-08-04 | 1 | -1/+1 |
| | |||||
* | ob-buildopk: Fix touch -d check | Patrick McDermott | 2019-08-04 | 1 | -3/+7 |
| | |||||
* | ob-buildopk: Check for touch -d at run time | Patrick McDermott | 2019-08-04 | 1 | -3/+8 |
| | |||||
* | ob-buildopk: Check for BB tar reverse ordering bug | Patrick McDermott | 2019-08-04 | 1 | -2/+16 |
| | |||||
* | ob-buildopk: Use touch -t | Patrick McDermott | 2019-06-18 | 1 | -5/+5 |
| | |||||
* | ob-buildopk: Fix non-deterministic mtimes in gzip headers | Patrick McDermott | 2019-06-18 | 1 | -4/+9 |
| | |||||
* | ob-buildopk, ob-unpacksource, tests: Use ${TAR} | Patrick McDermott | 2019-06-18 | 1 | -3/+3 |
| | |||||
* | ob-buildopk: Re-add directories to archives | Patrick McDermott | 2019-06-18 | 1 | -4/+4 |
| | |||||
* | ob-buildopk: Use chown -h | Patrick McDermott | 2019-06-16 | 1 | -1/+1 |
| | | | | | | This option is standardized in POSIX and has been supported in BusyBox since 2001-05-11 (commit 2b02ab9), so there's no need to check for it in configure. | ||||
* | ob-buildopk: Use ${HAVE_TOUCH_NODEREF} | Patrick McDermott | 2019-06-16 | 1 | -1/+14 |
| | |||||
* | ob-buildopk: Use ${TOUCH} | Patrick McDermott | 2019-06-16 | 1 | -3/+3 |
| | |||||
* | ob-buildopk: Don't reverse sort archive members with -T | Patrick McDermott | 2019-06-16 | 1 | -2/+2 |
| | | | | | Apparently BusyBox tar doesn't reverse members listed with -T, contrary to previous testing? | ||||
* | ob-buildopk: Make archive member owners/groups deterministic | Patrick McDermott | 2019-06-16 | 1 | -0/+3 |
| | |||||
* | ob-buildopk: Make archive member ordering deterministic | Patrick McDermott | 2019-06-16 | 1 | -2/+4 |
| | |||||
* | ob-buildopk: Add control.tar.gz before data.tar.gz | Patrick McDermott | 2019-06-16 | 1 | -3/+3 |
| | |||||
* | ob-buildopk: Make archive member mtimes deterministic | Patrick McDermott | 2019-06-16 | 1 | -3/+9 |
| | |||||
* | ob-buildopk: Add informational output | Patrick McDermott | 2019-03-18 | 1 | -0/+3 |
| | |||||
* | ob-buildopk: Add missing local var declaration | Patrick McDermott | 2019-03-18 | 1 | -0/+1 |
| | |||||
* | ob-buildopk: Declare local variables and wrap long lines | Patrick McDermott | 2019-03-18 | 1 | -8/+15 |
| | |||||
* | opkbuild, ob-*: Don't manually load libopkbuild | Patrick McDermott | 2019-03-17 | 1 | -2/+0 |
| | |||||
* | opkbuild, ob-*: Drop call to main() | Patrick McDermott | 2019-03-17 | 1 | -2/+0 |
| | | | | | shld already calls main(), so this extra call causes main() to run a second time if it returns the first time. | ||||
* | ob-buildopk, ob-gencontrol, ob-genchanges: Improve OB_DO_SOURCE checks | Patrick McDermott | 2019-03-16 | 1 | -1/+1 |
| | | | | This will help enable "set -u". | ||||
* | opkbuild, ob-*: Fix printf commands after ob_set_text_domain() | Patrick McDermott | 2019-03-15 | 1 | -1/+2 |
| | |||||
* | ob_parse_package_metadata(): Merge into ob_init_package() | Patrick McDermott | 2019-03-13 | 1 | -1/+0 |
| | | | | | | Now that caching is gone, the ob_parse_package_metadata() interface function is trivially short, and keeping it separate unnecessarily complicates the API. | ||||
* | Protect against cmd operands beginning with "-" | Patrick McDermott | 2019-03-13 | 1 | -2/+2 |
| | |||||
* | Protect [ commands from strings beginning with "-" | Patrick McDermott | 2019-03-13 | 1 | -2/+2 |
| | |||||
* | ob_parse_package_metadata(): Eliminate caching | Patrick McDermott | 2019-03-13 | 1 | -1/+1 |
| | | | | Cf. commit da45b6d. | ||||
* | opkbuild, ob-*: Exit with error on ob_set_text_domain() failure | Patrick McDermott | 2019-03-13 | 1 | -1/+4 |
| | |||||
* | ob-*: Add more return statements | Patrick McDermott | 2019-03-13 | 1 | -0/+4 |
| | |||||
* | ob-*: Replace exit with return | Patrick McDermott | 2019-03-13 | 1 | -2/+2 |
| | |||||
* | opkbuild, ob-*: set -e | Patrick McDermott | 2019-03-13 | 1 | -0/+2 |
| | |||||
* | ob-buildopk: Replace echo with printf | Patrick McDermott | 2019-03-13 | 1 | -1/+1 |
| | |||||
* | ob-*: Move function definitions before points of use | Patrick McDermott | 2018-12-25 | 1 | -15/+15 |
| | |||||
* | opkbuild, ob-*: Parameterize SHSOEXT and LIBOPKBUILD_SHSOVERSION | Patrick McDermott | 2018-12-24 | 1 | -1/+1 |
| | |||||
* | opkbuild, ob-*: Update header comments, copyrights, and license | Patrick McDermott | 2018-12-24 | 1 | -9/+9 |
| | |||||
* | opkbuild, ob-*: Drop magic number interpreter lines | Patrick McDermott | 2018-12-22 | 1 | -2/+0 |
| | |||||
* | opkbuild, ob-*: Use variables set by shpp | Patrick McDermott | 2018-12-22 | 1 | -1/+1 |
| | |||||
* | ob_use(): Remove | Patrick McDermott | 2018-12-22 | 1 | -4/+0 |
| | |||||
* | opkbuild, ob-*: Load newly linked libopkbuild | Patrick McDermott | 2018-12-22 | 1 | -1/+1 |
| | |||||
* | libopkbuild: Change output file extension to .sho | Patrick McDermott | 2018-12-22 | 1 | -1/+1 |
| | |||||
* | ob-*: Use OPK_PACKAGES_REDUCED | P. J. McDermott | 2014-09-21 | 1 | -1/+1 |
| | |||||
* | src/*.sh: Add ".sh" to header comment. | P. J. McDermott | 2013-08-18 | 1 | -1/+1 |
| | |||||
* | s/@@LIBOPKBUILD@@/@@PKGLIBDIR@@/ in sources. | P. J. McDermott | 2013-06-15 | 1 | -1/+1 |
| | |||||
* | Exit on failure to parse package metadata. | P. J. McDermott | 2012-11-16 | 1 | -2/+2 |
| | |||||
* | Additionally license everything under GPLv2. | P. J. McDermott | 2012-10-16 | 1 | -1/+1 |
| | |||||
* | Fix missing platform for src opk files. | P. J. McDermott | 2012-10-16 | 1 | -1/+1 |
| |