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>
73 lines
2.4 KiB
Python
73 lines
2.4 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/binutils"
|
|
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": "Tools necessary to build programs for " + arch + " targets",
|
|
"makedepends_build": "",
|
|
"makedepends_host": "",
|
|
"makedepends": "gettext libtool autoconf automake bison",
|
|
"subpackages": "",
|
|
}
|
|
|
|
replace_functions = {
|
|
"build": """
|
|
_target="$(arch_to_hostspec """ + arch + """)"
|
|
cd "$builddir"
|
|
"$builddir"/configure \\
|
|
--build="$CBUILD" \\
|
|
--target=$_target \\
|
|
--with-lib-path=/usr/lib \\
|
|
--prefix=/usr \\
|
|
--with-sysroot=/usr/$_target \\
|
|
--enable-ld=default \\
|
|
--enable-gold=yes \\
|
|
--enable-plugins \\
|
|
--enable-deterministic-archives \\
|
|
--disable-multilib \\
|
|
--disable-werror \\
|
|
--disable-nls
|
|
make
|
|
""",
|
|
"package": """
|
|
cd "$builddir"
|
|
make install DESTDIR="$pkgdir"
|
|
|
|
# remove man, info folders
|
|
rm -rf "$pkgdir"/usr/share
|
|
""",
|
|
"libs": None,
|
|
"gold": None,
|
|
}
|
|
|
|
pmb.aportgen.core.rewrite(args, pkgname, path_original, fields, "binutils",
|
|
replace_functions)
|