summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-markdown/package.py
blob: d6356d8a5212c5cd9fe1b72b94dbfa56080d4fad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
##############################################################################
# Copyright (c) 2013-2017, 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/spack/spack
# Please also see the NOTICE and LICENSE files 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 PyMarkdown(PythonPackage):
    """This is a Python implementation of John Gruber's Markdown. It is
    almost completely compliant with the reference implementation, though
    there are a few very minor differences. See John's Syntax
    Documentation for the syntax rules.
    """

    homepage = "https://pythonhosted.org/Markdown/"
    url      = "https://github.com/waylan/Python-Markdown/archive/2.6.7-final.tar.gz"

    version('2.6.7', 'fd27044042e197ad99249b3d60215d97')
    version('2.6.6', '2b47a0ff7eb19ef34453fe198a0cccc4')
    version('2.6.5', 'e4b6b65b2d6bcac07176fb209bc55614')
    version('2.6.4', '5fb3cd9945eb534e71af597f8ee3622b')
    version('2.6.3', 'ec7a50ce9fd4a5fd0b24555d47e9d7d1')
    version('2.6.2', '6ce86913e9bf5bb34d9ee394ac71f044')
    version('2.6.1', '0ae69693c5adb27caf0160941d7dcbdf')
    version('2.6', '9acdde43d99847d0c4ef03ea56b1d2c5')
    version('2.5.2', 'ed2a662d22799186c1ef85d173d38b8a')
    version('2.5.1', 'be6f6ba65a8fb843d2aaf1fcdd68c755')
    version('2.5', '8393ceab9c6e33357fb8a7be063a4849')

    depends_on('python@2.7:2.8,3.2:3.4')