[SCM] Debian packaging of libfont-ttf-perl branch, master, updated. caaa024425a15e70d32925d9bdb73a76a65aa15d

Xavier Guimard x.guimard at free.fr
Tue Nov 6 06:25:53 UTC 2012


The following commit has been merged in the master branch:
commit caaa024425a15e70d32925d9bdb73a76a65aa15d
Author: Xavier Guimard <x.guimard at free.fr>
Date:   Tue Nov 6 07:25:02 2012 +0100

    Fix patches and proposed to unstable

diff --git a/debian/NEWS b/debian/NEWS
new file mode 100644
index 0000000..02e0912
--- /dev/null
+++ b/debian/NEWS
@@ -0,0 +1,13 @@
+libfont-ttf-perl (1.02-1) unstable; urgency=low
+
+  Major change to glyph creation/editing -- now utilizes ' isDirty' flag
+  Add support for:
+  *    V4 OS/2 table
+  *    Reading WOFF fonts
+  *    MarkFilterSets in GDEF
+  *    Feature parameters (for cvxx, ssxx and size features)
+  *    Additional Graphite tables (Silf, Glac, and Gloc)
+  Updated MS Lang IDs to Dec 2011
+  Finish implementation of coverage table sorting
+
+ -- Xavier Guimard <x.guimard at free.fr>  Tue, 06 Nov 2012 07:14:56 +0100
diff --git a/debian/changelog b/debian/changelog
index 03da4fc..cafef25 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-libfont-ttf-perl (1.02-1) UNRELEASED; urgency=low
+libfont-ttf-perl (1.02-1) unstable; urgency=low
 
   [ Ansgar Burchardt ]
   * debian/control: Convert Vcs-* fields to Git.
@@ -11,8 +11,9 @@ libfont-ttf-perl (1.02-1) UNRELEASED; urgency=low
   [ Xavier Guimard ]
   * Update copyright to format 1.0
   * Bump Standards-Version to 3.9.4
+  * Remove warnings-defined.patch, now in upstream
 
- -- Xavier Guimard <x.guimard at free.fr>  Tue, 06 Nov 2012 06:53:03 +0100
+ -- Xavier Guimard <x.guimard at free.fr>  Tue, 06 Nov 2012 07:22:28 +0100
 
 libfont-ttf-perl (0.48-1) unstable; urgency=low
 
diff --git a/debian/compat b/debian/compat
index 7f8f011..45a4fb7 100644
--- a/debian/compat
+++ b/debian/compat
@@ -1 +1 @@
-7
+8
diff --git a/debian/patches/fix-pod.patch b/debian/patches/fix-pod.patch
index 4eed972..6e0dae5 100755
--- a/debian/patches/fix-pod.patch
+++ b/debian/patches/fix-pod.patch
@@ -3,11 +3,11 @@ Origin: vendor
 Forwarded: no
 Author: gregor herrmann <gregoa at debian.org>
 Reviewed-by: gregor herrmann <gregoa at debian.org>
-Last-Update: 2011-02-25
+Last-Update: 2012-11-06
 
 --- a/lib/Font/TTF/AATutils.pm
 +++ b/lib/Font/TTF/AATutils.pm
-@@ -103,6 +103,10 @@
+@@ -104,6 +104,10 @@
      }
  }
  
diff --git a/debian/patches/fix-spelling.patch b/debian/patches/fix-spelling.patch
index 63ee433..2fca1f6 100644
--- a/debian/patches/fix-spelling.patch
+++ b/debian/patches/fix-spelling.patch
@@ -2,7 +2,7 @@ Description: spelling fix
 Origin: vendor
 Forwarded: no
 Author: gregor herrmann <gregoa at debian.org>
-Last-Update: 2011-02-25
+Last-Update: 2012-11-06
 
 --- a/lib/Font/TTF/Cmap.pm
 +++ b/lib/Font/TTF/Cmap.pm
@@ -82,7 +82,7 @@ Last-Update: 2011-02-25
  particular lookup
  
  =item TYPE
-@@ -154,7 +154,7 @@
+@@ -158,7 +158,7 @@
  
  =item OFFSET
  
@@ -91,7 +91,7 @@ Last-Update: 2011-02-25
  subtable
  
  =item FORMAT
-@@ -193,7 +193,7 @@
+@@ -197,7 +197,7 @@
  
  =item PRE
  
