[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#40622] new package 'flowee'.
From: |
Nicolas Goaziou |
Subject: |
[bug#40622] new package 'flowee'. |
Date: |
Tue, 14 Apr 2020 10:09:36 +0200 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) |
Hello,
Tom Zander via Guix-patches via <address@hidden> writes:
> Please merge.
Thank you. I have some comments first. :)
> (sha256
> - (base32 "1c1hkik8avill8ha33g76rk4b03j5ac8wiml69q4jav7a63ywgfy"))))
> + (base32 "1ajd5axv9zyhh6njrvamm11zn52j1q4j3mwn2nfv7cjd4lhnhlsr"))))
This change is unrelated.
> (build-system gnu-build-system)
> (arguments
> `(#:phases
> @@ -1440,6 +1440,70 @@ walets in a fast and small server. The full data is
> stored in a full node,
> like Flowee the Hub, which Fulcrum connects to over RPC.")
> (license license:gpl3+)))
>
> +(package
> + (name "flowee")
> + (version "2020.03.1")
You forgot to define a variable for this package.
> + (source (origin
> + (method url-fetch)
> + (uri (string-append
> "https://gitlab.com/FloweeTheHub/thehub/-/archive/"
> + version "/thehub-" version ".tar.gz"))
> + (sha256
> + (base32
> + "1w20haldxlnppi2lkn5xsmw8cnxpcc92yradhb823d2ih66ybp0l"))))
Nitpick: I would move `origin' under `source' and `base32' on the same
line as the string.
> + (build-system cmake-build-system)
> + (arguments
> + `(#:configure-flags '("-Dbuild_tests=ON" "-Denable_gui=OFF")
> + #:phases
> + (modify-phases %standard-phases
> + (add-before 'configure 'make-qt-deterministic
> + (lambda _
> + ; Make Qt deterministic.
Comments on a full line need two semicolons.
> + (setenv "QT_RCC_SOURCE_DATE_OVERRIDE" "1")
> + #t))
> + (add-before 'configure 'disable-black-box
> + ; the black-box testing runs full hubs and lets them interact.
> + ; this is more fragile and a slow machine, or low memory machine,
> may
> + ; make the tests timeout and fail. We just disable them here.
Ditto.
> + (lambda _
> + (substitute* "testing/CMakeLists.txt"
> + (("test_api") ""))
> + #t))
> + (add-after 'configure 'set-build-info
> + ; Their genbuild.sh to generate a build.h fails in guix (no .git
> dir) .
> + ; Its purpose is to write the tag name in the build.h file. We do
> that
> + ; here instead.
See above.
> + (inputs
> + `(("boost" ,boost)
> + ("libevent" ,libevent)
> + ("miniupnpc" ,miniupnpc)
> + ("qtbase" ,qtbase)
> + ("gmp" ,gmp)
> + ("openssl" ,openssl)))
> + (native-inputs
> + `(("pkg-config" ,pkg-config)
> + ("util-linux" ,util-linux) ; provides the hexdump command for
> tests
> + ("qttools" ,qttools)))
Could you re-order inputs alphabetically?
Could you send an updated patch?
Regards,
--
Nicolas Goaziou