Invoke create_zipapp.py from the root of the repository and it will create a minimal zipapp with only the mesonbuild module code and a __main__.py directly copied from meson.py The meson.py launcher already tracks the desired entry point, and its only other effect is to add the mesonbuild directory to the path if it exists, which it won't in the zipapp. So there's no need to duplicate this into another __main__.pypull/8048/head
parent
df50123c05
commit
0fa808f706
3 changed files with 25 additions and 22 deletions
@ -1,20 +0,0 @@ |
||||
#!/usr/bin/env python3 |
||||
|
||||
# Copyright 2016 The Meson development team |
||||
|
||||
# Licensed under the Apache License, Version 2.0 (the "License"); |
||||
# you may not use this file except in compliance with the License. |
||||
# You may obtain a copy of the License at |
||||
|
||||
# http://www.apache.org/licenses/LICENSE-2.0 |
||||
|
||||
# Unless required by applicable law or agreed to in writing, software |
||||
# distributed under the License is distributed on an "AS IS" BASIS, |
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
# See the License for the specific language governing permissions and |
||||
# limitations under the License. |
||||
|
||||
from mesonbuild import mesonmain |
||||
import sys |
||||
|
||||
sys.exit(mesonmain.main()) |
@ -0,0 +1,22 @@ |
||||
#!/usr/bin/env python3 |
||||
|
||||
import argparse |
||||
from pathlib import Path |
||||
import shutil |
||||
import sys |
||||
import tempfile |
||||
import zipapp |
||||
|
||||
parser = argparse.ArgumentParser() |
||||
parser.add_argument('source', nargs='?', default='.', help='Source directory') |
||||
parser.add_argument('--outfile', default='meson.pyz', help='Output file for the zipapp') |
||||
parser.add_argument('--interpreter', default='/usr/bin/env python3', help='The name of the Python interpreter to use') |
||||
|
||||
options = parser.parse_args(sys.argv[1:]) |
||||
|
||||
source = Path(options.source).resolve() |
||||
|
||||
with tempfile.TemporaryDirectory() as d: |
||||
shutil.copy2(source / 'meson.py', Path(d, '__main__.py')) |
||||
shutil.copytree(source / 'mesonbuild', Path(d, 'mesonbuild')) |
||||
zipapp.create_archive(d, interpreter=options.interpreter, target=options.outfile) |
Loading…
Reference in new issue