Skip to content

Instantly share code, notes, and snippets.

@dlangille
Created January 9, 2020 16:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dlangille/b27345745fb82981edf383356bd75261 to your computer and use it in GitHub Desktop.
Save dlangille/b27345745fb82981edf383356bd75261 to your computer and use it in GitHub Desktop.
#!/usr/local/bin/perl
my $msg="
------------------------------------------------------------------------
r522460 | pkubaj | 2020-01-08 21:36:57 +0000 (Wed, 08 Jan 2020) | 10 lines
multimedia/obs-studio: fix build on powerpc64
Merge upstream commit to use GCC's SSE->AltiVec translation. Since it depends on compiling with GCC, it only works on ELFv1. Hopefully it will be possible to build it on ELFv2 in the future.
Also use luajit only where it's actually available. Since it's optional, the port builds anyway.
PR: 243199
Approved by: yuri (maintainer)
MFH: 2020Q1 (fix build blanket)
------------------------------------------------------------------------
";
print $msg;
print "====================\n";
print "====================\n";
print "====================\n";
print "====================\n";
print "====================\n";
print "====================\n";
#$msg =~ s/[^[:print:]\n]//g;
$msg =~ s/[^\x09\x0A\x0D\x20-\x{D7FF}\x{E000}-\x{FFFD}\x{10000}-\x{10FFFF}]//go;
#$msg =~ s/\W//g;
print $msg;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment