forked from Mirror/pmbootstrap
* pmbootstrap init: Generate new port device- and linux-package * adds `pmbootstrap aportgen device-*` and `pmbootstrap aportgen linux-*` * ask for confirmation when selecting a non-existing device * generate the packages directly from init * refactor aportgen code * fixed some easy things in the linux- APKBUILD (more to come in follow-up PRs!) Testing: * Test all questions to the user from pmb.config.init and pmb.aportgen.device (except for the timezone question, because we would need to monkeypatch the os.path.exists() function, which messes up pytest, so we'd need to refactor the timezone function to be more testsuite friendly first) * Run the device wizard in a testcase a few times and check the output, that pmbootstrap.aportgen.device and pmbootstrap.aportgen.linux create by parsing the resulting APKBUILDs and deviceinfo and checking its contents. * Build the generated device package once in the same testcase Thanks a lot to @drebrez for all the help with this one: <https://github.com/postmarketOS/pmbootstrap/pull/821> See also the updated porting guide: <https://wiki.postmarketos.org/wiki/Porting_to_a_new_device>
109 lines
3.7 KiB
Python
109 lines
3.7 KiB
Python
"""
|
|
Copyright 2017 Oliver Smith
|
|
|
|
This file is part of pmbootstrap.
|
|
|
|
pmbootstrap is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
pmbootstrap is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with pmbootstrap. If not, see <http://www.gnu.org/licenses/>.
|
|
"""
|
|
import pmb.aportgen.core
|
|
import pmb.helpers.git
|
|
import pmb.helpers.run
|
|
|
|
|
|
def generate(args, pkgname):
|
|
# Copy original aport
|
|
arch = pkgname.split("-")[1]
|
|
path_original = "main/gcc"
|
|
upstream = (args.work + "/cache_git/aports_upstream/" + path_original)
|
|
pmb.helpers.git.clone(args, "aports_upstream")
|
|
pmb.helpers.run.user(args, ["cp", "-r", upstream, args.work + "/aportgen"])
|
|
|
|
# Rewrite APKBUILD
|
|
fields = {
|
|
"pkgname": pkgname,
|
|
"pkgdesc": "Stage2 cross-compiler for " + arch,
|
|
"depends": "isl binutils-" + arch,
|
|
"makedepends_build": "gcc g++ paxmark bison flex texinfo gawk zip gmp-dev mpfr-dev mpc1-dev zlib-dev",
|
|
"makedepends_host": "linux-headers gmp-dev mpfr-dev mpc1-dev isl-dev zlib-dev musl-dev-" + arch + " binutils-" + arch,
|
|
"subpackages": "g++-" + arch + ":gpp",
|
|
|
|
"LIBGOMP": "false",
|
|
"LIBGCC": "false",
|
|
"LIBATOMIC": "false",
|
|
"LIBITM": "false",
|
|
}
|
|
|
|
below_header = "CTARGET_ARCH=" + arch + """
|
|
CTARGET="$(arch_to_hostspec ${CTARGET_ARCH})"
|
|
CBUILDROOT="/usr/$CTARGET"
|
|
LANG_OBJC=false
|
|
LANG_JAVA=false
|
|
LANG_GO=false
|
|
LANG_FORTRAN=false
|
|
LANG_ADA=false
|
|
options="!strip !tracedeps"
|
|
|
|
# Wrap the package function, to make the resulting package
|
|
# lazy-reproducible
|
|
package() {
|
|
# Repack the *.a files to be reproducible (see #64)
|
|
_temp="$_builddir"/_reproducible-patch
|
|
cd "$_builddir"
|
|
for f in $(find -name '*.a'); do
|
|
# Copy to a temporary folder
|
|
echo "Repack $f to be reproducible"
|
|
mkdir -p "$_temp"
|
|
cd "$_temp"
|
|
cp "$_builddir"/"$f" .
|
|
|
|
# Repack with a sorted file order
|
|
ar x *.a
|
|
rm *.a
|
|
ar r sorted.a $(find -name '*.o' | sort)
|
|
|
|
# Copy back and clean up
|
|
cp -v sorted.a "$_builddir"/"$f"
|
|
cd ..
|
|
rm -r "$_temp"
|
|
done
|
|
|
|
# Unmodified package function from the gcc APKBUILD
|
|
_package
|
|
|
|
# Workaround for: postmarketOS/binary-package-repo#1
|
|
echo "Replacing hardlinks with symlinks"
|
|
rm -v "$pkgdir"/usr/bin/"$CTARGET"-c++
|
|
ln -s -v /usr/bin/"$CTARGET"-g++ "$pkgdir"/usr/bin/"$CTARGET"-c++
|
|
rm -v "$pkgdir"/usr/bin/"$CTARGET"-gcc-"$pkgver"
|
|
ln -s -v /usr/bin/"$CTARGET"-gcc "$pkgdir"/usr/bin/"$CTARGET"-gcc-"$pkgver"
|
|
}
|
|
"""
|
|
|
|
replace_simple = {
|
|
# Do not package libstdc++, do not add "g++-$ARCH" here (already
|
|
# did that explicitly in the subpackages variable above, so
|
|
# pmbootstrap picks it up properly).
|
|
'*subpackages="$subpackages libstdc++:libcxx:*': None,
|
|
|
|
# Rename package to _package, so we can wrap it (see above)
|
|
'*package() {*': "_package() {"
|
|
}
|
|
|
|
pmb.aportgen.core.rewrite(
|
|
args,
|
|
pkgname,
|
|
path_original,
|
|
fields,
|
|
replace_simple=replace_simple,
|
|
below_header=below_header)
|