From owner-svn-ports-head@freebsd.org Fri Dec 14 01:28:25 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DB714133B547; Fri, 14 Dec 2018 01:28:24 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8D299836AB; Fri, 14 Dec 2018 01:28:24 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 684AC281EC; Fri, 14 Dec 2018 01:28:24 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id wBE1SOdD069016; Fri, 14 Dec 2018 01:28:24 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id wBE1SOcU069014; Fri, 14 Dec 2018 01:28:24 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201812140128.wBE1SOcU069014@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Fri, 14 Dec 2018 01:28:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r487401 - head/science/lammps X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/science/lammps X-SVN-Commit-Revision: 487401 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 8D299836AB X-Spamd-Bar: - Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-1.31 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-0.82)[-0.821,0]; NEURAL_HAM_SHORT(-0.49)[-0.491,0] X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Dec 2018 01:28:25 -0000 Author: yuri Date: Fri Dec 14 01:28:23 2018 New Revision: 487401 URL: https://svnweb.freebsd.org/changeset/ports/487401 Log: science/lammps: Update 22Aug2018 -> 12Dec2018 Reported by: repology Modified: head/science/lammps/Makefile head/science/lammps/distinfo head/science/lammps/pkg-plist Modified: head/science/lammps/Makefile ============================================================================== --- head/science/lammps/Makefile Fri Dec 14 00:46:08 2018 (r487400) +++ head/science/lammps/Makefile Fri Dec 14 01:28:23 2018 (r487401) @@ -2,7 +2,6 @@ PORTNAME= lammps PORTVERSION= ${GH_TAGNAME:C/(stable|patch)_([0-9]{1,2})([A-Z][a-z][a-z])([0-9]{4})/\4.\3.\2/S/Jan/01/S/Feb/02/S/Mar/03/S/Apr/04/S/May/05/S/Jun/06/S/Jul/07/S/Aug/08/S/Sep/09/S/Oct/10/S/Nov/11/S/Dec/12/} -PORTREVISION= 3 CATEGORIES= science MAINTAINER= yuri@FreeBSD.org @@ -16,7 +15,7 @@ CONFLICTS_BUILD= ga # conflicts with include/error.h, USES= blaslapack:openblas cmake:outsource,noninja eigen:3 fortran shebangfix USE_GITHUB= yes -GH_TAGNAME= stable_22Aug2018 +GH_TAGNAME= stable_12Dec2018 SHEBANG_GLOB= *.sh *.bash SHEBANG_FILES= lib/kokkos/bin/nvcc_wrapper @@ -57,11 +56,10 @@ LATTE_CMAKE_BOOL= PKG_LATTE LATTE_LIB_DEPENDS= liblatte.so:science/latte # use clang from ports because cmake can't find OpenMP with base clang, see https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=223678 -LLVM_VER= 60 -BUILD_DEPENDS+= clang${LLVM_VER}:devel/llvm${LLVM_VER} -CPP= clang-cpp${LLVM_VER} -CC= clang${LLVM_VER} -CXX= clang++${LLVM_VER} +BUILD_DEPENDS+= clang${LLVM_DEFAULT}:devel/llvm${LLVM_DEFAULT} +CPP= clang-cpp${LLVM_DEFAULT} +CC= clang${LLVM_DEFAULT} +CXX= clang++${LLVM_DEFAULT} post-patch: @${REINPLACE_CMD} 's|SHELL = /bin/bash|SHELL = ${LOCALBASE}/bin/bash|' ${WRKSRC}/src/Makefile Modified: head/science/lammps/distinfo ============================================================================== --- head/science/lammps/distinfo Fri Dec 14 00:46:08 2018 (r487400) +++ head/science/lammps/distinfo Fri Dec 14 01:28:23 2018 (r487401) @@ -1,3 +1,3 @@ -TIMESTAMP = 1540967816 -SHA256 (lammps-lammps-2018.08.22-stable_22Aug2018_GH0.tar.gz) = 78e7b389523d2fd5243a6f2daab72667907980d31bee22e44b64122c3afc9f04 -SIZE (lammps-lammps-2018.08.22-stable_22Aug2018_GH0.tar.gz) = 108761541 +TIMESTAMP = 1544748156 +SHA256 (lammps-lammps-2018.12.12-stable_12Dec2018_GH0.tar.gz) = 643eaf2c677e2590e04df2b5be72acaa19007cb34992efe82d0e5beb79b9c865 +SIZE (lammps-lammps-2018.12.12-stable_12Dec2018_GH0.tar.gz) = 114623125 Modified: head/science/lammps/pkg-plist ============================================================================== --- head/science/lammps/pkg-plist Fri Dec 14 00:46:08 2018 (r487400) +++ head/science/lammps/pkg-plist Fri Dec 14 01:28:23 2018 (r487401) @@ -1,146 +1,148 @@ bin/lmp etc/profile.d/lammps.csh etc/profile.d/lammps.sh -%%DATADIR%%/potentials/potentials/Ag_u3.eam -%%DATADIR%%/potentials/potentials/AlCu.adp -%%DATADIR%%/potentials/potentials/AlCu.bop.table -%%DATADIR%%/potentials/potentials/AlCu.eam.alloy -%%DATADIR%%/potentials/potentials/AlFe_mm.eam.fs -%%DATADIR%%/potentials/potentials/AlO.eam.alloy -%%DATADIR%%/potentials/potentials/AlO.streitz -%%DATADIR%%/potentials/potentials/AlSiMgCuFe.meam -%%DATADIR%%/potentials/potentials/Al_jnp.eam -%%DATADIR%%/potentials/potentials/Al_jpc.agni -%%DATADIR%%/potentials/potentials/Al_mm.eam.fs -%%DATADIR%%/potentials/potentials/Al_prb.agni -%%DATADIR%%/potentials/potentials/Al_zhou.eam.alloy -%%DATADIR%%/potentials/potentials/Au_u3.eam -%%DATADIR%%/potentials/potentials/BN.extep -%%DATADIR%%/potentials/potentials/BNC.tersoff -%%DATADIR%%/potentials/potentials/BNCH-old.ILP -%%DATADIR%%/potentials/potentials/BNCH.ILP -%%DATADIR%%/potentials/potentials/C.lcbop -%%DATADIR%%/potentials/potentials/CC.KC -%%DATADIR%%/potentials/potentials/CC.KC-full -%%DATADIR%%/potentials/potentials/CCu_v2.bop.table -%%DATADIR%%/potentials/potentials/CH.KC -%%DATADIR%%/potentials/potentials/CH.airebo -%%DATADIR%%/potentials/potentials/CH.airebo-m -%%DATADIR%%/potentials/potentials/CdTe.bop.table -%%DATADIR%%/potentials/potentials/CdTe.sw -%%DATADIR%%/potentials/potentials/CdTeSe.bop.table -%%DATADIR%%/potentials/potentials/CdTeZnSeHgS0.sw -%%DATADIR%%/potentials/potentials/CdZnTe_v1.bop.table -%%DATADIR%%/potentials/potentials/CdZnTe_v2.bop.table -%%DATADIR%%/potentials/potentials/CoAl.eam.alloy -%%DATADIR%%/potentials/potentials/Cu.meam -%%DATADIR%%/potentials/potentials/CuH.bop.table -%%DATADIR%%/potentials/potentials/CuNi.eam.alloy -%%DATADIR%%/potentials/potentials/CuTa.eam.alloy -%%DATADIR%%/potentials/potentials/CuTa_eam.poly -%%DATADIR%%/potentials/potentials/CuZr_mm.eam.fs -%%DATADIR%%/potentials/potentials/Cu_mishin1.eam.alloy -%%DATADIR%%/potentials/potentials/Cu_smf7.eam -%%DATADIR%%/potentials/potentials/Cu_u3.eam -%%DATADIR%%/potentials/potentials/Cu_u6.eam -%%DATADIR%%/potentials/potentials/Cu_zhou.eam.alloy -%%DATADIR%%/potentials/potentials/FeCr.cdeam -%%DATADIR%%/potentials/potentials/FeP_mm.eam.fs -%%DATADIR%%/potentials/potentials/Fe_mm.eam.fs -%%DATADIR%%/potentials/potentials/GaAs.bop.table -%%DATADIR%%/potentials/potentials/GaN.sw -%%DATADIR%%/potentials/potentials/GaN.tersoff -%%DATADIR%%/potentials/potentials/GaN_sw.poly -%%DATADIR%%/potentials/potentials/GaN_tersoff.poly -%%DATADIR%%/potentials/potentials/Ge.tersoff -%%DATADIR%%/potentials/potentials/He_He_JW2013.table -%%DATADIR%%/potentials/potentials/InP.vashishta -%%DATADIR%%/potentials/potentials/MOH.nb3b.harmonic -%%DATADIR%%/potentials/potentials/Mg_mm.eam.fs -%%DATADIR%%/potentials/potentials/Mo5.2.mgpt.README -%%DATADIR%%/potentials/potentials/Mo5.2.mgpt.parmin -%%DATADIR%%/potentials/potentials/Mo5.2.mgpt.potin -%%DATADIR%%/potentials/potentials/Mo_Chen_PRM2017.snap -%%DATADIR%%/potentials/potentials/Mo_Chen_PRM2017.snapcoeff -%%DATADIR%%/potentials/potentials/Mo_Chen_PRM2017.snapparam -%%DATADIR%%/potentials/potentials/Ni.adp -%%DATADIR%%/potentials/potentials/Ni.meam -%%DATADIR%%/potentials/potentials/NiAlH_jea.eam.alloy -%%DATADIR%%/potentials/potentials/NiAlH_jea.eam.fs -%%DATADIR%%/potentials/potentials/Ni_smf7.eam -%%DATADIR%%/potentials/potentials/Ni_u3.eam -%%DATADIR%%/potentials/potentials/Pd_u3.eam -%%DATADIR%%/potentials/potentials/Pt_u3.eam -%%DATADIR%%/potentials/potentials/README -%%DATADIR%%/potentials/potentials/README.reax -%%DATADIR%%/potentials/potentials/Si.b.meam.sw.spline -%%DATADIR%%/potentials/potentials/Si.edip -%%DATADIR%%/potentials/potentials/Si.sw -%%DATADIR%%/potentials/potentials/Si.tersoff -%%DATADIR%%/potentials/potentials/Si.tersoff.mod -%%DATADIR%%/potentials/potentials/Si.tersoff.modc -%%DATADIR%%/potentials/potentials/SiC.edip -%%DATADIR%%/potentials/potentials/SiC.gw -%%DATADIR%%/potentials/potentials/SiC.gw.zbl -%%DATADIR%%/potentials/potentials/SiC.meam -%%DATADIR%%/potentials/potentials/SiC.tersoff -%%DATADIR%%/potentials/potentials/SiC.tersoff.zbl -%%DATADIR%%/potentials/potentials/SiC.vashishta -%%DATADIR%%/potentials/potentials/SiCGe.tersoff -%%DATADIR%%/potentials/potentials/SiC_1989.tersoff -%%DATADIR%%/potentials/potentials/SiC_1990.tersoff -%%DATADIR%%/potentials/potentials/SiC_1994.tersoff -%%DATADIR%%/potentials/potentials/SiC_Erhart-Albe.tersoff -%%DATADIR%%/potentials/potentials/SiO.1990.vashishta -%%DATADIR%%/potentials/potentials/SiO.1994.vashishta -%%DATADIR%%/potentials/potentials/SiO.1997.vashishta -%%DATADIR%%/potentials/potentials/SiO.tersoff -%%DATADIR%%/potentials/potentials/Si_1.meam.spline -%%DATADIR%%/potentials/potentials/Si_2.meam.spline -%%DATADIR%%/potentials/potentials/Ta06A.snap -%%DATADIR%%/potentials/potentials/Ta06A.snapcoeff -%%DATADIR%%/potentials/potentials/Ta06A.snapparam -%%DATADIR%%/potentials/potentials/Ta4.mgpt.README -%%DATADIR%%/potentials/potentials/Ta4.mgpt.parmin -%%DATADIR%%/potentials/potentials/Ta4.mgpt.potin -%%DATADIR%%/potentials/potentials/Ta6.8x.mgpt.README -%%DATADIR%%/potentials/potentials/Ta6.8x.mgpt.parmin -%%DATADIR%%/potentials/potentials/Ta6.8x.mgpt.potin -%%DATADIR%%/potentials/potentials/Ti.meam.spline -%%DATADIR%%/potentials/potentials/Ti.meam.sw.spline -%%DATADIR%%/potentials/potentials/TiO.meam.spline -%%DATADIR%%/potentials/potentials/V6.1.mgpt.README -%%DATADIR%%/potentials/potentials/V6.1.mgpt.parmin -%%DATADIR%%/potentials/potentials/V6.1.mgpt.potin -%%DATADIR%%/potentials/potentials/VFe_mm.eam.fs -%%DATADIR%%/potentials/potentials/WL.meam -%%DATADIR%%/potentials/potentials/W_2940_2017_2.snap -%%DATADIR%%/potentials/potentials/W_2940_2017_2.snapcoeff -%%DATADIR%%/potentials/potentials/W_2940_2017_2.snapparam -%%DATADIR%%/potentials/potentials/W_2940_2017_2_He_JW2013.snap -%%DATADIR%%/potentials/potentials/W_He_JW2013.table -%%DATADIR%%/potentials/potentials/W_zhou.eam.alloy -%%DATADIR%%/potentials/potentials/Zr_mm.eam.fs -%%DATADIR%%/potentials/potentials/charmm22.cmap -%%DATADIR%%/potentials/potentials/charmm36.cmap -%%DATADIR%%/potentials/potentials/ci-reaxFF_ZBL.dat -%%DATADIR%%/potentials/potentials/ffield.ci-reax.CH -%%DATADIR%%/potentials/potentials/ffield.comb -%%DATADIR%%/potentials/potentials/ffield.comb3 -%%DATADIR%%/potentials/potentials/ffield.eim -%%DATADIR%%/potentials/potentials/ffield.reax.AB -%%DATADIR%%/potentials/potentials/ffield.reax.AuO -%%DATADIR%%/potentials/potentials/ffield.reax.FC -%%DATADIR%%/potentials/potentials/ffield.reax.Fe_O_C_H -%%DATADIR%%/potentials/potentials/ffield.reax.V_O_C_H -%%DATADIR%%/potentials/potentials/ffield.reax.ZnOH -%%DATADIR%%/potentials/potentials/ffield.reax.budzien -%%DATADIR%%/potentials/potentials/ffield.reax.cho -%%DATADIR%%/potentials/potentials/ffield.reax.lg -%%DATADIR%%/potentials/potentials/ffield.reax.mattsson -%%DATADIR%%/potentials/potentials/ffield.reax.rdx -%%DATADIR%%/potentials/potentials/ffield.smtbq.Al -%%DATADIR%%/potentials/potentials/ffield.smtbq.Al2O3 -%%DATADIR%%/potentials/potentials/ffield.smtbq.TiO2 -%%DATADIR%%/potentials/potentials/lib.comb3 -%%DATADIR%%/potentials/potentials/library.meam +man/man1/lmp.1.gz +%%DATADIR%%/potentials/Ag_u3.eam +%%DATADIR%%/potentials/AlCu.adp +%%DATADIR%%/potentials/AlCu.bop.table +%%DATADIR%%/potentials/AlCu.eam.alloy +%%DATADIR%%/potentials/AlFe_mm.eam.fs +%%DATADIR%%/potentials/AlO.eam.alloy +%%DATADIR%%/potentials/AlO.streitz +%%DATADIR%%/potentials/AlSiMgCuFe.meam +%%DATADIR%%/potentials/Al_jnp.eam +%%DATADIR%%/potentials/Al_jpc.agni +%%DATADIR%%/potentials/Al_mm.eam.fs +%%DATADIR%%/potentials/Al_prb.agni +%%DATADIR%%/potentials/Al_zhou.eam.alloy +%%DATADIR%%/potentials/Au_u3.eam +%%DATADIR%%/potentials/BN.extep +%%DATADIR%%/potentials/BNC.tersoff +%%DATADIR%%/potentials/BNCH-old.ILP +%%DATADIR%%/potentials/BNCH.ILP +%%DATADIR%%/potentials/C.lcbop +%%DATADIR%%/potentials/CC.KC +%%DATADIR%%/potentials/CC.KC-full +%%DATADIR%%/potentials/CCu_v2.bop.table +%%DATADIR%%/potentials/CH.KC +%%DATADIR%%/potentials/CH.airebo +%%DATADIR%%/potentials/CH.airebo-m +%%DATADIR%%/potentials/CH_taper.KC +%%DATADIR%%/potentials/CdTe.bop.table +%%DATADIR%%/potentials/CdTe.sw +%%DATADIR%%/potentials/CdTeSe.bop.table +%%DATADIR%%/potentials/CdTeZnSeHgS0.sw +%%DATADIR%%/potentials/CdZnTe_v1.bop.table +%%DATADIR%%/potentials/CdZnTe_v2.bop.table +%%DATADIR%%/potentials/CoAl.eam.alloy +%%DATADIR%%/potentials/Cu.meam +%%DATADIR%%/potentials/CuH.bop.table +%%DATADIR%%/potentials/CuNi.eam.alloy +%%DATADIR%%/potentials/CuTa.eam.alloy +%%DATADIR%%/potentials/CuTa_eam.poly +%%DATADIR%%/potentials/CuZr_mm.eam.fs +%%DATADIR%%/potentials/Cu_mishin1.eam.alloy +%%DATADIR%%/potentials/Cu_smf7.eam +%%DATADIR%%/potentials/Cu_u3.eam +%%DATADIR%%/potentials/Cu_u6.eam +%%DATADIR%%/potentials/Cu_zhou.eam.alloy +%%DATADIR%%/potentials/FeCr.cdeam +%%DATADIR%%/potentials/FeP_mm.eam.fs +%%DATADIR%%/potentials/Fe_mm.eam.fs +%%DATADIR%%/potentials/GaAs.bop.table +%%DATADIR%%/potentials/GaN.sw +%%DATADIR%%/potentials/GaN.tersoff +%%DATADIR%%/potentials/GaN_sw.poly +%%DATADIR%%/potentials/GaN_tersoff.poly +%%DATADIR%%/potentials/Ge.tersoff +%%DATADIR%%/potentials/He_He_JW2013.table +%%DATADIR%%/potentials/InP.vashishta +%%DATADIR%%/potentials/MOH.nb3b.harmonic +%%DATADIR%%/potentials/Mg_mm.eam.fs +%%DATADIR%%/potentials/Mo5.2.mgpt.README +%%DATADIR%%/potentials/Mo5.2.mgpt.parmin +%%DATADIR%%/potentials/Mo5.2.mgpt.potin +%%DATADIR%%/potentials/Mo_Chen_PRM2017.snap +%%DATADIR%%/potentials/Mo_Chen_PRM2017.snapcoeff +%%DATADIR%%/potentials/Mo_Chen_PRM2017.snapparam +%%DATADIR%%/potentials/Ni.adp +%%DATADIR%%/potentials/Ni.meam +%%DATADIR%%/potentials/NiAlH_jea.eam.alloy +%%DATADIR%%/potentials/NiAlH_jea.eam.fs +%%DATADIR%%/potentials/Ni_smf7.eam +%%DATADIR%%/potentials/Ni_u3.eam +%%DATADIR%%/potentials/Pd_u3.eam +%%DATADIR%%/potentials/Pt_u3.eam +%%DATADIR%%/potentials/README +%%DATADIR%%/potentials/README.reax +%%DATADIR%%/potentials/Si.b.meam.sw.spline +%%DATADIR%%/potentials/Si.edip +%%DATADIR%%/potentials/Si.sw +%%DATADIR%%/potentials/Si.tersoff +%%DATADIR%%/potentials/Si.tersoff.mod +%%DATADIR%%/potentials/Si.tersoff.modc +%%DATADIR%%/potentials/SiC.edip +%%DATADIR%%/potentials/SiC.gw +%%DATADIR%%/potentials/SiC.gw.zbl +%%DATADIR%%/potentials/SiC.meam +%%DATADIR%%/potentials/SiC.tersoff +%%DATADIR%%/potentials/SiC.tersoff.zbl +%%DATADIR%%/potentials/SiC.vashishta +%%DATADIR%%/potentials/SiCGe.tersoff +%%DATADIR%%/potentials/SiC_1989.tersoff +%%DATADIR%%/potentials/SiC_1990.tersoff +%%DATADIR%%/potentials/SiC_1994.tersoff +%%DATADIR%%/potentials/SiC_Erhart-Albe.tersoff +%%DATADIR%%/potentials/SiO.1990.vashishta +%%DATADIR%%/potentials/SiO.1994.vashishta +%%DATADIR%%/potentials/SiO.1997.vashishta +%%DATADIR%%/potentials/SiO.tersoff +%%DATADIR%%/potentials/Si_1.meam.spline +%%DATADIR%%/potentials/Si_2.meam.spline +%%DATADIR%%/potentials/Ta06A.snap +%%DATADIR%%/potentials/Ta06A.snapcoeff +%%DATADIR%%/potentials/Ta06A.snapparam +%%DATADIR%%/potentials/Ta4.mgpt.README +%%DATADIR%%/potentials/Ta4.mgpt.parmin +%%DATADIR%%/potentials/Ta4.mgpt.potin +%%DATADIR%%/potentials/Ta6.8x.mgpt.README +%%DATADIR%%/potentials/Ta6.8x.mgpt.parmin +%%DATADIR%%/potentials/Ta6.8x.mgpt.potin +%%DATADIR%%/potentials/Ti.meam.spline +%%DATADIR%%/potentials/Ti.meam.sw.spline +%%DATADIR%%/potentials/TiO.meam.spline +%%DATADIR%%/potentials/V6.1.mgpt.README +%%DATADIR%%/potentials/V6.1.mgpt.parmin +%%DATADIR%%/potentials/V6.1.mgpt.potin +%%DATADIR%%/potentials/VFe_mm.eam.fs +%%DATADIR%%/potentials/WL.meam +%%DATADIR%%/potentials/W_2940_2017_2.snap +%%DATADIR%%/potentials/W_2940_2017_2.snapcoeff +%%DATADIR%%/potentials/W_2940_2017_2.snapparam +%%DATADIR%%/potentials/W_2940_2017_2_He_JW2013.snap +%%DATADIR%%/potentials/W_He_JW2013.table +%%DATADIR%%/potentials/W_zhou.eam.alloy +%%DATADIR%%/potentials/Zr_mm.eam.fs +%%DATADIR%%/potentials/charmm22.cmap +%%DATADIR%%/potentials/charmm36.cmap +%%DATADIR%%/potentials/ci-reaxFF_ZBL.dat +%%DATADIR%%/potentials/ffield.ci-reax.CH +%%DATADIR%%/potentials/ffield.comb +%%DATADIR%%/potentials/ffield.comb3 +%%DATADIR%%/potentials/ffield.eim +%%DATADIR%%/potentials/ffield.reax.AB +%%DATADIR%%/potentials/ffield.reax.AuO +%%DATADIR%%/potentials/ffield.reax.FC +%%DATADIR%%/potentials/ffield.reax.Fe_O_C_H +%%DATADIR%%/potentials/ffield.reax.V_O_C_H +%%DATADIR%%/potentials/ffield.reax.ZnOH +%%DATADIR%%/potentials/ffield.reax.budzien +%%DATADIR%%/potentials/ffield.reax.cho +%%DATADIR%%/potentials/ffield.reax.lg +%%DATADIR%%/potentials/ffield.reax.mattsson +%%DATADIR%%/potentials/ffield.reax.rdx +%%DATADIR%%/potentials/ffield.smtbq.Al +%%DATADIR%%/potentials/ffield.smtbq.Al2O3 +%%DATADIR%%/potentials/ffield.smtbq.TiO2 +%%DATADIR%%/potentials/lib.comb3 +%%DATADIR%%/potentials/library.meam