You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@karenetheridge recently removed the MANIFEST from the git repo which is a good idea and avoid discrepancies when performing a release
but we should add the manifest dependency to dist using MY::dist_core
make dist
rm -rf Devel-PPPort-3.51
"/usr/local/perl/perls/perl-5.26.1/bin/perl" "-MExtUtils::Manifest=manicopy,maniread" \
-e "manicopy(maniread(),'Devel-PPPort-3.51', 'best');"
Problem opening MANIFEST: No such file or directory at /usr/local/perl/perls/perl-5.26.1/lib/5.26.1/ExtUtils/Manifest.pm line 349.
mkdir Devel-PPPort-3.51
Generating META.yml
Generating META.json
Could not add META.yml to MANIFEST: Could not open MANIFEST: No such file or directory at /usr/local/perl/perls/perl-5.26.1/lib/5.26.1/ExtUtils/Manifest.pm line 723.
make: *** [distmeta] Error 2
The text was updated successfully, but these errors were encountered:
rm -f MANIFEST; make clean; perl Makefile.PL; make dist
Makefile out-of-date with respect to Makefile.PL
Cleaning current config before rebuilding Makefile...
make -f Makefile.old clean > /dev/null 2>&1
"/usr/local/perl/perls/perl-5.26.2/bin/perl" Makefile.PL
Setting license tag...
Generating a Unix-style Makefile
Writing Makefile for Devel::PPPort
Writing MYMETA.yml and MYMETA.json
==> Your Makefile has been rebuilt. <==
==> Please rerun the make command. <==
false
make: *** [Makefile] Error 1
Setting license tag...
Generating a Unix-style Makefile
Writing Makefile for Devel::PPPort
Writing MYMETA.yml and MYMETA.json
rm -rf Devel-PPPort-3.52
"/usr/local/perl/perls/perl-5.26.2/bin/perl" "-MExtUtils::Manifest=manicopy,maniread" \
-e "manicopy(maniread(),'Devel-PPPort-3.52', 'best');"
Problem opening MANIFEST: No such file or directory at /usr/local/perl/perls/perl-5.26.2/lib/5.26.2/ExtUtils/Manifest.pm line 349.
mkdir Devel-PPPort-3.52
Generating META.yml
Generating META.json
Could not add META.yml to MANIFEST: Could not open MANIFEST: No such file or directory at /usr/local/perl/perls/perl-5.26.2/lib/5.26.2/ExtUtils/Manifest.pm line 723.
atoomic
added a commit
to atoomic/Devel-PPPort
that referenced
this issue
May 17, 2019
Fixes GH Dual-Life#68
make sure we regenerate the manifest
when building a dist.
We recently removed on purpose the
MANIFEST file from the git repo to
make sure we always generate a fresh
version on dist...
@karenetheridge recently removed the MANIFEST from the git repo which is a good idea and avoid discrepancies when performing a release
but we should add the
manifest
dependency todist
using MY::dist_coreThe text was updated successfully, but these errors were encountered: