[Pkg-javascript-commits] [jarisplayer] 76/80: Include and use local script license-miner (succeeding print-metadata.pl). Update package relations: Build-depend on libfont-ttf-perl. Stop build-depend on libipc-system-simple-perl lcdf-typetools.

Jonas Smedegaard dr at jones.dk
Tue May 10 08:45:38 UTC 2016


This is an automated email from the git hooks/post-receive script.

js pushed a commit to branch master
in repository jarisplayer.

commit 0e24cb12b9fc2b6f4a7660eb525f91d007e09cc3
Author: Jonas Smedegaard <dr at jones.dk>
Date:   Tue May 10 10:12:16 2016 +0200

    Include and use local script license-miner (succeeding print-metadata.pl). Update package relations: Build-depend on libfont-ttf-perl. Stop build-depend on libipc-system-simple-perl lcdf-typetools.
---
 debian/license-miner     | 243 +++++++++++++++++++++++++++++++++++++++++++++++
 debian/print-metadata.pl |  67 -------------
 debian/rules             |  15 +--
 3 files changed, 251 insertions(+), 74 deletions(-)

diff --git a/debian/license-miner b/debian/license-miner
new file mode 100755
index 0000000..52f5b4d
--- /dev/null
+++ b/debian/license-miner
@@ -0,0 +1,243 @@
+#! /usr/bin/perl
+
+use autodie;
+use strict;
+use utf8;
+use warnings qw(all);
+use feature 'say';
+
+use Getopt::Long;
+use Pod::Usage;
+use FileHandle;
+use Regexp::Assemble;
+use Image::ExifTool;
+use Font::TTF::Font;
+use Font::TTF::Ttc;
+
+=head1 NAME
+
+license-miner - extract copyright/licensing info from complex files
+
+=head1 SYNOPSIS
+
+license-miner [B<options>] [F<path>|inspector:F<path>...]
+
+=head1 OPTIONS
+
+=over 12
+
+=item B<--help>
+
+Print a brief help message and exits.
+
+=item B<--man>
+
+Prints the manual page and exits.
+
+=item B<--verbose>
+
+Prints names of paths and the inspector used.
+
+=item B<--debug>
+
+Prints extracted info.
+
+=back
+
+=head1 DESCRIPTION
+
+B<This program> will inspect files,
+extract their copyright and licensing info,
+and save the result next to the files
+(adding suffix "F<.metadata_dump>").
+
+File paths are provided either as arguments
+or (if no arguments provided) from STDIN.
+
+Each path may optionally be prefixed with an inspector to use.
+Default is to pick inspector based on file suffix.
+
+=head1 INSPECTORS
+
+Available inspectors are B<ttf> and B<exif>.
+
+=over 12
+
+=item B<ttf>
+
+TrueType fonts (including Truetype-flavored OpenType and WOFF).
+
+Used by default for extensions F<.ttf>, F<.otf>, F<woff>.
+
+Beware that some OpenType fonts are not TrueType but Type1,
+which may fail to parse correctly based on suffix detection.
+If that happens, try force using the exif inspector
+by prefixing the path with "exif:".
+
+=item B<ttc>
+
+TrueType collections (including Truetype-flavored OpenType).
+
+Used by default for extension F<.ttc>.
+
+If parsing fails, try force using the exif inspector
+by prefixing the path with "exif:".
+
+=item B<exif>
+
+misc. images and fonts.
+
+Used by default for extensions F<gif>, F<icc>, F<jpeg>, F<.jpg>, F<.pdf>, F<.pfa>, F<.pfb>, F<.png>, F<psd>, F<svg>.
+
+Beware that some OpenType fonts are not TrueType but Type1,
+which may fail to parse correctly based on suffix detection.
+If that happens, try force using the exif inspector
+by prefixing the path with "exif:".
+
+=back
+
+=cut
+
+# avoid custom configuration of ExifTool
+BEGIN { $Image::ExifTool::configFile = '' }
+
+GetOptions( help => \my $help,
+	man      => \my $man,
+	verbose  => \my $verbose,
+	debug    => \my $debug,
+) or pod2usage(2);
+pod2usage( -verbose => 1 ) if $help;
+pod2usage( -verbose => 2, -exitstatus => 0 ) if $man;
+
+# Fail if no paths provided as arguments and STDIN is interactive
+pod2usage("$0: No paths provided.") if ((@ARGV == 0) && (-t STDIN));
+
+my $dispatch = {
+	# TrueType (including Truetype-flavored OpenType and WOFF) fonts
+	'((?<=\Attf:).*|\A.*\.(?:ttf|otf|woff))$' => sub {
+		my $file = check_infile(shift);
+		say "ttf: $file" if ($verbose);
+		my $handle = ($debug)
+			? *STDOUT{IO}
+			: FileHandle->new( check_outfile($file), 'w' );
+		# source: http://scripts.sil.org/IWS-Chapter08#3054f18b
+		my %table = (
+			Copyright => 0,
+			Trademark => 7,
+			License => 13,
+			'License URL' => 14,
+		);
+		my $font = Font::TTF::Font->open($file) or do {
+			say STDERR "ERROR: Failed to parse file as TrueType font: $_";
+			exit 1;
+		};
+		my $fn = $font->{'name'}->read;
+		foreach (sort keys %table) {
+			my $value = $fn->find_name($table{$_});
+			print $handle $_ . ": " . $value . "\n"
+				if ($value);
+		}
+	},
+	# TrueType (including Truetype-flavored OpenType) collections
+	'((?<=\Attc:).*|\A.*\.(?:ttc))$' => sub {
+		my $file = check_infile(shift);
+		say "ttf: $file" if ($verbose);
+		my $handle = ($debug)
+			? *STDOUT{IO}
+			: FileHandle->new( check_outfile($file), 'w' );
+		# source: http://scripts.sil.org/IWS-Chapter08#3054f18b
+		my %table = (
+			Copyright => 0,
+			Trademark => 7,
+			License => 13,
+			'License URL' => 14,
+		);
+		my $collection = Font::TTF::Ttc->open($file) or do {
+			say STDERR "ERROR: Failed to parse file as TrueType collection: $_";
+			exit 1;
+		};
+		foreach ( @{$collection->{'directs'}} ) {
+			my $fn = $_->{'name'}->read;
+			foreach (sort keys %table) {
+				my $value = $fn->find_name($table{$_});
+				print $handle $_ . ": " . $value . "\n"
+					if ($value);
+			}
+		}
+	},
+	# exif: misc. images and fonts
+	'((?<=\Aexif:).*|\A.*\.(?:gif|icc|jpeg|jpg|pfa|pfb|pdf|png|psd|svg))$' => sub {
+		my $file = check_infile(shift);
+		say "exif: $file" if ($verbose);
+		my $exifTool = new Image::ExifTool;
+		my $handle = ($debug)
+			? *STDOUT{IO}
+			: FileHandle->new( check_outfile($file), 'w' );
+		my $info = $exifTool->ImageInfo($file,
+			# tags to lookup (like `exiftool $file` in shell)
+			'*Author*', '*Copyright*', '*Creator*', '*Licens*', '*Rights*', '*Trademark*');
+		my $seen;
+		print $handle "File: $file\n";
+		foreach (sort keys %$info) {
+			my $tagdesc = $exifTool->GetDescription($_);
+			print $handle "$tagdesc: $$info{$_}\n";
+		}
+	}
+};
+
+my $re = Regexp::Assemble->new( track => 1 )->add( keys %$dispatch );
+
+while( <> ) {
+	chomp;
+	if( $re->match($_) ) {
+		$dispatch->{ $re->matched }( $re->mvar(1) );
+	}
+	else {
+		say STDERR "ERROR: Unsupported or unparseable string: $_";
+		say STDERR "       maybe you need a prefix (e.g. \"exif:fonts/SomeType1Font\"";
+		exit 1;
+	}
+}
+
+sub check_infile {
+	my $infile = shift;
+	unless ( -e $infile ) {
+		say STDERR "ERROR: file does not exist: $infile";
+		exit 1;
+	}
+	return $infile;
+}
+
+sub check_outfile {
+	my $infile = shift;
+	my $outfile = $infile . ".metadata_dump";
+	if ( -e $outfile ) {
+		say STDERR "ERROR: dumpfile exist: $outfile";
+		say STDERR "       remove or put aside and try again";
+		exit 1;
+	}
+	return $outfile;
+}
+
+=head1 AUTHOR
+
+Jonas Smedegaard, C<< <dr at jones.dk> >>
+
+=head1 LICENSE AND COPYRIGHT
+
+Copyright 2014-2016 Jonas Smedegaard
+
+This program 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, or (at your option) any
+later version.
+
+This program 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 this program.  If not, see <http://www.gnu.org/licenses/>.
+
+=cut
diff --git a/debian/print-metadata.pl b/debian/print-metadata.pl
deleted file mode 100644
index 7bd3ba0..0000000
--- a/debian/print-metadata.pl
+++ /dev/null
@@ -1,67 +0,0 @@
-#! /usr/bin/perl
-
-# Copyright © 2014 Jonas Smedegaard <dr at jones.dk>
-# Description: Extract copyright/licensing metadata from binary files
-#
-# This program 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, or (at your option)
-# any later version.
-#
-# This program 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 this program.  If not, see <http://www.gnu.org/licenses/>.
-
-use strict;
-use warnings;
-use IPC::System::Simple;
-use autodie qw(:all);
-use feature 'say';
-use Regexp::Assemble;
-use Image::ExifTool qw(:Public);
-
-BEGIN { $Image::ExifTool::configFile = '' }
-
-my $exifTool = new Image::ExifTool;
-
-my $dispatch = {
-	'.*\.(png|jpg|jpeg|gif|icc)' => sub {
-		my ( $infile, $outfile ) = @_;
-		my $info = $exifTool->ImageInfo($infile, '*Name*', '*Copyright*');
-		open(my $fh, ">>", $outfile);
-		foreach (sort keys %$info) {
-#			print $fh "$_: $$info{$_}\n";
-			my $tagdesc = $exifTool->GetDescription($_);
-			print $fh "$tagdesc: $$info{$_}\n";
-		}
-	},
-	'.*\.(ttf|otf)' => sub {
-		my ( $infile, $outfile ) = @_;
-		system 'sh', '-c',
-			"otfinfo -i '$infile' | egrep 'Copyright|Licens' > '$outfile'";
-	},
-};
-
-my $re = Regexp::Assemble->new( track => 1 )->add( keys %$dispatch );
-
-while( <> ) {
-	chomp;
-	if( $re->match($_) ) {
-		my $infile = $re->mvar(0);
-		my $outfile = "$infile.metadata_dump";
-		if ( -e $outfile ) {
-			say STDERR "ERROR: dumpfile exist: $outfile";
-			say STDERR "       remove or put aside and try again";
-			exit 1;
-		}
-		$dispatch->{ $re->matched }( $infile, $outfile );
-	}
-	else {
-		last if /q/;
-		print "\tignored\n";
-	}
-}
diff --git a/debian/rules b/debian/rules
index 942f6a7..cdb22da 100755
--- a/debian/rules
+++ b/debian/rules
@@ -30,16 +30,17 @@ bdeps = haxe
 
 CDBS_BUILD_DEPENDS +=, $(bdeps)
 
