c8a8d7816b
2.2.33 (2021-12-07) Security fixes: * Pass "--" to git commands to separate positional and optional args #5142 Enhancements: * Accept pull request URLs as github source #5126 * Add --version parameter to bundle info command #5137 * Let original Errno::EACCES error be raised in compact index updater #5110 * Improve gemfile-lockfile source equivalence errors #5120 * Avoid float-to-string loss of characters in GitHub Actions configuration labels in new gem template #5089 * Add an initial rbs template to bundle gem skeleton #5041 * Avoid shared libraries not getting environment passed right after argv in memory when bundle exec is used #4815 Bug fixes: * Don't cleanup paths from gems already activated from $LOAD_PATH #5111 * Fix handling prereleases of 0 versions, like 0.0.0.dev or 0.0.0.SNAPSHOT #5116 * Fix escape of filenames in bundle doctor #5102 * Don't unlock dependencies when running bundle install after changing global source #5090 * Fix missing locked specs when depended on another platform #5092 * Fix bundle info sometimes claiming that bundler has been deleted #5097 Documentation: * Ignore to generate the documentation from vendored libraries #5118
23 lines
559 B
Makefile
23 lines
559 B
Makefile
# $NetBSD: Makefile,v 1.52 2021/12/08 14:51:21 taca Exp $
|
|
|
|
DISTNAME= bundler-2.2.33
|
|
CATEGORIES= misc
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://bundler.io/
|
|
COMMENT= Manage your application's dependencies
|
|
LICENSE= mit
|
|
|
|
RUBYGEM_OPTIONS+= --format-executable
|
|
COMMANDS= bundle bundler
|
|
USE_LANGUAGES= # none
|
|
|
|
post-install:
|
|
cd ${DESTDIR}${PREFIX}/bin && \
|
|
for f in ${COMMANDS}; do \
|
|
${TEST} -f $${f}2-${RUBY_SUFFIX} || \
|
|
${MV} $${f}${RUBY_SUFFIX} $${f}2-${RUBY_SUFFIX}; \
|
|
done
|
|
|
|
.include "../../lang/ruby/gem.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|