forked from Mirror/pmbootstrap
While at it, also remove unnecessary "#!/usr/bin/env python3" in files that only get imported, and adjust other empty/comment lines in the beginnings of the files for consistency. This makes files easier to read, and makes the pmbootstrap codebase more consistent with the build.postmarketos.org codebase.
9 lines
360 B
Python
9 lines
360 B
Python
# Copyright 2020 Oliver Smith
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
from pmb.build.init import init
|
|
from pmb.build.envkernel import package_kernel
|
|
from pmb.build.menuconfig import menuconfig
|
|
from pmb.build.newapkbuild import newapkbuild
|
|
from pmb.build.other import copy_to_buildpath, is_necessary, \
|
|
index_repo
|
|
from pmb.build._package import package
|