summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
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
2010-05-06abuild: only update abuildrepo index if neededNatanael Copa1-5/+11
speeds up abuild -R a bit
2010-05-06abuild: rename apkcache to abuildrepoNatanael Copa2-16/+16
To avoid confusing with the /etc/apk/cache
2010-05-04abuild: force pkgrel in APKBUILDNatanael Copa1-1/+1
its needed for bumping pkgrel with sed and similar
2010-05-04release 2.2v2.2Natanael Copa1-1/+1
2010-05-04abuild: support for overriding apk binaryNatanael Copa1-14/+15
so we can do: APK=apk.static abuild ....
2010-05-04abuild: fix for abuild -RNatanael Copa1-2/+4
we only enter dependencies dirs in same repo
2010-04-28abuild: support for building simple tar.gz files of targetNatanael Copa1-0/+6
When building with crosscompile to bootstrap a new target it might be handy to not include the dependencies etc.
2010-04-19abuild: use fetch_uri_mirror when downloading sourcesNatanael Copa1-1/+1
2010-04-15alpine-mini.packages: removedNatanael Copa1-2/+0
not used anymore
2010-04-15abuild: only trace dependencies from current repoNatanael Copa1-2/+2
This avoids confusion when abuild picks dependencies from testing when building main.
2010-04-15abuild: download from DISTFILES_MIRROR first if setNatanael Copa1-2/+11
2010-04-06abump: small utility to maintain aportsNatanael Copa1-0/+40
2010-03-02abuild: wait 30 seconds for apk lockfile. improve error reportingNatanael Copa1-2/+10
2010-02-15alpine.packages: added igmpproxyNatanael Copa1-0/+1
2010-02-03tune package listNatanael Copa1-154/+2
basically remove dev packages
2010-01-07abuild.conf: added JOBS variableNatanael Copa1-1/+2
makes it easier to support parallel builds on non gnu make system
2009-12-30release 2.1v2.1Natanael Copa1-1/+1
2009-12-30sample: use lowercase in init.d/conf.d sample filesNatanael Copa2-22/+12
2009-12-30sample: use separate package()Natanael Copa1-4/+14
2009-12-16abuild: dont check version number if nodeps is specifiedNatanael Copa1-1/+1
This option is normally used for bootstrapping a build env. Chances are big that apk-tools is not around.
2009-11-24abuild: implement getpkgver, default_fetch and default_unpackNatanael Copa1-4/+28
to make life easier for volatile packages
2009-11-06abuild: use pax-utils's scanelf to find binaries to stripNatanael Copa1-10/+3
2009-11-02release 2.0.1v2.0.1Natanael Copa1-1/+1
2009-11-02abuild-sign: remove temp signatureNatanael Copa1-2/+1
2009-11-02abuild: fix detection of pkgconfig dependencyNatanael Copa1-6/+6
2009-10-30alpine.packages: removed -doc packagesNatanael Copa1-162/+0
2009-10-30alpine.packages: specify kernel packagesNatanael Copa1-4/+7
2009-10-27Revert "abuild: minor cleanup"Natanael Copa1-2/+2
This commit seems to kill the entire repository This reverts commit 46aed95754ebeb17a3a367b3b41d0b6424fd18d9.
2009-10-26added alpine-mini package listNatanael Copa1-0/+2
2009-10-25release 2.0v2.0Natanael Copa1-1/+1
2009-10-25remoe unused fileNatanael Copa1-3/+0
2009-10-24abuild: exit with error if run as rootNatanael Copa1-1/+10
override with -F
2009-10-24abuild: make it possible override fakerootNatanael Copa1-4/+6
2009-10-24abuild: fix so APKBUILD env var works properlyNatanael Copa2-13/+23
We also make sure we source the APKBUILD when we are in the directory holding the APKBUILD file. Some of the packages sources others with relative references. (for example kernel 3rd party packages)
2009-10-24abuild: minor bugfix: define $programNatanael Copa1-3/+4
2009-10-24newapkbuild: move code from abuild to new scriptNatanael Copa3-47/+84
try keep code in abuild cleaner by moving out creation of new apkbuild to separate script.
2009-10-24abuild: minor cleanupNatanael Copa1-5/+1
2009-10-23abuild: minor cleanupNatanael Copa1-2/+2
2009-10-23abuild: implement prepare()Natanael Copa1-1/+5
prepare is run before build(). this allows uses to do patching before configuring and building in a separate step.
2009-10-23abuild: bugfix. allow apkbiudls without build()Natanael Copa1-2/+2
2009-10-23abuild: dont run build() in fakeroot if package() existNatanael Copa1-1/+12
fakeroot seems do some kind of locking which kills performance on multicores processors. We can run "make" and "make install" in 2 steps with only hte latter in fakeroot.