diff options
author | Tomas Chvatal <scarabeus@gentoo.org> | 2013-04-19 09:38:32 +0000 |
---|---|---|
committer | Tomas Chvatal <scarabeus@gentoo.org> | 2013-04-19 09:38:32 +0000 |
commit | 31c065771e6bed26b80c3606ca46faad3e36f7a5 (patch) | |
tree | e252cbff298626946b985fc5c86bec8741856662 /dev-libs | |
parent | Version bump. Update line count for secure_getenv() which still looks safe to... (diff) | |
download | gentoo-2-31c065771e6bed26b80c3606ca46faad3e36f7a5.tar.gz gentoo-2-31c065771e6bed26b80c3606ca46faad3e36f7a5.tar.bz2 gentoo-2-31c065771e6bed26b80c3606ca46faad3e36f7a5.zip |
Version bump to latest. Cleanup live ebuild. Remove oldest.
(Portage version: 2.2.0_alpha173/cvs/Linux x86_64, signed Manifest commit with key 8EEE3BE8)
Diffstat (limited to 'dev-libs')
-rw-r--r-- | dev-libs/libixion/ChangeLog | 10 | ||||
-rw-r--r-- | dev-libs/libixion/libixion-0.3.0.ebuild | 36 | ||||
-rw-r--r-- | dev-libs/libixion/libixion-0.5.0.ebuild | 39 | ||||
-rw-r--r-- | dev-libs/libixion/libixion-9999.ebuild | 27 |
4 files changed, 60 insertions, 52 deletions
diff --git a/dev-libs/libixion/ChangeLog b/dev-libs/libixion/ChangeLog index cab2e556678f..b2974cd5407c 100644 --- a/dev-libs/libixion/ChangeLog +++ b/dev-libs/libixion/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-libs/libixion -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libixion/ChangeLog,v 1.2 2012/09/02 16:50:38 scarabeus Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libixion/ChangeLog,v 1.3 2013/04/19 09:38:32 scarabeus Exp $ + +*libixion-0.5.0 (19 Apr 2013) + + 19 Apr 2013; Tomáš Chvátal <scarabeus@gentoo.org> +libixion-0.5.0.ebuild, + -libixion-0.3.0.ebuild, libixion-9999.ebuild: + Version bump to latest. Cleanup live ebuild. Remove oldest. *libixion-9999 (02 Sep 2012) diff --git a/dev-libs/libixion/libixion-0.3.0.ebuild b/dev-libs/libixion/libixion-0.3.0.ebuild deleted file mode 100644 index 4b7289b263ab..000000000000 --- a/dev-libs/libixion/libixion-0.3.0.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libixion/libixion-0.3.0.ebuild,v 1.1 2012/09/02 16:24:27 scarabeus Exp $ - -EAPI=4 - -inherit autotools - -DESCRIPTION="General purpose formula parser & interpreter" -HOMEPAGE="http://gitorious.org/ixion/pages/Home" -SRC_URI="http://kohei.us/files/ixion/src/${P/-/_}.tar.bz2" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="static-libs" - -DEPEND="dev-util/mdds" -RDEPEND="${DEPEND}" - -S="${WORKDIR}/${P/-/_}" - -src_prepare() { - eautoreconf -} - -src_configure() { - econf \ - $(use_enable static-libs static) -} - -src_install() { - default - - find "${ED}" -name '*.la' -exec rm -f {} + -} diff --git a/dev-libs/libixion/libixion-0.5.0.ebuild b/dev-libs/libixion/libixion-0.5.0.ebuild new file mode 100644 index 000000000000..dea0f132a4ff --- /dev/null +++ b/dev-libs/libixion/libixion-0.5.0.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libixion/libixion-0.5.0.ebuild,v 1.1 2013/04/19 09:38:32 scarabeus Exp $ + +EAPI=5 + +EGIT_REPO_URI="git://gitorious.org/ixion/ixion.git" + +[[ ${PV} == 9999 ]] && GITECLASS="git-2 autotools" +inherit eutils ${GITECLASS} +unset GITECLASS + +DESCRIPTION="General purpose formula parser & interpreter" +HOMEPAGE="http://gitorious.org/ixion/pages/Home" +[[ ${PV} == 9999 ]] || SRC_URI="http://kohei.us/files/ixion/src/${P}.tar.bz2" + +LICENSE="MIT" +SLOT="0/0.5" +[[ ${PV} == 9999 ]] || \ +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="static-libs" + +RDEPEND="" +DEPEND=">=dev-util/mdds-0.7.1" + +src_prepare() { + [[ ${PV} == 9999 ]] && eautoreconf +} + +src_configure() { + econf \ + $(use_enable static-libs static) +} + +src_install() { + default + + prune_libtool_files --all +} diff --git a/dev-libs/libixion/libixion-9999.ebuild b/dev-libs/libixion/libixion-9999.ebuild index 7e12ad3b1d78..fe3a6f64bcb4 100644 --- a/dev-libs/libixion/libixion-9999.ebuild +++ b/dev-libs/libixion/libixion-9999.ebuild @@ -1,31 +1,30 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libixion/libixion-9999.ebuild,v 1.1 2012/09/02 16:50:38 scarabeus Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libixion/libixion-9999.ebuild,v 1.2 2013/04/19 09:38:32 scarabeus Exp $ -EAPI=4 +EAPI=5 EGIT_REPO_URI="git://gitorious.org/ixion/ixion.git" -[[ ${PV} == 9999 ]] && GITECLASS="git-2" -inherit autotools ${GITECLASS} +[[ ${PV} == 9999 ]] && GITECLASS="git-2 autotools" +inherit eutils ${GITECLASS} unset GITECLASS DESCRIPTION="General purpose formula parser & interpreter" HOMEPAGE="http://gitorious.org/ixion/pages/Home" -[[ ${PV} == 9999 ]] || SRC_URI="http://kohei.us/files/ixion/src/${P/-/_}.tar.bz2" +[[ ${PV} == 9999 ]] || SRC_URI="http://kohei.us/files/ixion/src/${P}.tar.bz2" LICENSE="MIT" -SLOT="0" -[[ ${PV} == 9999 ]] || KEYWORDS="~amd64 ~x86" +SLOT="0/0.5" +[[ ${PV} == 9999 ]] || \ +KEYWORDS="~amd64 ~ppc ~x86" IUSE="static-libs" -DEPEND="dev-util/mdds" -RDEPEND="${DEPEND}" - -S="${WORKDIR}/${P/-/_}" +RDEPEND="" +DEPEND=">=dev-util/mdds-0.7.1" src_prepare() { - eautoreconf + [[ ${PV} == 9999 ]] && eautoreconf } src_configure() { @@ -36,5 +35,5 @@ src_configure() { src_install() { default - find "${ED}" -name '*.la' -exec rm -f {} + + prune_libtool_files --all } |