diff options
author | darmac <xiaojun2@hisilicon.com> | 2020-09-24 00:53:31 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-23 18:53:31 +0200 |
commit | e294a1e0a69fe6032762afc30d5fa6b3e7fa68c0 (patch) | |
tree | ee0c37dc17824a215c948a3afdcc9a002d28c043 /var | |
parent | 9eb87d1026819875dec8bb7fa00252576fd62006 (diff) | |
download | spack-e294a1e0a69fe6032762afc30d5fa6b3e7fa68c0.tar.gz spack-e294a1e0a69fe6032762afc30d5fa6b3e7fa68c0.tar.bz2 spack-e294a1e0a69fe6032762afc30d5fa6b3e7fa68c0.tar.xz spack-e294a1e0a69fe6032762afc30d5fa6b3e7fa68c0.zip |
fasttext: new package at v0.9.2 (#18890)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/fasttext/package.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/fasttext/package.py b/var/spack/repos/builtin/packages/fasttext/package.py new file mode 100644 index 0000000000..4a86a9f18f --- /dev/null +++ b/var/spack/repos/builtin/packages/fasttext/package.py @@ -0,0 +1,19 @@ +# Copyright 2013-2020 Lawrence Livermore National Security, LLC and other +# Spack Project Developers. See the top-level COPYRIGHT file for details. +# +# SPDX-License-Identifier: (Apache-2.0 OR MIT) + +from spack import * + + +class Fasttext(CMakePackage): + """fastText is a library for efficient learning of word representations + and sentence classification""" + + homepage = "https://github.com/facebookresearch/fastText" + url = "https://github.com/facebookresearch/fastText/archive/v0.9.2.tar.gz" + + version('0.9.2', sha256='7ea4edcdb64bfc6faaaec193ef181bdc108ee62bb6a04e48b2e80b639a99e27e') + version('0.9.1', sha256='254ace2fc8dc3bea0fc6ad4897a221eb85c1e9adfa61d130b43398193ca1f061') + version('0.2.0', sha256='71d24ffec9fcc4364554ecac2b3308d834178c903d16d090aa6be9ea6b8e480c') + version('0.1.0', sha256='d6b4932b18d2c8b3d50905028671aadcd212b7aa31cbc6dd6cac66db2eff1397') |