summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2011-01-03newapkbuild: reworkNatanael Copa1-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-03abuild: trivial update to new saveas-*:// supportMatt Smith1-5/+5
Removed the asterisk from the beginning of the https check, and moved the saveas- check above.
2010-12-31abuild: skip md5sum check if in force modeNatanael Copa1-1/+3
2010-12-30abuild: created 'saveas-*://' URI supportMatt Smith1-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-30have git to ignore apkgrelNatanael Copa1-0/+1
2010-12-30sample.APKBUILD: update with arch and depends_devNatanael Copa1-4/+3
2010-12-30apkgrel: new tool for bumping pkgrelNatanael Copa2-1/+76
2010-12-30abuild: fix check for arch specific binariesNatanael Copa1-18/+32
we now fail if noarch is set wrong
2010-12-30abuild: set arch to noarch for -doc packagesNatanael Copa1-0/+1
2010-12-30abuild: post check archNatanael Copa1-0/+16
We check if noarch is properly set
2010-12-20abuild-keygen: implement -q for quiet modeNatanael Copa1-15/+24
2010-12-20abuild-keygen: implement -n for non-interactive modeNatanael Copa1-11/+18
2010-12-17abuild: improve output messages for dep tracingNatanael Copa1-3/+3
2010-12-15release 2.6v2.6Natanael Copa1-1/+1
2010-12-15abuild: support arch=allNatanael Copa1-1/+1
2010-12-15abuild: look for so dependencies in RPATH tooNatanael Copa1-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-14abuild: multiarch supportNatanael Copa1-0/+12
- add arch to .PKGINFO - exit with success if package is not in arch
2010-12-13ap: fix usage. the -d option is mandatory nowNatanael Copa1-1/+1
2010-12-13ap: bugfix in builddirsNatanael Copa1-15/+14
2010-12-13ap: initial implementationNatanael Copa3-2/+259
ap is a helper script to parse APKBUILD and calculate build time dependencies.
2010-12-13abuid: check that CARCH and CHOST is setNatanael Copa1-1/+11
2010-11-24abuild.conf: set CARCH and CBUILDNatanael Copa1-3/+3
2010-11-19added .gitignoreNatanael Copa1-0/+9
2010-11-19Makefile: target for .gitignoreNatanael Copa1-0/+7
2010-11-19abump: add usage and support for recursive abuildNatanael Copa1-2/+23
2010-11-19abump: install with make installNatanael Copa2-1/+1
2010-11-19newapkbuild: source PACKAGER from abuild.confNatanael Copa1-0/+7
2010-11-19abuild.conf: add ARCH and minor cleanupNatanael Copa1-6/+7
2010-11-02buildrepo: fix previous commitNatanael Copa1-1/+1
2010-11-02buildrepo: do not error if there are no packages in repoNatanael Copa1-1/+2
2010-08-31abuild: automatically add libgcc to depends when libpthread is foundNatanael Copa1-1/+9
see http://redmine.alpinelinux.org/issues/409
2010-08-27abuild: support for alternative awksNatanael Copa1-1/+1
some awk's does not understand -F "\ " and treats that as special space
2010-08-12release 2.5v2.5Natanael Copa1-1/+1
2010-08-12abuild: support for unpacking .tar.xzNatanael Copa1-0/+3
2010-07-20mkalpine: removedNatanael Copa2-41/+1
2010-07-07release 2.4v2.4Natanael Copa1-1/+1
2010-07-07newapkbuild: minor bugfix in is_uri()Natanael Copa1-0/+1
2010-07-07abuild: include vapi and gir-* in -dev packageNatanael Copa1-0/+1
2010-06-30abuild: detect and report conflicting dependencies properlyNatanael Copa1-3/+4
2010-06-16newapkbuid: fix pkgver in sourceNatanael Copa1-0/+1
2010-05-29newapkbuild: support for creating new from http sourceNatanael Copa1-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-19release 2.3v2.3Natanael Copa1-1/+1
2010-05-18abuild: move the .so symlinks to -dev packagesNatanael Copa1-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-18abuild-tar: build with --as-needed so we dont link to libsslNatanael Copa1-1/+5
2010-05-18abuild: allow DISTFILES_MIRROR be a local pathNatanael Copa1-1/+5
based on patch from Andrew Manison. Thanks!
2010-05-18abuild: support for -c and -m options to enable/disable colorsNatanael Copa1-6/+24
and make sure those options are passed over when building recursively Based on patch from Andrew Manison. Thanks!
2010-05-06abuild: break circular deps when building recursivelyNatanael Copa1-6/+12
2010-05-06abuild: properly pass over args when building recursivelyNatanael Copa1-16/+22
2010-05-06abuild: properly add $BUILD_BASE to dependency chainNatanael Copa1-3/+3
We want build the toolchain and build tools first
2010-05-06abuild: bugfix for versioned dependenciesNatanael Copa1-5/+5
we need strip all '<>=' chars not only last