Merge pull request #87866 from danieldk/validate-pkgconfig-hook
validatePkgConfig: init
This commit is contained in:
commit
4af635feff
|
@ -2081,6 +2081,16 @@ postInstall = ''
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
|
<varlistentry>
|
||||||
|
<term>
|
||||||
|
validatePkgConfig
|
||||||
|
</term>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
The <literal>validatePkgConfig</literal> hook validates all pkg-config (<filename>.pc</filename>) files in a package. This helps catching some common errors in pkg-config files, such as undefined variables.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</varlistentry>
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term>
|
<term>
|
||||||
cmake
|
cmake
|
||||||
|
|
19
pkgs/build-support/setup-hooks/validate-pkg-config.sh
Normal file
19
pkgs/build-support/setup-hooks/validate-pkg-config.sh
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
# This setup hook validates each pkgconfig file in each output.
|
||||||
|
|
||||||
|
fixupOutputHooks+=(_validatePkgConfig)
|
||||||
|
|
||||||
|
_validatePkgConfig() {
|
||||||
|
for pc in $(find "$prefix" -name '*.pc'); do
|
||||||
|
local bail=0
|
||||||
|
|
||||||
|
# Do not fail immediately. It's nice to see all errors when
|
||||||
|
# there are multiple pkgconfig files.
|
||||||
|
if ! pkg-config --validate "$pc"; then
|
||||||
|
bail=1
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
if [ $bail -eq 1 ]; then
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
}
|
|
@ -1,9 +1,9 @@
|
||||||
{ stdenvNoCC
|
{ stdenvNoCC
|
||||||
, fetchurl
|
, fetchurl
|
||||||
, pkgconfig
|
|
||||||
, rpmextract
|
, rpmextract
|
||||||
, undmg
|
, undmg
|
||||||
, darwin
|
, darwin
|
||||||
|
, validatePkgConfig
|
||||||
, enableStatic ? false
|
, enableStatic ? false
|
||||||
}:
|
}:
|
||||||
|
|
||||||
|
@ -46,15 +46,11 @@ in stdenvNoCC.mkDerivation {
|
||||||
sha256 = "0v86hrqg15mbc78m9qk8dbkaaq3mlwashgbf9n79kxpl1gilnah8";
|
sha256 = "0v86hrqg15mbc78m9qk8dbkaaq3mlwashgbf9n79kxpl1gilnah8";
|
||||||
});
|
});
|
||||||
|
|
||||||
nativeBuildInputs = if stdenvNoCC.isDarwin
|
nativeBuildInputs = [ validatePkgConfig ] ++ (if stdenvNoCC.isDarwin
|
||||||
then
|
then
|
||||||
[ undmg darwin.cctools ]
|
[ undmg darwin.cctools ]
|
||||||
else
|
else
|
||||||
[ rpmextract ];
|
[ rpmextract ]);
|
||||||
|
|
||||||
installCheckInputs = [ pkgconfig ];
|
|
||||||
|
|
||||||
doInstallCheck = true;
|
|
||||||
|
|
||||||
buildPhase = if stdenvNoCC.isDarwin then ''
|
buildPhase = if stdenvNoCC.isDarwin then ''
|
||||||
for f in Contents/Resources/pkg/*.tgz; do
|
for f in Contents/Resources/pkg/*.tgz; do
|
||||||
|
@ -152,11 +148,6 @@ in stdenvNoCC.mkDerivation {
|
||||||
install_name_tool -change @rpath/libtbbmalloc.dylib $out/lib/libtbbmalloc.dylib $out/lib/libtbbmalloc_proxy.dylib
|
install_name_tool -change @rpath/libtbbmalloc.dylib $out/lib/libtbbmalloc.dylib $out/lib/libtbbmalloc_proxy.dylib
|
||||||
'';
|
'';
|
||||||
|
|
||||||
# Validate pkgconfig files, since they break often on updates.
|
|
||||||
installCheckPhase = ''
|
|
||||||
pkg-config --validate $out/lib/pkgconfig/*.pc
|
|
||||||
'';
|
|
||||||
|
|
||||||
# Per license agreement, do not modify the binary
|
# Per license agreement, do not modify the binary
|
||||||
dontStrip = true;
|
dontStrip = true;
|
||||||
dontPatchELF = true;
|
dontPatchELF = true;
|
||||||
|
|
|
@ -507,6 +507,10 @@ in
|
||||||
|
|
||||||
iconConvTools = callPackage ../build-support/icon-conv-tools {};
|
iconConvTools = callPackage ../build-support/icon-conv-tools {};
|
||||||
|
|
||||||
|
validatePkgConfig = makeSetupHook
|
||||||
|
{ name = "validate-pkg-config"; deps = [ findutils pkgconfig ]; }
|
||||||
|
../build-support/setup-hooks/validate-pkg-config.sh;
|
||||||
|
|
||||||
#package writers
|
#package writers
|
||||||
writers = callPackage ../build-support/writers {};
|
writers = callPackage ../build-support/writers {};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user