jauhien     15/02/10 11:54:53

  Modified:             ChangeLog
  Added:                rust-bin-1.0.0_alpha.ebuild
  Removed:              rust-bin-0.12.0.ebuild rust-bin-999.ebuild
  Log:
  version bump, move live ebuild to rust overlay
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
0xB2EFA1D4)

Revision  Changes    Path
1.2                  dev-lang/rust-bin/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/rust-bin/ChangeLog?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/rust-bin/ChangeLog?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/rust-bin/ChangeLog?r1=1.1&r2=1.2

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/rust-bin/ChangeLog,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ChangeLog   18 Oct 2014 12:50:48 -0000      1.1
+++ ChangeLog   10 Feb 2015 11:54:53 -0000      1.2
@@ -1,6 +1,13 @@
 # ChangeLog for dev-lang/rust-bin
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/rust-bin/ChangeLog,v 1.1 
2014/10/18 12:50:48 jauhien Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/rust-bin/ChangeLog,v 1.2 
2015/02/10 11:54:53 jauhien Exp $
+
+*rust-bin-1.0.0_alpha (10 Feb 2015)
+
+  10 Feb 2015; Jauhien Piatlicki <[email protected]>
+  +rust-bin-1.0.0_alpha.ebuild, -files/rust-bin-0.12.0-no-ldconfig.patch,
+  -rust-bin-0.12.0.ebuild, -rust-bin-999.ebuild:
+  version bump, move live ebuild to rust overlay
 
 *rust-bin-999 (18 Oct 2014)
 *rust-bin-0.12.0 (18 Oct 2014)



1.1                  dev-lang/rust-bin/rust-bin-1.0.0_alpha.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/rust-bin/rust-bin-1.0.0_alpha.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/rust-bin/rust-bin-1.0.0_alpha.ebuild?rev=1.1&content-type=text/plain

Index: rust-bin-1.0.0_alpha.ebuild
===================================================================
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-lang/rust-bin/rust-bin-1.0.0_alpha.ebuild,v 1.1 
2015/02/10 11:54:53 jauhien Exp $

EAPI="5"

inherit eutils

MY_PV="1.0.0-alpha"
DESCRIPTION="Systems programming language from Mozilla"
HOMEPAGE="http://www.rust-lang.org/";
SRC_URI="amd64? ( 
http://static.rust-lang.org/dist/rust-${MY_PV}-x86_64-unknown-linux-gnu.tar.gz )
        x86? ( 
http://static.rust-lang.org/dist/rust-${MY_PV}-i686-unknown-linux-gnu.tar.gz )"

LICENSE="|| ( MIT Apache-2.0 ) BSD-1 BSD-2 BSD-4 UoI-NCSA"
SLOT="0"
KEYWORDS="~amd64 ~x86"

IUSE="emacs vim-syntax zsh-completion"

DEPEND=">=app-admin/eselect-rust-0.2_pre20150206
        !dev-lang/rust:0
"
RDEPEND="${DEPEND}"

src_unpack() {
        default

        local postfix
        use amd64 && postfix=x86_64-unknown-linux-gnu
        use x86 && postfix=i686-unknown-linux-gnu
        mv "${WORKDIR}/rust-${MY_PV}-${postfix}" "${S}" || die
}

src_install() {
        ./install.sh \
                --disable-verify \
                --prefix="${D}/opt/${P}" \
                --mandir="${D}/usr/share/${P}/man" \
                --disable-ldconfig

        local rustc=rustc-bin-${PV}
        local rustdoc=rustdoc-bin-${PV}
        local rustgdb=rust-gdb-bin-${PV}

        mv "${D}/opt/${P}/bin/rustc" "${D}/opt/${P}/bin/${rustc}" || die
        mv "${D}/opt/${P}/bin/rustdoc" "${D}/opt/${P}/bin/${rustdoc}" || die
        mv "${D}/opt/${P}/bin/rust-gdb" "${D}/opt/${P}/bin/${rustgdb}" || die

        dosym "/opt/${P}/bin/${rustc}" "/usr/bin/${rustc}"
        dosym "/opt/${P}/bin/${rustdoc}" "/usr/bin/${rustdoc}"
        dosym "/opt/${P}/bin/${rustgdb}" "/usr/bin/${rustgdb}"

        cat <<-EOF > "${T}"/50${P}
        LDPATH="/opt/${P}/lib"
        MANPATH="/usr/share/${P}/man"
        EOF
        doenvd "${T}"/50${P}

        dodir /etc/env.d/rust
        touch "${D}/etc/env.d/rust/provider-${P}" || die
}

pkg_postinst() {
        eselect rust update --if-unset

        elog "Rust uses slots now, use 'eselect rust list'"
        elog "and 'eselect rust set' to list and set rust version."
        elog "For more information see 'eselect rust help'"
        elog "and http://wiki.gentoo.org/wiki/Project:Eselect/User_guide";

        elog "Rust installs a helper script for calling GDB now,"
        elog "for your convenience it is installed under 
/usr/bin/rust-gdb-bin-${PV},"

        if has_version app-editors/emacs || has_version app-editors/emacs-vcs; 
then
                elog "install app-emacs/rust-mode to get emacs support for 
rust."
        fi

        if has_version app-editors/gvim || has_version app-editors/vim; then
                elog "install app-vim/rust-mode to get vim support for rust."
        fi

        if has_version 'app-shells/zsh'; then
                elog "install app-shells/rust-zshcomp to get zsh completion for 
rust."
        fi
}

pkg_postrm() {
        eselect rust unset --if-invalid
}




Reply via email to