emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#57497: closed ([PATCH] gnu: Add blueprint-compiler)


From: GNU bug Tracking System
Subject: bug#57497: closed ([PATCH] gnu: Add blueprint-compiler)
Date: Tue, 06 Sep 2022 14:47:01 +0000

Your message dated Tue, 06 Sep 2022 16:46:21 +0200
with message-id <87fsh4wog2.fsf_-_@gnu.org>
and subject line Re: bug#57497: [PATCH] gnu: Add blueprint-compiler
has caused the debbugs.gnu.org bug report #57497,
regarding [PATCH] gnu: Add blueprint-compiler
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
57497: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=57497
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] gnu: Add blueprint-compiler Date: Wed, 31 Aug 2022 04:21:15 +0100
---
 gnu/packages/blueprint-compiler.scm | 35 +++++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)
 create mode 100644 gnu/packages/blueprint-compiler.scm

diff --git a/gnu/packages/blueprint-compiler.scm 
b/gnu/packages/blueprint-compiler.scm
new file mode 100644
index 0000000000..299f0b3635
--- /dev/null
+++ b/gnu/packages/blueprint-compiler.scm
@@ -0,0 +1,35 @@
+(define-module (gnu packages blueprint-compiler)
+  #:use-module (guix packages)
+  #:use-module (guix licenses)
+  #:use-module (guix download)
+  #:use-module (gnu packages python)
+  #:use-module (gnu packages glib)
+  #:use-module (guix build-system meson))
+
+(define-public blueprint-compiler
+  (package
+    (name "blueprint-compiler")
+    (version "0.2.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                   
"https://gitlab.gnome.org/jwestman/blueprint-compiler/-/archive/v";
+                   version
+                   "/blueprint-compiler-v"
+                   version
+                   ".tar.gz"))
+              (sha256
+               (base32
+                "10qd9bax2n83n0pmmsbb55rjdsm7g5pvj2lxh460dl78jm649rfl"))))
+    (build-system meson-build-system)
+    (arguments `(#:tests? #f))
+    (native-inputs (list gobject-introspection))
+    (inputs (list python))
+    (synopsis "Markup language compiler for GTK user interface files")
+    (description
+     "This package provides the compiler for the blueprint markup language for
+GTK user interfaces")
+    (home-page "https://gitlab.gnome.org/jwestman/blueprint-compiler";)
+    (license gpl3+)))
+
+blueprint-compiler
-- 
2.37.2




--- End Message ---
--- Begin Message --- Subject: Re: bug#57497: [PATCH] gnu: Add blueprint-compiler Date: Tue, 06 Sep 2022 16:46:21 +0200 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/28.1 (gnu/linux)
Hi,

Ahriman <ahriman@fedora.email> skribis:

> * gnu/packages/gnome.scm (blueprint-compiler): New variable.

I passed it through ‘guix style’ and applied, thanks!

Ludo’.


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]