mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-20 03:47:16 +02:00
- patch install scripts to not write `.packlist` instead of removing it after the fact with a `find -delete`. also, reorder the patches alphabetically. - split `make install` up into `install.perl` and `install.man`. the issue of conflicting man pages was brought up again, and it was suggested that instead of manually deleting man pages after a conflict is discovered, it would be much better to guarantee that such conflicts cannot occur in the first place by renaming the man pages in `perl-doc`. so, set up the necessary conditions in `make install.man` for a rename to take place, but do not rename anything for the time being as, at the time of writing, a suitable new man page extension to replace `.3pm` has not yet been agreed upon. among the `install*` targets in the Makefile, only `install.man` allows us to pass `INSTALLFLAGS` to `installman`, the rest all pass that to `installperl` instead. Both changes are just different (hopefully, better) ways of accomplishing the same thing, so functionally nothing has changed, and no pkgrel bump is required.
20 lines
365 B
Diff
20 lines
365 B
Diff
--- a/installman
|
|
+++ b/installman
|
|
@@ -182,7 +182,6 @@
|
|
}
|
|
}
|
|
|
|
-$packlist->write() unless $opts{notify};
|
|
print " Installation complete\n" if $opts{verbose};
|
|
|
|
# ex: set ts=8 sts=4 sw=4 et:
|
|
--- a/installperl
|
|
+++ b/installperl
|
|
@@ -507,7 +507,6 @@
|
|
}
|
|
|
|
|
|
-$packlist->write() unless $opts{notify};
|
|
print " Installation complete\n" if $opts{verbose};
|
|
|
|
exit 0;
|