summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* release 2.7v2.7Natanael Copa2011-01-061-1/+1
|
* abuild: add support for language packsNatanael Copa2011-01-041-13/+46
|
* abuild: supporrt for install_if. remove unused 'backup'Natanael Copa2011-01-041-3/+3
|
* abuild: implement initdcheckNatanael Copa2011-01-041-0/+16
| | | | this check verifies that the *.initd scripts are #!/sbin/runscript
* abuild: support for saveas-* in sourcecheckNatanael Copa2011-01-031-6/+12
|
* abuild: implement sourcecheckNatanael Copa2011-01-031-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.
* abuild: only set xterm title if USE_COLOR is enabledNatanael Copa2011-01-031-1/+1
|
* abuild: only install .makdepends-* if there are depsNatanael Copa2011-01-031-1/+1
|
* newapkbuild: reworkNatanael Copa2011-01-031-15/+103
| | | | | | | Download the sourcepackage and analyze. If needed, have build() run ./configure. We could in future try figure out license automatically too.
* abuild: trivial update to new saveas-*:// supportMatt Smith2011-01-031-5/+5
| | | | | Removed the asterisk from the beginning of the https check, and moved the saveas- check above.
* abuild: skip md5sum check if in force modeNatanael Copa2010-12-311-1/+3
|
* abuild: created 'saveas-*://' URI supportMatt Smith2010-12-301-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
* have git to ignore apkgrelNatanael Copa2010-12-301-0/+1
|
* sample.APKBUILD: update with arch and depends_devNatanael Copa2010-12-301-4/+3
|
* apkgrel: new tool for bumping pkgrelNatanael Copa2010-12-302-1/+76
|
* abuild: fix check for arch specific binariesNatanael Copa2010-12-301-18/+32
| | | | we now fail if noarch is set wrong
* abuild: set arch to noarch for -doc packagesNatanael Copa2010-12-301-0/+1
|
* abuild: post check archNatanael Copa2010-12-301-0/+16
| | | | We check if noarch is properly set
* abuild-keygen: implement -q for quiet modeNatanael Copa2010-12-201-15/+24
|
* abuild-keygen: implement -n for non-interactive modeNatanael Copa2010-12-201-11/+18
|
* abuild: improve output messages for dep tracingNatanael Copa2010-12-171-3/+3
|
* release 2.6v2.6Natanael Copa2010-12-151-1/+1
|
* abuild: support arch=allNatanael Copa2010-12-151-1/+1
|
* abuild: look for so dependencies in RPATH tooNatanael Copa2010-12-151-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.
* abuild: multiarch supportNatanael Copa2010-12-141-0/+12
| | | | | - add arch to .PKGINFO - exit with success if package is not in arch
* ap: fix usage. the -d option is mandatory nowNatanael Copa2010-12-131-1/+1
|
* ap: bugfix in builddirsNatanael Copa2010-12-131-15/+14
|
* ap: initial implementationNatanael Copa2010-12-133-2/+259
| | | | | ap is a helper script to parse APKBUILD and calculate build time dependencies.
* abuid: check that CARCH and CHOST is setNatanael Copa2010-12-131-1/+11
|
* abuild.conf: set CARCH and CBUILDNatanael Copa2010-11-241-3/+3
|
* added .gitignoreNatanael Copa2010-11-191-0/+9
|
* Makefile: target for .gitignoreNatanael Copa2010-11-191-0/+7
|
* abump: add usage and support for recursive abuildNatanael Copa2010-11-191-2/+23
|
* abump: install with make installNatanael Copa2010-11-192-1/+1
|
* newapkbuild: source PACKAGER from abuild.confNatanael Copa2010-11-191-0/+7
|
* abuild.conf: add ARCH and minor cleanupNatanael Copa2010-11-191-6/+7
|
* buildrepo: fix previous commitNatanael Copa2010-11-021-1/+1
|
* buildrepo: do not error if there are no packages in repoNatanael Copa2010-11-021-1/+2
|
* abuild: automatically add libgcc to depends when libpthread is foundNatanael Copa2010-08-311-1/+9
| | | | see http://redmine.alpinelinux.org/issues/409
* abuild: support for alternative awksNatanael Copa2010-08-271-1/+1
| | | | some awk's does not understand -F "\ " and treats that as special space
* release 2.5v2.5Natanael Copa2010-08-121-1/+1
|
* abuild: support for unpacking .tar.xzNatanael Copa2010-08-121-0/+3
|
* mkalpine: removedNatanael Copa2010-07-202-41/+1
|
* release 2.4v2.4Natanael Copa2010-07-071-1/+1
|
* newapkbuild: minor bugfix in is_uri()Natanael Copa2010-07-071-0/+1
|
* abuild: include vapi and gir-* in -dev packageNatanael Copa2010-07-071-0/+1
|
* abuild: detect and report conflicting dependencies properlyNatanael Copa2010-06-301-3/+4
|
* newapkbuid: fix pkgver in sourceNatanael Copa2010-06-161-0/+1
|
* newapkbuild: support for creating new from http sourceNatanael Copa2010-05-291-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"
* release 2.3v2.3Natanael Copa2010-05-191-1/+1
|