Remove lingering boilerplate FIXMEs (#1756)

This commit is contained in:
Adam J. Stewart 2016-09-20 10:01:55 -05:00 committed by Todd Gamblin
parent eb8a0ef75e
commit f180d748be
5 changed files with 8 additions and 9 deletions

View File

@ -34,7 +34,6 @@ class BppSuite(Package):
version('2.2.0', 'd8b29ad7ccf5bd3a7beb701350c9e2a4') version('2.2.0', 'd8b29ad7ccf5bd3a7beb701350c9e2a4')
# FIXME: Add dependencies if required.
depends_on('cmake', type='build') depends_on('cmake', type='build')
depends_on('texinfo', type='build') depends_on('texinfo', type='build')
depends_on('bpp-core') depends_on('bpp-core')

View File

@ -31,8 +31,8 @@ class Icu(Package):
Globalization support for software applications. ICU is widely Globalization support for software applications. ICU is widely
portable and gives applications the same results on all portable and gives applications the same results on all
platforms.""" platforms."""
# FIXME: add a proper url for your package's homepage here.
homepage = "http://www.example.com" homepage = "http://site.icu-project.org/"
url = "http://download.icu-project.org/files/icu4c/54.1/icu4c-54_1-src.tgz" url = "http://download.icu-project.org/files/icu4c/54.1/icu4c-54_1-src.tgz"
version('54.1', 'e844caed8f2ca24c088505b0d6271bc0') version('54.1', 'e844caed8f2ca24c088505b0d6271bc0')

View File

@ -27,7 +27,7 @@
class Libuuid(Package): class Libuuid(Package):
"""Portable uuid C library""" """Portable uuid C library"""
# FIXME: add a proper url for your package's homepage here.
homepage = "http://sourceforge.net/projects/libuuid/" homepage = "http://sourceforge.net/projects/libuuid/"
url = "http://downloads.sourceforge.net/project/libuuid/libuuid-1.0.3.tar.gz?r=http%3A%2F%2Fsourceforge.net%2Fprojects%2Flibuuid%2F&ts=1433881396&use_mirror=iweb" url = "http://downloads.sourceforge.net/project/libuuid/libuuid-1.0.3.tar.gz?r=http%3A%2F%2Fsourceforge.net%2Fprojects%2Flibuuid%2F&ts=1433881396&use_mirror=iweb"
@ -36,6 +36,5 @@ class Libuuid(Package):
def install(self, spec, prefix): def install(self, spec, prefix):
configure("--prefix=%s" % prefix) configure("--prefix=%s" % prefix)
# FIXME: Add logic to build and install here
make() make()
make("install") make("install")

View File

@ -27,9 +27,10 @@
class PyPy2neo(Package): class PyPy2neo(Package):
"""FIXME: put a proper description of your package here.""" """Py2neo is a client library and toolkit for working with Neo4j from
# FIXME: add a proper url for your package's homepage here. within Python applications and from the command line."""
homepage = "http://www.example.com"
homepage = "http://py2neo.org/"
url = "https://github.com/nigelsmall/py2neo/archive/py2neo-2.0.8.tar.gz" url = "https://github.com/nigelsmall/py2neo/archive/py2neo-2.0.8.tar.gz"
version('2.0.8', 'e3ec5172a9e006515ef4155688a05a55') version('2.0.8', 'e3ec5172a9e006515ef4155688a05a55')

View File

@ -28,7 +28,7 @@
class XorgUtilMacros(Package): class XorgUtilMacros(Package):
"""The m4 macros used by all of the Xorg packages.""" """The m4 macros used by all of the Xorg packages."""
homepage = "http://www.example.com" homepage = "https://cgit.freedesktop.org/xorg/util/macros/"
url = "http://ftp.x.org/pub/individual/util/util-macros-1.19.0.tar.bz2" url = "http://ftp.x.org/pub/individual/util/util-macros-1.19.0.tar.bz2"
version('1.19.0', '1cf984125e75f8204938d998a8b6c1e1') version('1.19.0', '1cf984125e75f8204938d998a8b6c1e1')