diff options
author | Christoph Junghans <junghans@gentoo.org> | 2017-07-17 08:52:35 -0600 |
---|---|---|
committer | Christoph Junghans <junghans@gentoo.org> | 2017-07-17 08:57:53 -0600 |
commit | 118d8d3cc94dd0553de0fc287b7a155982368f74 (patch) | |
tree | e0f9a7e7e11637b6b0e9094a71c09a43d264539b /sci-physics | |
parent | app-editors/moe: remove myself from maintainers (diff) | |
download | gentoo-118d8d3cc94dd0553de0fc287b7a155982368f74.tar.gz gentoo-118d8d3cc94dd0553de0fc287b7a155982368f74.tar.bz2 gentoo-118d8d3cc94dd0553de0fc287b7a155982368f74.zip |
sci-physics/espresso: remove old (bug #595124, #625338)
Package-Manager: Portage-2.3.6, Repoman-2.3.1
Diffstat (limited to 'sci-physics')
-rw-r--r-- | sci-physics/espresso/Manifest | 2 | ||||
-rw-r--r-- | sci-physics/espresso/espresso-3.3.0.ebuild | 135 | ||||
-rw-r--r-- | sci-physics/espresso/espresso-3.3.1.ebuild | 132 |
3 files changed, 0 insertions, 269 deletions
diff --git a/sci-physics/espresso/Manifest b/sci-physics/espresso/Manifest index 0b243949f69d..65391c63a9d0 100644 --- a/sci-physics/espresso/Manifest +++ b/sci-physics/espresso/Manifest @@ -1,3 +1 @@ -DIST espresso-3.3.0.tar.gz 18952622 SHA256 64ea2684e4fc0d31c11969e49ec74c25138b4f74686f67b93c7e1103833ff08f SHA512 90edbbdc8d7f7247b5179fce0fad796a9488f82a1754519918c6588c932050675397d36e0167aae770db9803b6c22f7d14d23c04cf307d10802afd3d5d5edc20 WHIRLPOOL 3e9547f2da6676edf3de415fa848301f2959c3dfeef1c3f461b4e1eb202224ead7635748b47d42edb9f661dc5d672f38168e15ab6c55a9c9d7f102ae11f8574e -DIST espresso-3.3.1.tar.gz 18986557 SHA256 8576fc1fe59e04dec4fa0d354b7ec52365622860099624f36bddbb2b472c0c70 SHA512 3fc6e681e625f2cf98ac0aa3b1c16fbe17b9f9aa8f79f2e89926501cbb68621d171d6c6a22f42f9f60298ee31520ca712ace57d57738d2cf76f7ae2f7c0436b1 WHIRLPOOL 7075cbb8fba944cda8290a3f27650fcdd2b466495c6d4697ae3074c60ded86e08ea4ea0d9336c8ca859f7b3303cd496dba2972c9c8205a7b3cafbe36fcfc8a40 DIST espresso-4.0_pre20170228.tar.gz 23621395 SHA256 01e6770949db7bfad9dba3776a644dd0c0758e3781edf23363d7d2671ee14b01 SHA512 7d35648d447af3282a76d9d68cfe681734ec18794a38b09e0ae9233f63b62450c643643bcec999ea9c7d4ba070d4fc6f8dc64db8145f536ae017a67ff2d0e0e2 WHIRLPOOL 02ef0d937726a1abe3f8df4f19ed62008b69494304cf4d569d74936d834bcb20e4a0bd5d6edff009c74c8e16f6b14f9c794ff209c8e39e6d8eed785e5356d6d6 diff --git a/sci-physics/espresso/espresso-3.3.0.ebuild b/sci-physics/espresso/espresso-3.3.0.ebuild deleted file mode 100644 index 85a3ab47bcae..000000000000 --- a/sci-physics/espresso/espresso-3.3.0.ebuild +++ /dev/null @@ -1,135 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -PYTHON_COMPAT=( python2_7 ) - -inherit autotools-utils python-single-r1 savedconfig - -DESCRIPTION="Extensible Simulation Package for Research on Soft matter" -HOMEPAGE="http://espressomd.org" - -if [[ ${PV} = 9999 ]]; then - EGIT_REPO_URI="git://git.savannah.nongnu.org/espressomd.git" - EGIT_BRANCH="master" - AUTOTOOLS_AUTORECONF=1 - inherit git-r3 - KEYWORDS="" -else - SRC_URI="mirror://nongnu/${PN}md/${P}.tar.gz" - KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-macos" -fi - -LICENSE="GPL-3" -SLOT="0" -IUSE="X cuda doc examples +fftw mpi packages python test -tk" - -REQUIRED_USE=" - python? ( ${PYTHON_REQUIRED_USE} ) - tk? ( X )" - -RESTRICT="tk? ( test )" - -RDEPEND=" - python? ( - ${PYTHON_DEPS} - dev-python/cython[${PYTHON_USEDEP}] - dev-python/numpy[${PYTHON_USEDEP}] - ) - dev-lang/tcl:0= - cuda? ( >=dev-util/nvidia-cuda-toolkit-4.2.9-r1 ) - fftw? ( sci-libs/fftw:3.0 ) - mpi? ( virtual/mpi ) - packages? ( dev-tcltk/tcllib ) - tk? ( >=dev-lang/tk-8.4.18-r1:0= ) - X? ( x11-libs/libX11 )" - -DEPEND="${RDEPEND} - doc? ( - app-doc/doxygen[dot] - dev-texlive/texlive-latexextra - virtual/latex-base )" - -DOCS=( AUTHORS NEWS README ChangeLog ) -PATCHES=( "${FILESDIR}/${P}-cython-0.22.patch" ) - -pkg_setup() { - use python && python-single-r1_pkg_setup -} - -src_prepare() { - use cuda && cuda_src_prepare - autotools-utils_src_prepare -} - -src_configure() { - myeconfargs=( - $(use_with fftw) \ - $(use_with cuda) \ - $(use_with python python-interface) \ - $(use_with mpi) \ - $(use_with tk) \ - $(use_with X x) - ) - CXX=$(usex mpi "mpic++" "$(tc-getCXX)") autotools-utils_src_configure - restore_config myconfig.hpp -} - -src_compile() { - autotools-utils_src_compile - use doc && autotools-utils_src_compile doxygen - [[ ${PV} = 9999 ]] && use doc && autotools-utils_src_compile ug dg tutorials -} - -src_install() { - local i - - autotools-utils_src_install - - insinto /usr/share/${PN} - doins ${AUTOTOOLS_BUILD_DIR}/myconfig-sample.hpp - - save_config ${AUTOTOOLS_BUILD_DIR}/src/core/myconfig-final.hpp - - if use doc; then - if [[ ${PV} = 9999 ]] ; then - newdoc "${AUTOTOOLS_BUILD_DIR}"/doc/dg/dg.pdf developer_guide.pdf - newdoc "${AUTOTOOLS_BUILD_DIR}"/doc/ug/ug.pdf user_guide.pdf - for i in "${AUTOTOOLS_BUILD_DIR}"/doc/tutorials/*/[0-9]*.pdf; do - newdoc "${i}" "tutorial_${i##*/}" - done - else - newdoc "${S}"/doc/ug/ug.pdf user_guide.pdf - for i in "${S}"/doc/tutorials/*/[0-9]*.pdf; do - newdoc "${i}" "tutorial_${i##*/}" - done - fi - dohtml -r "${AUTOTOOLS_BUILD_DIR}"/doc/doxygen/html/* - fi - - if use examples; then - insinto /usr/share/${PN}/examples - doins -r samples/* - fi - - if use packages; then - insinto /usr/share/${PN}/packages - doins -r packages/* - fi -} - -pkg_postinst() { - echo - elog "Please read and cite:" - elog "ESPResSo, Comput. Phys. Commun. 174(9) ,704, 2006." - elog "http://dx.doi.org/10.1016/j.cpc.2005.10.005" - echo - elog "If you need more features, change" - elog "/etc/portage/savedconfig/${CATEGORY}/${PF}" - elog "and reemerge with USE=savedconfig" - echo - elog "For a full feature list see:" - elog "/usr/share/${PN}/myconfig-sample.h" - echo -} diff --git a/sci-physics/espresso/espresso-3.3.1.ebuild b/sci-physics/espresso/espresso-3.3.1.ebuild deleted file mode 100644 index f33992f75236..000000000000 --- a/sci-physics/espresso/espresso-3.3.1.ebuild +++ /dev/null @@ -1,132 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python2_7 ) - -inherit python-single-r1 savedconfig - -DESCRIPTION="Extensible Simulation Package for Research on Soft matter" -HOMEPAGE="http://espressomd.org" - -if [[ ${PV} = 9999 ]]; then - EGIT_REPO_URI="git://github.com/espressomd/espresso.git https://github.com/espressomd/espresso.git" - EGIT_BRANCH="master" - inherit autotools git-r3 - KEYWORDS="" -else - SRC_URI="mirror://nongnu/${PN}md/${P}.tar.gz" - KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-macos" -fi - -LICENSE="GPL-3" -SLOT="0" -IUSE="X cuda doc examples +fftw mpi packages python test -tk" - -REQUIRED_USE=" - python? ( ${PYTHON_REQUIRED_USE} ) - tk? ( X )" - -RESTRICT="tk? ( test )" - -RDEPEND=" - python? ( - ${PYTHON_DEPS} - dev-python/cython[${PYTHON_USEDEP}] - dev-python/numpy[${PYTHON_USEDEP}] - ) - dev-lang/tcl:0= - cuda? ( >=dev-util/nvidia-cuda-toolkit-4.2.9-r1 ) - fftw? ( sci-libs/fftw:3.0 ) - mpi? ( virtual/mpi ) - packages? ( dev-tcltk/tcllib ) - tk? ( >=dev-lang/tk-8.4.18-r1:0= ) - X? ( x11-libs/libX11 )" - -DEPEND="${RDEPEND} - doc? ( - app-doc/doxygen[dot] - dev-texlive/texlive-latexextra - virtual/latex-base )" - -DOCS=( AUTHORS NEWS README ChangeLog ) - -pkg_setup() { - use python && python-single-r1_pkg_setup -} - -src_prepare() { - use cuda && cuda_src_prepare - default -} - -src_configure() { - [[ ${PV} = 9999 ]] && eautoreconf - CXX=$(usex mpi "mpic++" "$(tc-getCXX)") econf \ - $(use_with fftw) \ - $(use_with cuda) \ - $(use_with python python-interface) \ - $(use_with mpi) \ - $(use_with tk) \ - $(use_with X x) - restore_config myconfig.hpp -} - -src_compile() { - default - use doc && emake doxygen - [[ ${PV} = 9999 ]] && use doc && emake ug dg tutorials -} - -src_install() { - local i - - default - - insinto /usr/share/${PN} - doins myconfig-sample.hpp - - save_config src/core/myconfig-final.hpp - - if use doc; then - if [[ ${PV} = 9999 ]] ; then - newdoc doc/dg/dg.pdf developer_guide.pdf - newdoc doc/ug/ug.pdf user_guide.pdf - for i in doc/tutorials/*/[0-9]*.pdf; do - newdoc "${i}" "tutorial_${i##*/}" - done - else - newdoc "${S}"/doc/ug/ug.pdf user_guide.pdf - for i in "${S}"/doc/tutorials/*/[0-9]*.pdf; do - newdoc "${i}" "tutorial_${i##*/}" - done - fi - dodoc -r doc/doxygen/html - fi - - if use examples; then - insinto /usr/share/${PN}/examples - doins -r samples/* - fi - - if use packages; then - insinto /usr/share/${PN}/packages - doins -r packages/* - fi -} - -pkg_postinst() { - echo - elog "Please read and cite:" - elog "ESPResSo, Comput. Phys. Commun. 174(9) ,704, 2006." - elog "http://dx.doi.org/10.1016/j.cpc.2005.10.005" - echo - elog "If you need more features, change" - elog "/etc/portage/savedconfig/${CATEGORY}/${PF}" - elog "and reemerge with USE=savedconfig" - echo - elog "For a full feature list see:" - elog "/usr/share/${PN}/myconfig-sample.h" - echo -} |