summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Savchenko <bircoph@gentoo.org>2015-06-04 18:10:45 +0000
committerAndrew Savchenko <bircoph@gentoo.org>2015-06-04 18:10:45 +0000
commit5386ffc0cbd87d897ff4d373e2616e1551843363 (patch)
treef27e229309f5aafab876f39c3802ff0ec207d7ce /sci-physics
parentversion bump for 6.x branch (diff)
downloadgentoo-2-5386ffc0cbd87d897ff4d373e2616e1551843363.tar.gz
gentoo-2-5386ffc0cbd87d897ff4d373e2616e1551843363.tar.bz2
gentoo-2-5386ffc0cbd87d897ff4d373e2616e1551843363.zip
remove old versions
Signed-off-by: Andrew Savchenko <bircoph@gentoo.org> (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 565953B95372756C)
Diffstat (limited to 'sci-physics')
-rw-r--r--sci-physics/lhapdf/ChangeLog6
-rw-r--r--sci-physics/lhapdf/lhapdf-6.0.5.ebuild68
-rw-r--r--sci-physics/lhapdf/lhapdf-6.1.0.ebuild68
-rw-r--r--sci-physics/lhapdf/lhapdf-6.1.2.ebuild68
-rw-r--r--sci-physics/lhapdf/lhapdf-6.1.3.ebuild68
5 files changed, 5 insertions, 273 deletions
diff --git a/sci-physics/lhapdf/ChangeLog b/sci-physics/lhapdf/ChangeLog
index e01878bf58e2..62b58c37249a 100644
--- a/sci-physics/lhapdf/ChangeLog
+++ b/sci-physics/lhapdf/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for sci-physics/lhapdf
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-physics/lhapdf/ChangeLog,v 1.31 2015/06/04 18:08:53 bircoph Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-physics/lhapdf/ChangeLog,v 1.32 2015/06/04 18:10:45 bircoph Exp $
+
+ 04 Jun 2015; Andrew Savchenko <bircoph@gentoo.org> -lhapdf-6.0.5.ebuild,
+ -lhapdf-6.1.0.ebuild, -lhapdf-6.1.2.ebuild, -lhapdf-6.1.3.ebuild:
+ Remove old revsions.
*lhapdf-6.1.5 (04 Jun 2015)
diff --git a/sci-physics/lhapdf/lhapdf-6.0.5.ebuild b/sci-physics/lhapdf/lhapdf-6.0.5.ebuild
deleted file mode 100644
index 0b612c4d063b..000000000000
--- a/sci-physics/lhapdf/lhapdf-6.0.5.ebuild
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-physics/lhapdf/lhapdf-6.0.5.ebuild,v 1.2 2015/04/08 18:23:27 mgorny Exp $
-
-EAPI=5
-
-AUTOTOOLS_IN_SOURCE_BUILD=yes
-PYTHON_COMPAT=( python{2_7,3_3} )
-
-inherit versionator autotools-utils distutils-r1
-
-MY_PV=$(get_version_component_range 1-3 ${PV})
-MY_PF=LHAPDF-${MY_PV}
-
-DESCRIPTION="Les Houches Parton Density Function unified library"
-HOMEPAGE="http://projects.hepforge.org/lhapdf/"
-SRC_URI="http://www.hepforge.org/archive/lhapdf/${MY_PF}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-
-IUSE="doc examples python static-libs"
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-
-RDEPEND="
- dev-libs/boost
- dev-cpp/yaml-cpp
- python? ( ${PYTHON_DEPS} )"
-DEPEND="${RDEPEND}
- doc? ( app-doc/doxygen[latex] )"
-
-S="${WORKDIR}/${MY_PF}"
-
-src_configure() {
- autotools-utils_src_configure $(use_enable python)
- if use python; then
- cd "${S}/wrappers/python" && distutils-r1_src_prepare
- fi
-}
-
-src_compile() {
- autotools-utils_src_compile all $(use doc && echo doxy)
- if use python; then
- cd "${S}/wrappers/python" && distutils-r1_src_compile
- fi
-}
-
-src_test() {
- autotools-utils_src_compile -C tests
-}
-
-src_install() {
- autotools-utils_src_install
- use doc && dohtml -r doc/doxygen/*
- if use examples; then
- insinto /usr/share/doc/${PF}/examples
- doins examples/*.cc
- fi
- if use python; then
- cd "${S}/wrappers/python" && distutils-r1_src_install
- fi
-}
-
-pkg_postinst() {
- elog "To install data files, download them into ${EROOT%/}/usr/share/LHAPDF:"
- elog "http://www.hepforge.org/archive/${PN}/pdfsets/${PV}"
-}
diff --git a/sci-physics/lhapdf/lhapdf-6.1.0.ebuild b/sci-physics/lhapdf/lhapdf-6.1.0.ebuild
deleted file mode 100644
index 72f99e668839..000000000000
--- a/sci-physics/lhapdf/lhapdf-6.1.0.ebuild
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-physics/lhapdf/lhapdf-6.1.0.ebuild,v 1.2 2015/04/08 18:23:27 mgorny Exp $
-
-EAPI=5
-
-AUTOTOOLS_IN_SOURCE_BUILD=yes
-PYTHON_COMPAT=( python{2_7,3_3} )
-
-inherit versionator autotools-utils distutils-r1
-
-MY_PV=$(get_version_component_range 1-3 ${PV})
-MY_PF=LHAPDF-${MY_PV}
-
-DESCRIPTION="Les Houches Parton Density Function unified library"
-HOMEPAGE="http://projects.hepforge.org/lhapdf/"
-SRC_URI="http://www.hepforge.org/archive/lhapdf/${MY_PF}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-
-IUSE="doc examples python static-libs"
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-
-RDEPEND="
- dev-libs/boost:0=
- python? ( ${PYTHON_DEPS} )"
-DEPEND="${RDEPEND}
- doc? ( app-doc/doxygen[latex] )"
-
-S="${WORKDIR}/${MY_PF}"
-
-src_configure() {
- autotools-utils_src_configure $(use_enable python)
- if use python; then
- cd "${S}/wrappers/python" && distutils-r1_src_prepare
- fi
-}
-
-src_compile() {
- autotools-utils_src_compile all $(use doc && echo doxy)
- if use python; then
- cd "${S}/wrappers/python" && distutils-r1_src_compile
- fi
-}
-
-src_test() {
- autotools-utils_src_compile -C tests
-}
-
-src_install() {
- autotools-utils_src_install
- use doc && dohtml -r doc/doxygen/*
- if use examples; then
- insinto /usr/share/doc/${PF}/examples
- doins examples/*.cc
- fi
- if use python; then
- cd "${S}/wrappers/python" && distutils-r1_src_install
- fi
-}
-
-pkg_postinst() {
- elog "Download data files from:"
- elog "http://www.hepforge.org/archive/${PN}/pdfsets/$(get_version_component_range 1-2 ${PV})"
- elog "and untar them into ${EROOT%/}/usr/share/LHAPDF"
-}
diff --git a/sci-physics/lhapdf/lhapdf-6.1.2.ebuild b/sci-physics/lhapdf/lhapdf-6.1.2.ebuild
deleted file mode 100644
index 2c9c1244a1ba..000000000000
--- a/sci-physics/lhapdf/lhapdf-6.1.2.ebuild
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-physics/lhapdf/lhapdf-6.1.2.ebuild,v 1.2 2015/04/08 18:23:27 mgorny Exp $
-
-EAPI=5
-
-AUTOTOOLS_IN_SOURCE_BUILD=yes
-PYTHON_COMPAT=( python{2_7,3_3} )
-
-inherit versionator autotools-utils distutils-r1
-
-MY_PV=$(get_version_component_range 1-3 ${PV})
-MY_PF=LHAPDF-${MY_PV}
-
-DESCRIPTION="Les Houches Parton Density Function unified library"
-HOMEPAGE="http://lhapdf.hepforge.org/"
-SRC_URI="http://www.hepforge.org/archive/lhapdf/${MY_PF}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-
-IUSE="doc examples python static-libs"
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-
-RDEPEND="
- dev-libs/boost:0=
- python? ( ${PYTHON_DEPS} )"
-DEPEND="${RDEPEND}
- doc? ( app-doc/doxygen[latex] )"
-
-S="${WORKDIR}/${MY_PF}"
-
-src_configure() {
- autotools-utils_src_configure $(use_enable python)
- if use python; then
- cd "${S}/wrappers/python" && distutils-r1_src_prepare
- fi
-}
-
-src_compile() {
- autotools-utils_src_compile all $(use doc && echo doxy)
- if use python; then
- cd "${S}/wrappers/python" && distutils-r1_src_compile
- fi
-}
-
-src_test() {
- autotools-utils_src_compile -C tests
-}
-
-src_install() {
- autotools-utils_src_install
- use doc && dohtml -r doc/doxygen/*
- if use examples; then
- insinto /usr/share/doc/${PF}/examples
- doins examples/*.cc
- fi
- if use python; then
- cd "${S}/wrappers/python" && distutils-r1_src_install
- fi
-}
-
-pkg_postinst() {
- elog "Download data files from:"
- elog "http://www.hepforge.org/archive/${PN}/pdfsets/$(get_version_component_range 1-2 ${PV})"
- elog "and untar them into ${EROOT%/}/usr/share/LHAPDF"
-}
diff --git a/sci-physics/lhapdf/lhapdf-6.1.3.ebuild b/sci-physics/lhapdf/lhapdf-6.1.3.ebuild
deleted file mode 100644
index 114ccb943fff..000000000000
--- a/sci-physics/lhapdf/lhapdf-6.1.3.ebuild
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-physics/lhapdf/lhapdf-6.1.3.ebuild,v 1.3 2015/04/08 18:23:27 mgorny Exp $
-
-EAPI=5
-
-AUTOTOOLS_IN_SOURCE_BUILD=yes
-PYTHON_COMPAT=( python{2_7,3_3,3_4} )
-
-inherit versionator autotools-utils distutils-r1
-
-MY_PV=$(get_version_component_range 1-3 ${PV})
-MY_PF=LHAPDF-${MY_PV}
-
-DESCRIPTION="Les Houches Parton Density Function unified library"
-HOMEPAGE="http://lhapdf.hepforge.org/"
-SRC_URI="http://www.hepforge.org/archive/lhapdf/${MY_PF}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-
-IUSE="doc examples python static-libs"
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-
-RDEPEND="
- dev-libs/boost:0=
- python? ( ${PYTHON_DEPS} )"
-DEPEND="${RDEPEND}
- doc? ( app-doc/doxygen[latex] )"
-
-S="${WORKDIR}/${MY_PF}"
-
-src_configure() {
- autotools-utils_src_configure $(use_enable python)
- if use python; then
- cd "${S}/wrappers/python" && distutils-r1_src_prepare
- fi
-}
-
-src_compile() {
- autotools-utils_src_compile all $(use doc && echo doxy)
- if use python; then
- cd "${S}/wrappers/python" && distutils-r1_src_compile
- fi
-}
-
-src_test() {
- autotools-utils_src_compile -C tests
-}
-
-src_install() {
- autotools-utils_src_install
- use doc && dohtml -r doc/doxygen/*
- if use examples; then
- insinto /usr/share/doc/${PF}/examples
- doins examples/*.cc
- fi
- if use python; then
- cd "${S}/wrappers/python" && distutils-r1_src_install
- fi
-}
-
-pkg_postinst() {
- elog "Download data files from:"
- elog "http://www.hepforge.org/archive/${PN}/pdfsets/$(get_version_component_range 1-2 ${PV})"
- elog "and untar them into ${EROOT%/}/usr/share/LHAPDF"
-}