all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Efraim Flashner <efraim@flashner.co.il>
To: Hamzeh Nasajpour <h.nasajpour@pantherx.org>
Cc: SuarezMiguelC via <help-guix@gnu.org>
Subject: Re: Error in package building : error[E0463]: can't find crate for `openssl_src`
Date: Sat, 24 Oct 2020 22:47:07 +0300	[thread overview]
Message-ID: <20201024194707.GA984@E5400> (raw)
In-Reply-To: <c79dcd8b-f2aa-4917-8683-8b84d9843dd7@www.fastmail.com>

[-- Attachment #1: Type: text/plain, Size: 4413 bytes --]

On Wed, Oct 21, 2020 at 05:27:16PM +0330, Hamzeh Nasajpour wrote:
> I'm so sorry I had a mistake in the previous package definition, I was in testing. Please remove these lines in the previous definition:
> ```
>             (substitute* "Cargo.toml"
>               (("0.10.30\"" all) "0.10.30\"}# "))
> ```
> 
> It means that my package definition is:
> ```
> (define-public python-etebase-py
>   (package
>     (name "python-etebase-py")
>     (version "0.30.0")
>     (source
>       (origin
>         (method url-fetch)
>         (uri (pypi-uri "etebase" version))
>         (sha256
>           (base32
>             "1py635aqnxx3jy4x6zffriqi0l9gc2gk06h0ms91k4rs68h0gb0i"))
>         (modules '((guix build utils)))
>         (snippet
>          '(begin
>             (substitute* "Cargo.toml"
>               (("etebase = " all) "#etebase = "))
>             (substitute* "Cargo.toml"
>               (("flapigen = " all) "flapigen = \"^0.6.0-pre7\" #"))

I'd add in a substitution here for openssl like this (untested):
               ;; Don't depend on vendored sources
               (("0.10.30.*") "0.10.30\" }\n")

>             #t))))
>     (build-system cargo-build-system)
>     (arguments
>       `(#:tests? #f
>         #:cargo-inputs
>         (("rust-openssl" ,rust-openssl-0.10)
>          ("rust-cpython" ,rust-cpython-0.3)
>          ("rust-log" ,rust-log-0.4)
>          ("rust-etebase-rs" ,rust-etebase-rs)
>          ("rust-flapigen" ,rust-flapigen-0.6)
>          ("rust-env-logger" ,rust-env-logger-0.7))
>         #:phases
>          (modify-phases %standard-phases
>            (add-after 'unpack 'patch-env-var
> (lambda* (#:key inputs #:allow-other-keys)
>              (let ((openssl (assoc-ref inputs "openssl")))
>                (invoke "rm" "setup.py")
>                (setenv "RUST_BACKTRACE" "full")
>                (setenv "OPENSSL_DIR" openssl))
>              #t))
>              )))
>     (native-inputs
>       `(("openssl" ,openssl)
>         ("python-msgpack" ,python-msgpack)
>         ("python-setuptools-rust" ,python-setuptools-rust)))
>     (inputs
>       `(("python" ,python)
> ;        ("rust-etebase-rs" ,rust-etebase-rs)
>         ))
>     (home-page "https://github.com/etesync/etebase-rs")
>     (synopsis "A python client library for EteSync.")
>     (description
>               "This module provides a python API to interact with an EteSync server. 
> It currently implements AddressBook and Calendar access, and supports two-way sync (both push and pull) to the server.")
>     (license license:gpl3)))
> ```
> 
> With above definition, I set the `OPENSSL_DIR` and add `openssl` as input but the problem not resolved:
> ```
> phase `patch-cargo-checksums' succeeded after 57.8 seconds
> starting phase `build'                                                                                                                                                                                                                      
>    Compiling autocfg v1.0.1
>    Compiling memchr v2.3.3
>    Compiling lazy_static v1.4.0
>    Compiling regex-syntax v0.6.18
>    Compiling libc v0.2.71
>    Compiling cc v1.0.58
>    Compiling pkg-config v0.3.17
>    Compiling bitflags v1.2.1
>    Compiling openssl v0.10.30
>    Compiling cpython v0.3.0
>    Compiling foreign-types-shared v0.1.1
>    Compiling cfg-if v0.1.10
>    Compiling thread_local v1.0.1
>    Compiling foreign-types v0.3.2
>    Compiling aho-corasick v0.7.13
>    Compiling num-traits v0.2.12
>    Compiling regex v1.3.9
>    Compiling openssl-sys v0.9.58
> error[E0463]: can't find crate for `openssl_src`
>  --> /tmp/guix-build-python-etebase-py-0.30.0.drv-0/etebase-0.30.0/guix-vendor/rust-openssl-sys-0.9.58.tar.xz/build/main.rs:6:1
>   |
> 6 | extern crate openssl_src;
>   | ^^^^^^^^^^^^^^^^^^^^^^^^^ can't find crate
> 
> error: aborting due to previous error
> 
> For more information about this error, try `rustc --explain E0463`.
> error: could not compile `openssl-sys`.
> warning: build failed, waiting for other jobs to finish...
> error: build failed
> ```
> 
> 

-- 
Efraim Flashner   <efraim@flashner.co.il>   אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

  parent reply	other threads:[~2020-10-24 19:48 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-10-21 11:16 Error in package building : error[E0463]: can't find crate for `openssl_src` Hamzeh Nasajpour
2020-10-21 12:46 ` John Soo
2020-10-21 13:37   ` Hamzeh Nasajpour
2020-10-21 13:40     ` John Soo
2020-10-21 13:46       ` Hamzeh Nasajpour
2020-10-21 13:57         ` Hamzeh Nasajpour
2020-10-21 14:37           ` John Soo
2020-10-22  8:36             ` Hamzeh Nasajpour
2020-10-24 19:47           ` Efraim Flashner [this message]
2020-10-25 10:02             ` Hamzeh Nasajpour
2020-11-08 19:32               ` Hamzeh Nasajpour

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20201024194707.GA984@E5400 \
    --to=efraim@flashner.co.il \
    --cc=h.nasajpour@pantherx.org \
    --cc=help-guix@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.