Check-in [3c39fc7d17]
Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix clamp option declaration from :bool to :flag. |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
3c39fc7d1799c73389778e8cc813ce4b |
| User & Date: | mario 2014-12-27 11:54:26 |
Context
|
2014-12-27
| ||
| 12:00 | Monkey-patch Clamp to allow for :hidden command line options aliases, and allow :asis option names for FPM per-package options. Used by composer plugin to provide --phar in conjunction to --composer-phar. check-in: 73817f0c69 user: mario tags: trunk | |
| 11:54 | Fix clamp option declaration from :bool to :flag. check-in: 3c39fc7d17 user: mario tags: trunk | |
|
2014-12-26
| ||
| 20:25 | Fix staging_path target name, and path localization for downloaded phars. Retain just target package information from composer.lock. check-in: 049fb106f3 user: mario tags: trunk | |
Changes
Changes to lib/fpm/package/ipk.rb.
| ︙ | ︙ | |||
23 24 25 26 27 28 29 | require "time" # Build Listaller package class FPM::Package::IPK < FPM::Package include ERB::Util | | | 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
require "time"
# Build Listaller package
class FPM::Package::IPK < FPM::Package
include ERB::Util
option "--relocatable", :flag, "Assume application was built relocatable."
# Create doap, files list, then package up
def output(output_path)
output_check(output_path)
# pre-generate files list
files = []
|
| ︙ | ︙ |