From: "Slawek Lis" <slis@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-visualization/visit/
Date: Wed, 30 Aug 2017 07:42:55 +0000 (UTC) [thread overview]
Message-ID: <1504078968.fa290567dae1d7ab68d85db7425985b56b08ea81.slis@gentoo> (raw)
commit: fa290567dae1d7ab68d85db7425985b56b08ea81
Author: Slawomir Lis <slis <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 30 07:42:19 2017 +0000
Commit: Slawek Lis <slis <AT> gentoo <DOT> org>
CommitDate: Wed Aug 30 07:42:48 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa290567
sci-visualization/visit: drop old
Package-Manager: Portage-2.3.8, Repoman-2.3.3
sci-visualization/visit/Manifest | 2 +-
sci-visualization/visit/visit-2.10.3.ebuild | 107 ----------------------------
2 files changed, 1 insertion(+), 108 deletions(-)
diff --git a/sci-visualization/visit/Manifest b/sci-visualization/visit/Manifest
index 8feaeb11e41..2b71009fc4e 100644
--- a/sci-visualization/visit/Manifest
+++ b/sci-visualization/visit/Manifest
@@ -1 +1 @@
-DIST visit2.10.3.tar.gz 89181392 SHA256 05018215c4727eb42d47bb5cc4ff937b2a2ccaca90d141bc7fa426a0843a5dbc SHA512 f7e74191e4ac07da3a1323f1e60581c4a2f8ef439c23a26156e45d8ec2fb4f6decc5593ba4556209ad275ceeb6ffaaccc87d5d623e341771ab97e382cf406c59 WHIRLPOOL 948edb4113f4c5b16e231429c9decc8207d5e9502e0b4ecb47abacc8594187509899cce1e2ee04a4f7ff8e678f8ded047d6ffabe95d92eca493336a943112050
+DIST visit2.12.3.tar.gz 2192737 SHA256 32437b17c50bf001462510f201db2cc7d3e5c8963ae2eb689b20b3f7d60aa35e SHA512 6a3746efb117c55b2403e78e75b5b67afb89e0695717b055b6bcf23c65f453564e09b283b5e6e5c98234196911c2c53898412be6e4c27c21e9fadf8947a9bd26 WHIRLPOOL fa1cf63cea41daf0e1ecce3e7b8c6aa7cc8dd712d35c68bdce730d11b57c5c930b002b8682cf100107cfc0081a2f01bfd3ca91e9d6ff8f3d310f674196c6937c
diff --git a/sci-visualization/visit/visit-2.10.3.ebuild b/sci-visualization/visit/visit-2.10.3.ebuild
deleted file mode 100644
index a606b27ca2a..00000000000
--- a/sci-visualization/visit/visit-2.10.3.ebuild
+++ /dev/null
@@ -1,107 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-PYTHON_COMPAT=( python2_7 )
-
-inherit cmake-utils python-single-r1
-
-DESCRIPTION="A software that delivers parallel interactive visualizations"
-HOMEPAGE="https://wci.llnl.gov/codes/visit/home.html"
-SRC_URI="http://portal.nersc.gov/svn/visit/trunk/releases/${PV}/${PN}${PV}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="cgns debug hdf5 mpi netcdf silo tcmalloc threads xdmf2"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-RDEPEND="
- ${PYTHON_DEPS}
- tcmalloc? ( dev-util/google-perftools )
- cgns? ( sci-libs/cgnslib )
- hdf5? ( sci-libs/hdf5 )
- netcdf? ( sci-libs/netcdf )
- silo? ( sci-libs/silo )
- >=sci-libs/vtk-6.0.0[imaging,mpi=,python,rendering,qt4,xdmf2?,${PYTHON_USEDEP}]
- sys-libs/zlib"
-DEPEND="${RDEPEND}
- xdmf2? ( sci-libs/xdmf2 )
-"
-
-S="${WORKDIR}/${PN}${PV}/src"
-PATCHES=(
- "${FILESDIR}/${P}-findpython.patch"
- "${FILESDIR}/${P}-findsilo.patch"
- "${FILESDIR}/${P}-findvtk.patch"
- "${FILESDIR}/${P}-vtklibs.patch"
- "${FILESDIR}/${P}-dont_symlink_visit_dir.patch"
- "${FILESDIR}/${P}-cmakelist.patch"
-)
-
-src_prepare() {
- for p in ${PATCHES[@]} ; do
- epatch "${p}"
- done
- if use mpi ; then
- epatch "${FILESDIR}/${P}-vtkmpi.patch"
- fi
-
- sed -i 's/exec python $frontendlauncherpy $0 ${1+"$@"}/exec '${EPYTHON}' $frontendlauncherpy $0 ${1+"$@"}/g' "bin/frontendlauncher"
-}
-
-src_configure() {
- local mycmakeargs=(
- -DCMAKE_INSTALL_PREFIX=/opt/visit
- -DPYTHON_INCLUDE_DIR="$(python_get_includedir)"
- -DPYTHON_DIR="${EPREFIX}/usr"
- -DVISIT_PYTHON_SKIP_INSTALL=true
- -DVISIT_VTK_SKIP_INSTALL=true
- -DQT_BIN="${EPREFIX}/usr/bin"
- -DVISIT_ZLIB_DIR="${EPREFIX}/usr"
- -DVISIT_HEADERS_SKIP_INSTALL=false
- $(cmake-utils_use threads VISIT_THREAD)
- )
- if use hdf5; then
- mycmakeargs+=( -DHDF5_DIR="${EPREFIX}/usr" )
- fi
- if use tcmalloc; then
- mycmakeargs+=( -DTCMALLOC_DIR="${EPREFIX}/usr" )
- fi
- if use cgns; then
- mycmakeargs+=( -DCGNS_DIR="${EPREFIX}/usr" )
- fi
- if use silo; then
- mycmakeargs+=( -DSILO_DIR="${EPREFIX}/usr" )
- fi
- if use netcdf; then
- mycmakeargs+=( -DNETCDF_DIR="${EPREFIX}/usr" )
- fi
- if use xdmf2; then
- mycmakeargs+=( -DOPT_VTK_MODS="vtklibxml2" -DVISIT_XDMF_DIR=/usr/ )
- fi
-
- cmake-utils_src_configure
-}
-
-src_install() {
- cmake-utils_src_install
-
- PACKAGES_DIR="${ROOT}opt/${PN}/${PV}/linux-$(arch)/lib/site-packages"
- cd "${ED}${PACKAGES_DIR}"
- for i in *; do
- dosym "${PACKAGES_DIR}/${i}" "$(python_get_sitedir)/$i"
- done
-
- cat > "${T}"/99visit <<- EOF
- PATH=${EPREFIX}/opt/${PN}/bin
- LDPATH=${EPREFIX}/opt/${PN}/${PV}/linux-$(arch)/lib/
- EOF
- doenvd "${T}"/99visit
-}
-
-pkg_postinst () {
- ewarn "Remember to run "
- ewarn "env-update && source /etc/profile"
- ewarn "if you want to use visit in already opened session"
-}
next reply other threads:[~2017-08-30 7:42 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-08-30 7:42 Slawek Lis [this message]
-- strict thread matches above, loose matches on Subject: below --
2019-09-14 16:33 [gentoo-commits] repo/gentoo:master commit in: sci-visualization/visit/ Richard Yao
2018-06-25 4:44 Andreas Sturmlechner
2018-06-25 4:44 Andreas Sturmlechner
2018-06-25 4:44 Andreas Sturmlechner
2018-06-25 4:44 Andreas Sturmlechner
2018-06-25 4:44 Andreas Sturmlechner
2017-11-17 7:50 Slawek Lis
2017-09-21 13:57 Michael Palimaka
2017-08-30 7:42 Slawek Lis
2017-08-16 10:28 Slawek Lis
2017-08-14 5:32 Slawek Lis
2017-06-05 6:26 Slawek Lis
2016-05-13 4:46 Slawek Lis
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1504078968.fa290567dae1d7ab68d85db7425985b56b08ea81.slis@gentoo \
--to=slis@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox