GNU bug report logs -
#78243
[PATCH] gnu: kio-extras: Fix kiod path.
Previous Next
To reply to this bug, email your comments to 78243 AT debbugs.gnu.org.
There is no need to reopen the bug first.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
sughosha <at> disroot.org, z572 <at> z572.online, guix-patches <at> gnu.org
:
bug#78243
; Package
guix-patches
.
(Sun, 04 May 2025 14:34:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Sughosha <sughosha <at> disroot.org>
:
New bug report received and forwarded. Copy sent to
sughosha <at> disroot.org, z572 <at> z572.online, guix-patches <at> gnu.org
.
(Sun, 04 May 2025 14:34:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/kde.scm (kio-extras)[arguments]Realign.
<#:phases>: Add fix-kiod-path phase.
Change-Id: I64463443ab3fb7fbd6939f007c9433d751dbd12e
---
gnu/packages/kde.scm | 28 +++++++++++++++++++++-------
1 file changed, 21 insertions(+), 7 deletions(-)
diff --git a/gnu/packages/kde.scm b/gnu/packages/kde.scm
index cf9b0a5298f..9eece538710 100644
--- a/gnu/packages/kde.scm
+++ b/gnu/packages/kde.scm
@@ -753,13 +753,27 @@ (define-public kio-extras
"0h720wcgsdx9h5vlr4flxrd3djmhwvlwkrf0yzwsf4amcb9wds8r"))))
(build-system cmake-build-system)
(arguments
- (list #:phases #~(modify-phases %standard-phases
- (replace 'check
- (lambda* (#:key tests? #:allow-other-keys)
- (when tests?
- (setenv "HOME" (getcwd))
- (setenv "TMPDIR" (getcwd))
- (invoke "ctest" "-E" "(thumbnailtest|testkioarchive)")))))))
+ (list #:phases
+ #~(modify-phases %standard-phases
+ (replace 'check
+ (lambda* (#:key tests? #:allow-other-keys)
+ (when tests?
+ (setenv "HOME" (getcwd))
+ (setenv "TMPDIR" (getcwd))
+ (invoke "ctest" "-E"
+ "(thumbnailtest|testkioarchive)"))))
+ (add-after 'install 'fix-kiod-path
+ (lambda* (#:key outputs #:allow-other-keys)
+ (let* ((kio #$(this-package-input "kio"))
+ (kf-version
+ #$(version-major
+ (package-version (this-package-input "kio")))))
+ (substitute* (string-append #$output
+ "/share/dbus-1/services/"
+ "org.kde.kmtpd5.service")
+ (("Exec=.*$")
+ (string-append "Exec=" kio "/libexec/kf" kf-version
+ "/kiod" kf-version "\n")))))))))
(native-inputs (list extra-cmake-modules dbus kdoctools pkg-config qttools))
;; TODO: libappimage
(inputs (list gperf
base-commit: cea6eedfcea2defa526bc58d4fb2085cc8c0cb36
--
2.48.1
Information forwarded
to
sughosha <at> disroot.org, z572 <at> z572.online, guix-patches <at> gnu.org
:
bug#78243
; Package
guix-patches
.
(Sun, 04 May 2025 14:43:03 GMT)
Full text and
rfc822 format available.
Message #8 received at 78243 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/kde.scm (kio-extras)[arguments]Realign.
<#:phases>: Add fix-kiod-path phase.
Change-Id: Ifda410609323dc55797a9e97191909824679dd8f
---
gnu/packages/kde.scm | 28 +++++++++++++++++++++-------
1 file changed, 21 insertions(+), 7 deletions(-)
diff --git a/gnu/packages/kde.scm b/gnu/packages/kde.scm
index cf9b0a5298f..c0b94c6bcfe 100644
--- a/gnu/packages/kde.scm
+++ b/gnu/packages/kde.scm
@@ -753,13 +753,27 @@ (define-public kio-extras
"0h720wcgsdx9h5vlr4flxrd3djmhwvlwkrf0yzwsf4amcb9wds8r"))))
(build-system cmake-build-system)
(arguments
- (list #:phases #~(modify-phases %standard-phases
- (replace 'check
- (lambda* (#:key tests? #:allow-other-keys)
- (when tests?
- (setenv "HOME" (getcwd))
- (setenv "TMPDIR" (getcwd))
- (invoke "ctest" "-E" "(thumbnailtest|testkioarchive)")))))))
+ (list #:phases
+ #~(modify-phases %standard-phases
+ (replace 'check
+ (lambda* (#:key tests? #:allow-other-keys)
+ (when tests?
+ (setenv "HOME" (getcwd))
+ (setenv "TMPDIR" (getcwd))
+ (invoke "ctest" "-E"
+ "(thumbnailtest|testkioarchive)"))))
+ (add-after 'install 'fix-kiod-path
+ (lambda _
+ (let* ((kio #$(this-package-input "kio"))
+ (kf-version
+ #$(version-major
+ (package-version (this-package-input "kio")))))
+ (substitute* (string-append #$output
+ "/share/dbus-1/services/"
+ "org.kde.kmtpd5.service")
+ (("Exec=.*$")
+ (string-append "Exec=" kio "/libexec/kf" kf-version
+ "/kiod" kf-version "\n")))))))))
(native-inputs (list extra-cmake-modules dbus kdoctools pkg-config qttools))
;; TODO: libappimage
(inputs (list gperf
base-commit: cea6eedfcea2defa526bc58d4fb2085cc8c0cb36
--
2.48.1
Information forwarded
to
sughosha <at> disroot.org, z572 <at> z572.online, guix-patches <at> gnu.org
:
bug#78243
; Package
guix-patches
.
(Sun, 04 May 2025 15:04:01 GMT)
Full text and
rfc822 format available.
Message #11 received at 78243 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/kde.scm (kio-extras)[arguments]: Realign.
<#:phases>: Add fix-kiod-path phase.
Change-Id: Ifda410609323dc55797a9e97191909824679dd8f
---
gnu/packages/kde.scm | 28 +++++++++++++++++++++-------
1 file changed, 21 insertions(+), 7 deletions(-)
diff --git a/gnu/packages/kde.scm b/gnu/packages/kde.scm
index cf9b0a5298f..c0b94c6bcfe 100644
--- a/gnu/packages/kde.scm
+++ b/gnu/packages/kde.scm
@@ -753,13 +753,27 @@ (define-public kio-extras
"0h720wcgsdx9h5vlr4flxrd3djmhwvlwkrf0yzwsf4amcb9wds8r"))))
(build-system cmake-build-system)
(arguments
- (list #:phases #~(modify-phases %standard-phases
- (replace 'check
- (lambda* (#:key tests? #:allow-other-keys)
- (when tests?
- (setenv "HOME" (getcwd))
- (setenv "TMPDIR" (getcwd))
- (invoke "ctest" "-E" "(thumbnailtest|testkioarchive)")))))))
+ (list #:phases
+ #~(modify-phases %standard-phases
+ (replace 'check
+ (lambda* (#:key tests? #:allow-other-keys)
+ (when tests?
+ (setenv "HOME" (getcwd))
+ (setenv "TMPDIR" (getcwd))
+ (invoke "ctest" "-E"
+ "(thumbnailtest|testkioarchive)"))))
+ (add-after 'install 'fix-kiod-path
+ (lambda _
+ (let* ((kio #$(this-package-input "kio"))
+ (kf-version
+ #$(version-major
+ (package-version (this-package-input "kio")))))
+ (substitute* (string-append #$output
+ "/share/dbus-1/services/"
+ "org.kde.kmtpd5.service")
+ (("Exec=.*$")
+ (string-append "Exec=" kio "/libexec/kf" kf-version
+ "/kiod" kf-version "\n")))))))))
(native-inputs (list extra-cmake-modules dbus kdoctools pkg-config qttools))
;; TODO: libappimage
(inputs (list gperf
base-commit: cea6eedfcea2defa526bc58d4fb2085cc8c0cb36
--
2.48.1
Reply sent
to
Z572 <z572 <at> z572.online>
:
You have taken responsibility.
(Thu, 08 May 2025 07:01:02 GMT)
Full text and
rfc822 format available.
Notification sent
to
Sughosha <sughosha <at> disroot.org>
:
bug acknowledged by developer.
(Thu, 08 May 2025 07:01:02 GMT)
Full text and
rfc822 format available.
Message #16 received at 78243-done <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
Sughosha via Guix-patches via <guix-patches <at> gnu.org> writes:
> * gnu/packages/kde.scm (kio-extras)[arguments]Realign.
> <#:phases>: Add fix-kiod-path phase.
>
> Change-Id: I64463443ab3fb7fbd6939f007c9433d751dbd12e
> ---
> gnu/packages/kde.scm | 28 +++++++++++++++++++++-------
> 1 file changed, 21 insertions(+), 7 deletions(-)
>
> diff --git a/gnu/packages/kde.scm b/gnu/packages/kde.scm
> index cf9b0a5298f..9eece538710 100644
> --- a/gnu/packages/kde.scm
> +++ b/gnu/packages/kde.scm
> @@ -753,13 +753,27 @@ (define-public kio-extras
> "0h720wcgsdx9h5vlr4flxrd3djmhwvlwkrf0yzwsf4amcb9wds8r"))))
> (build-system cmake-build-system)
> (arguments
> - (list #:phases #~(modify-phases %standard-phases
> - (replace 'check
> - (lambda* (#:key tests? #:allow-other-keys)
> - (when tests?
> - (setenv "HOME" (getcwd))
> - (setenv "TMPDIR" (getcwd))
> - (invoke "ctest" "-E" "(thumbnailtest|testkioarchive)")))))))
> + (list #:phases
> + #~(modify-phases %standard-phases
> + (replace 'check
> + (lambda* (#:key tests? #:allow-other-keys)
> + (when tests?
> + (setenv "HOME" (getcwd))
> + (setenv "TMPDIR" (getcwd))
> + (invoke "ctest" "-E"
> + "(thumbnailtest|testkioarchive)"))))
> + (add-after 'install 'fix-kiod-path
> + (lambda* (#:key outputs #:allow-other-keys)
> + (let* ((kio #$(this-package-input "kio"))
> + (kf-version
> + #$(version-major
> + (package-version (this-package-input "kio")))))
> + (substitute* (string-append #$output
> + "/share/dbus-1/services/"
> + "org.kde.kmtpd5.service")
> + (("Exec=.*$")
> + (string-append "Exec=" kio "/libexec/kf" kf-version
> + "/kiod" kf-version "\n")))))))))
> (native-inputs (list extra-cmake-modules dbus kdoctools pkg-config qttools))
> ;; TODO: libappimage
> (inputs (list gperf
>
> base-commit: cea6eedfcea2defa526bc58d4fb2085cc8c0cb36
pushed, closing.
[signature.asc (application/pgp-signature, inline)]
Information forwarded
to
guix-patches <at> gnu.org
:
bug#78243
; Package
guix-patches
.
(Thu, 08 May 2025 07:02:02 GMT)
Full text and
rfc822 format available.
This bug report was last modified 7 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.