diff options
author | Matthew Waters <matthew@centricular.com> | 2024-01-25 22:36:48 +1100 |
---|---|---|
committer | GStreamer Marge Bot <gitlab-merge-bot@gstreamer-foundation.org> | 2024-01-26 00:35:42 +0000 |
commit | 8cf9d9c60a6bf1215687a6071434761b71070254 (patch) | |
tree | 11fa7faf5601266e5975b5a0660f4d8ecdafb7de /recipes | |
parent | 9bb962e0343f4ac5b5adfd3cf8f12920bafbc592 (diff) |
bootstrap: remove now unused intltool on all platforms
It is not used by any packages anymore and a perl dependency
(XML::Parser) now has issues installing on MacOS.
Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/1328>
Diffstat (limited to 'recipes')
-rw-r--r-- | recipes/build-tools/intltool-m4.recipe | 18 | ||||
-rw-r--r-- | recipes/build-tools/intltool.recipe | 12 |
2 files changed, 0 insertions, 30 deletions
diff --git a/recipes/build-tools/intltool-m4.recipe b/recipes/build-tools/intltool-m4.recipe deleted file mode 100644 index d8873cab..00000000 --- a/recipes/build-tools/intltool-m4.recipe +++ /dev/null @@ -1,18 +0,0 @@ -# -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python -import shutil - -class Recipe(recipe.Recipe): - name = 'intltool-m4' - version = '0.51.0' - licenses = [License.GPLv2Plus] - stype = SourceType.TARBALL - btype = BuildType.CUSTOM - url = 'https://launchpad.net/intltool/trunk/0.51.0/+download/intltool-0.51.0.tar.gz' - tarball_checksum = '67c74d94196b153b774ab9f89b2fa6c6ba79352407037c8c14d5aeb334e959cd' - tarball_dirname = 'intltool-%(version)s' - - files_devel = ['share/aclocal/intltool.m4'] - - async def install(self): - m4 = os.path.join(self.build_dir, 'intltool.m4') - shutil.copy(m4, os.path.join(self.config.prefix, 'share', 'aclocal', 'intltool.m4')) diff --git a/recipes/build-tools/intltool.recipe b/recipes/build-tools/intltool.recipe deleted file mode 100644 index cdb908a0..00000000 --- a/recipes/build-tools/intltool.recipe +++ /dev/null @@ -1,12 +0,0 @@ -# -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python -import shutil - -class Recipe(recipe.Recipe): - name = 'intltool' - version = '0.51.0' - licenses = [License.GPLv2Plus] - stype = SourceType.TARBALL - url = 'https://launchpad.net/intltool/trunk/0.51.0/+download/intltool-0.51.0.tar.gz' - tarball_checksum = '67c74d94196b153b774ab9f89b2fa6c6ba79352407037c8c14d5aeb334e959cd' - - files_bins = ['intltool-extract', 'intltool-merge', 'intltool-prepare', 'intltool-update', 'intltoolize'] |