unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* [PATCH] Add gEDA/gaf
@ 2015-03-06 21:00 Ricardo Wurmus
  2015-03-08 21:43 ` Ludovic Courtès
  0 siblings, 1 reply; 2+ messages in thread
From: Ricardo Wurmus @ 2015-03-06 21:00 UTC (permalink / raw)
  To: Guix-devel

[-- Attachment #1: 0001-gnu-Add-gEDA-gaf.patch --]
[-- Type: text/x-patch, Size: 3157 bytes --]

From f795352d55797e7b675409f4841e11caed5db73f Mon Sep 17 00:00:00 2001
From: Ricardo Wurmus <rekado@elephly.net>
Date: Thu, 5 Mar 2015 08:38:46 +0100
Subject: [PATCH] gnu: Add gEDA/gaf.

* gnu/packages/engineering.scm (geda-gaf): New variable.
---
 gnu/packages/engineering.scm | 61 ++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 61 insertions(+)

diff --git a/gnu/packages/engineering.scm b/gnu/packages/engineering.scm
index 70fd655..5777446 100644
--- a/gnu/packages/engineering.scm
+++ b/gnu/packages/engineering.scm
@@ -20,12 +20,18 @@
   #:use-module (guix packages)
   #:use-module (guix download)
   #:use-module (guix git-download)
+  #:use-module (guix utils)
   #:use-module ((guix licenses) #:prefix license:)
   #:use-module (guix build-system gnu)
   #:use-module (gnu packages)
   #:use-module (gnu packages boost)
   #:use-module (gnu packages fontutils)
+  #:use-module (gnu packages glib)
+  #:use-module (gnu packages gnome)
+  #:use-module (gnu packages gtk)
+  #:use-module (gnu packages guile)
   #:use-module (gnu packages maths)
+  #:use-module (gnu packages perl)
   #:use-module (gnu packages pkg-config)
   #:use-module (gnu packages qt)
   #:use-module (srfi srfi-1))
@@ -83,3 +89,58 @@
      "LibreCAD is a 2D Computer-aided design (CAD) application for creating
 plans and designs.")
     (license license:gpl2)))
+
+(define-public geda-gaf
+  (package
+    (name "geda-gaf")
+    (version "1.8.2")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "http://ftp.geda-project.org/geda-gaf/stable/v"
+                    (version-major+minor version) "/"
+                    version "/geda-gaf-" version ".tar.gz"))
+              (sha256
+               (base32
+                "08dpa506xk4gjbbi8vnxcb640wq4ihlgmhzlssl52nhvxwx7gx5v"))))
+    (build-system gnu-build-system)
+    (arguments
+     '(#:phases
+       ;; tests require a writable HOME
+       (alist-cons-before
+        'check 'set-home
+        (lambda _
+          (setenv "HOME" (getenv "TMPDIR")))
+        %standard-phases)))
+    (inputs
+     `(("glib" ,glib)
+       ("gtk" ,gtk+-2)
+       ("guile" ,guile-2.0)
+       ("desktop-file-utils" ,desktop-file-utils)
+       ("shared-mime-info" ,shared-mime-info)))
+    (native-inputs
+     `(("pkg-config" ,pkg-config)
+       ("perl" ,perl))) ; for tests
+    (home-page "http://geda-project.org/")
+    (synopsis "Schematic capture, netlister, symbols, symbol checker, and utils")
+    (description
+     "gaf stands for “gschem and friends”. It is a subset of the entire tool suite
+grouped together under the gEDA name. gEDA/gaf is a collection of tools which
+currently includes:
+
+gschem: A schematic capture program;
+
+gnetlist: A netlist generation program;
+
+gsymcheck: A syntax checker for schematic symbols;
+
+gattrib: A spreadsheet programm that manipulates the properties of symbols of
+a schematic;
+
+libgeda: Libraries for gschem gnetlist and gsymcheck;
+
+gsch2pcb: A tool to forward annotation from your schematic to layout using PCB;
+
+some minor utilities.")
+    (license license:gpl2+)))
+
-- 
2.1.0

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] Add gEDA/gaf
  2015-03-06 21:00 [PATCH] Add gEDA/gaf Ricardo Wurmus
@ 2015-03-08 21:43 ` Ludovic Courtès
  0 siblings, 0 replies; 2+ messages in thread
From: Ludovic Courtès @ 2015-03-08 21:43 UTC (permalink / raw)
  To: Ricardo Wurmus; +Cc: Guix-devel

Ricardo Wurmus <rekado@elephly.net> skribis:

> From f795352d55797e7b675409f4841e11caed5db73f Mon Sep 17 00:00:00 2001
> From: Ricardo Wurmus <rekado@elephly.net>
> Date: Thu, 5 Mar 2015 08:38:46 +0100
> Subject: [PATCH] gnu: Add gEDA/gaf.
>
> * gnu/packages/engineering.scm (geda-gaf): New variable.

[...]

> +    (description
> +     "gaf stands for “gschem and friends”. It is a subset of the entire tool suite
> +grouped together under the gEDA name. gEDA/gaf is a collection of tools which

Two spaces after period.

> +currently includes:
> +
> +gschem: A schematic capture program;
> +
> +gnetlist: A netlist generation program;
> +
> +gsymcheck: A syntax checker for schematic symbols;
> +
> +gattrib: A spreadsheet programm that manipulates the properties of symbols of
> +a schematic;
> +
> +libgeda: Libraries for gschem gnetlist and gsymcheck;
> +
> +gsch2pcb: A tool to forward annotation from your schematic to layout using PCB;
> +
> +some minor utilities.")

Could you make the list non-bullet style so that it remains readable and
pleasant even if some UI reflows the paragraphs?

Other than that it’s OK.  Nice work!

Ludo’.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2015-03-08 21:43 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-03-06 21:00 [PATCH] Add gEDA/gaf Ricardo Wurmus
2015-03-08 21:43 ` Ludovic Courtès

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).