aboutsummaryrefslogtreecommitdiff
path: root/__main__.py
diff options
context:
space:
mode:
authorEli Schwartz <eschwartz@archlinux.org>2020-11-24 15:41:56 -0500
committerJussi Pakkanen <jpakkane@gmail.com>2020-11-27 18:12:08 +0200
commit0fa808f7066d20047c0576da064bcc105053c401 (patch)
treef39a5784acc4d35a1075583e4a33ff8f3c53b03e /__main__.py
parentdf50123c058bd1e76c1b3230b4f27531f0adfe07 (diff)
downloadmeson-0fa808f7066d20047c0576da064bcc105053c401.zip
meson-0fa808f7066d20047c0576da064bcc105053c401.tar.gz
meson-0fa808f7066d20047c0576da064bcc105053c401.tar.bz2
Add script to create a zipapp.
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__.py
Diffstat (limited to '__main__.py')
-rw-r--r--__main__.py20
1 files changed, 0 insertions, 20 deletions
diff --git a/__main__.py b/__main__.py
deleted file mode 100644
index 27cd4c0..0000000
--- a/__main__.py
+++ /dev/null
@@ -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())