| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
This is required for proper debug info for D packages
|
|
|
|
|
|
|
|
| |
This commit broke abuild-rmtemp which has a prefix check to ensure it
doesn't remove non-abuild directories. Revert the commit instead of
adjusting the prefix check for now.
This reverts commit d0828c06557773f252b645618500699a941bd091.
|
|
|
|
| |
fixes commit 012a179339ccf91adaa8b9f572d2b885f8fd4eab
|
|
|
|
|
| |
This allows using default_prepare to apply compressed patches,
e.g. the linux-lts kernel patches (compressed using XZ).
|
| |
|
|
|
|
|
|
|
| |
This is the only appearance of `apk` in the source. Appears accidental.
Fixes: 41343329 ("abuild: fix dependency tracing for cross builds")
Signed-off-by: A. Wilcox <AWilcox@Wilcox-Tech.com>
|
| |
|
|
|
|
|
|
|
|
|
| |
This will warn then paths for certain shells that have completions are
found and tell the user to add a subpackage for it.
In a future date we also want to warn the user to move certain
directories where packages have completions to those directories so our
default_ functions can move them without problems
|
| |
|
|
|
|
|
| |
- Call "$abuild_path" instead of plain "abuild"
- Pass $forceroot as done elsewhere
|
|
|
|
|
|
| |
CARGO_HOME tells cargo where to store installed dependencies, save it to
a directory in $SRCDEST so we don't need to download all dependencies
again when compiling a rust package.
|
|
|
|
|
|
|
| |
This makes it easier to figure out to which build the directory belongs
to. Occasionally, I have many failed abuild rootblds in my /var/tmp and
including the $pkgname in the directory would help me associating the
directories with failed builds I recently executed.
|
|
|
|
|
|
|
|
| |
Fixes the error:
df: .: can't find mount point
When running abuild inside a chroot when the root file system
mountpoint information is not necessarily directly available.
|
| |
|
| |
|
| |
|
|
|
|
| |
fixes #9981
|
|
|
|
|
|
| |
fix patches such as https://dev.alpinelinux.org/archive/domoticz/openzwave-1.6.patch
previously it would only work with the filenamename.patch::$url syntax
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Without this change abuild rootbld would fail with:
touch: invalid date '@'
Because SOURCE_DATE_EPOCH wasn't set when abuild rootbld was used. This
is a bug introduced in 71d9d5233b9db3be91510addcb28721545d93185. Instead
of reverting the aforementioned commit move the SOURCE_DATE_EPOCH
initialization to a custom function and also call it from the abuild
rootbld function.
Fixes #9978
|
|
|
|
|
|
|
| |
The introduction of the --pax-options seems to confuse apk and resulted
in `BAD archive' errors.
This reverts commit f04a2ee34b28a38c4349ef1f94686a07afce730f.
|
|
|
|
| |
fixes !7
|
| |
|
|
|
|
|
| |
getting the commit date can be timeconsuming so only do it once we need
it. We also re-use the ABUILD_LAST_COMMIT to speed up the operation.
|
|
|
|
| |
rename the global variable to upppercase.
|
|
|
|
|
|
| |
Add -- to explicitly separate out the file path.
Let git_last_commit_epoch take an option with the hash.
|
|
|
|
|
| |
Flags to make the tarball reproducible is taken from here:
http://h2.jaguarpaw.co.uk/posts/reproducible-tar/
|
|
|
|
|
| |
set datestamps to be used in the built packages to date of commit. This
makes it much easier to have reproducible builds.
|
|
|
|
|
| |
Aloow overrid sharedir with global ABUILD_SHAREDIR so we test the local
functions.sh instead of a system installed functions.sh
|
|
|
|
|
| |
abuild uses datadir as local variable in various functions. Rename the
global datadir to sharedir to avoid confusion.
|
|
|
|
|
| |
the function is not used since commit 3379e675512d (abuild: print
version of built package early)
|
| |
|
|
|
|
|
| |
we set sysconfdir in functions.sh so there is no need to set it in
abuild.
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
moving files and directories from $pkgdir to $subpkgdir is a common
pattern, so make a helper function for this.
usage: amove FILESPEC...
FILESPEC is a list of files or patterns/globs that will be exanded by
the shell.
amove will clean up empty directories after moving the files/dirs.
Example usage:
amove 'usr/lib/lib*.a'
amove 'etc/*.d' # moves both etc/conf.d and etc/init.d
amove 'lib/*.so' 'usr/lib/*.so'
cd "$pkgdir"
find usr -name '*.h' | xargs amove
This is based on the work of Chloe Kudryavtsev:
https://github.com/alpinelinux/abuild/pull/92
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- set PATH in the rootbld environment so ccache is actually used.
- drop the check for command -v ccache. ccache will be pulled in as
build dependency so we don't need to die if its missing.
- create ~/.ccache if missing rather than die. This directory will
normally be created by ccache itself, but we need to create it so we
can bind mount it incase of rootbld.
- don't die if ccache.conf is missing. ccache will create it.
|
|
|
|
|
|
|
|
| |
avoid install ccache and bind mount ~/.ccache when USE_CCACHE is not
set.
This fixes bind mount error when ~/.ccache is missing and USE_CCACHE is
unset.
|
|
|
|
|
|
|
|
|
|
|
| |
This introduces basic support for ccache, during packaging builds.
If you are building many packages, it is recommended to manually
increase the maximum size of the ccache cache. This is typically
achieved by modifying `~/.ccache/ccache.conf` and adjusting the
`max_size` setting.
Signed-off-by: Joseph Benden <joe@benden.us>
|
|
|
|
| |
Should not be any significant functional difference.
|
|
|
|
|
|
|
|
| |
When you have `-dev` and install `-libs-static`, for example,
it helps to only need to add one to `makedepends` instead of both.
After a grep of the current aports, it turns out matching the
prefix of `subpkgname` will be more useful.
|
|
|
|
|
| |
convert version suffixes in pkgconf modversion to something apk
can deal with.
|
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
This functionality is no longer needed by the build servers and is broken as it
does not handle
* provides= tags
* automatic dependencies added by trace_apk_deps()
* inter-repository dependencies
* circular dependencies caused by the unit tests in check()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
With a recent change in apk [1], virtual packages of the same name will
upgrade each other. Adjust abuild to this by not using the same virtual
package name for two types of dependencies.
This fixes the way crosscompilers are built in postmarketOS [2], which
is essentially the same as running this on Alpine's gcc aport:
$ cd aports/main/gcc
$ C_TARGET_ARCH=armhf CTARGET=armv6-alpine-linux-musleabihf \
BOOTSTRAP=nobuildbase CBUILDROOT=/ abuild -r
...
>>> gcc-armhf: Installing for host:
(1/24) Upgrading .makedepends-gcc-armhf (20190714.104731 -> 20190714.104741)
(2/24) Purging binutils-armhf (2.31.1-r2)
...
[1] apk-tools.git 37fbafcd928c466c82c892a7868d686d710e5d07
("add: make virtual packages upgradeable (ref #9957)")
[2] https://gitlab.com/postmarketOS/pmaports/blob/master/cross/gcc-armhf/APKBUILD
Fixes: https://gitlab.alpinelinux.org/alpine/apk-tools/issues/10649
|
| |
|
|
|
|
| |
clean up empty dirs
|
| |
|
| |
|