Check-in [7c2c71b78f]
Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | - version bump |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
7c2c71b78f2e5a0a4cd4f42b383337ee |
| User & Date: | jls@semicomplete.com 2011-05-20 19:40:38 |
Context
|
2011-05-30
| ||
| 18:50 | Merge pull request #41 from adamhjk/ITERATION Adding iteration as a settable field check-in: d5bc442367 user: jls@semicomplete.com tags: trunk | |
| 17:39 | Adding iteration as a settable field check-in: 0b1e588167 user: adam@opscode.com tags: trunk | |
|
2011-05-20
| ||
| 19:40 | - version bump check-in: 7c2c71b78f user: jls@semicomplete.com tags: trunk | |
| 03:45 | fizzlesticks check-in: 0dd5133462 user: jls@semicomplete.com tags: trunk | |
Changes
Changes to CHANGELIST.
1 2 3 4 5 6 7 |
0.2.28 (May 18, 2011)
- Use --replaces as "Obsoletes" in rpms.
0.2.27 (May 18, 2011)
- If present, DEBEMAIL and DEBFULLNAME environment variables will be used as
the default maintainer. Previously the default was simply <$user@$hostname>
https://github.com/jordansissel/fpm/issues/37
| > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 |
0.2.29 (May 20, 2011)
- Add 'tar' source support. Useful for binary releases to repackage as rpms
and debs. Example:
fpm -s tar -t rpm -n firefox -v 4.0.1 \
--prefix /opt/firefox/4.0.1 firefox-4.0.1.tar.bz2
0.2.28 (May 18, 2011)
- Use --replaces as "Obsoletes" in rpms.
0.2.27 (May 18, 2011)
- If present, DEBEMAIL and DEBFULLNAME environment variables will be used as
the default maintainer. Previously the default was simply <$user@$hostname>
https://github.com/jordansissel/fpm/issues/37
|
| ︙ | ︙ |
Changes to fpm.gemspec.
1 2 3 4 5 6 7 8 9 10 11 12 |
Gem::Specification.new do |spec|
files = []
dirs = %w{lib bin templates}
dirs.each do |dir|
files += Dir["#{dir}/**/*"]
end
files << "LICENSE"
files << "CONTRIBUTORS"
files << "CHANGELIST"
spec.name = "fpm"
| | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
Gem::Specification.new do |spec|
files = []
dirs = %w{lib bin templates}
dirs.each do |dir|
files += Dir["#{dir}/**/*"]
end
files << "LICENSE"
files << "CONTRIBUTORS"
files << "CHANGELIST"
spec.name = "fpm"
spec.version = "0.2.29"
spec.summary = "fpm - package building and mangling"
spec.description = "Turn directories into packages. Fix broken packages. Win the package building game."
spec.add_dependency("json")
spec.files = files
spec.require_paths << "lib"
spec.bindir = "bin"
spec.executables << "fpm"
|
| ︙ | ︙ |