From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A6CEA1382C5 for ; Sun, 18 Apr 2021 07:06:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2E1ACE0867; Sun, 18 Apr 2021 07:06:03 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 12CA3E086B for ; Sun, 18 Apr 2021 07:06:03 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DF6CD335D79 for ; Sun, 18 Apr 2021 07:06:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6CCF173A for ; Sun, 18 Apr 2021 07:05:58 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1618729549.54005446760ee91f203143d546e0bb4c3869054f.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-physics/lammps/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-physics/lammps/lammps-20200303.ebuild X-VCS-Directories: sci-physics/lammps/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 54005446760ee91f203143d546e0bb4c3869054f X-VCS-Branch: master Date: Sun, 18 Apr 2021 07:05:58 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: da17bd1d-c384-47c4-8cb7-9263c33cd1e1 X-Archives-Hash: 23e105354c37efa3d833913dc8dec5fb commit: 54005446760ee91f203143d546e0bb4c3869054f Author: Michał Górny gentoo org> AuthorDate: Sun Apr 18 06:57:05 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Apr 18 07:05:49 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54005446 sci-physics/lammps: Remove old Signed-off-by: Michał Górny gentoo.org> sci-physics/lammps/lammps-20200303.ebuild | 133 ------------------------------ 1 file changed, 133 deletions(-) diff --git a/sci-physics/lammps/lammps-20200303.ebuild b/sci-physics/lammps/lammps-20200303.ebuild deleted file mode 100644 index aa161200f77..00000000000 --- a/sci-physics/lammps/lammps-20200303.ebuild +++ /dev/null @@ -1,133 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python3_{6,7} ) - -inherit cmake-utils fortran-2 python-r1 - -convert_month() { - local months=( "" Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec ) - echo ${months[${1#0}]} -} - -MY_PV="stable_$((10#${PV:6:2}))$(convert_month ${PV:4:2})${PV:0:4}" -MY_P="${PN}-${MY_PV}" - -DESCRIPTION="Large-scale Atomic/Molecular Massively Parallel Simulator" -HOMEPAGE="https://lammps.sandia.gov/" -SRC_URI="https://github.com/lammps/lammps/archive/${MY_PV}.tar.gz -> ${MY_P}.tar.gz - test? ( https://github.com/lammps/lammps-testing/archive/${MY_PV}.tar.gz -> ${PN}-testing-${MY_PV}.tar.gz )" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="cuda examples gzip kokkos lammps-memalign mpi netcdf python test" -RESTRICT="!test? ( test )" - -DEPEND=" - app-arch/gzip - media-libs/libpng:0 - sys-libs/zlib - mpi? ( - virtual/mpi - sci-libs/hdf5[mpi] - ) - python? ( ${PYTHON_DEPS} ) - sci-libs/voro++ - virtual/blas - virtual/lapack - sci-libs/fftw:3.0 - netcdf? ( sci-libs/netcdf ) - cuda? ( >=dev-util/nvidia-cuda-toolkit-4.2.9-r1 ) - kokkos? ( =dev-cpp/kokkos-3.0* ) - dev-cpp/eigen:3 - " -RDEPEND="${DEPEND}" - -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" - -S="${WORKDIR}/${MY_P}/cmake" - -src_configure() { - local mycmakeargs=( - -DCMAKE_INSTALL_SYSCONFDIR="${EPREFIX}/etc" - -DBUILD_SHARED_LIBS=ON - -DBUILD_MPI=$(usex mpi) - -DBUILD_LIB=ON - -DPKG_GPU=$(usex cuda) - -DGPU_API=CUDA - -DENABLE_TESTING=$(usex test) - -DLAMMPS_TESTING_SOURCE_DIR=$(echo "${WORKDIR}"/lammps-testing-*) - -DPKG_ASPHERE=ON - -DPKG_BODY=ON - -DPKG_CLASS2=ON - -DPKG_COLLOID=ON - -DPKG_COMPRESS=ON - -DPKG_CORESHELL=ON - -DPKG_DIPOLE=ON - -DPKG_GRANULAR=ON - -DPKG_KSPACE=ON - -DFFT=FFTW3 - -DPKG_KOKKOS=$(usex kokkos) - $(use kokkos && echo -DEXTERNAL_KOKKOS=ON) - -DPKG_MANYBODY=ON - -DPKG_MC=ON - -DPKG_MEAM=ON - -DPKG_MISC=ON - -DPKG_MOLECULE=ON - -DPKG_PERI=ON - -DPKG_QEQ=ON - -DPKG_REAX=ON - -DPKG_REPLICA=ON - -DPKG_RIGID=ON - -DPKG_SHOCK=ON - -DPKG_SNAP=ON - -DPKG_SRD=ON - -DPKG_PYTHON=ON - -DPKG_MPIIO=$(usex mpi) - -DPKG_VORONOI=ON - -DPKG_USER-ATC=ON - -DPKG_USER-AWPMD=ON - -DPKG_USER-CGDNA=ON - -DPKG_USER-CGSDK=ON - -DPKG_USER-COLVARS=ON - -DPKG_USER-DIFFRACTION=ON - -DPKG_USER-DPD=ON - -DPKG_USER-DRUDE=ON - -DPKG_USER-EFF=ON - -DPKG_USER-FEP=ON - -DPKG_USER-H5MD=$(usex mpi) - -DPKG_USER-LB=$(usex mpi) - -DPKG_USER-MANIFOLD=ON - -DPKG_USER-MEAMC=ON - -DPKG_USER-MGPT=ON - -DPKG_USER-MISC=ON - -DPKG_USER-MOLFILE=ON - -DPKG_USER-NETCDF=$(usex netcdf) - -DPKG_USER-PHONON=ON - -DPKG_USER-QTB=ON - -DPKG_USER-REAXC=ON - -DPKG_USER-SMD=ON - -DPKG_USER-SMTBQ=ON - -DPKG_USER-SPH=ON - -DPKG_USER-TALLY=ON - ) - cmake-utils_src_configure -} - -src_install() { - cmake-utils_src_install - - # Install python script. - use python && python_foreach_impl python_domodule "${S}"/../python/lammps.py - - if use examples; then - for d in examples bench; do - local LAMMPS_EXAMPLES="/usr/share/${PN}/${d}" - insinto "${LAMMPS_EXAMPLES}" - doins -r "${S}"/../${d}/* - done - fi -}