Hello, I'm contributing an update for Meson package to version "1.10.1-1". Changes: - to the ".cygport" file, just changed to version to "1.10.1". - when using cygport for making packages with Meson, this message is printed on the console:
DEPRECATION: "pkgconfig" entry is deprecated and should be replaced by "pkg-config" so, I simply replaced the "pkgconfig" with "pkg-config" into the cross files. The included patch still applies nicely, so it has not been changed. I attached the patch for these changes here. I hope that the maintainer of the Meson package will find this report useful. Sincerely, Carlo Bramini.
diff --git a/i686-pc-cygwin.meson b/i686-pc-cygwin.meson index 1b390b9..0daa273 100644 --- a/i686-pc-cygwin.meson +++ b/i686-pc-cygwin.meson @@ -4,7 +4,7 @@ cpp = '/usr/bin/i686-pc-cygwin-g++' ar = '/usr/i686-pc-cygwin/bin/ar' strip = '/usr/i686-pc-cygwin/bin/strip' windres = '/usr/bin/i686-pc-cygwin-windres' -pkgconfig = '/usr/bin/i686-pc-cygwin-pkg-config' +pkg-config = '/usr/bin/i686-pc-cygwin-pkg-config' [host_machine] system = 'cygwin' diff --git a/i686-w64-mingw32.meson b/i686-w64-mingw32.meson index b7c1b0c..529da3a 100644 --- a/i686-w64-mingw32.meson +++ b/i686-w64-mingw32.meson @@ -4,7 +4,7 @@ cpp = '/usr/bin/i686-w64-mingw32-g++' ar = '/usr/i686-w64-mingw32/bin/ar' strip = '/usr/i686-w64-mingw32/bin/strip' windres = '/usr/bin/i686-w64-mingw32-windres' -pkgconfig = '/usr/bin/i686-w64-mingw32-pkg-config' +pkg-config = '/usr/bin/i686-w64-mingw32-pkg-config' exe_wrapper = '/usr/libexec/meson/mingw32-wrapper' [properties] diff --git a/meson.cygport b/meson.cygport index 89f6ba6..a5ecbde 100644 --- a/meson.cygport +++ b/meson.cygport @@ -1,5 +1,5 @@ NAME=meson -VERSION=1.4.2 +VERSION=1.10.1 RELEASE=1 inherit python3-wheel vim diff --git a/x86_64-pc-cygwin.meson b/x86_64-pc-cygwin.meson index 4bd6f1d..b8fbcd0 100644 --- a/x86_64-pc-cygwin.meson +++ b/x86_64-pc-cygwin.meson @@ -4,7 +4,7 @@ cpp = '/usr/bin/x86_64-pc-cygwin-g++' ar = '/usr/x86_64-pc-cygwin/bin/ar' strip = '/usr/x86_64-pc-cygwin/bin/strip' windres = '/usr/bin/x86_64-pc-cygwin-windres' -pkgconfig = '/usr/bin/x86_64-pc-cygwin-pkg-config' +pkg-config = '/usr/bin/x86_64-pc-cygwin-pkg-config' [host_machine] system = 'cygwin' diff --git a/x86_64-w64-mingw32.meson b/x86_64-w64-mingw32.meson index 3d1d0b5..643c12b 100644 --- a/x86_64-w64-mingw32.meson +++ b/x86_64-w64-mingw32.meson @@ -4,7 +4,7 @@ cpp = '/usr/bin/x86_64-w64-mingw32-g++' ar = '/usr/x86_64-w64-mingw32/bin/ar' strip = '/usr/x86_64-w64-mingw32/bin/strip' windres = '/usr/bin/x86_64-w64-mingw32-windres' -pkgconfig = '/usr/bin/x86_64-w64-mingw32-pkg-config' +pkg-config = '/usr/bin/x86_64-w64-mingw32-pkg-config' exe_wrapper = '/usr/libexec/meson/mingw64-wrapper' [properties]
