From 3def65075c09af4961cd399e8e78ed78cca72e65 Mon Sep 17 00:00:00 2001 From: Wolfgang Bauer Date: Wed, 11 Oct 2017 22:16:02 +0200 Subject: [PATCH] Fix build with Qt 5.9 Summary: moc 5.9 errors out when building: Error: Plugin Metadata file "" could not be opened: file to open is a directory Same issue and fix as https://phabricator.kde.org/D5392 for khtml. CCBUG: 377490 Test Plan: builds fine now with Qt 5.9.0rc and also earlier versions. Reviewers: vriezen, pino Reviewed By: pino Subscribers: pino Differential Revision: https://phabricator.kde.org/D5985 --- src/kmplayer_part.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/kmplayer_part.h b/src/kmplayer_part.h index f90f85d..0fddbaa 100644 --- a/src/kmplayer_part.h +++ b/src/kmplayer_part.h @@ -36,7 +36,7 @@ namespace KMPlayer { class KMPlayerFactory : public KPluginFactory { Q_OBJECT - Q_PLUGIN_METADATA(IID "org.kde.KPluginFactory" FILE "") + Q_PLUGIN_METADATA(IID "org.kde.KPluginFactory") Q_INTERFACES(KPluginFactory) public: KMPlayerFactory(); -- 2.14.2 ref='/guix/refs/?id=42231bc15df441d6426dec57283aca9ae7a03fcf'>refslogtreecommitdiff
path: root/gnu/packages/patches/hdf-eos5-fix-szip.patch
avail'>...* guix/scripts/pack.scm (self-contained-tarball/builder) [extra-options]: New argument. (self-contained-tarball, squashfs-image, docker-image) (debian-archive): Likewise. Remove two TODO comments. Document EXTRA-OPTIONS. Use the custom control files when provided. (%deb-format-options): New variable. (show-deb-format-options, show-deb-format-options/detailed): New procedures. (%options): Register new options. (show-help): Augment with new usage. (guix-pack): Validate and propagate new argument values. * doc/guix.texi (Invoking guix pack)[deb]: Document how to list advanced options. Add an example. * tests/pack.scm (deb archive...): Provide extra-options to the debian-archive procedure, and validate that the provided files are embedded in the pack.
AgeCommit message (Expand)Author
Maxim Cournoyer
2021-07-11pack: Adjust test to earlier <compressor> changes....This is a followup to 5a0997ef7f3968d216328b8c63a6e36dd29a5ab8, which broke the "self-contained tarball" test. * tests/pack.scm (%gzip-compressor): Add 'list' in third field. Ludovic Courtès
2021-06-29pack: Add support for the deb format....* .dir-locals.el (scheme-mode)[gexp->derivation]: Define indentation rule. * guix/scripts/pack.scm (debian-archive): New procedure. (%formats): Register the new deb format. (show-formats): Add it to the usage string. * tests/pack.scm (%ar-bootstrap): New variable. (deb archive with symlinks): New test. * doc/guix.texi (Invoking guix pack): Document it. * NEWS: Add news entry. Maxim Cournoyer
2021-06-29tests: pack: Fix compressor extension....* tests/pack.scm (%gzip-compressor): Add the missing leading period to the gzip compressor file extension. Maxim Cournoyer