Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2011-03-29 | buildlab: added apk caching option (-k) | Matt Smith | 1 | -3/+11 | |
2011-03-29 | abuild: fakeroot fix when running as root | Natanael Copa | 1 | -1/+9 | |
2011-03-29 | abuild: use $SUDO instead of 'sudo' | Natanael Copa | 1 | -2/+2 | |
So SUDO="sudo -E" works for http proxy settings | |||||
2011-03-29 | delete remote source files that fail the md5 checksum test | Jeremy Thomerson | 1 | -2/+21 | |
Currently, if the build server downloads a file that fails the md5sum check for some reason (perhaps interrupted download, etc), the file is never deleted so the build can not succeed until someone manually deletes the bad file. This change deletes any file that is a remote source file / package that fails the md5sum check. The subsequent rebuild will then be forced to download the file again. | |||||
2011-03-17 | release 2.7.4v2.7.4 | Natanael Copa | 1 | -1/+1 | |
2011-03-17 | newapkbuild: assume perl package if package name starts with perl- | Natanael Copa | 1 | -1/+1 | |
2011-03-17 | newapkbuild: supporrt for forcing autotools or perl with -a -p | Natanael Copa | 1 | -12/+57 | |
2011-03-17 | newapkbuild: support for creating sourceforge source urls | Natanael Copa | 1 | -1/+7 | |
2011-03-17 | abuild: do not set noarch for now | Natanael Copa | 1 | -3/+5 | |
Our build infrastruc needs to handle it | |||||
2011-03-09 | newapkbuild: add the missing cd "$_builddir" | Natanael Copa | 1 | -0/+1 | |
2011-03-08 | abuild: add maintainer info to .PKGBUILD | Natanael Copa | 1 | -1/+16 | |
We can either set maintainer="..." in APKBUILD or use it as comment. | |||||
2011-03-08 | abuild: add last commit hash to .PKGINFO | Natanael Copa | 1 | -0/+13 | |
This can be useful for package browser. | |||||
2011-03-05 | release 2.7.3v2.7.3 | Natanael Copa | 1 | -1/+1 | |
2011-03-04 | abuild: bugfix in dep tracing | Natanael Copa | 1 | -1/+1 | |
due to unintialized and non-local variable the tracing of deps didnt work as expected when dependencies was provided by the apkbuild itself. (libgcc ended up depending on libgcj which depended on binutils) | |||||
2011-03-04 | abuild: -f will build even if arch is missing | Natanael Copa | 1 | -1/+3 | |
2011-03-04 | abuild: only warn when we think there should have been noarch | Natanael Copa | 1 | -4/+8 | |
and we dont want -dev packages to be noarch | |||||
2011-02-09 | Add hints on CARCH/CBUILD for x86_64 and powerpc. | William Pitcock | 1 | -0/+9 | |
2011-01-27 | default_doc/default_dev: enhanced pkgdesc | William Pitcock | 1 | -0/+4 | |
2011-01-24 | release 2.7.2v2.7.2 | William Pitcock | 1 | -1/+1 | |
2011-01-24 | release 2.7.1v2.7.1 | William Pitcock | 1 | -1/+1 | |
2011-01-24 | buildlab: implement updating of buildroots. | William Pitcock | 1 | -2/+21 | |
2011-01-24 | new script (buildlab) for doing chrooted builds. | William Pitcock | 2 | -1/+223 | |
2011-01-06 | release 2.7v2.7 | Natanael Copa | 1 | -1/+1 | |
2011-01-04 | abuild: add support for language packs | Natanael Copa | 1 | -13/+46 | |
2011-01-04 | abuild: supporrt for install_if. remove unused 'backup' | Natanael Copa | 1 | -3/+3 | |
2011-01-04 | abuild: implement initdcheck | Natanael Copa | 1 | -0/+16 | |
this check verifies that the *.initd scripts are #!/sbin/runscript | |||||
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. |