Merge pull request #57840 from worldofpeace/colord/bump
colord: 1.4.2 -> 1.4.4
This commit is contained in:
commit
c94f6f22d8
|
@ -43,6 +43,7 @@ in
|
||||||
clickhouse = handleTest ./clickhouse.nix {};
|
clickhouse = handleTest ./clickhouse.nix {};
|
||||||
cloud-init = handleTest ./cloud-init.nix {};
|
cloud-init = handleTest ./cloud-init.nix {};
|
||||||
codimd = handleTest ./codimd.nix {};
|
codimd = handleTest ./codimd.nix {};
|
||||||
|
colord = handleTest ./colord.nix {};
|
||||||
containers-bridge = handleTest ./containers-bridge.nix {};
|
containers-bridge = handleTest ./containers-bridge.nix {};
|
||||||
containers-extra_veth = handleTest ./containers-extra_veth.nix {};
|
containers-extra_veth = handleTest ./containers-extra_veth.nix {};
|
||||||
containers-hosts = handleTest ./containers-hosts.nix {};
|
containers-hosts = handleTest ./containers-hosts.nix {};
|
||||||
|
|
|
@ -0,0 +1,18 @@
|
||||||
|
# run installed tests
|
||||||
|
import ./make-test.nix ({ pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
name = "colord";
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
maintainers = pkgs.colord.meta.maintainers;
|
||||||
|
};
|
||||||
|
|
||||||
|
machine = { pkgs, ... }: {
|
||||||
|
environment.systemPackages = with pkgs; [ gnome-desktop-testing ];
|
||||||
|
};
|
||||||
|
|
||||||
|
testScript = ''
|
||||||
|
$machine->succeed("gnome-desktop-testing-runner -d '${pkgs.colord.installedTests}/share'");
|
||||||
|
'';
|
||||||
|
})
|
|
@ -1,29 +1,92 @@
|
||||||
{ stdenv, fetchurl, bash-completion
|
{ stdenv
|
||||||
, glib, polkit, pkgconfig, gettext, gusb, lcms2, sqlite, systemd, dbus
|
, fetchurl
|
||||||
, gobject-introspection, argyllcms, meson, ninja, libxml2, vala_0_40
|
, bash-completion
|
||||||
, libgudev, sane-backends, gnome3, makeWrapper }:
|
, glib
|
||||||
|
, polkit
|
||||||
|
, pkgconfig
|
||||||
|
, gettext
|
||||||
|
, gusb
|
||||||
|
, lcms2
|
||||||
|
, sqlite
|
||||||
|
, systemd
|
||||||
|
, dbus
|
||||||
|
, gobject-introspection
|
||||||
|
, argyllcms
|
||||||
|
, meson
|
||||||
|
, ninja
|
||||||
|
, libxml2
|
||||||
|
, vala
|
||||||
|
, libgudev
|
||||||
|
, wrapGAppsHook
|
||||||
|
, shared-mime-info
|
||||||
|
, sane-backends
|
||||||
|
, docbook_xsl
|
||||||
|
, docbook_xsl_ns
|
||||||
|
, docbook_xml_dtd_412
|
||||||
|
, gtk-doc
|
||||||
|
, libxslt
|
||||||
|
, substituteAll
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "colord-1.4.2";
|
pname = "colord";
|
||||||
|
version = "1.4.4";
|
||||||
|
|
||||||
|
outputs = [ "out" "dev" "devdoc" "man" "installedTests" ];
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://www.freedesktop.org/software/colord/releases/${name}.tar.xz";
|
url = "https://www.freedesktop.org/software/colord/releases/${pname}-${version}.tar.xz";
|
||||||
sha256 = "19zc9gldz469jshl16av7na459kwr5nhvs2pz98xm5lw582xaw2c";
|
sha256 = "19f0938fr7nvvm3jr263dlknaq7md40zrac2npfyz25zc00yh3ws";
|
||||||
};
|
};
|
||||||
|
|
||||||
mesonFlags = [
|
patches = [
|
||||||
"-Denable-sane=true"
|
# Put installed tests into its own output
|
||||||
"-Denable-vala=true"
|
./installed-tests-path.patch
|
||||||
"--localstatedir=/var"
|
|
||||||
"-Denable-bash-completion=true"
|
|
||||||
# TODO: man page cannot be build with docbook2x
|
|
||||||
"-Denable-man=false"
|
|
||||||
"-Denable-docs=false"
|
|
||||||
];
|
];
|
||||||
|
|
||||||
nativeBuildInputs = [ meson pkgconfig vala_0_40 ninja gettext libxml2 gobject-introspection makeWrapper ];
|
postPatch = ''
|
||||||
|
for file in data/tests/meson.build lib/colord/cd-test-shared.c lib/colord/meson.build; do
|
||||||
|
substituteInPlace $file --subst-var-by installed_tests_dir "$installedTests"
|
||||||
|
done
|
||||||
|
'';
|
||||||
|
|
||||||
buildInputs = [ glib polkit gusb lcms2 sqlite systemd dbus bash-completion argyllcms libgudev sane-backends ];
|
mesonFlags = [
|
||||||
|
"--localstatedir=/var"
|
||||||
|
"-Dinstalled_tests=true"
|
||||||
|
"-Dlibcolordcompat=true"
|
||||||
|
"-Dsane=true"
|
||||||
|
"-Dvapi=true"
|
||||||
|
];
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
docbook_xml_dtd_412
|
||||||
|
docbook_xsl
|
||||||
|
docbook_xsl_ns
|
||||||
|
gettext
|
||||||
|
gobject-introspection
|
||||||
|
gtk-doc
|
||||||
|
libxslt
|
||||||
|
meson
|
||||||
|
ninja
|
||||||
|
pkgconfig
|
||||||
|
shared-mime-info
|
||||||
|
vala
|
||||||
|
wrapGAppsHook
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
argyllcms
|
||||||
|
bash-completion
|
||||||
|
dbus
|
||||||
|
glib
|
||||||
|
gusb
|
||||||
|
lcms2
|
||||||
|
libgudev
|
||||||
|
polkit
|
||||||
|
sane-backends
|
||||||
|
sqlite
|
||||||
|
systemd
|
||||||
|
];
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
glib-compile-schemas $out/share/glib-2.0/schemas
|
glib-compile-schemas $out/share/glib-2.0/schemas
|
||||||
|
@ -35,17 +98,11 @@ stdenv.mkDerivation rec {
|
||||||
PKG_CONFIG_BASH_COMPLETION_COMPLETIONSDIR= "${placeholder "out"}/share/bash-completion/completions";
|
PKG_CONFIG_BASH_COMPLETION_COMPLETIONSDIR= "${placeholder "out"}/share/bash-completion/completions";
|
||||||
PKG_CONFIG_UDEV_UDEVDIR = "${placeholder "out"}/lib/udev";
|
PKG_CONFIG_UDEV_UDEVDIR = "${placeholder "out"}/lib/udev";
|
||||||
|
|
||||||
postFixup = ''
|
meta = with stdenv.lib; {
|
||||||
wrapProgram "$out/libexec/colord-session" \
|
|
||||||
--prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH:$out/share" \
|
|
||||||
--prefix GIO_EXTRA_MODULES : "${stdenv.lib.getLib gnome3.dconf}/lib/gio/modules"
|
|
||||||
'';
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
description = "System service to manage, install and generate color profiles to accurately color manage input and output devices";
|
description = "System service to manage, install and generate color profiles to accurately color manage input and output devices";
|
||||||
homepage = https://www.freedesktop.org/software/colord/;
|
homepage = https://www.freedesktop.org/software/colord/;
|
||||||
license = stdenv.lib.licenses.lgpl2Plus;
|
license = licenses.lgpl2Plus;
|
||||||
maintainers = [stdenv.lib.maintainers.marcweber];
|
maintainers = [ maintainers.marcweber ];
|
||||||
platforms = stdenv.lib.platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,72 @@
|
||||||
|
diff --git a/data/tests/meson.build b/data/tests/meson.build
|
||||||
|
index 8b38f10..250582c 100644
|
||||||
|
--- a/data/tests/meson.build
|
||||||
|
+++ b/data/tests/meson.build
|
||||||
|
@@ -17,6 +17,6 @@ if get_option('installed_tests')
|
||||||
|
'test.ccss',
|
||||||
|
'test.sp',
|
||||||
|
],
|
||||||
|
- install_dir: join_paths(libexecdir, 'installed-tests', 'colord')
|
||||||
|
+ install_dir: join_paths('@installed_tests_dir@', 'libexec', 'installed-tests', 'colord')
|
||||||
|
)
|
||||||
|
endif
|
||||||
|
diff --git a/lib/colord/cd-test-shared.c b/lib/colord/cd-test-shared.c
|
||||||
|
index c3b9d23..7577e13 100644
|
||||||
|
--- a/lib/colord/cd-test-shared.c
|
||||||
|
+++ b/lib/colord/cd-test-shared.c
|
||||||
|
@@ -45,7 +45,8 @@ cd_test_get_filename (const gchar *filename)
|
||||||
|
|
||||||
|
/* running in the installed system */
|
||||||
|
if (g_getenv ("INSTALLED_TESTS") != NULL) {
|
||||||
|
- return g_build_filename (LIBEXECDIR,
|
||||||
|
+ return g_build_filename ("@installed_tests_dir@",
|
||||||
|
+ "libexec",
|
||||||
|
"installed-tests",
|
||||||
|
PACKAGE_NAME,
|
||||||
|
filename,
|
||||||
|
diff --git a/lib/colord/meson.build b/lib/colord/meson.build
|
||||||
|
index 61f0518..df71358 100644
|
||||||
|
--- a/lib/colord/meson.build
|
||||||
|
+++ b/lib/colord/meson.build
|
||||||
|
@@ -214,20 +214,20 @@ endif
|
||||||
|
if get_option('installed_tests')
|
||||||
|
con2 = configuration_data()
|
||||||
|
con2.set('installedtestsdir',
|
||||||
|
- join_paths(libexecdir, 'installed-tests', 'colord'))
|
||||||
|
+ join_paths('@installed_tests_dir@', 'libexec', 'installed-tests', 'colord'))
|
||||||
|
configure_file(
|
||||||
|
input : 'colord-daemon.test.in',
|
||||||
|
output : 'colord-daemon.test',
|
||||||
|
configuration : con2,
|
||||||
|
install: true,
|
||||||
|
- install_dir: join_paths('share', 'installed-tests', 'colord'),
|
||||||
|
+ install_dir: join_paths('@installed_tests_dir@', 'share', 'installed-tests', 'colord'),
|
||||||
|
)
|
||||||
|
configure_file(
|
||||||
|
input : 'colord-private.test.in',
|
||||||
|
output : 'colord-private.test',
|
||||||
|
configuration : con2,
|
||||||
|
install: true,
|
||||||
|
- install_dir: join_paths('share', 'installed-tests', 'colord'),
|
||||||
|
+ install_dir: join_paths('@installed_tests_dir@', 'share', 'installed-tests', 'colord'),
|
||||||
|
)
|
||||||
|
endif
|
||||||
|
|
||||||
|
@@ -254,7 +254,7 @@ if get_option('tests')
|
||||||
|
'-DTESTDATADIR="' + testdatadir + '"',
|
||||||
|
],
|
||||||
|
install : get_option('installed_tests'),
|
||||||
|
- install_dir : join_paths(libexecdir, 'installed-tests', 'colord'),
|
||||||
|
+ install_dir : join_paths('@installed_tests_dir@','libexec', 'installed-tests', 'colord'),
|
||||||
|
)
|
||||||
|
test('colord-test-private', e)
|
||||||
|
e = executable(
|
||||||
|
@@ -278,7 +278,7 @@ if get_option('tests')
|
||||||
|
'-DTESTDATADIR="' + testdatadir + '"',
|
||||||
|
],
|
||||||
|
install : get_option('installed_tests'),
|
||||||
|
- install_dir : join_paths(libexecdir, 'installed-tests', 'colord'),
|
||||||
|
+ install_dir : join_paths('@installed_tests_dir@', 'libexec', 'installed-tests', 'colord'),
|
||||||
|
)
|
||||||
|
test('colord-test-daemon', e)
|
||||||
|
endif
|
Loading…
Reference in New Issue