Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2011-01-03 | abuild: support for saveas-* in sourcecheck | Natanael Copa | 1 | -6/+12 | |
2011-01-03 | abuild: implement sourcecheck | Natanael Copa | 1 | -0/+11 | |
This subcommand verifies if upstream sources still exists and echoes an error if it does not. This is supposed to be used from a script that checks the validity of source regularily. | |||||
2011-01-03 | abuild: only set xterm title if USE_COLOR is enabled | Natanael Copa | 1 | -1/+1 | |
2011-01-03 | abuild: only install .makdepends-* if there are deps | Natanael Copa | 1 | -1/+1 | |
2011-01-03 | newapkbuild: rework | Natanael Copa | 1 | -15/+103 | |
Download the sourcepackage and analyze. If needed, have build() run ./configure. We could in future try figure out license automatically too. | |||||
2011-01-03 | abuild: trivial update to new saveas-*:// support | Matt Smith | 1 | -5/+5 | |
Removed the asterisk from the beginning of the https check, and moved the saveas- check above. | |||||
2010-12-31 | abuild: skip md5sum check if in force mode | Natanael Copa | 1 | -1/+3 | |
2010-12-30 | abuild: created 'saveas-*://' URI support | Matt Smith | 1 | -2/+9 | |
'saveas-*://' URI support has been created for use with the source= line of APKBUILD files. It allows for a remote source file to be saved with an arbitrary filename. This is useful in situations where the last component of the URI is not the preferred filename. Here's how it works. Say we have the following URI: http://oss.example.org/?get=software&ver=1.0 Both Busybox Wget and GNU Wget will save this with the filename: ?get=software&ver=1.0 To get around this, we could use cURL to save the file using the filename in the HTTP response headers: $ curl -JO "http://oss.example.org/?get=software&ver=1.0" Or we could use this 'saveas' hack. Essentially, the original URI is converted to read: saveas-http://oss.example.org/?get=software&ver=1.0/software-1.0.tar.gz In the download process, the 'saveas-' portion is removed, and the file is downloaded from the original URI, but is saved with the filename being the last component of the URI. In this case, it will be saved as 'software-1.0.tar.gz'. It is designed so that it works with any protocol supported by abuild. For example: saveas-ftp://oss.example.org/?get=software&ver=1.0/software-1.0.tar.gz Check it out and let me know what you think. Thanks, Matt | |||||
2010-12-30 | have git to ignore apkgrel | Natanael Copa | 1 | -0/+1 | |
2010-12-30 | sample.APKBUILD: update with arch and depends_dev | Natanael Copa | 1 | -4/+3 | |
2010-12-30 | apkgrel: new tool for bumping pkgrel | Natanael Copa | 2 | -1/+76 | |
2010-12-30 | abuild: fix check for arch specific binaries | Natanael Copa | 1 | -18/+32 | |
we now fail if noarch is set wrong | |||||
2010-12-30 | abuild: set arch to noarch for -doc packages | Natanael Copa | 1 | -0/+1 | |
2010-12-30 | abuild: post check arch | Natanael Copa | 1 | -0/+16 | |
We check if noarch is properly set | |||||
2010-12-20 | abuild-keygen: implement -q for quiet mode | Natanael Copa | 1 | -15/+24 | |
2010-12-20 | abuild-keygen: implement -n for non-interactive mode | Natanael Copa | 1 | -11/+18 | |
2010-12-17 | abuild: improve output messages for dep tracing | Natanael Copa | 1 | -3/+3 | |
2010-12-15 | release 2.6v2.6 | Natanael Copa | 1 | -1/+1 | |
2010-12-15 | abuild: support arch=all | Natanael Copa | 1 | -1/+1 | |
2010-12-15 | abuild: look for so dependencies in RPATH too | Natanael Copa | 1 | -10/+47 | |
Some .so files have a rpath where to look for the needed .so. When tracing package dependencies we also have a look there. This should fix problem when the .so is not in standard location, /usr/lib or /lib. (for example freeradius plugins) While here we also reorganize things so we only call apk info --who-owns once for each package instead of once for each needed .so. This should speed up things when there are many needed .so files. | |||||
2010-12-14 | abuild: multiarch support | Natanael Copa | 1 | -0/+12 | |
- add arch to .PKGINFO - exit with success if package is not in arch | |||||
2010-12-13 | ap: fix usage. the -d option is mandatory now | Natanael Copa | 1 | -1/+1 | |
2010-12-13 | ap: bugfix in builddirs | Natanael Copa | 1 | -15/+14 | |
2010-12-13 | ap: initial implementation | Natanael Copa | 3 | -2/+259 | |
ap is a helper script to parse APKBUILD and calculate build time dependencies. | |||||
2010-12-13 | abuid: check that CARCH and CHOST is set | Natanael Copa | 1 | -1/+11 | |
2010-11-24 | abuild.conf: set CARCH and CBUILD | Natanael Copa | 1 | -3/+3 | |
2010-11-19 | added .gitignore | Natanael Copa | 1 | -0/+9 | |
2010-11-19 | Makefile: target for .gitignore | Natanael Copa | 1 | -0/+7 | |
2010-11-19 | abump: add usage and support for recursive abuild | Natanael Copa | 1 | -2/+23 | |
2010-11-19 | abump: install with make install | Natanael Copa | 2 | -1/+1 | |
2010-11-19 | newapkbuild: source PACKAGER from abuild.conf | Natanael Copa | 1 | -0/+7 | |
2010-11-19 | abuild.conf: add ARCH and minor cleanup | Natanael Copa | 1 | -6/+7 | |
2010-11-02 | buildrepo: fix previous commit | Natanael Copa | 1 | -1/+1 | |
2010-11-02 | buildrepo: do not error if there are no packages in repo | Natanael Copa | 1 | -1/+2 | |
2010-08-31 | abuild: automatically add libgcc to depends when libpthread is found | Natanael Copa | 1 | -1/+9 | |
see http://redmine.alpinelinux.org/issues/409 | |||||
2010-08-27 | abuild: support for alternative awks | Natanael Copa | 1 | -1/+1 | |
some awk's does not understand -F "\ " and treats that as special space | |||||
2010-08-12 | release 2.5v2.5 | Natanael Copa | 1 | -1/+1 | |
2010-08-12 | abuild: support for unpacking .tar.xz | Natanael Copa | 1 | -0/+3 | |
2010-07-20 | mkalpine: removed | Natanael Copa | 2 | -41/+1 | |
2010-07-07 | release 2.4v2.4 | Natanael Copa | 1 | -1/+1 | |
2010-07-07 | newapkbuild: minor bugfix in is_uri() | Natanael Copa | 1 | -0/+1 | |
2010-07-07 | abuild: include vapi and gir-* in -dev package | Natanael Copa | 1 | -0/+1 | |
2010-06-30 | abuild: detect and report conflicting dependencies properly | Natanael Copa | 1 | -3/+4 | |
2010-06-16 | newapkbuid: fix pkgver in source | Natanael Copa | 1 | -0/+1 | |
2010-05-29 | newapkbuild: support for creating new from http source | Natanael Copa | 1 | -1/+15 | |
newapkbuild http://example.com/path/foo-1.0.tar.gz will set pkgname=foo pkgver=1.0 source="http://example.com/path/foo-1.0.tar.gz" | |||||
2010-05-19 | release 2.3v2.3 | Natanael Copa | 1 | -1/+1 | |
2010-05-18 | abuild: move the .so symlinks to -dev packages | Natanael Copa | 1 | -1/+8 | |
Those are needed when linking to the lib and not during runtime. Having those in the -dev package makes it easier to allow different versions of same libs to be installed side-by-side. | |||||
2010-05-18 | abuild-tar: build with --as-needed so we dont link to libssl | Natanael Copa | 1 | -1/+5 | |
2010-05-18 | abuild: allow DISTFILES_MIRROR be a local path | Natanael Copa | 1 | -1/+5 | |
based on patch from Andrew Manison. Thanks! | |||||
2010-05-18 | abuild: support for -c and -m options to enable/disable colors | Natanael Copa | 1 | -6/+24 | |
and make sure those options are passed over when building recursively Based on patch from Andrew Manison. Thanks! |