-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
txt2html: update to 3.0 #27115
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
txt2html: update to 3.0 #27115
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,12 @@ | ||
# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 | ||
Check warning on line 1 in textproc/txt2html/Portfile
|
||
|
||
PortSystem 1.0 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. please add another commit with non-functional changes where you fix the whitespace issues (i.e., with spaces in multiples of four). There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Once this pull request is merged, I will create a new pull request that fixes the whitespace issues and updates the revision to 1. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No, there is no need to increase the "recision" but you'll need to correct the whitespace formatting before we'll merge this. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Hi @reneeotten, Would you like me to make a separate commit on top of the one I've already made that includes the whitespace changes? If so, I would be happy to do that. I'm asking, because normally I just amend my existing commit when fixing issues. Thanks, -ranga There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You can amend for now. What I meant to say is that normally you would separate functional changes and whitespace changes in two separate commits. However, here you introduce wrong alignment while doing the update so it's fine to correct that and then amend your commit. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Hi, I have changed the space on this line to a tab to match the existing formatting. Let me know if I should revert this and instead update the lines I added / changed to use the usual formatting. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. the whole Portfile should adhere to the correct whitespace.... There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Hi @reneeotten, I have pushed a new commit with whitespace changed. Please let me know if this commit is okay. Thanks, -ranga There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. the white space changes should be in a separate commit, this makes it very unreadable. Please finalize this or close the PR. |
||
PortGroup perl5 1.0 | ||
PortGroup github 1.0 | ||
|
||
name txt2html | ||
version 1.35 | ||
github.setup resurrecting-open-source-projects txt2html 3.0 v | ||
reneeotten marked this conversation as resolved.
Show resolved
Hide resolved
|
||
github.tarball_from archive | ||
revision 0 | ||
categories textproc | ||
reneeotten marked this conversation as resolved.
Show resolved
Hide resolved
|
||
license BSD | ||
maintainers nomaintainer | ||
|
@@ -17,26 +22,36 @@ | |
(whitespace, typographic layout, etc.), and attempts to \ | ||
mark that structure explicitly using HTML. | ||
|
||
master_sites sourceforge | ||
|
||
extract.suffix .tgz | ||
checksums md5 ba007af9d0681b3f493c84869b147071 | ||
checksums rmd160 144e9514e7137f682a738fa25ead029241d0bc31 \ | ||
sha256 6a2d23a23dd7d06cac0d383745bf456754da4992b5f2f4536d478a46d3a8e57e \ | ||
size 140611 | ||
|
||
use_configure no | ||
post-configure { reinplace "s|/usr/share/misc|${prefix}/share/${name}|g" \ | ||
${worksrcpath}/${name}.pl } | ||
|
||
build {} | ||
|
||
destroot { system "install -m 755 -d ${destroot}${prefix}/bin" | ||
system "install -m 755 ${worksrcpath}/${name}.pl \ | ||
${destroot}${prefix}/bin/${name}" | ||
system "install -m 755 -d \ | ||
${destroot}${prefix}/share/${name}" | ||
system "install -m 644 ${worksrcpath}/${name}.dict \ | ||
${destroot}${prefix}/share/${name}" | ||
system "install -m 755 -d \ | ||
${destroot}${prefix}/share/doc/${name}" | ||
system "install -m 644 ${worksrcpath}/* \ | ||
${destroot}${prefix}/share/doc/${name}" | ||
system "rm ${destroot}${prefix}/share/doc/${name}/${name}.*" } | ||
perl5.use_module_build | ||
|
||
depends_lib-append \ | ||
port:p${perl5.major}-getopt-long \ | ||
port:p${perl5.major}-getopt-argvfile \ | ||
port:p${perl5.major}-yaml-syck | ||
|
||
# Also requires: Pod::Usage, Test::More but those should be in any | ||
# non-obsolete Perl's core modules. | ||
|
||
post-patch { | ||
reinplace "s|/usr/bin/env perl|${perl5.bin}|" ${worksrcpath}/scripts/${name} | ||
} | ||
|
||
configure { | ||
system -W ${worksrcpath} "'${perl5.bin}' './Build.PL' \ | ||
'--install_base' '${prefix}'" | ||
} | ||
|
||
post-destroot { | ||
file mkdir ${destroot}${prefix}/lib/perl5/${perl5.major} | ||
move ${destroot}${prefix}/lib/perl5/HTML \ | ||
${destroot}${prefix}/lib/perl5/${perl5.major} | ||
move ${destroot}${prefix}/man/man1/txt2html.1pm \ | ||
${destroot}${prefix}/share/man/man1 | ||
move ${destroot}${prefix}/man/man3/HTML::TextToHTML.3pm \ | ||
${destroot}/${prefix}/share/man/man3 | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You've changed the whitespace of the entire file in addition to making functional changes, making it very hard to identify and review the functional changes. Please separate whitespace-only changes into a separate commit, if they must be done.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I reverted the whitespace changes and only included functional changes in my latest commit. Thanks.