
* fix remaining flake8 errors * imports: sort imports everywhere in Spack We enabled import order checking in #23947, but fixing things manually drives people crazy. This used `spack style --fix --all` from #24071 to automatically sort everything in Spack so PR submitters won't have to deal with it. This should go in after #24071, as it assumes we're using `isort`, not `flake8-import-order` to order things. `isort` seems to be more flexible and allows `llnl` mports to be in their own group before `spack` ones, so this seems like a good switch.
85 lines
3.1 KiB
Python
85 lines
3.1 KiB
Python
# Copyright 2013-2021 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)
|
|
|
|
import os
|
|
|
|
from spack import *
|
|
|
|
|
|
class Pdftk(MakefilePackage):
|
|
"""PDFtk Server is a command-line tool for working with PDFs. It is
|
|
commonly used for client-side scripting or server-side processing
|
|
of PDFs."""
|
|
|
|
homepage = "https://www.pdflabs.com/tools/pdftk-server"
|
|
url = "https://www.pdflabs.com/tools/pdftk-the-pdf-toolkit/pdftk-2.02-src.zip"
|
|
# Alternative download locations:
|
|
# https://sources.debian.org/src/pdftk/
|
|
# http://archive.ubuntu.com/ubuntu/pool/universe/p/pdftk/pdftk_2.02.orig.tar.gz
|
|
|
|
maintainers = ['citibeth']
|
|
|
|
version('2.02', sha256='118f6a25fd3acaafb58824dce6f97cdc07e56050e666b90e4c4ef426ea37b8c1')
|
|
|
|
depends_on('eclipse-gcj-parser', type='build')
|
|
|
|
# Only takes effect in phases not overridden here
|
|
build_directory = 'pdftk'
|
|
|
|
# https://www.pdflabs.com/docs/install-pdftk-on-redhat-or-centos/
|
|
def edit(self, spec, prefix):
|
|
|
|
# ------ Fix install directory in main Makefile
|
|
makefile = FileFilter(join_path('pdftk', 'Makefile.Base'))
|
|
makefile.filter('/usr/local/bin', spec.prefix.bin)
|
|
|
|
# ------ Create new config file
|
|
compiler = self.compiler
|
|
gcc_base = os.path.split(os.path.split(compiler.cxx)[0])[0]
|
|
gcc_version = compiler.version
|
|
|
|
cppflags = (
|
|
'-DPATH_DELIM=0x2f',
|
|
'-DASK_ABOUT_WARNINGS=false',
|
|
'-DUNBLOCK_SIGNALS',
|
|
'-fdollars-in-identifiers')
|
|
cxxflags = ('-Wall', '-Wextra', '-Weffc++', '-O2')
|
|
gcjflags = ('-Wall', '-Wextra', '-O2')
|
|
vars = [
|
|
('VERSUFF', '-%s' % gcc_version),
|
|
('CXX', compiler.cxx),
|
|
('GCJ', spec['eclipse-gcj-parser'].package.gcj),
|
|
('GCJH', join_path(gcc_base, 'bin', 'gcjh')),
|
|
('GJAR', join_path(gcc_base, 'bin', 'gjar')),
|
|
('LIBGCJ', join_path(
|
|
gcc_base, 'share', 'java',
|
|
'libgcj-{0}.jar'.format(gcc_version))),
|
|
('AR', 'ar'),
|
|
('RM', 'rm'),
|
|
('ARFLAGS', 'rs'),
|
|
('RMFLAGS', '-vf'),
|
|
('CPPFLAGS', ' '.join(cppflags)),
|
|
('CXXFLAGS', ' '.join(cxxflags)),
|
|
('GCJFLAGS', ' '.join(gcjflags)),
|
|
('GCJHFLAGS', '-force'),
|
|
('LDLIBS', '-lgcj')
|
|
]
|
|
with open(join_path('pdftk', 'Makefile.Spack'), 'w') as mk:
|
|
for var, val in vars:
|
|
mk.write("export {0}={1}\n".format(var, str(val)))
|
|
mk.write('include Makefile.Base\n')
|
|
|
|
def build(self, spec, prefix):
|
|
compiler = self.compiler
|
|
gcc_base = os.path.split(os.path.split(compiler.cxx)[0])[0]
|
|
env['PATH'] = join_path(gcc_base, 'bin') + ':' + env['PATH']
|
|
with working_dir(self.build_directory):
|
|
make('-f', 'Makefile.Spack', parallel=False)
|
|
|
|
def install(self, spec, prefix):
|
|
mkdirp(self.spec.prefix.bin)
|
|
with working_dir(self.build_directory):
|
|
make('-f', 'Makefile.Spack', 'install', parallel=False)
|