Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 498928 Details for
Bug 626272
dev-util/cargo-0.20.0 does not build with libressl > 2.6.0
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
ebuild patched for libressl-2.6.2
cargo-0.21.1-r1.ebuild (text/plain), 3.36 KB, created by
Sandino Araico Sanchez
on 2017-10-17 00:57:01 UTC
(
hide
)
Description:
ebuild patched for libressl-2.6.2
Filename:
MIME Type:
Creator:
Sandino Araico Sanchez
Created:
2017-10-17 00:57:01 UTC
Size:
3.36 KB
patch
obsolete
># Copyright 1999-2017 Gentoo Foundation ># Distributed under the terms of the GNU General Public License v2 > >EAPI=6 > >CARGO_SNAPSHOT_DATE="2017-10-15" >CRATES=" >advapi32-sys-0.2.0 >aho-corasick-0.5.3 >aho-corasick-0.6.3 >atty-0.2.2 >backtrace-0.3.2 >backtrace-sys-0.1.11 >bitflags-0.9.1 >bufstream-0.1.3 >cargotest-0.1.0 >cc-1.0.0 >cfg-if-0.1.2 >cmake-0.1.24 >crates-io-0.10.0 >crossbeam-0.2.10 >curl-0.4.7 >curl-sys-0.3.14 >dbghelp-sys-0.2.0 >docopt-0.8.1 >dtoa-0.4.1 >env_logger-0.4.3 >error-chain-0.11.0 >filetime-0.1.10 >flate2-0.2.19 >foreign-types-0.2.0 >fs2-0.4.2 >gcc-0.3.51 >git2-0.6.6 >git2-curl-0.7.0 >glob-0.2.11 >hamcrest-0.1.1 >hex-0.2.0 >idna-0.1.2 >itoa-0.3.1 >jobserver-0.1.6 >kernel32-sys-0.2.2 >lazy_static-0.2.8 >libc-0.2.25 >libgit2-sys-0.6.12 >libssh2-sys-0.2.6 >libz-sys-1.0.16 >log-0.3.8 >matches-0.1.6 >memchr-0.1.11 >memchr-1.0.1 >miniz-sys-0.1.9 >miow-0.2.1 >net2-0.2.29 >num-0.1.39 >num-bigint-0.1.39 >num-complex-0.1.38 >num-integer-0.1.34 >num-iter-0.1.33 >num-rational-0.1.38 >num-traits-0.1.39 >num_cpus-1.6.2 >openssl-0.9.20 >openssl-probe-0.1.1 >openssl-sys-0.9.20 >percent-encoding-1.0.0 >pkg-config-0.3.9 >psapi-sys-0.1.0 >quote-0.3.15 >rand-0.3.15 >regex-0.1.80 >regex-0.2.2 >regex-syntax-0.3.9 >regex-syntax-0.4.1 >rustc-demangle-0.1.4 >rustc-serialize-0.3.24 >scoped-tls-0.1.0 >semver-0.7.0 >semver-parser-0.7.0 >serde-1.0.9 >serde_derive-1.0.9 >serde_derive_internals-0.15.1 >serde_ignored-0.0.3 >serde_json-1.0.2 >shell-escape-0.1.3 >socket2-0.2.1 >strsim-0.6.0 >syn-0.11.11 >synom-0.11.3 >tar-0.4.13 >tempdir-0.3.5 >termcolor-0.3.2 >thread-id-2.0.0 >thread_local-0.2.7 >thread_local-0.3.4 >toml-0.4.2 >unicode-bidi-0.3.4 >unicode-normalization-0.1.5 >unicode-xid-0.0.4 >unreachable-1.0.0 >url-1.5.1 >utf8-ranges-0.1.3 >utf8-ranges-1.0.0 >vcpkg-0.2.2 >void-1.0.2 >winapi-0.2.8 >winapi-build-0.1.1 >wincolor-0.1.4 >ws2_32-sys-0.2.1 >" > >inherit cargo bash-completion-r1 versionator > >BOOTSTRAP_VERSION="0.$(($(get_version_component_range 2) - 1)).0" > >DESCRIPTION="The Rust's package manager" >HOMEPAGE="http://crates.io" >SRC_URI="https://github.com/rust-lang/cargo/archive/${PV}.tar.gz -> ${P}.tar.gz > $(cargo_crate_uris ${CRATES}) > x86? ( > https://static.rust-lang.org/dist/cargo-${BOOTSTRAP_VERSION}-i686-unknown-linux-gnu.tar.gz > ) > amd64? ( > https://static.rust-lang.org/dist/cargo-${BOOTSTRAP_VERSION}-x86_64-unknown-linux-gnu.tar.gz > )" > >RESTRICT="mirror" >LICENSE="|| ( MIT Apache-2.0 )" >SLOT="0" >KEYWORDS="~amd64 ~x86" > >IUSE="doc libressl" > >if [[ ${ARCH} = "amd64" ]]; then > TRIPLE="x86_64-unknown-linux-gnu" >else > TRIPLE="i686-unknown-linux-gnu" >fi > >COMMON_DEPEND="sys-libs/zlib > !libressl? ( dev-libs/openssl:0= ) > libressl? ( dev-libs/libressl:0= ) > net-libs/libssh2 > net-libs/http-parser" >RDEPEND="${COMMON_DEPEND} > !dev-util/cargo-bin > net-misc/curl[ssl]" >DEPEND="${COMMON_DEPEND} > >=virtual/rust-1.19.0 > dev-util/cmake > sys-apps/coreutils > sys-apps/diffutils > sys-apps/findutils > sys-apps/sed" > >PATCHES=( "${FILESDIR}/0.21.1-openssl-0.9.20.patch" ) > >src_configure() { > # Do nothing > echo "Configuring cargo..." >} > >src_compile() { > export CARGO_HOME="${ECARGO_HOME}" > local cargo="${WORKDIR}/cargo-${BOOTSTRAP_VERSION}-${TRIPLE}/cargo/bin/cargo" > ${cargo} build --release > > # Building HTML documentation > use doc && ${cargo} doc >} > >src_install() { > dobin target/release/cargo > > # Install HTML documentation > use doc && HTML_DOCS=("target/doc") > einstalldocs > > newbashcomp src/etc/cargo.bashcomp.sh cargo > insinto /usr/share/zsh/site-functions > doins src/etc/_cargo > doman src/etc/man/* >}
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 626272
:
486910
|
486912
|
497724
|
497726
|
498810
| 498928 |
499072
|
505066