GNU bug report logs - #37029
[PATCH] Add fet

Previous Next

Package: guix-patches;

Reported by: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>

Date: Wed, 14 Aug 2019 15:39:01 UTC

Severity: normal

Tags: patch

Done: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 37029 in the body.
You can then email your comments to 37029 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#37029; Package guix-patches. (Wed, 14 Aug 2019 15:39:01 GMT) Full text and rfc822 format available.

Acknowledgement sent to Nicolas Goaziou <mail <at> nicolasgoaziou.fr>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Wed, 14 Aug 2019 15:39:01 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>
To: guix-patches <at> gnu.org
Subject: [PATCH] Add fet
Date: Wed, 14 Aug 2019 17:38:26 +0200
[Message part 1 (text/plain, inline)]
Hello,

The following patch adds FET.

Feedback welcome.

Regards,

-- 
Nicolas Goaziou
[0001-gnu-Add-fet.patch (text/x-diff, inline)]
From c77ce398324f2fc90332e19820d638ed7b055c50 Mon Sep 17 00:00:00 2001
From: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>
Date: Wed, 14 Aug 2019 17:35:47 +0200
Subject: [PATCH] gnu: Add fet.

* gnu/packages/education.scm (fet): New variable.
---
 gnu/packages/education.scm | 40 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 40 insertions(+)

diff --git a/gnu/packages/education.scm b/gnu/packages/education.scm
index 0bb9c099fb..440746a28c 100644
--- a/gnu/packages/education.scm
+++ b/gnu/packages/education.scm
@@ -480,3 +480,43 @@ use the computer and at the same time teach them a little math,
 letters of the alphabet, spelling, eye-hand coordination, etc.")
     (home-page "http://www.schoolsplay.org")
     (license license:gpl3+)))
+
+(define-public fet
+  (package
+    (name "fet")
+    (version "5.39.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "https://www.lalescu.ro/liviu/fet/download/"
+                                  "fet-" version ".tar.bz2"))
+              (sha256
+               (base32
+                "100bmggkychqs2cavqxy7015lr4icw6k99qb03im0v4jasqqmyix"))))
+    (build-system gnu-build-system)
+    (arguments
+     `(#:phases
+       (modify-phases %standard-phases
+         (add-after 'unpack 'fix-hardcoded-directories
+           (lambda* (#:key outputs #:allow-other-keys)
+             (substitute* (list "fet.pro"
+                                "src/src.pro"
+                                "src/src-cl.pro"
+                                "src/interface/fet.cpp")
+               (("/usr") (assoc-ref outputs "out")))
+             #t))
+         (replace 'configure
+           (lambda _ (invoke "qmake" "fet.pro"))))))
+    (inputs
+     `(("qtbase" ,qtbase)))
+    (home-page "https://www.lalescu.ro/liviu/fet/")
+    (synopsis "Timetabling software")
+    (description "FET is a program for automatically scheduling the
+timetable of a school, high-school or university.  It uses a fast and
+efficient timetabling algorithm.
+
+Usually, FET is able to solve a complicated timetable in maximum 5-20
+minutes.  For simpler timetables, it may take a shorter time, under
+5 minutes (in some cases, a matter of seconds).  For extremely
+difficult timetables, it may take a longer time, a matter of hours.")
+    (license license:agpl3+)))
+
-- 
2.22.0


Information forwarded to guix-patches <at> gnu.org:
bug#37029; Package guix-patches. (Fri, 23 Aug 2019 21:35:01 GMT) Full text and rfc822 format available.

Message #8 received at 37029 <at> debbugs.gnu.org (full text, mbox):

From: Ludovic Courtès <ludo <at> gnu.org>
To: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>
Cc: 37029 <at> debbugs.gnu.org
Subject: Re: [bug#37029] [PATCH] Add fet
Date: Fri, 23 Aug 2019 23:34:03 +0200
Hi Nicolas,

Nicolas Goaziou <mail <at> nicolasgoaziou.fr> skribis:

>>From c77ce398324f2fc90332e19820d638ed7b055c50 Mon Sep 17 00:00:00 2001
> From: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>
> Date: Wed, 14 Aug 2019 17:35:47 +0200
> Subject: [PATCH] gnu: Add fet.
>
> * gnu/packages/education.scm (fet): New variable.

LGTM, thanks!

Ludo’.




Reply sent to Nicolas Goaziou <mail <at> nicolasgoaziou.fr>:
You have taken responsibility. (Sat, 24 Aug 2019 14:55:02 GMT) Full text and rfc822 format available.

Notification sent to Nicolas Goaziou <mail <at> nicolasgoaziou.fr>:
bug acknowledged by developer. (Sat, 24 Aug 2019 14:55:02 GMT) Full text and rfc822 format available.

Message #13 received at 37029-done <at> debbugs.gnu.org (full text, mbox):

From: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>
To: Ludovic Courtès <ludo <at> gnu.org>
Cc: 37029-done <at> debbugs.gnu.org
Subject: Re: [bug#37029] [PATCH] Add fet
Date: Sat, 24 Aug 2019 16:54:27 +0200
Hello,

Ludovic Courtès <ludo <at> gnu.org> writes:

>> From: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>
>> Date: Wed, 14 Aug 2019 17:35:47 +0200
>> Subject: [PATCH] gnu: Add fet.
>>
>> * gnu/packages/education.scm (fet): New variable.
>
> LGTM, thanks!
>
Applied. Thank you.

Regards,

-- 
Nicolas Goaziou




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Sun, 22 Sep 2019 11:24:05 GMT) Full text and rfc822 format available.

This bug report was last modified 4 years and 230 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.