guix-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH 3/3] gnu: nmap: Update to 7.31.


From: Marius Bakke
Subject: Re: [PATCH 3/3] gnu: nmap: Update to 7.31.
Date: Tue, 01 Nov 2016 00:00:14 +0000
User-agent: Notmuch/0.23.1 (https://notmuchmail.org) Emacs/25.1.1 (x86_64-unknown-linux-gnu)

Leo Famulari <address@hidden> writes:

> On Mon, Oct 31, 2016 at 01:29:44PM +0000, Marius Bakke wrote:
>> * gnu/packages/admin.scm (nmap): Update to 7.31.
>> [arguments]: Add phase 'patch-Makefile' to prevent lua from being built.
>> ---
>>  gnu/packages/admin.scm | 10 ++++++++--
>>  1 file changed, 8 insertions(+), 2 deletions(-)
>> 
>> diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
>> index d9b08ef..35156f6 100644
>> --- a/gnu/packages/admin.scm
>> +++ b/gnu/packages/admin.scm
>> @@ -1570,14 +1570,14 @@ done with the @code{auditctl} utility.")
>>  (define-public nmap
>>    (package
>>      (name "nmap")
>> -    (version "7.12")
>> +    (version "7.31")
>>      (source (origin
>>                (method url-fetch)
>>                (uri (string-append "https://nmap.org/dist/nmap-"; version
>>                                    ".tar.bz2"))
>>                (sha256
>>                 (base32
>> -                "014vagh9ak10hidwzp9s6g30y5h5fhsh8wykcnc1hnn9hwm0ipv3"))
>> +                "0hiqb28950kn4bjsmw0ksfyss7j2qdmgrj3xsjf7073pq01lx7yb"))
>
> Okay!
>
>>                (modules '((guix build utils)))
>>                (snippet
>>                 '(map delete-file-recursively
>> @@ -1603,6 +1603,12 @@ done with the @code{auditctl} utility.")
>>       '(#:configure-flags '("--without-zenmap")
>>         #:phases
>>         (modify-phases %standard-phases
>> +         (add-after 'configure 'patch-Makefile
>> +           (lambda _
>> +             (substitute* "Makefile"
>> +               ;; Do not attempt to build lua.
>> +               (("build-dnet build-lua") "build-dnet"))
>> +             #t))
>
> So, in this new release it tries to build the bundled Lua and fails
> because we've deleted it?

Correct, "build-lua" is now part of the default make target. Don't know
how it worked before, there have been a few changes to the Makefile:

https://github.com/nmap/nmap/commits/master/Makefile.in

Reading through the commits, I will double check that the NSE stuff
still works with our Lua ;)

Attachment: signature.asc
Description: PGP signature


reply via email to

[Prev in Thread] Current Thread [Next in Thread]