Re: Packing software developed in GNU Guile Scheme

2016-05-16 Thread David Pirotte
Hi Daniel,

> > Maybe look at the automake files from Sly or Guix.  
> 
> I was using a Automake, but without success because I never use it with 
> GNU Guile Scheme (only in C/C++ projects) but I'll use Guix to packing 
> it.

There is GNU Foliot [1], fully written in Guile, fully autotool chained, a good
example as well, not because I wrote it :) but because it also includes a user 
script
written in guile of course, which needs not be compiled and installed in
$prefix/bin, files are here [2]

I'd be happy to help, ping me...

Cheers,
David

[1] http://www.gnu.org/software/foliot/
[2] http://git.savannah.gnu.org/cgit/foliot.git/tree/


pgpJkibTpTGwu.pgp
Description: OpenPGP digital signature


Re: Packing software developed in GNU Guile Scheme

2016-05-16 Thread Daniel Pimentel

Maybe look at the automake files from Sly or Guix.


I was using a Automake, but without success because I never use it with 
GNU Guile Scheme (only in C/C++ projects) but I'll use Guix to packing 
it.


Thanks,



Re: Packing software developed in GNU Guile Scheme

2016-05-16 Thread Christopher Allan Webber
Daniel Pimentel writes:

> Hi Guiles,
>
> I developed a software with GNU Guile Scheme and I'd like packing to 
> distribute it.
>
> How do I do? Using Makefile?

Maybe look at the automake files from Sly or Guix.

> Project dependences: Guile, LSH/SSH.
>
> Thanks and sorry for my newbie's question :)
>
> Note: I'll packing for Guix/GuixSD in soon, but I'd like to distribute 
> to other distribution by tarball for example.

No worries!  Yes, it needs to be better documented.



Re: [PATCH] Emacs Smartparens

2016-05-16 Thread Catonano
I meant to post this message on the Guix dev mailinh list.

I just mistyped the address.

Sorry

2016-05-15 21:44 GMT+02:00 Catonano :

> Ok this is my second attempt
>
> This time it's Smartparens
>
> I used the emacs build system this time and I payied a bit more attention
> to the propagated inputs. I'm not sure about the native input though
>
> From 2e15843c941fc470cfe20275c4343c300b9dc8de Mon Sep 17 00:00:00 2001
> From: humanitiesNerd 
> Date: Sun, 15 May 2016 20:40:14 +0200
> Subject: [PATCH] package definition for Smartparens appended to
>  gnu/packages/emacs.scm
>
> ---
>  gnu/packages/emacs.scm | 43 +++
>  1 file changed, 43 insertions(+)
>
> diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
> index 11010b2..a311635 100644
> --- a/gnu/packages/emacs.scm
> +++ b/gnu/packages/emacs.scm
> @@ -1559,3 +1559,46 @@ to recognize a name like \"RFC 1234\".  This
> package enhances ffap so
>  that it correctly finds RFCs even when a space appears before the
>  number.")
>  (license license:gpl3+)))
> +
> +
> +
> +(define-public emacs-smartparens
> +(package
> +  (name "emacs-smartparens")
> +  (version "1.7.1")
> +  (source
> +(origin
> +  (method url-fetch)
> +  (uri (string-append
> + "http://stable.melpa.org/packages/smartparens-;
> + version
> + ".tar"))
> +  (sha256
> +(base32
> +  "04dvavsvmdf6fljv30csfkqkglvaw421irlq89v6zf93p0ak0vg6"
> +  (build-system emacs-build-system)
> +  (propagated-inputs `(("emacs-dash" ,emacs-dash))) ; what about cl-lib
> 0.3 ?
> +  (native-inputs `(("emacs" ,emacs-no-x)))
> +  (home-page "https://github.com/Fuco1/smartparens;)
> +  (synopsis
> +"Automatic insertion, wrapping and paredit-like navigation with user
> defined pairs.")
> +  (description
> +"Smartparens is minor mode for Emacs that deals with parens pairs
> +and tries to be smart about it.  It started as a unification effort
> +to combine functionality of several existing packages in a single,
> +compatible and extensible way to deal with parentheses, delimiters,
> +tags and the like.  Some of these packages include autopair,
> +textmate, wrap-region, electric-pair-mode, paredit and others.  With
> +the basic features found in other packages it also brings many
> +improvements as well as completely new features
> +
> +For a basic overview, see github readme at
> +https://github.com/Fuco1/smartparens
> +
> +For the complete documentation visit the documentation wiki located
> +at https://github.com/Fuco1/smartparens/wiki
> +
> +If you like this project, you can donate here:
> +
> https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick_button_id=CEYP5YVHDRX8C
> +")
> +  (license license:gpl3+)))
> --
> 2.5.5
>
>