diff options
author | Mike Gilbert <floppym@gentoo.org> | 2011-11-23 22:28:41 +0000 |
---|---|---|
committer | Mike Gilbert <floppym@gentoo.org> | 2011-11-23 22:28:41 +0000 |
commit | a2423ecfaebd4f7e73fb0ed77d01757062279712 (patch) | |
tree | 88883148b88734dafae23becd5baa10be253afa3 /dev-lang | |
parent | Remove obsolete sed call; the build system allows us to turn off -Werror. (diff) | |
download | gentoo-2-a2423ecfaebd4f7e73fb0ed77d01757062279712.tar.gz gentoo-2-a2423ecfaebd4f7e73fb0ed77d01757062279712.tar.bz2 gentoo-2-a2423ecfaebd4f7e73fb0ed77d01757062279712.zip |
Simplify setting of soname_version.
(Portage version: 2.2.0_alpha77/cvs/Linux x86_64)
Diffstat (limited to 'dev-lang')
-rw-r--r-- | dev-lang/v8/ChangeLog | 6 | ||||
-rw-r--r-- | dev-lang/v8/v8-3.7.7.ebuild | 9 | ||||
-rw-r--r-- | dev-lang/v8/v8-9999.ebuild | 10 |
3 files changed, 10 insertions, 15 deletions
diff --git a/dev-lang/v8/ChangeLog b/dev-lang/v8/ChangeLog index ed8dd42f6657..61baa10140bc 100644 --- a/dev-lang/v8/ChangeLog +++ b/dev-lang/v8/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-lang/v8 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/v8/ChangeLog,v 1.112 2011/11/23 22:23:20 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/v8/ChangeLog,v 1.113 2011/11/23 22:28:41 floppym Exp $ + + 23 Nov 2011; Mike Gilbert <floppym@gentoo.org> v8-3.7.7.ebuild, + v8-9999.ebuild: + Simplify setting of soname_version. 23 Nov 2011; Mike Gilbert <floppym@gentoo.org> v8-3.7.6.ebuild, v8-3.7.7.ebuild: diff --git a/dev-lang/v8/v8-3.7.7.ebuild b/dev-lang/v8/v8-3.7.7.ebuild index 0fdf1c9c4131..76610de78300 100644 --- a/dev-lang/v8/v8-3.7.7.ebuild +++ b/dev-lang/v8/v8-3.7.7.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/v8/v8-3.7.7.ebuild,v 1.3 2011/11/23 22:23:19 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/v8/v8-3.7.7.ebuild,v 1.4 2011/11/23 22:28:41 floppym Exp $ EAPI="4" @@ -49,12 +49,7 @@ src_compile() { esac mytarget=${myarch}.release - if [[ ${PV} == "9999" ]]; then - subversion_wc_info - soname_version="${PV}-${ESVN_WC_REVISION}" - else - soname_version="${PV}" - fi + soname_version="${PV}" local snapshot=on host-is-pax && snapshot=off diff --git a/dev-lang/v8/v8-9999.ebuild b/dev-lang/v8/v8-9999.ebuild index 8bb55c442612..6e9bfb5b8c02 100644 --- a/dev-lang/v8/v8-9999.ebuild +++ b/dev-lang/v8/v8-9999.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/v8/v8-9999.ebuild,v 1.22 2011/11/23 19:29:35 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/v8/v8-9999.ebuild,v 1.23 2011/11/23 22:28:41 floppym Exp $ EAPI="4" @@ -55,12 +55,8 @@ src_compile() { esac mytarget=${myarch}.release - if [[ ${PV} == "9999" ]]; then - subversion_wc_info - soname_version="${PV}.${ESVN_WC_REVISION}" - else - soname_version="${PV}" - fi + subversion_wc_info + soname_version="${PV}.${ESVN_WC_REVISION}" local snapshot=on host-is-pax && snapshot=off |