Bugzilla – Attachment 145802 Details for
Bug 32609
Remove compiled files from src
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 32609: (follow-up) Add build-resources.PL
Bug-32609-follow-up-Add-build-resourcesPL.patch (text/plain), 2.17 KB, created by
Martin Renvoize (ashimema)
on 2023-01-30 16:17:44 UTC
(
hide
)
Description:
Bug 32609: (follow-up) Add build-resources.PL
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2023-01-30 16:17:44 UTC
Size:
2.17 KB
patch
obsolete
>From 9158141063522280e2210e1f68122dec084805bc Mon Sep 17 00:00:00 2001 >From: Martin Renvoize <martin.renvoize@ptfs-europe.com> >Date: Mon, 30 Jan 2023 16:16:07 +0000 >Subject: [PATCH] Bug 32609: (follow-up) Add build-resources.PL > >This patch adds a trivial perl wrapper around the yarn build and calls >it from Makefile.PL. > >I 'think' this is all we need to get packaging, dev and standard >installs happy with the lack of our compiled files in source. >--- > Makefile.PL | 3 +++ > build-resources.PL | 38 ++++++++++++++++++++++++++++++++++++++ > 2 files changed, 41 insertions(+) > create mode 100755 build-resources.PL > >diff --git a/Makefile.PL b/Makefile.PL >index 131d8a0ae2b..fe450aa7d10 100644 >--- a/Makefile.PL >+++ b/Makefile.PL >@@ -675,6 +675,9 @@ my $pl_files = { > 'fix-perl-path.PL' => [ # this script ensures the correct shebang line for the platform installed on... > 'blib' > ], >+ 'build-resources.PL' => [ >+ 'blib' >+ ], > }; > > push @{ $pl_files->{'rewrite-config.PL'} }, ( >diff --git a/build-resources.PL b/build-resources.PL >new file mode 100755 >index 00000000000..456161ece7c >--- /dev/null >+++ b/build-resources.PL >@@ -0,0 +1,38 @@ >+#!/usr/bin/perl >+# This file is part of Koha. >+# >+# Koha is free software; you can redistribute it and/or modify it >+# under the terms of the GNU General Public License as published by >+# the Free Software Foundation; either version 3 of the License, or >+# (at your option) any later version. >+# >+# Koha is distributed in the hope that it will be useful, but >+# WITHOUT ANY WARRANTY; without even the implied warranty of >+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the >+# GNU General Public License for more details. >+# >+# You should have received a copy of the GNU General Public License >+# along with Koha; if not, see <http://www.gnu.org/licenses>. >+# >+ >+use Modern::Perl; >+use ExtUtils::MakeMaker::Config; >+ >+=head1 NAME >+ >+build-resources.PL - helper for the Koha packager and installer >+ >+=head1 SYNOPSIS >+ >+ perl build-resources.PL >+ >+=head1 DESCRIPTION >+ >+This helper script ensures that src JS and SCSS files are compiled for packaging. >+ >+=cut >+ >+my $command = "yarn build:prod"; >+system($command); >+ >+1; >-- >2.39.1
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 32609
:
145209
|
145210
|
145211
|
145212
|
145802
|
145838