a84926d44a
Update ruby-railties52 to 5.2.4.2. ## Rails 5.2.4.1 (December 18, 2019) ## * No changes. ## Rails 5.2.4 (November 27, 2019) ## * Use original `bundler` environment variables during the process of generating a new rails project. *Marco Costa* * Allow loading seeds without ActiveJob. Fixes #35782 *Jeremy Weathers* * Only force `:async` ActiveJob adapter to `:inline` during seeding. *BatedUrGonnaDie*
31 lines
1,017 B
Makefile
31 lines
1,017 B
Makefile
# $NetBSD: Makefile,v 1.2 2020/03/20 15:43:05 taca Exp $
|
|
|
|
DISTNAME= railties-${RAILS_VERSION}
|
|
PKGNAME= ${RUBY_PKGPREFIX}-railties${RUBY_RAILS}-${RAILS_VERSION}
|
|
CATEGORIES= databases
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.rubyonrails.org/
|
|
COMMENT= Tools for creating, working with, and running Rails 5.2
|
|
LICENSE= mit
|
|
|
|
DEPENDS+= ${RUBY_ACTIVESUPPORT_DEPENDS}
|
|
DEPENDS+= ${RUBY_ACTIONPACK_DEPENDS}
|
|
DEPENDS+= ${RUBY_PKGPREFIX}-thor>=0.19.0:../../devel/ruby-thor
|
|
DEPENDS+= ${RUBY_PKGPREFIX}-method_source-[0-9]*:../../misc/ruby-method_source
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
RUBY_RAILS_ACCEPTED= 52
|
|
RUBY_RAILS_STRICT_DEP= yes
|
|
RUBYGEM_OPTIONS+= --format-executable
|
|
OVERRIDE_GEMSPEC+= :executables rails=rails${RUBY_RAILS} \
|
|
:files exe/rails=exe/rails${RUBY_RAILS}
|
|
|
|
pre-configure:
|
|
${TEST} -f ${WRKSRC}/exe/rails${RUBY_RAILS} || \
|
|
${MV} ${WRKSRC}/exe/rails ${WRKSRC}/exe/rails${RUBY_RAILS}
|
|
${CHMOD} ${BINMODE} ${WRKSRC}/exe/rails${RUBY_RAILS}
|
|
|
|
.include "../../lang/ruby/gem.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|