-# extract metadata from images and fonts before copyright check
-CDBS_BUILD_DEPENDS +=, libimage-exiftool-perl, libregexp-assemble-perl
-CDBS_BUILD_DEPENDS +=, libipc-system-simple-perl, lcdf-typetools
-local_inspection_regex = png
-DEB_COPYRIGHT_CHECK_IGNORE_REGEX = ^((.*/)?[^/]+\.($(local_inspection_regex))|debian/(changelog|copyright(|_hints|_newhints)))$$
+# Track changes to copyright and licensing hints
+#  * extract metadata from binary graphics files
+CDBS_BUILD_DEPENDS +=, libregexp-assemble-perl, libimage-exiftool-perl
+CDBS_BUILD_DEPENDS +=, libfont-ttf-perl
+copyright-check-binary-ext-regex = png
+DEB_COPYRIGHT_CHECK_IGNORE_REGEX = ^((.*/)?[^/]+\.($(copyright-check-binary-ext-regex))|debian/(changelog|copyright(|_hints|_newhints)))$$
 debian/stamp-copyright-check: debian/stamp-extract-copyright
 debian/stamp-extract-copyright:
 	find * -type f -regextype posix-extended \
-		-regex '.*\.($(local_inspection_regex))' \
-		-print0 | perl -0 debian/print-metadata.pl
+		-regex '.*\.($(copyright-check-binary-ext-regex))' \
+		-print0 | perl -0 debian/license-miner
 	touch $@
 pre-build:: clean-extracted-copyright-during-build
 clean-extracted-copyright-during-build: debian/stamp-copyright-check

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/jarisplayer.git



More information about the Pkg-javascript-commits mailing list