Re: [PATCH] gnu: Add fpc. (version 2)

2017-06-08 Thread Kei Kebreau
Marius Bakke writes: > Marius Bakke writes: > >> Just to piggy-back on this discussion, I'm attempting to package >> "Hedgewars" and needed this patch to get fpc working properly: > > Oops, found one more patch in that old branch. @Kei, feel free to squash > this into the original patch: Patch

Re: [PATCH] gnu: Add fpc. (version 2)

2017-06-05 Thread Ricardo Wurmus
Danny Milosavljevic writes: > ... but it turns out that gpc patches gcc parts - and the most recent > patch is for gcc 4.0.3 - which we don't carry. Actually, the most recent patch is for 4.3, which is why I’ve packaged gcc-4.3: --8<---cut here---start->8---

Re: [PATCH] gnu: Add fpc. (version 2)

2017-06-05 Thread Marius Bakke
Marius Bakke writes: > Just to piggy-back on this discussion, I'm attempting to package > "Hedgewars" and needed this patch to get fpc working properly: Oops, found one more patch in that old branch. @Kei, feel free to squash this into the original patch: From cb94a2c4c697541183cb912039399df54e

Re: [PATCH] gnu: Add fpc. (version 2)

2017-06-05 Thread Marius Bakke
Just to piggy-back on this discussion, I'm attempting to package "Hedgewars" and needed this patch to get fpc working properly: From 4f76fb12f031652e11063c0fb37949229caa45cc Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Tue, 25 Apr 2017 15:39:30 +0200 Subject: [PATCH] gnu: fpc: Make sure it f

Re: [PATCH] gnu: Add fpc. (version 2)

2017-06-05 Thread Danny Milosavljevic
Hi, to experiment, I tried this: (define-module (wip pascal) #:use-module ((guix licenses) #:prefix license:) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix git-download) #:use-module (guix hg-download) #:use-module (guix utils) #:use-module (guix build

Re: [PATCH] gnu: Add fpc. (version 2)

2017-03-20 Thread Kei Kebreau
Ricardo Wurmus writes: > Danny Milosavljevic writes: > >> Hi, >> >>>+ (copy-file (assoc-ref inputs "fpc-binary") >>>+ "fpc-bin.tar") >>>+ (zero? (system* "tar" "xvf" "fpc-bin.tar") >> >> Why the copy-file and then untar ? Can't

Re: [PATCH] gnu: Add fpc. (version 2)

2017-03-20 Thread Ricardo Wurmus
Danny Milosavljevic writes: > Hi, > >>+ (copy-file (assoc-ref inputs "fpc-binary") >>+ "fpc-bin.tar") >>+ (zero? (system* "tar" "xvf" "fpc-bin.tar") > > Why the copy-file and then untar ? Can't it be untarred immediately from

Re: [PATCH] gnu: Add fpc. (version 2)

2017-03-20 Thread Kei Kebreau
Danny Milosavljevic writes: > Hi, > >>+ (copy-file (assoc-ref inputs "fpc-binary") >>+ "fpc-bin.tar") >>+ (zero? (system* "tar" "xvf" "fpc-bin.tar") > > Why the copy-file and then untar ? Can't it be untarred immediately from >

Re: [PATCH] gnu: Add fpc. (version 2)

2017-03-14 Thread Danny Milosavljevic
Hi, >+ (copy-file (assoc-ref inputs "fpc-binary") >+ "fpc-bin.tar") >+ (zero? (system* "tar" "xvf" "fpc-bin.tar") Why the copy-file and then untar ? Can't it be untarred immediately from where it is? If it is useful, maybe add

Re: [PATCH] gnu: Add fpc. (version 2)

2017-03-13 Thread Kei Kebreau
Danny Milosavljevic writes: > Hi Kei, > > is anything holding this up? > > I've tested it and can confirm it works fine. Not that I can remember. I believe it was just waiting for review. If this counts as a positive review I can see about tidying it up if necessary and pushing it to master. s

Re: [PATCH] gnu: Add fpc. (version 2)

2017-03-12 Thread Danny Milosavljevic
Hi Kei, is anything holding this up? I've tested it and can confirm it works fine.

Re: [PATCH] gnu: Add fpc. (version 2)

2017-01-26 Thread Kei Kebreau
Kei Kebreau writes: > Kei Kebreau writes: > >> Kei Kebreau writes: >> >>> This is a patch that adds a package for the Free Pascal Compiler. >>> Can someone verify that this builds reproducibly on an i386 machine? >> >> This update allows the compiler to find its configuration file. > > My apolo

Re: [PATCH] gnu: Add fpc. (version 2)

2017-01-26 Thread Kei Kebreau
Kei Kebreau writes: > Kei Kebreau writes: > >> This is a patch that adds a package for the Free Pascal Compiler. >> Can someone verify that this builds reproducibly on an i386 machine? > > This update allows the compiler to find its configuration file. My apologies, the former upload was missin

[PATCH] gnu: Add fpc. (version 2)

2017-01-26 Thread Kei Kebreau
Kei Kebreau writes: > This is a patch that adds a package for the Free Pascal Compiler. > Can someone verify that this builds reproducibly on an i386 machine? This update allows the compiler to find its configuration file. From 10b52891b6fd522231081e5735ce5287060dff21 Mon Sep 17 00:00:00 2001 Fr