From debbugs-submit-bounces@debbugs.gnu.org Sun Mar 05 01:32:22 2023 Received: (at 61968) by debbugs.gnu.org; 5 Mar 2023 06:32:22 +0000 Received: from localhost ([127.0.0.1]:38269 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pYhuw-0003aR-0k for submit@debbugs.gnu.org; Sun, 05 Mar 2023 01:32:22 -0500 Received: from planete-kraus.eu ([89.234.140.182]:52634) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pYhus-0003Zr-Ih for 61968@debbugs.gnu.org; Sun, 05 Mar 2023 01:32:19 -0500 Received: from planete-kraus.eu (localhost.lan [127.0.0.1]) by planete-kraus.eu (OpenSMTPD) with ESMTP id 28d64ffa for <61968@debbugs.gnu.org>; Sun, 5 Mar 2023 06:32:16 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=planete-kraus.eu; h= message-id:in-reply-to:references:from:date:subject:to :mime-version; s=dkim; bh=RowA0MgxU8wSVhz7zYBMD5VHY5Y=; b=q+PzEc 4DXsIVV7YyA3JNhtws/UwPpEkL4WTt2qQpd8Vh16V7svMfZr/bFuRiNVWY4aYo+n 9eixuKNqWQMCQo+mh0b0Cywffswdsc0d+UyfLG0YU/RDkQrXrkN1SUri0MOWQBjg Sz8ISD28Ed/8oMPpFz4Tx79feLn0Yypozyf7A= Received: by planete-kraus.eu (OpenSMTPD) with ESMTPSA id cd99cb96 (TLSv1.3:TLS_CHACHA20_POLY1305_SHA256:256:NO) for <61968@debbugs.gnu.org>; Sun, 5 Mar 2023 06:32:15 +0000 (UTC) Message-Id: <5793c04e33f7a877fd9b0362a3e8ae1ae202cc86.1677997633.git.vivien@planete-kraus.eu> In-Reply-To: References: From: Vivien Kraus Date: Sat, 4 Mar 2023 23:19:27 +0100 Subject: [PATCH v3 11/12] gnu: gnome-builder: Move to (gnu packages text-editors). To: 61968@debbugs.gnu.org MIME-Version: 1.0 User-Agent: Evolution 3.46.0 X-Spam-Score: 1.1 (+) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: * gnu/packages/gnome.scm (gnome-builder): Move to (gnu packages text-editors). --- gnu/packages/gnome.scm | 75 gnu/packages/text-editors.scm | 78 ++++++++++++++++++++ [...] Content analysis details: (1.1 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 SPF_HELO_PASS SPF: HELO matches SPF record -0.0 SPF_PASS SPF: sender matches SPF record 1.1 DATE_IN_PAST_06_12 Date: is 6 to 12 hours before Received: date X-Debbugs-Envelope-To: 61968 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 0.1 (/) * gnu/packages/gnome.scm (gnome-builder): Move to (gnu packages text-editors). --- gnu/packages/gnome.scm | 75 --------------------------------- gnu/packages/text-editors.scm | 78 +++++++++++++++++++++++++++++++++++ 2 files changed, 78 insertions(+), 75 deletions(-) diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 7a92192cbf..ad3bd28ea6 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -13199,81 +13199,6 @@ (define-public sysprof-3.44 (("gtk-update-icon-cache") "true") (("update-desktop-database") "true")))))))))) -(define-public gnome-builder - (package - (name "gnome-builder") - (version "42.1") - (source (origin - (method url-fetch) - (uri (string-append "mirror://gnome/sources/" name "/" - (version-major version) "/" - name "-" version ".tar.xz")) - (sha256 - (base32 - "02k78mamp1yf9y6wixd864hdf9saw83wdw01f80lhnw60avm2kax")))) - (build-system meson-build-system) - (arguments - (list - #:glib-or-gtk? #t ;To wrap binaries and compile schemas - #:configure-flags #~(list "-Dnetwork_tests=false") - #:phases - #~(modify-phases %standard-phases - (add-after 'unpack 'patch-meson - (lambda* (#:key inputs #:allow-other-keys) - (substitute* "build-aux/meson/post_install.py" - (("gtk-update-icon-cache") "true") - (("update-desktop-database") "true")) - (substitute* "src/libide/meson.build" - (("/usr/lib") - (string-append #$(this-package-input "python-pygobject") - "/lib"))))) - (add-before 'check 'pre-check - (lambda _ - (system "Xvfb :1 &") - (setenv "DISPLAY" ":1")))))) - (inputs - (list cmark - clang - devhelp-with-libsoup2 - flatpak - glade3 - gspell - gtk+ - json-glib - jsonrpc-glib - libdazzle - libgit2-glib - libhandy - libpeas - libportal - libsoup-minimal-2 - llvm - libostree - python - python-pygobject - sysprof-3.44 - template-glib - vte - webkitgtk-with-libsoup2)) - (propagated-inputs - (list gtksourceview-4)) ;needed for settings - (native-inputs - (list desktop-file-utils ;for desktop-file-validate - `(,glib "bin") - gettext-minimal - pkg-config - python ;for meson scripts - vala - xorg-server-for-tests)) - (home-page "https://wiki.gnome.org/Apps/Builder") - (synopsis "Toolsmith for GNOME-based applications") - (description - "Builder aims to be an integrated development environment (IDE) for -writing GNOME-based software. It features fuzzy search, auto-completion, -a mini code map, documentation browsing, Git integration, an integrated -profiler via Sysprof, debugging support, and more.") - (license license:gpl3+))) - (define-public komikku (package (name "komikku") diff --git a/gnu/packages/text-editors.scm b/gnu/packages/text-editors.scm index 2c300467b5..07a9f904db 100644 --- a/gnu/packages/text-editors.scm +++ b/gnu/packages/text-editors.scm @@ -79,8 +79,10 @@ (define-module (gnu packages text-editors) #:use-module (gnu packages libbsd) #:use-module (gnu packages llvm) #:use-module (gnu packages lua) + #:use-module (gnu packages markup) #:use-module (gnu packages ncurses) #:use-module (gnu packages pcre) + #:use-module (gnu packages package-management) #:use-module (gnu packages perl) #:use-module (gnu packages pkg-config) #:use-module (gnu packages python) @@ -95,6 +97,7 @@ (define-module (gnu packages text-editors) #:use-module (gnu packages terminals) #:use-module (gnu packages texinfo) #:use-module (gnu packages version-control) + #:use-module (gnu packages webkit) #:use-module (gnu packages xml) #:use-module (gnu packages xorg)) @@ -1414,3 +1417,78 @@ (define-public xnedit "XNEdit is a fast and classic X11 text editor, based on NEdit, with full unicode support and antialiased text rendering.") (license license:gpl2+))) + +(define-public gnome-builder + (package + (name "gnome-builder") + (version "42.1") + (source (origin + (method url-fetch) + (uri (string-append "mirror://gnome/sources/" name "/" + (version-major version) "/" + name "-" version ".tar.xz")) + (sha256 + (base32 + "02k78mamp1yf9y6wixd864hdf9saw83wdw01f80lhnw60avm2kax")))) + (build-system meson-build-system) + (arguments + (list + #:glib-or-gtk? #t ;To wrap binaries and compile schemas + #:configure-flags #~(list "-Dnetwork_tests=false") + #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'patch-meson + (lambda* (#:key inputs #:allow-other-keys) + (substitute* "build-aux/meson/post_install.py" + (("gtk-update-icon-cache") "true") + (("update-desktop-database") "true")) + (substitute* "src/libide/meson.build" + (("/usr/lib") + (string-append #$(this-package-input "python-pygobject") + "/lib"))))) + (add-before 'check 'pre-check + (lambda _ + (system "Xvfb :1 &") + (setenv "DISPLAY" ":1")))))) + (inputs + (list cmark + clang + devhelp-with-libsoup2 + flatpak + glade3 + gspell + gtk+ + json-glib + jsonrpc-glib + libdazzle + libgit2-glib + libhandy + libpeas + libportal + libsoup-minimal-2 + llvm + libostree + python + python-pygobject + sysprof-3.44 + template-glib + vte + webkitgtk-with-libsoup2)) + (propagated-inputs + (list gtksourceview-4)) ;needed for settings + (native-inputs + (list desktop-file-utils ;for desktop-file-validate + `(,glib "bin") + gettext-minimal + pkg-config + python ;for meson scripts + vala + xorg-server-for-tests)) + (home-page "https://wiki.gnome.org/Apps/Builder") + (synopsis "Toolsmith for GNOME-based applications") + (description + "Builder aims to be an integrated development environment (IDE) for +writing GNOME-based software. It features fuzzy search, auto-completion, +a mini code map, documentation browsing, Git integration, an integrated +profiler via Sysprof, debugging support, and more.") + (license license:gpl3+))) -- 2.39.1