easyfpm 0.1.0.pre
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.
- data/LICENSE +339 -0
- data/README.md +4 -0
- data/THANKS +5 -0
- data/bin/easyfpm +16 -0
- data/bin/easyfpm-translatecl +77 -0
- data/changelog +12 -0
- data/doc/samples/easyfpm.cfg +153 -0
- data/doc/samples/install_scripts/post-delete.sh +39 -0
- data/doc/samples/install_scripts/post-install.sh +30 -0
- data/doc/samples/install_scripts/pre-delete.sh +30 -0
- data/doc/samples/install_scripts/pre-install.sh +27 -0
- data/doc/samples/mapping.conf +20 -0
- data/lib/easyfpm/commandline.rb +274 -0
- data/lib/easyfpm/configuration.rb +274 -0
- data/lib/easyfpm/exceptions.rb +18 -0
- data/lib/easyfpm/mapping.rb +50 -0
- data/lib/easyfpm/namespace.rb +4 -0
- data/lib/easyfpm/packaging.rb +406 -0
- data/lib/easyfpm/pkgchangelog.rb +195 -0
- data/lib/easyfpm/version.rb +4 -0
- data/lib/easyfpm.rb +15 -0
- metadata +143 -0
metadata
ADDED
@@ -0,0 +1,143 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: easyfpm
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease: true
|
5
|
+
segments:
|
6
|
+
- 0
|
7
|
+
- 1
|
8
|
+
- 0
|
9
|
+
- pre
|
10
|
+
version: 0.1.0.pre
|
11
|
+
platform: ruby
|
12
|
+
authors:
|
13
|
+
- Erwan SEITE
|
14
|
+
autorequire:
|
15
|
+
bindir: bin
|
16
|
+
cert_chain: []
|
17
|
+
|
18
|
+
date: 2014-05-15 00:00:00 +02:00
|
19
|
+
default_executable:
|
20
|
+
dependencies:
|
21
|
+
- !ruby/object:Gem::Dependency
|
22
|
+
name: ptools
|
23
|
+
prerelease: false
|
24
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
segments:
|
30
|
+
- 1
|
31
|
+
- 2
|
32
|
+
- 4
|
33
|
+
version: 1.2.4
|
34
|
+
type: :runtime
|
35
|
+
version_requirements: *id001
|
36
|
+
- !ruby/object:Gem::Dependency
|
37
|
+
name: fpm
|
38
|
+
prerelease: false
|
39
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
40
|
+
none: false
|
41
|
+
requirements:
|
42
|
+
- - ">="
|
43
|
+
- !ruby/object:Gem::Version
|
44
|
+
segments:
|
45
|
+
- 1
|
46
|
+
- 1
|
47
|
+
- 0
|
48
|
+
version: 1.1.0
|
49
|
+
type: :runtime
|
50
|
+
version_requirements: *id002
|
51
|
+
- !ruby/object:Gem::Dependency
|
52
|
+
name: unixconfigstyle
|
53
|
+
prerelease: false
|
54
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
55
|
+
none: false
|
56
|
+
requirements:
|
57
|
+
- - ">="
|
58
|
+
- !ruby/object:Gem::Version
|
59
|
+
segments:
|
60
|
+
- 1
|
61
|
+
- 0
|
62
|
+
- 0
|
63
|
+
version: 1.0.0
|
64
|
+
type: :runtime
|
65
|
+
version_requirements: *id003
|
66
|
+
description: " Simplify packaging with fpm by using config files.\n The aim is to have 1 config file to create many packages for one script module (deb, rpm).\n For the moment, the source MUST be a directory, but this tool can manage a changelog format and also mapping files if the module tree is different from the targeted (deployment) tree.\n"
|
67
|
+
email: wanix.fr@gmail.com
|
68
|
+
executables:
|
69
|
+
- easyfpm
|
70
|
+
- easyfpm-translatecl
|
71
|
+
extensions: []
|
72
|
+
|
73
|
+
extra_rdoc_files:
|
74
|
+
- README.md
|
75
|
+
- LICENSE
|
76
|
+
- THANKS
|
77
|
+
- changelog
|
78
|
+
- doc/samples/easyfpm.cfg
|
79
|
+
- doc/samples/mapping.conf
|
80
|
+
- doc/samples/install_scripts/post-install.sh
|
81
|
+
- doc/samples/install_scripts/post-delete.sh
|
82
|
+
- doc/samples/install_scripts/pre-delete.sh
|
83
|
+
- doc/samples/install_scripts/pre-install.sh
|
84
|
+
files:
|
85
|
+
- lib/easyfpm.rb
|
86
|
+
- lib/easyfpm/exceptions.rb
|
87
|
+
- lib/easyfpm/pkgchangelog.rb
|
88
|
+
- lib/easyfpm/packaging.rb
|
89
|
+
- lib/easyfpm/namespace.rb
|
90
|
+
- lib/easyfpm/mapping.rb
|
91
|
+
- lib/easyfpm/version.rb
|
92
|
+
- lib/easyfpm/commandline.rb
|
93
|
+
- lib/easyfpm/configuration.rb
|
94
|
+
- README.md
|
95
|
+
- LICENSE
|
96
|
+
- THANKS
|
97
|
+
- changelog
|
98
|
+
- doc/samples/easyfpm.cfg
|
99
|
+
- doc/samples/mapping.conf
|
100
|
+
- doc/samples/install_scripts/post-install.sh
|
101
|
+
- doc/samples/install_scripts/post-delete.sh
|
102
|
+
- doc/samples/install_scripts/pre-delete.sh
|
103
|
+
- doc/samples/install_scripts/pre-install.sh
|
104
|
+
- bin/easyfpm
|
105
|
+
- bin/easyfpm-translatecl
|
106
|
+
has_rdoc: true
|
107
|
+
homepage: https://github.com/wanix/easyfpm
|
108
|
+
licenses:
|
109
|
+
- GPLv2
|
110
|
+
post_install_message:
|
111
|
+
rdoc_options: []
|
112
|
+
|
113
|
+
require_paths:
|
114
|
+
- lib
|
115
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
116
|
+
none: false
|
117
|
+
requirements:
|
118
|
+
- - ">="
|
119
|
+
- !ruby/object:Gem::Version
|
120
|
+
segments:
|
121
|
+
- 1
|
122
|
+
- 9
|
123
|
+
- 1
|
124
|
+
version: 1.9.1
|
125
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
126
|
+
none: false
|
127
|
+
requirements:
|
128
|
+
- - ">"
|
129
|
+
- !ruby/object:Gem::Version
|
130
|
+
segments:
|
131
|
+
- 1
|
132
|
+
- 3
|
133
|
+
- 1
|
134
|
+
version: 1.3.1
|
135
|
+
requirements: []
|
136
|
+
|
137
|
+
rubyforge_project:
|
138
|
+
rubygems_version: 1.3.7
|
139
|
+
signing_key:
|
140
|
+
specification_version: 3
|
141
|
+
summary: Wrapper for fpm
|
142
|
+
test_files: []
|
143
|
+
|