fpm-aeppert 1.6.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (61) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELIST +661 -0
  3. data/CONTRIBUTORS +26 -0
  4. data/LICENSE +21 -0
  5. data/bin/fpm +8 -0
  6. data/lib/fpm.rb +20 -0
  7. data/lib/fpm/command.rb +648 -0
  8. data/lib/fpm/errors.rb +4 -0
  9. data/lib/fpm/namespace.rb +4 -0
  10. data/lib/fpm/package.rb +539 -0
  11. data/lib/fpm/package/apk.rb +510 -0
  12. data/lib/fpm/package/cpan.rb +405 -0
  13. data/lib/fpm/package/deb.rb +935 -0
  14. data/lib/fpm/package/dir.rb +221 -0
  15. data/lib/fpm/package/empty.rb +13 -0
  16. data/lib/fpm/package/freebsd.rb +147 -0
  17. data/lib/fpm/package/gem.rb +243 -0
  18. data/lib/fpm/package/npm.rb +120 -0
  19. data/lib/fpm/package/osxpkg.rb +165 -0
  20. data/lib/fpm/package/p5p.rb +124 -0
  21. data/lib/fpm/package/pacman.rb +403 -0
  22. data/lib/fpm/package/pear.rb +117 -0
  23. data/lib/fpm/package/pkgin.rb +35 -0
  24. data/lib/fpm/package/pleaserun.rb +63 -0
  25. data/lib/fpm/package/puppet.rb +120 -0
  26. data/lib/fpm/package/pyfpm/__init__.py +1 -0
  27. data/lib/fpm/package/pyfpm/get_metadata.py +104 -0
  28. data/lib/fpm/package/python.rb +318 -0
  29. data/lib/fpm/package/rpm.rb +593 -0
  30. data/lib/fpm/package/sh.rb +69 -0
  31. data/lib/fpm/package/solaris.rb +95 -0
  32. data/lib/fpm/package/tar.rb +86 -0
  33. data/lib/fpm/package/virtualenv.rb +164 -0
  34. data/lib/fpm/package/zip.rb +63 -0
  35. data/lib/fpm/rake_task.rb +60 -0
  36. data/lib/fpm/util.rb +358 -0
  37. data/lib/fpm/util/tar_writer.rb +80 -0
  38. data/lib/fpm/version.rb +3 -0
  39. data/templates/deb.erb +52 -0
  40. data/templates/deb/changelog.erb +5 -0
  41. data/templates/deb/ldconfig.sh.erb +13 -0
  42. data/templates/deb/postinst_upgrade.sh.erb +62 -0
  43. data/templates/deb/postrm_upgrade.sh.erb +46 -0
  44. data/templates/deb/preinst_upgrade.sh.erb +41 -0
  45. data/templates/deb/prerm_upgrade.sh.erb +39 -0
  46. data/templates/osxpkg.erb +11 -0
  47. data/templates/p5p_metadata.erb +12 -0
  48. data/templates/pacman.erb +47 -0
  49. data/templates/pacman/INSTALL.erb +41 -0
  50. data/templates/pleaserun/generate-cleanup.sh +17 -0
  51. data/templates/pleaserun/install-path.sh +17 -0
  52. data/templates/pleaserun/install.sh +117 -0
  53. data/templates/pleaserun/scripts/after-install.sh +4 -0
  54. data/templates/pleaserun/scripts/before-remove.sh +12 -0
  55. data/templates/puppet/package.pp.erb +34 -0
  56. data/templates/puppet/package/remove.pp.erb +13 -0
  57. data/templates/rpm.erb +260 -0
  58. data/templates/rpm/filesystem_list +14514 -0
  59. data/templates/sh.erb +369 -0
  60. data/templates/solaris.erb +15 -0
  61. metadata +322 -0
