* bug#26617: [PATCH] gnu: Add gnustep-make.
@ 2017-04-23 0:38 Kei Kebreau
2017-04-23 0:48 ` Leo Famulari
0 siblings, 1 reply; 5+ messages in thread
From: Kei Kebreau @ 2017-04-23 0:38 UTC (permalink / raw)
To: 26617; +Cc: Kei Kebreau
* gnu/packages/gnustep.scm (gnustep-make): New variable.
---
gnu/packages/gnustep.scm | 30 +++++++++++++++++++++++++++++-
1 file changed, 29 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/gnustep.scm b/gnu/packages/gnustep.scm
index 6e729165c..b55b0ea29 100644
--- a/gnu/packages/gnustep.scm
+++ b/gnu/packages/gnustep.scm
@@ -22,7 +22,9 @@
#:use-module (guix packages)
#:use-module (guix build-system gnu)
#:use-module (guix licenses)
+ #:use-module (gnu packages base)
#:use-module (gnu packages xorg)
+ #:use-module (gnu packages libffcall)
#:use-module (gnu packages gnome)
#:use-module (gnu packages gtk)
#:use-module (gnu packages texinfo)
@@ -30,7 +32,33 @@
#:use-module (gnu packages glib)
#:use-module (gnu packages fontutils)
#:use-module (gnu packages image)
- #:use-module (gnu packages pkg-config))
+ #:use-module (gnu packages pkg-config)
+ #:use-module (gnu packages xml))
+
+(define-public gnustep-make
+ (package
+ (name "gnustep-make")
+ (version "2.7.0")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "ftp://ftp.gnustep.org/pub/gnustep/core/"
+ name "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "1khiygfkz0zhh9b5nybn40g0xnnjxchk24n49hff1bwanszir84h"))))
+ (build-system gnu-build-system)
+ (arguments
+ '(#:tests? #f)) ; no check target
+ (native-inputs
+ `(("which" ,which)))
+ (home-page "http://gnustep.org")
+ (synopsis "GNUstep make package")
+ (description "The makefile package is a simple, powerful and extensible way
+to write makefiles for a GNUstep-based project. It allows the user to write a
+project without having to deal with the complex issues associated with
+configuration, building, installation, and packaging. It also allows the user
+to easily create cross-compiled binaries.")
+ (license gpl3+)))
(define-public windowmaker
(package
--
2.12.2
^ permalink raw reply related [flat|nested] 5+ messages in thread
* bug#26617: [PATCH] gnu: Add gnustep-make.
2017-04-23 0:38 bug#26617: [PATCH] gnu: Add gnustep-make Kei Kebreau
@ 2017-04-23 0:48 ` Leo Famulari
2017-04-23 15:36 ` Kei Kebreau
0 siblings, 1 reply; 5+ messages in thread
From: Leo Famulari @ 2017-04-23 0:48 UTC (permalink / raw)
To: Kei Kebreau; +Cc: 26617
[-- Attachment #1: Type: text/plain, Size: 945 bytes --]
On Sat, Apr 22, 2017 at 08:38:05PM -0400, Kei Kebreau wrote:
> * gnu/packages/gnustep.scm (gnustep-make): New variable.
Cool!
> --- a/gnu/packages/gnustep.scm
> +++ b/gnu/packages/gnustep.scm
> @@ -22,7 +22,9 @@
> #:use-module (guix packages)
> #:use-module (guix build-system gnu)
> #:use-module (guix licenses)
> + #:use-module (gnu packages base)
> #:use-module (gnu packages xorg)
> + #:use-module (gnu packages libffcall)
> #:use-module (gnu packages gnome)
> #:use-module (gnu packages gtk)
> #:use-module (gnu packages texinfo)
> @@ -30,7 +32,33 @@
> #:use-module (gnu packages glib)
> #:use-module (gnu packages fontutils)
> #:use-module (gnu packages image)
> - #:use-module (gnu packages pkg-config))
> + #:use-module (gnu packages pkg-config)
> + #:use-module (gnu packages xml))
Are all of these new modules used?
> + (home-page "http://gnustep.org")
Is there a package-specific home-page?
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* bug#26617: [PATCH] gnu: Add gnustep-make.
2017-04-23 0:48 ` Leo Famulari
@ 2017-04-23 15:36 ` Kei Kebreau
2017-05-08 20:12 ` Ludovic Courtès
0 siblings, 1 reply; 5+ messages in thread
From: Kei Kebreau @ 2017-04-23 15:36 UTC (permalink / raw)
To: Leo Famulari; +Cc: 26617
[-- Attachment #1: Type: text/plain, Size: 1500 bytes --]
Leo Famulari <leo@famulari.name> writes:
> On Sat, Apr 22, 2017 at 08:38:05PM -0400, Kei Kebreau wrote:
>> * gnu/packages/gnustep.scm (gnustep-make): New variable.
>
> Cool!
>
>> --- a/gnu/packages/gnustep.scm
>> +++ b/gnu/packages/gnustep.scm
>> @@ -22,7 +22,9 @@
>> #:use-module (guix packages)
>> #:use-module (guix build-system gnu)
>> #:use-module (guix licenses)
>> + #:use-module (gnu packages base)
>> #:use-module (gnu packages xorg)
>> + #:use-module (gnu packages libffcall)
>> #:use-module (gnu packages gnome)
>> #:use-module (gnu packages gtk)
>> #:use-module (gnu packages texinfo)
>> @@ -30,7 +32,33 @@
>> #:use-module (gnu packages glib)
>> #:use-module (gnu packages fontutils)
>> #:use-module (gnu packages image)
>> - #:use-module (gnu packages pkg-config))
>> + #:use-module (gnu packages pkg-config)
>> + #:use-module (gnu packages xml))
>
> Are all of these new modules used?
>
No. I accidentally "polluted" this patch with changes from the next one
to come. Only the base, tex, and texinfo modules are needed for this
patch*.
>> + (home-page "http://gnustep.org")
>
> Is there a package-specific home-page?
It doesn't appear so.
* I've also realized that documentation is installed separately from the
main GNU building process, so I've added an appropriate phase now. The
only problem is that there's a PostScript file with a line that varies
depending on the build time. Is there a way to eliminate this variance
that you know of?
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* bug#26617: [PATCH] gnu: Add gnustep-make.
2017-04-23 15:36 ` Kei Kebreau
@ 2017-05-08 20:12 ` Ludovic Courtès
2017-05-09 0:01 ` Kei Kebreau
0 siblings, 1 reply; 5+ messages in thread
From: Ludovic Courtès @ 2017-05-08 20:12 UTC (permalink / raw)
To: Kei Kebreau; +Cc: 26617
Kei Kebreau <kei@openmailbox.org> skribis:
> * I've also realized that documentation is installed separately from the
> main GNU building process, so I've added an appropriate phase now. The
> only problem is that there's a PostScript file with a line that varies
> depending on the build time. Is there a way to eliminate this variance
> that you know of?
It may be that this line is added by a separate tool, perhaps pdflatex
or whatever is used. It’s this tool that we should fix.
If you could fine which tool that is and file a bug for this to
bug-guix, that would be great.
In the meantime you can happily commit gnustep-make. :-)
Thanks,
Ludo’.
^ permalink raw reply [flat|nested] 5+ messages in thread
* bug#26617: [PATCH] gnu: Add gnustep-make.
2017-05-08 20:12 ` Ludovic Courtès
@ 2017-05-09 0:01 ` Kei Kebreau
0 siblings, 0 replies; 5+ messages in thread
From: Kei Kebreau @ 2017-05-09 0:01 UTC (permalink / raw)
To: Ludovic Courtès; +Cc: 26617-done
[-- Attachment #1: Type: text/plain, Size: 803 bytes --]
ludo@gnu.org (Ludovic Courtès) writes:
> Kei Kebreau <kei@openmailbox.org> skribis:
>
>> * I've also realized that documentation is installed separately from the
>> main GNU building process, so I've added an appropriate phase now. The
>> only problem is that there's a PostScript file with a line that varies
>> depending on the build time. Is there a way to eliminate this variance
>> that you know of?
>
> It may be that this line is added by a separate tool, perhaps pdflatex
> or whatever is used. It’s this tool that we should fix.
>
> If you could fine which tool that is and file a bug for this to
> bug-guix, that would be great.
>
> In the meantime you can happily commit gnustep-make. :-)
>
> Thanks,
> Ludo’.
Commited (both to master and to finding that bug)!
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2017-05-09 0:02 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-04-23 0:38 bug#26617: [PATCH] gnu: Add gnustep-make Kei Kebreau
2017-04-23 0:48 ` Leo Famulari
2017-04-23 15:36 ` Kei Kebreau
2017-05-08 20:12 ` Ludovic Courtès
2017-05-09 0:01 ` Kei Kebreau
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).