summaryrefslogtreecommitdiff
path: root/mesonbuild/minstall.py
Commit message (Collapse)AuthorAgeFilesLines
* add install_symlink functionPablo Correa Gómez2021-12-011-17/+45
| | | | | | Allows installing symlinks directly from meson, which can become useful in multiple scenarios. Current main use is to help moving forward #9557
* fix BSD ldconfig handling (#9631)Eli Schwartz2021-11-281-5/+13
| | | | | | | | | | For libraries installed to libdir, it's not expected to have rpath hooked up. But for non-default libdirs, the path might not get searched by default. `ldconfig -m <libdir>` is convenient here, as it will programmatically add a new directory to search for shared libraries, so the resulting installed programs work out of the box. Include the dragonfly BSD platform name, which doesn't match the 'bsd' catch-all pattern.
* minstall: do not run ldconfig on the *BSDsEli Schwartz2021-11-251-0/+4
| | | | | | | | | | They don't utilize a soname cache, so running ldconfig without arguments is basically pointless -- and at least some of them are buggy: running ldconfig with the verbose flag switches on "delete all directories from the hints file, and recreate it using 0 command-line positional arguments", which would soft-brick the system. Fixes #9592
* fix various flake8 whitespace errorsEli Schwartz2021-10-271-2/+2
|
* Fix typos discovered by codespellChristian Clauss2021-10-101-1/+1
|
* minstall: Ignore ldconfig errors when we did not install librariesXavier Claessens2021-10-101-9/+22
| | | | Fixes: #9241
* add install_emptydir functionEli Schwartz2021-10-081-2/+16
| | | | | | | | | | | | | | | | | | | | This replaces the absolute hack of using ``` install_subdir('nonexisting', install_dir: 'share') ``` which requires you to make sure you don't accidentally or deliberately have a completely different directory with the same name in your source tree that is full of files you don't want installed. It also avoids splitting the name in two and listing them in the wrong order. You can also set the install mode of each directory component by listing them one at a time in order, and in fact create nested structures at all. Fixes #1604 Properly fixes #2904
* condense linesEli Schwartz2021-10-041-10/+5
|
* f-stringsEli Schwartz2021-10-041-14/+12
|
* Add install tagsXavier Claessens2021-08-171-9/+15
| | | | Fixes: #7007.
* minstall: restore_selinux_contexts: fix env testStéphane Cerveau2021-08-061-6/+3
| | | | | To avoid extra env test, test destdir presence upper in restore_selinux_contexts
* install: apply ldconfig at the end of the installStéphane Cerveau2021-08-061-1/+19
| | | | | | | On linux system ldconfig needs to be called to update the ld.so.cache to be able to load libraries from /usr/local/lib/x86_64-linux-gnu on debian based distributions for example.
* install: update restore_selinux to use popen_safeStéphane Cerveau2021-08-061-7/+8
| | | | Use Popen_safe to simplify the code.
* destdir: Allow relative to build directoryXavier Claessens2021-08-041-5/+10
| | | | | | Meson already works like that, except in do_copydir() that requires absolute destdir. Better explicitly support that instead of leaving it undefined and unconsistent.
* resolve symlinks passed to -CPaolo Bonzini2021-07-071-2/+2
| | | | | | | | | | | | "meson setup" is resolving symlinks for the build directory in validate_core_dirs. For consistency with it, do the same when the build directory is passed via -C to devenv, dist, init, install and test. This ensures for example that the path to test dependencies is computed correctly in "meson test". Fixes: #8765
* fix: Always explicitly set encoding for text files (fixes #8263)Daniel Mensinger2021-06-291-1/+1
|
* minstall: make intentions clearerDylan Baker2021-06-221-2/+2
| | | | | | | | | The existing code works, but it probably doesn't do what the author thought it would do. `(x or y or z) is not None` works by checking that each of those things are *truthy* in turn, and returning the first truthy value, which is compared against None. Using `all()` makes it very clear that what you want to do is make sure that each value is not None.
* mesonlib: Fix FileMode type annotationsDylan Baker2021-06-221-1/+2
|
* minstall: fix type annotation for add_argumentsDylan Baker2021-06-221-1/+1
| | | | This takes an `argparse.ArgumentParser` instance, not a namespace
* minstall: always track meson-created directoriesEli Schwartz2021-03-181-5/+1
| | | | | | | | | | | If a custom_target output is a directory, we install it as a directory, not as a file. And, we try to track subdirectories which are created so uninstalling works. But one directory creation did not go through DirMaker, in the case where the output directory does not have any further subdirectories. Consolidate on makedirs, since I don't see much point in using os.mkdir right here.
* minstall: Correctly set uid/gid of installed filesPeter Kjellerstedt2021-03-061-1/+1
| | | | | | | | | | | In commit caab4d3d, the uid and gid arguments passed to os.chown() by set_chown() were accidentally swapped, causing files to end up with incorrect owner/group if the owner and group are not the same. Also update the documentation to better indicate which argument to install_mode is which. Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
* mass rewrite of string formatting to use f-strings everywhereEli Schwartz2021-03-041-18/+18
| | | | performed by running "pyupgrade --py36-plus" and committing the results
* minstall: Add --skip-subprojects optionXavier Claessens2021-02-221-17/+38
| | | | | | | | | By default all subprojects are installed. If --skip-subprojects is given with no value only the main project is installed. If --skip-subprojects is given with a value, it should be a coma separated list of subprojects to skip and all others will be installed. Fixes: #2550.
* Fix destdir detection for installation via polkitXℹ Ruoyao2021-02-161-1/+1
| | | | | | In 0.57.0 installation via polkit won't work anymore. `destdir` is defaulted to an empty string ('') instead of None. But polkit installation code incorrectly tests `destdir is None`.
* minstall: Add --dry-run optionXavier Claessens2021-02-041-24/+100
| | | | Closes: #1281
* add_install_script: add skip_if_destdir kwargXavier Claessens2021-01-301-3/+6
| | | | | | | | It is common, at least in GNOME projects, to have scripts that must be run only in the final destination, to update system icon cache, etc. Skipping them from Meson ensures we can properly log that they have not been run instead of relying on such scripts to to it (they don't always).
* minstall: Add --destdir command line optionXavier Claessens2021-01-301-0/+7
|
* Fix executable as script on WindowsXavier Claessens2021-01-301-7/+3
| | | | | | | | | | | | | | | | | | On Windows this would fail because of missing DLL: ``` mylib = library(...) exe = executable(..., link_with: mylib) meson.add_install_script(exe) ``` The reason is on Windows we cannot rely on rpath to find libraries from build directory, they are searched in $PATH. We already have all that mechanism in place for custom_target() using ExecutableSerialisation class, so reuse it for install/dist/postconf scripts too. This has bonus side effect to also use exe_wrapper for those scripts. Fixes: #8187
* minstall: Fix signature of monkeypatched os.chownDylan Baker2021-01-131-3/+12
| | | | this also clears up the last of the mypy problems in minstall, yay!
* minstall: Pass destdir and fullprefix instead of adding them to instanceDylan Baker2021-01-131-25/+25
| | | | Same idea as the last patch, just different data
* minstall: Pass DirMaker separately instead of adding to instanceDylan Baker2021-01-131-24/+23
| | | | | | | Add a new attribute to an object outside of the initializer of construtor is considered an antipattern for good reason, it's gross, it's confusing, and it often leads to AttributeErrors down some paths. Let's not do that.
* minstall: Add type annotationsDylan Baker2021-01-131-31/+64
| | | | | | | This adds annotations and fixes a couple of issues (passing Set[bytes] where List[byte] is expected), however, there's some very gross addition of attributes to types going on that I haven't fixed yet, and mypy is very grump about.
* build: Add some type annotationsDylan Baker2021-01-131-0/+2
|
* minstall: fix importsDylan Baker2021-01-131-6/+10
| | | | | This uses PEP8 style, one per from `import mod`, but with commas from `from mod import a, b`. Also run sort, for niceness.
* Fix missed imports in #7902wereii2020-12-281-0/+3
|
* mtest: only build what is needed for the testsPaolo Bonzini2020-12-141-1/+17
| | | | | | | | | | | | | | It is a usual workflow to fix something and retest to see if it is fixed using a particular test. When tests start to become numerous, it becomes time consuming for "meson test" to relink all of them (and in fact rebuild the whole project) where the user has already specified the tests they want to run, as well as the tests' dependencies. Teach meson to be smart and only build what is needed for the test (or suite) that were specified. Fixes: #7473 Related: #7830
* install: don't elevate when using destdirThomas Weißschuh2020-12-101-1/+1
| | | | | | | | Previously the destdir was ignored completely when using elevated privileges to install files as pkexec stripped the DESTDIR environment variable. As the destdir is not supposed to require any special privileges anyways, just re-raise the error.
* pylint: Turn on warnings for incorrect number of argsDylan Baker2020-09-221-1/+1
| | | | | | | | | This catches some very real errors. The one in scalapack is pretty silly actually, it's failing to figure out that the exploded list is at least two arguments. However, the code is actually clearer by not using a list and exploding it, so I've done that and pylint is happy too.
* minstall: Add version field to install dataNirbheek Chauhan2020-09-101-1/+13
| | | | | | | And check the install data in the same way that mtest checks serialisation data. Fixes https://github.com/mesonbuild/meson/issues/2354
* minstall: Print a big FAILED when a script failsNirbheek Chauhan2020-09-081-4/+6
| | | | | | | We don't run any further scripts when this happens, so we need to print a big error. The exit code was already correct. Fixes https://github.com/mesonbuild/meson/issues/7627
* simplify shutil usage by invoking copy2 where appropriateEli Schwartz2020-08-201-4/+2
| | | | It's equivalent to copyfile + copystat with the same arguments.
* Let .pc files specify rpath.Dan Kegel2020-05-161-1/+1
| | | | Fixes #4027
* Do not call restorecon if there are no files to installMichael Kuhn2020-03-291-0/+4
| | | | Fixes #6452
* Cherry-picking - (rm python2 % add python3 .format) (#6725)Michael Brockus2020-03-031-9/+9
|
* minstall: Add a new option --quietNirbheek Chauhan2020-02-171-10/+18
| | | | | | | | | | | | | This is a significant speed-up on Windows because terminals are slow to print things out. Speed-up in gst-build on Windows: ``` meson install: before: 5.1 seconds after: 4.0 seconds ```
* minstall: Optimize when to call makedirs()Nirbheek Chauhan2020-02-171-9/+11
| | | | | | | | | | | | | | In `--only-changed` mode, we were spending half our time inside `makedirs()`, which is a waste in the case when only a few files have changed. Speed-up on Windows with gst-build: ``` meson install --only-changed before: 1.6 seconds after: 0.9 seconds ```
* minstall: Error out when trying to copy file to dirNirbheek Chauhan2020-02-171-0/+1
| | | | | Not sure why this wasn't already an error. It's a bad situation to be in, and we should not ignore it.
* minstall: Fix check for when something was installedNirbheek Chauhan2020-02-171-10/+11
| | | | | | | | | | | | | | | If we preserve the existing file, we did not install anything. In that case, the output now looks like: ``` ninja: Entering directory `.' ninja: no work to do. Nothing to install. Preserved 1732 unchanged files, see meson-logs\install-log.txt for the full list ``` This also avoids an `isfile` lookup, which shaves off a few seconds in gst-build install.
* minstall: Add new hidden argument --profile-selfNirbheek Chauhan2020-02-171-1/+9
| | | | Same purpose as `meson setup`.
* minstall: Make --only-changed less verboseNirbheek Chauhan2020-02-111-1/+5
| | | | | | | | | | | | When `--only-changed` is passed, we only want to know about files that were newly-installed. Everything else is noise. The full list can always be found in `install-log.txt` anyway. Sample output: ``` ninja: Entering directory `.' ninja: no work to do. Preserved 667 unchanged files, see meson-logs\install-log.txt for the full list ```