@@ -0,0 +1,69 @@
1
+ require "erb"
2
+ require "fpm/namespace"
3
+ require "fpm/package"
4
+ require "fpm/errors"
5
+ require "fpm/util"
6
+ require "backports"
7
+ require "fileutils"
8
+ require "digest"
9
+
10
+ # Support for self extracting sh files (.sh files)
11
+ #
12
+ # This class only supports output of packages.
13
+ #
14
+ # The sh package is a single sh file with a tar payload concatenated to the end.
15
+ # The script can unpack the tarball to install it and call optional post install scripts.
16
+ class FPM::Package::Sh < FPM::Package
17
+
18
+ def output(output_path)
19
+ create_scripts
20
+
21
+ # Make one file. The installscript can unpack itself.
22
+ `cat #{install_script} #{payload} > #{output_path}`
23
+ FileUtils.chmod("+x", output_path)
24
+ end
25
+
26
+ def create_scripts
27
+ if script?(:after_install)
28
+ File.write(File.join(fpm_meta_path, "after_install"), script(:after_install))
29
+ end
30
+ end
31
+
32
+ def install_script
33
+ path = build_path("installer.sh")
34
+ File.open(path, "w") do |file|
35
+ file.write template("sh.erb").result(binding)
36
+ end
37
+ path
38
+ end
39
+
40
+ # Returns the path to the tar file containing the packed up staging directory
41
+ def payload
42
+ payload_tar = build_path("payload.tar")
43
+ logger.info("Creating payload tar ", :path => payload_tar)
44
+
45
+ args = [ tar_cmd,
46
+ "-C",
47
+ staging_path,
48
+ "-cf",
49
+ payload_tar,
50
+ "--owner=0",
51
+ "--group=0",
52
+ "--numeric-owner",
53
+ "." ]
54
+
55
+ unless safesystem(*args)
56
+ raise "Command failed while creating payload tar: #{args}"
57
+ end
58
+ payload_tar
59
+ end
60
+
61
+ # Where we keep metadata and post install scripts and such
62
+ def fpm_meta_path
63
+ @fpm_meta_path ||= begin
64
+ path = File.join(staging_path, ".fpm")
65
+ FileUtils.mkdir_p(path)
66
+ path
67
+ end
68
+ end
69
+ end
@@ -0,0 +1,95 @@
1
+ require "erb"
2
+ require "fpm/namespace"
3
+ require "fpm/package"
4
+ require "fpm/errors"
5
+ require "fpm/util"
6
+
7
+ # TODO(sissel): Add dependency checking support.
8
+ # IIRC this has to be done as a 'checkinstall' step.
9
+ class FPM::Package::Solaris < FPM::Package
10
+
11
+ option "--user", "USER",
12
+ "Set the user to USER in the prototype files.",
13
+ :default => 'root'
14
+
15
+ option "--group", "GROUP",
16
+ "Set the group to GROUP in the prototype file.",
17
+ :default => 'root'
18
+
19
+ def architecture
20
+ case @architecture
21
+ when nil, "native"
22
+ @architecture = %x{uname -p}.chomp
23
+ end
24
+ # "all" is a valid arch according to
25
+ # http://www.bolthole.com/solaris/makeapackage.html
26
+
27
+ return @architecture
28
+ end # def architecture
29
+
30
+ def specfile(builddir)
31
+ "#{builddir}/pkginfo"
32
+ end
33
+
34
+ def output(output_path)
35
+ self.scripts.each do |name, path|
36
+ case name
37
+ when "pre-install"
38
+ safesystem("cp", path, "./preinstall")
39
+ File.chmod(0755, "./preinstall")
40
+ when "post-install"
41
+ safesystem("cp", path, "./postinstall")
42
+ File.chmod(0755, "./postinstall")
43
+ when "pre-uninstall"
44
+ raise FPM::InvalidPackageConfiguration.new(
45
+ "pre-uninstall is not supported by Solaris packages"
46
+ )
47
+ when "post-uninstall"
48
+ raise FPM::InvalidPackageConfiguration.new(
49
+ "post-uninstall is not supported by Solaris packages"
50
+ )
51
+ end # case name
52
+ end # self.scripts.each
53
+
54
+ template = template("solaris.erb")
55
+ File.open("#{build_path}/pkginfo", "w") do |pkginfo|
56
+ pkginfo.puts template.result(binding)
57
+ end
58
+
59
+ # Generate the package 'Prototype' file
60
+ File.open("#{build_path}/Prototype", "w") do |prototype|
61
+ prototype.puts("i pkginfo")
62
+ prototype.puts("i preinstall") if self.scripts["pre-install"]
63
+ prototype.puts("i postinstall") if self.scripts["post-install"]
64
+
65
+ # TODO(sissel): preinstall/postinstall
66
+ # strip @prefix, since BASEDIR will set prefix via the pkginfo file
67
+ IO.popen("pkgproto #{staging_path}/#{@prefix}=").each_line do |line|
68
+ type, klass, path, mode, user, group = line.split
69
+
70
+ prototype.puts([type, klass, path, mode, attributes[:solaris_user], attributes[:solaris_group]].join(" "))
71
+ end # popen "pkgproto ..."
72
+ end # File prototype
73
+
74
+ ::Dir.chdir staging_path do
75
+ # Should create a package directory named by the package name.
76
+ safesystem("pkgmk", "-o", "-f", "#{build_path}/Prototype", "-d", build_path)
77
+ end
78
+
79
+
80
+ # Convert the 'package directory' built above to a real solaris package.
81
+ safesystem("pkgtrans", "-s", build_path, output_path, name)
82
+ safesystem("cp", "#{build_path}/#{output_path}", output_path)
83
+ end # def output
84
+
85
+ def default_output
86
+ v = version
87
+ v = "#{epoch}:#{v}" if epoch
88
+ if iteration
89
+ "#{name}_#{v}-#{iteration}_#{architecture}.#{type}"
90
+ else
91
+ "#{name}_#{v}_#{architecture}.#{type}"
92
+ end
93
+ end # def default_output
94
+ end # class FPM::Deb
95
+
@@ -0,0 +1,86 @@
1
+ require "backports" # gem backports
2
+ require "fpm/package"
3
+ require "fpm/util"
4
+ require "fileutils"
5
+ require "fpm/package/dir"
6
+
7
+ # Use a tarball as a package.
8
+ #
9
+ # This provides no metadata. Both input and output are supported.
10
+ class FPM::Package::Tar < FPM::Package
11
+
12
+ # Input a tarball. Compressed tarballs should be OK.
13
+ def input(input_path)
14
+ # use part of the filename as the package name
15
+ self.name = File.basename(input_path).split(".").first
16
+
17
+ # Unpack the tarball to the build path before ultimately moving it to
18
+ # staging.
19
+ args = ["-xf", input_path, "-C", build_path]
20
+
21
+ # Add the tar compression flag if necessary
22
+ tar_compression_flag(input_path).tap do |flag|
23
+ args << flag unless flag.nil?
24
+ end
25
+
26
+ safesystem("tar", *args)
27
+
28
+ # use dir to set stuff up properly, mainly so I don't have to reimplement
29
+ # the chdir/prefix stuff special for tar.
30
+ dir = convert(FPM::Package::Dir)
31
+ if attributes[:chdir]
32
+ dir.attributes[:chdir] = File.join(build_path, attributes[:chdir])
33
+ else
34
+ dir.attributes[:chdir] = build_path
35
+ end
36
+
37
+ cleanup_staging
38
+ # Tell 'dir' to input "." and chdir/prefix will help it figure out the
39
+ # rest.
40
+ dir.input(".")
41
+ @staging_path = dir.staging_path
42
+ dir.cleanup_build
43
+ end # def input
44
+
45
+ # Output a tarball.
46
+ #
47
+ # If the output path ends predictably (like in .tar.gz) it will try to obey
48
+ # the compression type.
49
+ def output(output_path)
50
+ output_check(output_path)
51
+
52
+ # Write the scripts, too.
53
+ scripts_path = File.join(staging_path, ".scripts")
54
+ ::Dir.mkdir(scripts_path)
55
+ [:before_install, :after_install, :before_remove, :after_remove].each do |name|
56
+ next unless script?(name)
57
+ out = File.join(scripts_path, name.to_s)
58
+ logger.debug("Writing script", :source => name, :target => out)
59
+ File.write(out, script(name))
60
+ File.chmod(0755, out)
61
+ end
62
+
63
+ # Unpack the tarball to the staging path
64
+ args = ["-cf", output_path, "-C", staging_path]
65
+ tar_compression_flag(output_path).tap do |flag|
66
+ args << flag unless flag.nil?
67
+ end
68
+ args << "."
69
+
70
+ safesystem("tar", *args)
71
+ end # def output
72
+
73
+ # Generate the proper tar flags based on the path name.
74
+ def tar_compression_flag(path)
75
+ case path
76
+ when /\.tar\.bz2$/
77
+ return "-j"
78
+ when /\.tar\.gz$|\.tgz$/
79
+ return "-z"
80
+ when /\.tar\.xz$/
81
+ return "-J"
82
+ else
83
+ return nil
84
+ end
85
+ end # def tar_compression_flag
86
+ end # class FPM::Package::Tar
@@ -0,0 +1,164 @@
1
+ require "fpm/namespace"
2
+ require "fpm/package"
3
+ require "fpm/util"
4
+
5
+ # Support for python virtualenv packages.
6
+ #
7
+ # This supports input, but not output.
8
+ #
9
+ class FPM::Package::Virtualenv < FPM::Package
10
+ # Flags '--foo' will be accessable as attributes[:virtualenv_foo]
11
+
12
+ option "--pypi", "PYPI_URL",
13
+ "PyPi Server uri for retrieving packages.",
14
+ :default => "https://pypi.python.org/simple"
15
+ option "--package-name-prefix", "PREFIX", "Name to prefix the package " \
16
+ "name with.", :default => "virtualenv"
17
+
18
+ option "--install-location", "DIRECTORY", "Location to which to " \
19
+ "install the virtualenv by default.", :default => "/usr/share/python" do |path|
20
+ File.expand_path(path)
21
+ end
22
+
23
+ option "--fix-name", :flag, "Should the target package name be prefixed?",
24
+ :default => true
25
+ option "--other-files-dir", "DIRECTORY", "Optionally, the contents of the " \
26
+ "specified directory may be added to the package. This is useful if the " \
27
+ "virtualenv needs configuration files, etc.", :default => nil
28
+ option "--pypi-extra-url", "PYPI_EXTRA_URL",
29
+ "PyPi extra-index-url for pointing to your priviate PyPi",
30
+ :multivalued => true, :attribute_name => :virtualenv_pypi_extra_index_urls,
31
+ :default => nil
32
+
33
+ private
34
+
35
+ # Input a package.
36
+ #
37
+ # `package` can look like `psutil==2.2.1` or `psutil`.
38
+ def input(package)
39
+ installdir = attributes[:virtualenv_install_location]
40
+ m = /^([^=]+)==([^=]+)$/.match(package)
41
+ package_version = nil
42
+
43
+ is_requirements_file = (File.basename(package) == "requirements.txt")
44
+
45
+ if is_requirements_file
46
+ if !File.file?(package)
47
+ raise FPM::InvalidPackageConfiguration, "Path looks like a requirements.txt, but it doesn't exist: #{package}"
48
+ end
49
+
50
+ package = File.join(::Dir.pwd, package) if File.dirname(package) == "."
51
+ package_name = File.basename(File.dirname(package))
52
+ logger.info("No name given. Using the directory's name", :name => package_name)
53
+ package_version = nil
54
+ elsif m
55
+ package_name = m[1]
56
+ package_version = m[2]
57
+ self.version ||= package_version
58
+ else
59
+ package_name = package
60
+ package_version = nil
61
+ end
62
+
63
+ virtualenv_name = package_name
64
+
65
+ self.name ||= package_name
66
+
67
+ if self.attributes[:virtualenv_fix_name?]
68
+ self.name = [self.attributes[:virtualenv_package_name_prefix],
69
+ self.name].join("-")
70
+ end
71
+
72
+ virtualenv_folder =
73
+ File.join(installdir,
74
+ virtualenv_name)
75
+
76
+ virtualenv_build_folder = build_path(virtualenv_folder)
77
+
78
+ ::FileUtils.mkdir_p(virtualenv_build_folder)
79
+
80
+ safesystem("virtualenv", virtualenv_build_folder)
81
+ pip_exe = File.join(virtualenv_build_folder, "bin", "pip")
82
+ python_exe = File.join(virtualenv_build_folder, "bin", "python")
83
+
84
+ # Why is this hack here? It looks important, so I'll keep it in.
85
+ safesystem(pip_exe, "install", "-U", "-i",
86
+ attributes[:virtualenv_pypi],
87
+ "pip", "distribute")
88
+ safesystem(pip_exe, "uninstall", "-y", "distribute")
89
+
90
+ extra_index_url_args = []
91
+ if attributes[:virtualenv_pypi_extra_index_urls]
92
+ attributes[:virtualenv_pypi_extra_index_urls].each do |extra_url|
93
+ extra_index_url_args << "--extra-index-url" << extra_url
94
+ end
95
+ end
96
+
97
+ target_args = []
98
+ if is_requirements_file
99
+ target_args << "-r" << package
100
+ else
101
+ target_args << package
102
+ end
103
+
104
+ pip_args = [pip_exe, "install", "-i", attributes[:virtualenv_pypi]] << extra_index_url_args << target_args
105
+ safesystem(*pip_args.flatten)
106
+
107
+ if ! is_requirements_file && package_version.nil?
108
+ frozen = safesystemout(pip_exe, "freeze")
109
+ package_version = frozen[/#{package}==[^=]+$/].split("==")[1].chomp!
110
+ self.version ||= package_version
111
+ end
112
+
113
+ ::Dir[build_path + "/**/*"].each do |f|
114
+ if ! File.readable? f
115
+ File.lchmod(File.stat(f).mode | 444)
116
+ end
117
+ end
118
+
119
+ ::Dir.chdir(virtualenv_build_folder) do
120
+ safesystem("virtualenv-tools", "--update-path", virtualenv_folder)
121
+ end
122
+
123
+ if !attributes[:virtualenv_other_files_dir].nil?
124
+ # Copy all files from other dir to build_path
125
+ Find.find(attributes[:virtualenv_other_files_dir]) do |path|
126
+ src = path.gsub(/^#{attributes[:virtualenv_other_files_dir]}/, '')
127
+ dst = File.join(build_path, src)
128
+ copy_entry(path, dst, preserve=true, remove_destination=true)
129
+ copy_metadata(path, dst)
130
+ end
131
+ end
132
+
133
+ remove_python_compiled_files virtualenv_build_folder
134
+
135
+ # use dir to set stuff up properly, mainly so I don't have to reimplement
136
+ # the chdir/prefix stuff special for tar.
137
+ dir = convert(FPM::Package::Dir)
138
+
139
+ if attributes[:chdir]
140
+ dir.attributes[:chdir] = File.join(build_path, attributes[:chdir])
141
+ else
142
+ dir.attributes[:chdir] = build_path
143
+ end
144
+
145
+ cleanup_staging
146
+ # Tell 'dir' to input "." and chdir/prefix will help it figure out the
147
+ # rest.
148
+ dir.input(".")
149
+ @staging_path = dir.staging_path
150
+ dir.cleanup_build
151
+
152
+ end # def input
153
+
154
+ # Delete python precompiled files found in a given folder.
155
+ def remove_python_compiled_files path
156
+ logger.debug("Now removing python object and compiled files from the virtualenv")
157
+ Find.find(path) do |path|
158
+ if path.end_with? '.pyc' or path.end_with? '.pyo'
159
+ FileUtils.rm path
160
+ end
161
+ end
162
+ end
163
+ public(:input)
164
+ end # class FPM::Package::Virtualenv
@@ -0,0 +1,63 @@
1
+ require "backports" # gem backports
2
+ require "fpm/package"
3
+ require "fpm/util"
4
+ require "fileutils"
5
+ require "fpm/package/dir"
6
+
7
+ # Use a zip as a package.
8
+ #
9
+ # This provides no metadata. Both input and output are supported.
10
+ class FPM::Package::Zip < FPM::Package
11
+
12
+ # Input a zipfile.
13
+ def input(input_path)
14
+ # use part of the filename as the package name
15
+ self.name = File.extname(input_path)[1..-1]
16
+
17
+ realpath = Pathname.new(input_path).realpath.to_s
18
+ ::Dir.chdir(build_path) do
19
+ safesystem("unzip", realpath)
20
+ end
21
+
22
+ # use dir to set stuff up properly, mainly so I don't have to reimplement
23
+ # the chdir/prefix stuff special for zip.
24
+ dir = convert(FPM::Package::Dir)
25
+ if attributes[:chdir]
26
+ dir.attributes[:chdir] = File.join(build_path, attributes[:chdir])
27
+ else
28
+ dir.attributes[:chdir] = build_path
29
+ end
30
+
31
+ cleanup_staging
32
+ # Tell 'dir' to input "." and chdir/prefix will help it figure out the
33
+ # rest.
34
+ dir.input(".")
35
+ @staging_path = dir.staging_path
36
+ dir.cleanup_build
37
+ end # def input
38
+
39
+ # Output a tarball.
40
+ #
41
+ # If the output path ends predictably (like in .tar.gz) it will try to obey
42
+ # the compression type.
43
+ def output(output_path)
44
+ output_check(output_path)
45
+
46
+ files = Find.find(staging_path).to_a
47
+ safesystem("zip", output_path, *files)
48
+ end # def output
49
+
50
+ # Generate the proper tar flags based on the path name.
51
+ def tar_compression_flag(path)
52
+ case path
53
+ when /\.tar\.bz2$/
54
+ return "-j"
55
+ when /\.tar\.gz$|\.tgz$/
56
+ return "-z"
57
+ when /\.tar\.xz$/
58
+ return "-J"
59
+ else
60
+ return nil
61
+ end
62
+ end # def tar_compression_flag
63
+ end # class FPM::Package::Tar