Merge pull request #1313 from sknigh/gnu-tools
Added packages for GNU tools screen, datamash, and parallel
This commit is contained in:
commit
b9c79824a2
3 changed files with 149 additions and 0 deletions
45
var/spack/repos/builtin/packages/datamash/package.py
Normal file
45
var/spack/repos/builtin/packages/datamash/package.py
Normal file
|
@ -0,0 +1,45 @@
|
|||
##############################################################################
|
||||
# Copyright (c) 2013-2016, Lawrence Livermore National Security, LLC.
|
||||
# Produced at the Lawrence Livermore National Laboratory.
|
||||
#
|
||||
# This file is part of Spack.
|
||||
# Created by Todd Gamblin, tgamblin@llnl.gov, All rights reserved.
|
||||
# LLNL-CODE-647188
|
||||
#
|
||||
# For details, see https://github.com/llnl/spack
|
||||
# Please also see the LICENSE file for our notice and the LGPL.
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Lesser General Public License (as
|
||||
# published by the Free Software Foundation) version 2.1, February 1999.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY; without even the IMPLIED WARRANTY OF
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the terms and
|
||||
# conditions of the GNU Lesser General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Lesser General Public
|
||||
# License along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
##############################################################################
|
||||
from spack import *
|
||||
|
||||
|
||||
class Datamash(Package):
|
||||
"""
|
||||
GNU datamash is a command-line program which performs basic numeric,
|
||||
textual and statistical operations on input textual data files.
|
||||
"""
|
||||
|
||||
homepage = "https://www.gnu.org/software/datamash/"
|
||||
url = "http://ftp.gnu.org/gnu/datamash/datamash-1.0.5.tar.gz"
|
||||
|
||||
version('1.1.0', '79a6affca08107a095e97e4237fc8775')
|
||||
version('1.0.7', '9f317bab07454032ba9c068e7f17b04b')
|
||||
version('1.0.6', 'ff26fdef0f343cb695cf1853e14a1a5b')
|
||||
version('1.0.5', '9a29549dc7feca49fdc5fab696614e11')
|
||||
|
||||
def install(self, spec, prefix):
|
||||
configure('--prefix=%s' % prefix)
|
||||
make()
|
||||
make("install")
|
45
var/spack/repos/builtin/packages/parallel/package.py
Normal file
45
var/spack/repos/builtin/packages/parallel/package.py
Normal file
|
@ -0,0 +1,45 @@
|
|||
##############################################################################
|
||||
# Copyright (c) 2013-2016, Lawrence Livermore National Security, LLC.
|
||||
# Produced at the Lawrence Livermore National Laboratory.
|
||||
#
|
||||
# This file is part of Spack.
|
||||
# Created by Todd Gamblin, tgamblin@llnl.gov, All rights reserved.
|
||||
# LLNL-CODE-647188
|
||||
#
|
||||
# For details, see https://github.com/llnl/spack
|
||||
# Please also see the LICENSE file for our notice and the LGPL.
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Lesser General Public License (as
|
||||
# published by the Free Software Foundation) version 2.1, February 1999.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY; without even the IMPLIED WARRANTY OF
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the terms and
|
||||
# conditions of the GNU Lesser General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Lesser General Public
|
||||
# License along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
##############################################################################
|
||||
from spack import *
|
||||
|
||||
|
||||
class Parallel(Package):
|
||||
"""
|
||||
GNU parallel is a shell tool for executing jobs in parallel using
|
||||
one or more computers. A job can be a single command or a small
|
||||
script that has to be run for each of the lines in the input.
|
||||
"""
|
||||
|
||||
homepage = "http://www.gnu.org/software/parallel/"
|
||||
url = "http://ftp.gnu.org/gnu/parallel/parallel-20160422.tar.bz2"
|
||||
|
||||
version('20160422', '24621f684130472694333709bd4454cb')
|
||||
version('20160322', '4e81e0d36902ab4c4e969ee6f35e6e57')
|
||||
|
||||
def install(self, spec, prefix):
|
||||
configure('--prefix=%s' % prefix)
|
||||
|
||||
make()
|
||||
make("install")
|
59
var/spack/repos/builtin/packages/screen/package.py
Normal file
59
var/spack/repos/builtin/packages/screen/package.py
Normal file
|
@ -0,0 +1,59 @@
|
|||
##############################################################################
|
||||
# Copyright (c) 2013-2016, Lawrence Livermore National Security, LLC.
|
||||
# Produced at the Lawrence Livermore National Laboratory.
|
||||
#
|
||||
# This file is part of Spack.
|
||||
# Created by Todd Gamblin, tgamblin@llnl.gov, All rights reserved.
|
||||
# LLNL-CODE-647188
|
||||
#
|
||||
# For details, see https://github.com/llnl/spack
|
||||
# Please also see the LICENSE file for our notice and the LGPL.
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Lesser General Public License (as
|
||||
# published by the Free Software Foundation) version 2.1, February 1999.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY; without even the IMPLIED WARRANTY OF
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the terms and
|
||||
# conditions of the GNU Lesser General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Lesser General Public
|
||||
# License along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
##############################################################################
|
||||
from spack import *
|
||||
|
||||
|
||||
class Screen(Package):
|
||||
"""
|
||||
Screen is a full-screen window manager that multiplexes a physical
|
||||
terminal between several processes, typically interactive shells.
|
||||
"""
|
||||
|
||||
homepage = "https://www.gnu.org/software/screen/"
|
||||
url = "http://ftp.gnu.org/gnu/screen/screen-4.3.1.tar.gz"
|
||||
|
||||
version('4.3.1', '5bb3b0ff2674e29378c31ad3411170ad')
|
||||
version('4.3.0', 'f76d28eadc4caaf6cdff00685ae6ad46')
|
||||
version('4.2.1', '419a0594e2b25039239af8b90eda7d92')
|
||||
version('4.2.0', 'e5199156a8ac863bbf92495a7638b612')
|
||||
version('4.0.3', '8506fd205028a96c741e4037de6e3c42')
|
||||
version('4.0.2', 'ed68ea9b43d9fba0972cb017a24940a1')
|
||||
version('3.9.15', '0dff6fdc3fbbceabf25a43710fbfe75f')
|
||||
version('3.9.11', '19572f92404995e7b2dea8117204dd67')
|
||||
version('3.9.10', 'bbe271715d1dee038b3cd72d6d2f05fb')
|
||||
version('3.9.9', '9a8b1d6c7438c64b884c4f7d7662afdc')
|
||||
version('3.9.8', '8ddfebe32c2d45410ce89ea9779bb1cf')
|
||||
version('3.9.4', '7de72cd18f7adcdf993ecc6764d0478a')
|
||||
version('3.7.6', '9a353b828d79c3c143109265cae663a7')
|
||||
version('3.7.4', 'c5ab40b068968075e41e25607dfce543')
|
||||
version('3.7.2', '2d6db5de7fb0cf849cc5a6f94203f029')
|
||||
version('3.7.1', '27cdd29318446561ef7c966041cbd2c9')
|
||||
|
||||
depends_on('ncurses')
|
||||
|
||||
def install(self, spec, prefix):
|
||||
configure('--prefix=%s' % prefix)
|
||||
make()
|
||||
make("install")
|
Loading…
Reference in a new issue