Date: Sat, 16 Sep 2017 12:01:42 +0000 (UTC) From: Joseph Mingrone <jrm@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r449963 - head/net-im/mastodon Message-ID: <201709161201.v8GC1g8D038346@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jrm Date: Sat Sep 16 12:01:42 2017 New Revision: 449963 URL: https://svnweb.freebsd.org/changeset/ports/449963 Log: net-im/mastodon: Fix issue running database migration script Reported by: Marcin Cieslak <saper@saper.info> Modified: head/net-im/mastodon/Makefile head/net-im/mastodon/pkg-plist Modified: head/net-im/mastodon/Makefile ============================================================================== --- head/net-im/mastodon/Makefile Sat Sep 16 10:55:08 2017 (r449962) +++ head/net-im/mastodon/Makefile Sat Sep 16 12:01:42 2017 (r449963) @@ -3,6 +3,7 @@ PORTNAME= mastodon DISTVERSIONPREFIX= v DISTVERSION= 1.6.0 +PORTREVISION= 1 CATEGORIES= net-im www MAINTAINER= jrm@FreeBSD.org @@ -140,13 +141,11 @@ do-install: ${INSTALL_DATA} ${WRKDIR}/nginx-include.conf \ ${STAGEDIR}${WWWDIR}/nginx-include.conf.sample ${INSTALL_DATA} ${WRKSRC}/.env.production.sample ${WRKSRC}/app.json \ - ${WRKSRC}/config.ru ${WRKSRC}/Gemfile \ - ${WRKSRC}/LICENSE ${WRKSRC}/package.json \ - ${WRKSRC}/Rakefile \ + ${WRKSRC}/config.ru ${WRKSRC}/Gemfile ${WRKSRC}/LICENSE \ + ${WRKSRC}/package.json ${WRKSRC}/Rakefile \ ${STAGEDIR}${WWWDIR} (cd ${WRKSRC} && ${COPYTREE_SHARE} \ - "app config db lib log node_modules public spec \ - streaming vendor" \ + "app bin config db lib log node_modules public spec streaming vendor" \ ${STAGEDIR}${WWWDIR}) .include <bsd.port.pre.mk> Modified: head/net-im/mastodon/pkg-plist ============================================================================== --- head/net-im/mastodon/pkg-plist Sat Sep 16 10:55:08 2017 (r449962) +++ head/net-im/mastodon/pkg-plist Sat Sep 16 12:01:42 2017 (r449963) @@ -139,6 +139,7 @@ @dir %%WWWDIR%%/app/workers/admin @dir %%WWWDIR%%/app/workers/pubsubhubbub @dir %%WWWDIR%%/app/workers/scheduler +@dir %%WWWDIR%%/bin @dir %%WWWDIR%%/config @dir %%WWWDIR%%/config/environments @dir %%WWWDIR%%/config/initializers @@ -3250,6 +3251,14 @@ %%WWWDIR%%/app/workers/unfavourite_worker.rb %%WWWDIR%%/app/workers/unmerge_worker.rb %%WWWDIR%%/app/workers/web_push_notification_worker.rb +%%WWWDIR%%/bin/bundle +%%WWWDIR%%/bin/rails +%%WWWDIR%%/bin/rake +%%WWWDIR%%/bin/rspec +%%WWWDIR%%/bin/setup +%%WWWDIR%%/bin/update +%%WWWDIR%%/bin/webpack +%%WWWDIR%%/bin/webpack-dev-server %%WWWDIR%%/config.ru %%WWWDIR%%/config/application.rb %%WWWDIR%%/config/boot.rb
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201709161201.v8GC1g8D038346>