diff options
-rw-r--r-- | man/mesonconf.1 | 10 | ||||
-rw-r--r-- | man/mesonintrospect.1 | 13 | ||||
-rw-r--r-- | man/mesontest.1 | 13 | ||||
-rw-r--r-- | man/wraptool.1 | 13 | ||||
-rwxr-xr-x | mesonconf.py | 20 | ||||
-rwxr-xr-x | mesonintrospect.py | 20 | ||||
-rwxr-xr-x | mesonrewriter.py | 29 | ||||
-rwxr-xr-x | mesontest.py | 22 | ||||
-rw-r--r-- | setup.py | 12 | ||||
-rwxr-xr-x | wraptool.py | 23 |
10 files changed, 2 insertions, 173 deletions
diff --git a/man/mesonconf.1 b/man/mesonconf.1 deleted file mode 100644 index 5463c71..0000000 --- a/man/mesonconf.1 +++ /dev/null @@ -1,10 +0,0 @@ -.TH MESONCONF "1" "July 2018" "mesonconf 0.47.0" "User Commands" -.SH NAME -mesonconf - a tool to configure Meson builds -.SH DESCRIPTION - -This executable is deprecated and will be removed in the future. The -functionality that was in this executable can be invoked via the main Meson -command like this: - -.B meson configure <options> diff --git a/man/mesonintrospect.1 b/man/mesonintrospect.1 deleted file mode 100644 index 5d3eb42..0000000 --- a/man/mesonintrospect.1 +++ /dev/null @@ -1,13 +0,0 @@ -.TH MESONINTROSPECT "1" "July 2018" "mesonintrospect 0.47.0" "User Commands" -.SH NAME -mesonintrospect - a tool to extract information about a Meson build -.SH DESCRIPTION - -This executable is deprecated and will be removed in the future. The -functionality that was in this executable can be invoked via the main Meson -command like this: - -.B meson introspect <options> - -.SH SEE ALSO -http://mesonbuild.com/ diff --git a/man/mesontest.1 b/man/mesontest.1 deleted file mode 100644 index e231bf6..0000000 --- a/man/mesontest.1 +++ /dev/null @@ -1,13 +0,0 @@ -.TH MESON "1" "July 2018" "meson 0.47.0" "User Commands" -.SH NAME -mesontest - test tool for the Meson build system -.SH DESCRIPTION - -This executable is deprecated and will be removed in the future. The -functionality that was in this executable can be invoked via the main Meson -command like this: - -.B meson test <options> - -.SH SEE ALSO -http://mesonbuild.com/ diff --git a/man/wraptool.1 b/man/wraptool.1 deleted file mode 100644 index 7895e39..0000000 --- a/man/wraptool.1 +++ /dev/null @@ -1,13 +0,0 @@ -.TH WRAPTOOL "1" "July 2018" "meson 0.47.0" "User Commands" -.SH NAME -wraptool - source dependency downloader -.SH DESCRIPTION - -This executable is deprecated and will be removed in the future. The -functionality that was in this executable can be invoked via the main Meson -command like this: - -.B meson wrap <options> - -.SH SEE ALSO -http://wrapdb.mesonbuild.com/ diff --git a/mesonconf.py b/mesonconf.py deleted file mode 100755 index 894ec01..0000000 --- a/mesonconf.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. - -import sys - -if __name__ == '__main__': - sys.exit('Error: This executable is no more. Use "meson configure" instead.') diff --git a/mesonintrospect.py b/mesonintrospect.py deleted file mode 100755 index 9ef1535..0000000 --- a/mesonintrospect.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. - -import sys - -if __name__ == '__main__': - sys.exit('Error: This executable is no more. Use "meson introspect" instead.') diff --git a/mesonrewriter.py b/mesonrewriter.py deleted file mode 100755 index ef47e57..0000000 --- a/mesonrewriter.py +++ /dev/null @@ -1,29 +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. - -# This class contains the basic functionality needed to run any interpreter -# or an interpreter-based tool. - -# This tool is used to manipulate an existing Meson build definition. -# -# - add a file to a target -# - remove files from a target -# - move targets -# - reindent? - -import sys - -if __name__ == '__main__': - sys.exit('Error: This executable is no more. Use "meson rewrite" instead.') diff --git a/mesontest.py b/mesontest.py deleted file mode 100755 index e973d56..0000000 --- a/mesontest.py +++ /dev/null @@ -1,22 +0,0 @@ -#!/usr/bin/env python3 - -# Copyright 2016-2017 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. - -# A tool to run tests in many different ways. - -import sys - -if __name__ == '__main__': - sys.exit('Error: This executable is no more. Use "meson test" instead.') @@ -71,17 +71,9 @@ setup(name='meson', 'mesonbuild.modules', 'mesonbuild.scripts', 'mesonbuild.wrap'], - scripts=['meson.py', - 'mesonconf.py', - 'mesontest.py', - 'mesonintrospect.py', - 'wraptool.py'], + scripts=['meson.py'], cmdclass={'install_scripts': install_scripts}, - data_files=[('share/man/man1', ['man/meson.1', - 'man/mesonconf.1', - 'man/mesonintrospect.1', - 'man/mesontest.1', - 'man/wraptool.1']), + data_files=[('share/man/man1', ['man/meson.1']), ('share/polkit-1/actions', ['data/com.mesonbuild.install.policy'])], classifiers=['Development Status :: 5 - Production/Stable', 'Environment :: Console', diff --git a/wraptool.py b/wraptool.py deleted file mode 100755 index a5ee9ef..0000000 --- a/wraptool.py +++ /dev/null @@ -1,23 +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.wrap import wraptool -import sys - -if __name__ == '__main__': - print('Warning: This executable is deprecated. Use "meson wrap" instead.', - file=sys.stderr) - sys.exit(wraptool.run(sys.argv[1:])) |