- Do not extract the source again if it has been extraced in a previous run. (#100)
- Allow passing a
Path
object to thePath#/
method. (#127)
- Add more lifecylce hooks:
before_package_create
after_package_create
before_source_download
after_source_download
before_source_extraction
after_source_extraction
before_build
after_build
before_install
after_install
- Remove some duplication in dependency handling. (glensc / #114)
- Add
:externals
option to SVN source handler. (glensc / #117) - Use heredoc when calling hook script in fpm-cookery recipe. (glensc / #121)
- Add
sh()
method as an alias forsafesystem()
. - Add
install-build-deps
CLI command to install all build dependencies. (cas-ei / #126) - Fix no-deps CLI flags for omnibus style builds. (cas-ei / #124 / #125)
- Start documentation at https://fpm-cookery.readthedocs.org/.
The documentation is now included in the source code (
docs/
directory) and is written in sphinx/rst. - Add lifecycle hooks to the recipe class. (#113) WARNING: This is an experimental feature and the hook names might change!
- Add
extraced_source
attribute to the recipe class. (#112)
- Add :extract option to git source handler. Using ":extract => :clone" with a :git source handler will clone the repository into the build directory.
- Ignore more relative dependencies in dependency inspector. (sewhyte / #111)
- Add support for extracting tar.xz files. (djhaskin987 / #109)
- Make default prefix configurable. (#104)
- Unbreak running on Ruby 2.2. (#105)
- Fix Puppet dependecy. (#105)
- Revert "Avoid using git ls-files in gemspec".
- Use FPM exclude code. (#102)
- Add
osrelease
andosmajorrelease
facts. (#98) - Avoid using
git ls-files
in gemspec. (beddari / #96)
- Add
environment
method to recipe to handle environment settings. - Allow newer FPM versions than 1.1.
- Unbreak
configure
call without arguments on Ruby 1.8. (#92) - Basic Scientific Linux support. (jjuarez / #93)
- Update internal recipes. (smasset / #89)
- Add amazon linux to the list of RPM-based distros. (skottler / #88)
- Add support for PEAR packages. (mlafeldt / #85)
- Add support for CPAN packages. (mlafeldt / #87)
- Add
--skip-package
command line flag. (#86)
- Add support to set arbitrary fpm attributes via
fpm_attributes
. (unakatsuo / #75, #80) - Require fpm
~> 1.1.0
. (ryansch / #84)
- Unbreak rpm packages by reverting the
%files
change from #67. - Remove default revision. (smasset / #76) WARNING: This changes the default package names and metadata!
- Add support for python/pypi packages. (Mic92 / #73, smasset / #78)
- Unbreak omnibus and chain packagers. (#69)
- Add
--tmp-root
command line option. - Add
--pkg-dir
command line option. - Add
--cache-dir
command line option. - Fix
%files
section in rpms. (unakatsuo / #67)
- Correctly set version, iteration and vendor on the FPM object. WARNING: This changes the default package names!
- Do not set a default value for the vendor attribute. WARNING: This changes the default package names!
- Change package name computation regarding version, revision and vendor. WARNING: This changes the default package names!
- Start default revision at 1.
- Unbreak omnibus packaging. (#64)
- Add support for npm recipes. (bracki / #65)
- Unbreak deb package building.
- Update fpm dependency to 1.0.0. (joschi / #62)
- Add
-q
command line option to disable progress bars. (#58) - Add
directories
recipe attribute. (#53) - Add
autogen
build helper. (sepulworld/autogen-support / #54) - Add
root_prefix
androot
path helper. (sepulworld/set-root-prefix / #52) - Support recursive omnibus recipes dependencies. (avishai-ish-shalom / #49)
- Add support for submodules in git provider. (narkisr / #50)
- Set a default maintainer.
- Fix problems with setting epoch. (#51)
- Unbreak package building with broken symlinks.
- Do not fail if git is not installed.
- Chain packager. (smasset)
- Add show-depends CLI option. (unakatsuo)
- Add fpm-cookery chain packager gem recipes. (smasset)
- Compatibility fixes for the latest FPM releases. (skiold)
- Fix problems with tar files that contain no directories. (narkisr)
- New CLI options parsing backend. (using clamp)
- Add --no-deps option to disable dependency checks.
- Handle private GitHub URLs. (aussielunix)
- Fix dependencies in gemspec.
- Install dependencies via Puppet. (andytinycat)
- Add install-deps action to install dependencies. (andytinycat)
- Fix log message. (ryansch)
- Add a
patch
helper method to apply patches. (piavlo) - Support for Omnibus-style packaging. (andytinycat)
- Add recipe to build a fat (omnibus-style) package for fpm-cookery.
- Add
:args
option for the curl handler. (torrancew) - Add
-V
command line option to show fpm-cookery and fpm versions.
- Make local file source behave like the remote url source. (#14)
- Copy source files with no or unknown file extension to the source dir. (smasset)
- Set deb_user and deb_group attributes to root.
- Ensure passing the vendor attribute to fpm. (aussielunix)
- Unbreak logging with the latest fpm.
- Add source handler to handle local source directories via file:// urls.
- Add support for shar and bin files to curl source handler. (brandonmartin)
- Support an optional basename parameter for the
install
helper. - Deprecate public usage of the
install_p
helper. - Add license option to the recipe class.
- Allow architecture specific settings via the
architectures
method. - Unbreak RPM creation on RHEL5. (brandonmartin)
- Add /opt path helper.
- Use the new fpm API. (requires at least fpm-0.4.x)
- Show the fpm log output via cabin.
- Skip git fetch if the specified sha or tag exists.
- Add hg (mercurial) source handler.
- Fix tags fetchting for the git source handler.
- Add a logging/output system.
- Improve extracted source detection for the curl and svn source handler.
- Allow absolute paths for pre/post scripts.
- Add git source handler.
- Add svn source handler. (lusis)
- Framework for alternate source handlers. (lusis)
- Add .zip support to the curl source handler.
- Detect package target based on the platform.
- Allow platform specific options. (like dependencies) (lusis)
- Add platform (operating system) detection. (lusis)
- Select vendor string delimiter based on the package target. (lusis)
- Add pre/post install/uninstall script support. (lusis)
- Add flag for package target. (deb, rpm) (jordansissel)
- Improve recipe detection. (jordansissel)
- Add
with_trueprefix
path helper. - Add and enable source integrity check.
- Initial gem release.