diff --git a/debian/patches/series b/debian/patches/series
index c1cc361..28b0a8a 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,4 +1,3 @@
 fix-pod.patch
 fix-spelling.patch
 warnings-uninitialized.patch
-warnings-defined.patch
diff --git a/debian/patches/warnings-defined.patch b/debian/patches/warnings-defined.patch
deleted file mode 100644
index cf4eacd..0000000
--- a/debian/patches/warnings-defined.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-Description: fix warnings about unnecessary defined() calls in perl 5.16
-Origin: vendor
-Bug-Debian: http://bugs.debian.org/679637
-Forwarded: unknown
-Author: Jeffrey Ratcliffe <jeffrey.ratcliffe at gmail.com>
-Reviewed-by: gregor herrmann <gregoa at debian.org>
-Last-Update: 2012-08-18
-
---- a/lib/Font/TTF/Name.pm
-+++ b/lib/Font/TTF/Name.pm
-@@ -142,7 +142,7 @@
-         {
-             if ($pid == 1 && defined $apple_encodings[0][$eid])
-             { $dat = TTF_word_utf8(pack("n*", map({$apple_encodings[0][$eid][$_]} unpack("C*", $dat)))); }
--            elsif ($pid == 2 && $eid == 2 && defined @cp_1252)
-+            elsif ($pid == 2 && $eid == 2 && @cp_1252)
-             { $dat = TTF_word_utf8(pack("n*", map({$cp_1252[0][$_]} unpack("C*", $dat)))); }
-             elsif ($pid == 0 || $pid == 3 || ($pid == 2 && $eid == 1))
-             { $dat = TTF_word_utf8($dat); }
-@@ -185,7 +185,7 @@
-                         { $str_trans = pack("C*",
-                                 map({$apple_encodings[1][$eid]{$_} || 0x3F} unpack("n*",
-                                 TTF_utf8_word($str_trans)))); }
--                        elsif ($pid == 2 && $eid == 2 && defined @cp_1252)
-+                        elsif ($pid == 2 && $eid == 2 && @cp_1252)
-                         { $str_trans = pack("C*",
-                                 map({$cp_1252[1][$eid]{$_} || 0x3F} unpack("n*",
-                                 TTF_utf8_word($str_trans)))); }
-@@ -292,7 +292,7 @@
- {
-     my ($self, $pid, $eid) = @_;
- 
--    return ($utf8 && ($pid == 0 || $pid == 3 || ($pid == 2 && ($eid != 2 || defined @cp_1252))
-+    return ($utf8 && ($pid == 0 || $pid == 3 || ($pid == 2 && ($eid != 2 || @cp_1252))
-             || ($pid == 1 && defined $apple_encodings[$eid])));
- }
- 
diff --git a/debian/patches/warnings-uninitialized.patch b/debian/patches/warnings-uninitialized.patch
index a2208ff..d6d9b19 100644
--- a/debian/patches/warnings-uninitialized.patch
+++ b/debian/patches/warnings-uninitialized.patch
@@ -4,22 +4,11 @@ Bug-Debian: http://bugs.debian.org/658653
 Forwarded: unknown
 Author: Jeffrey Ratcliffe <Jeffrey.Ratcliffe at gmail.com>
 Reviewed-by: gregor herrmann <gregoa at debian.org>
-Last-Update: 2012-08-18
+Last-Update: 2012-11-06
 
---- a/lib/Font/TTF/Glyph.pm
-+++ b/lib/Font/TTF/Glyph.pm
-@@ -252,7 +252,7 @@
-     my ($fh) = $self->{' INFILE'};
-     my ($dat);
- 
--    return $self if ($self->{' read'} > 0);
-+    return $self if (defined($self->{' read'}) and $self->{' read'} > 0);
-     $self->{' read'} = 1;
-     $fh->seek($self->{' LOC'} + $self->{' BASE'}, 0);
-     $fh->read($self->{' DAT'}, $self->{' LEN'});
 --- a/lib/Font/TTF/Cmap.pm
 +++ b/lib/Font/TTF/Cmap.pm
-@@ -326,11 +326,15 @@
+@@ -327,11 +327,15 @@
              
          if ($s->{'Format'} == 0)
          {

-- 
Debian packaging of libfont-ttf-perl



More information about the Pkg-perl-cvs-commits mailing list