import fontforge-20170731-8.el8
This commit is contained in:
commit
1776e3748d
2
.fontforge.metadata
Normal file
2
.fontforge.metadata
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
f7afd824640ed620790a20b14eb78b1e230fea10 SOURCES/fontforge-20170731.tar.gz
|
||||||
|
13b702314f26b56b81dc55adfe29468957002141 SOURCES/gnulib-2bf7326.tar.gz
|
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
SOURCES/fontforge-20170731.tar.gz
|
||||||
|
SOURCES/gnulib-2bf7326.tar.gz
|
519
SOURCES/Add-python3-support.patch
Normal file
519
SOURCES/Add-python3-support.patch
Normal file
@ -0,0 +1,519 @@
|
|||||||
|
From b2c5de7835a753cad1f35db8202c4733b5fc2990 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Parag A Nemade <pnemade@fedoraproject.org>
|
||||||
|
Date: Mon, 3 Oct 2016 12:56:29 +0530
|
||||||
|
Subject: [PATCH] Add python3 support
|
||||||
|
|
||||||
|
Signed-off-by: Parag A Nemade <pnemade@fedoraproject.org>
|
||||||
|
---
|
||||||
|
pycontrib/FontCompare/fc/BitmapHandler.py | 20 +++++++--------
|
||||||
|
pycontrib/FontCompare/fc/DocCompare.py | 2 +-
|
||||||
|
pycontrib/FontCompare/fc/FontCompare.py | 2 +-
|
||||||
|
pycontrib/FontCompare/fc/GlyphConsistency.py | 2 +-
|
||||||
|
pycontrib/FontCompare/fontcompare | 2 +-
|
||||||
|
pycontrib/FontCompare/unittests/unittests.py | 18 ++++++-------
|
||||||
|
pycontrib/collab/web-test-collab.py | 2 +-
|
||||||
|
pycontrib/even.py | 2 +-
|
||||||
|
pycontrib/gdraw/__init__.py | 4 +--
|
||||||
|
pycontrib/gdraw/gdraw.py | 20 +++++++--------
|
||||||
|
pycontrib/graphicore.py | 4 +--
|
||||||
|
pycontrib/graphicore/ipython_view.py | 13 +++++-----
|
||||||
|
pycontrib/graphicore/shell.py | 4 +--
|
||||||
|
pycontrib/svg2sfd.py | 38 ++++++++++++++--------------
|
||||||
|
pycontrib/webcollab.py | 6 ++---
|
||||||
|
15 files changed, 70 insertions(+), 69 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/pycontrib/FontCompare/fc/BitmapHandler.py b/pycontrib/FontCompare/fc/BitmapHandler.py
|
||||||
|
index d4d00da..c159128 100644
|
||||||
|
--- a/pycontrib/FontCompare/fc/BitmapHandler.py
|
||||||
|
+++ b/pycontrib/FontCompare/fc/BitmapHandler.py
|
||||||
|
@@ -35,7 +35,7 @@ def white_bg_square(img):
|
||||||
|
"return a white-background-color image having the img in exact center"
|
||||||
|
size = (max(img.size),)*2
|
||||||
|
layer = Image.new('1', size, 1)
|
||||||
|
- layer.paste(img, tuple(map(lambda x:(x[0]-x[1])/2, zip(size, img.size))))
|
||||||
|
+ layer.paste(img, tuple([(x[0]-x[1])/2 for x in zip(size, img.size)]))
|
||||||
|
return layer
|
||||||
|
|
||||||
|
class BitmapCompare:
|
||||||
|
@@ -73,13 +73,13 @@ class CreateSpriteSheet:
|
||||||
|
#seperate each image with lots of whitespace
|
||||||
|
master_height = pixelsize
|
||||||
|
oldfont = font
|
||||||
|
- print "the master image will by %d by %d" % (master_width, master_height)
|
||||||
|
- print "creating image..."
|
||||||
|
+ print("the master image will by %d by %d" % (master_width, master_height))
|
||||||
|
+ print("creating image...")
|
||||||
|
master = Image.new(
|
||||||
|
mode='1',
|
||||||
|
size=(master_width, master_height),
|
||||||
|
color=0) # fully transparent
|
||||||
|
- print "created."
|
||||||
|
+ print("created.")
|
||||||
|
if effects == "italic":
|
||||||
|
font.selection.all()
|
||||||
|
font = font.italicize(-13)
|
||||||
|
@@ -92,16 +92,16 @@ class CreateSpriteSheet:
|
||||||
|
font[i].changeWeight(50,"auto",0,0,"auto")
|
||||||
|
font[i].export("temp.bmp",pixelsize,1)
|
||||||
|
img = Image.open("temp.bmp")
|
||||||
|
- print "adding %s at %d..." % (str(i)+".bmp", location),
|
||||||
|
+ print("adding %s at %d..." % (str(i)+".bmp", location), end=' ')
|
||||||
|
square_one = white_bg_square(img)
|
||||||
|
square_one.resize((pixelsize, pixelsize))
|
||||||
|
master.paste(square_one,(location,0))
|
||||||
|
- print "added."
|
||||||
|
+ print("added.")
|
||||||
|
except:
|
||||||
|
- print "ooopsy"
|
||||||
|
+ print("ooopsy")
|
||||||
|
count+=1
|
||||||
|
- print "done adding pics."
|
||||||
|
- print "saving mastersprite.bmp..."
|
||||||
|
+ print("done adding pics.")
|
||||||
|
+ print("saving mastersprite.bmp...")
|
||||||
|
master.save('data/mastersprite'+effects+'.bmp' )
|
||||||
|
- print "saved!"
|
||||||
|
+ print("saved!")
|
||||||
|
font.close()
|
||||||
|
diff --git a/pycontrib/FontCompare/fc/DocCompare.py b/pycontrib/FontCompare/fc/DocCompare.py
|
||||||
|
index 3a54bf9..df431e2 100644
|
||||||
|
--- a/pycontrib/FontCompare/fc/DocCompare.py
|
||||||
|
+++ b/pycontrib/FontCompare/fc/DocCompare.py
|
||||||
|
@@ -41,7 +41,7 @@ class DocCompare:
|
||||||
|
bashcommand = "hb-view --output-format=\"png\" --output-file=\"/var/tmp/test.png\" --font-size="+str(fontsize)+" --text-file=\""
|
||||||
|
bashcommand+=docpath+"\" "+"\""+testpath+"\""
|
||||||
|
os.system(str(bashcommand))
|
||||||
|
- print bashcommand
|
||||||
|
+ print(bashcommand)
|
||||||
|
thefile = pkg_resources.resource_filename("fc",mockfont.highresdocfile)
|
||||||
|
shutil.copy(thefile,"/var/tmp/standard.png")
|
||||||
|
cm = BitmapCompare()
|
||||||
|
diff --git a/pycontrib/FontCompare/fc/FontCompare.py b/pycontrib/FontCompare/fc/FontCompare.py
|
||||||
|
index f21718c..c82b788 100644
|
||||||
|
--- a/pycontrib/FontCompare/fc/FontCompare.py
|
||||||
|
+++ b/pycontrib/FontCompare/fc/FontCompare.py
|
||||||
|
@@ -111,7 +111,7 @@ class FontCompare(object):
|
||||||
|
scores = list()
|
||||||
|
comparator = BitmapCompare()
|
||||||
|
pixelsize = (resolution*ptsize)/72
|
||||||
|
- print spritepath
|
||||||
|
+ print(spritepath)
|
||||||
|
for i in range (glyphRange[0],glyphRange[1]):
|
||||||
|
if i in Testfont:
|
||||||
|
Testfont[i].export("/var/tmp/tmp.bmp",pixelsize,1)
|
||||||
|
diff --git a/pycontrib/FontCompare/fc/GlyphConsistency.py b/pycontrib/FontCompare/fc/GlyphConsistency.py
|
||||||
|
index 38273c9..d5265fa 100644
|
||||||
|
--- a/pycontrib/FontCompare/fc/GlyphConsistency.py
|
||||||
|
+++ b/pycontrib/FontCompare/fc/GlyphConsistency.py
|
||||||
|
@@ -102,7 +102,7 @@ class GlyphConsistency:
|
||||||
|
for i in range (glyphrange[0],glyphrange[1]):
|
||||||
|
if i in font:
|
||||||
|
score = self.glyph_round_compare(font[i],pixelsize)
|
||||||
|
- print score
|
||||||
|
+ print(score)
|
||||||
|
set_round_score+=score
|
||||||
|
total+=1
|
||||||
|
font.close()
|
||||||
|
diff --git a/pycontrib/FontCompare/fontcompare b/pycontrib/FontCompare/fontcompare
|
||||||
|
index e7e68d8..fdf7336 100755
|
||||||
|
--- a/pycontrib/FontCompare/fontcompare
|
||||||
|
+++ b/pycontrib/FontCompare/fontcompare
|
||||||
|
@@ -15,7 +15,7 @@
|
||||||
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
"""
|
||||||
|
|
||||||
|
-#! /usr/bin/python
|
||||||
|
+#! /usr/bin/python3
|
||||||
|
from PyQt4.QtGui import QMessageBox
|
||||||
|
from PyQt4.QtGui import QMainWindow
|
||||||
|
from PyQt4.QtGui import QApplication
|
||||||
|
diff --git a/pycontrib/FontCompare/unittests/unittests.py b/pycontrib/FontCompare/unittests/unittests.py
|
||||||
|
index 18e1e95..d8a1190 100644
|
||||||
|
--- a/pycontrib/FontCompare/unittests/unittests.py
|
||||||
|
+++ b/pycontrib/FontCompare/unittests/unittests.py
|
||||||
|
@@ -55,7 +55,7 @@ class Basictests(unittest.TestCase):
|
||||||
|
for tup in basic:
|
||||||
|
if tup[1]!=10:
|
||||||
|
bastest=0
|
||||||
|
- self.failUnless(bastest)
|
||||||
|
+ self.assertTrue(bastest)
|
||||||
|
testfont = fontforge.open("unittests/lohit.ttf")
|
||||||
|
bold = cm.font_facecompare(testfont,mockfont,(0x900,0x97f),\
|
||||||
|
600,12,1,"bold")
|
||||||
|
@@ -66,28 +66,28 @@ class Basictests(unittest.TestCase):
|
||||||
|
normal = cm.font_facecompare(testfont,mockfont,(0x900,0x97f),\
|
||||||
|
600,12,1,"normal")
|
||||||
|
test = 1
|
||||||
|
- print len(normal)
|
||||||
|
+ print(len(normal))
|
||||||
|
for tup in bold:
|
||||||
|
if tup[1]==100 or tup[1]==0:
|
||||||
|
test1=1
|
||||||
|
break
|
||||||
|
- self.failUnless(test)
|
||||||
|
+ self.assertTrue(test)
|
||||||
|
test = 0
|
||||||
|
for tup in italic:
|
||||||
|
if tup[1]==100 or tup[1]==0:
|
||||||
|
test=1
|
||||||
|
break
|
||||||
|
- self.failUnless(test is 1)
|
||||||
|
+ self.assertTrue(test is 1)
|
||||||
|
test = 0
|
||||||
|
for tup in normal:
|
||||||
|
if tup[1]==100 or tup[1]==0:
|
||||||
|
test=1
|
||||||
|
break
|
||||||
|
- self.failUnless(test is 1)
|
||||||
|
+ self.assertTrue(test is 1)
|
||||||
|
test = 0
|
||||||
|
if len(normal) == len(bold) == len(italic):
|
||||||
|
test = 1
|
||||||
|
- self.failUnless(test is 1)
|
||||||
|
+ self.assertTrue(test is 1)
|
||||||
|
|
||||||
|
def testGlyphConsistency(self):
|
||||||
|
cm = GlyphConsistency()
|
||||||
|
@@ -99,11 +99,11 @@ class Basictests(unittest.TestCase):
|
||||||
|
test3 = cm.glyph_round_consistency(testfont,(0x900,0x97f),50)
|
||||||
|
|
||||||
|
test = (0 <= test1[0][1] <= 10)
|
||||||
|
- self.failUnless(test)
|
||||||
|
+ self.assertTrue(test)
|
||||||
|
test2 = (0 <= test2 <= 10)
|
||||||
|
- self.failUnless(test2)
|
||||||
|
+ self.assertTrue(test2)
|
||||||
|
test3 = (0 <= test3 <= 10)
|
||||||
|
- self.failUnless(test3)
|
||||||
|
+ self.assertTrue(test3)
|
||||||
|
|
||||||
|
"""
|
||||||
|
unittests for DocCompare not required.
|
||||||
|
diff --git a/pycontrib/collab/web-test-collab.py b/pycontrib/collab/web-test-collab.py
|
||||||
|
index 47b763f..b19f930 100755
|
||||||
|
--- a/pycontrib/collab/web-test-collab.py
|
||||||
|
+++ b/pycontrib/collab/web-test-collab.py
|
||||||
|
@@ -68,7 +68,7 @@ def OnCollabUpdate(f):
|
||||||
|
"end": "null" # this is simply so we dont have to manage keeping the last item with no terminating ,
|
||||||
|
},
|
||||||
|
sort_keys=True, indent=4, separators=(',', ': '))
|
||||||
|
- print js
|
||||||
|
+ print(js)
|
||||||
|
fi = open(fontJsonOnDisk, 'w')
|
||||||
|
fi.write(js)
|
||||||
|
|
||||||
|
diff --git a/pycontrib/even.py b/pycontrib/even.py
|
||||||
|
index 96f9128..4f30fcb 100755
|
||||||
|
--- a/pycontrib/even.py
|
||||||
|
+++ b/pycontrib/even.py
|
||||||
|
@@ -1,4 +1,4 @@
|
||||||
|
-#!/usr/bin/python
|
||||||
|
+#!/usr/bin/python3
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
"""
|
||||||
|
running even from the fontforge menu
|
||||||
|
diff --git a/pycontrib/gdraw/__init__.py b/pycontrib/gdraw/__init__.py
|
||||||
|
index d47976c..dde7ea8 100644
|
||||||
|
--- a/pycontrib/gdraw/__init__.py
|
||||||
|
+++ b/pycontrib/gdraw/__init__.py
|
||||||
|
@@ -1,4 +1,4 @@
|
||||||
|
-#!/usr/bin/python
|
||||||
|
+#!/usr/bin/python3
|
||||||
|
# vim:ts=8:sw=4:expandtab:encoding=utf-8
|
||||||
|
'''
|
||||||
|
Copyright <hashao2@gmail.com> 2009
|
||||||
|
@@ -22,7 +22,7 @@ Copyright <hashao2@gmail.com> 2009
|
||||||
|
__all__ = ['Timer', 'GtkRunner', 'gtkrunner']
|
||||||
|
__version__ = '0.1'
|
||||||
|
|
||||||
|
-from gdraw import *
|
||||||
|
+from .gdraw import *
|
||||||
|
|
||||||
|
def main():
|
||||||
|
pass
|
||||||
|
diff --git a/pycontrib/gdraw/gdraw.py b/pycontrib/gdraw/gdraw.py
|
||||||
|
index f2d5e50..8b6e693 100755
|
||||||
|
--- a/pycontrib/gdraw/gdraw.py
|
||||||
|
+++ b/pycontrib/gdraw/gdraw.py
|
||||||
|
@@ -1,4 +1,4 @@
|
||||||
|
-#!/usr/bin/python
|
||||||
|
+#!/usr/bin/python3
|
||||||
|
'''ctypes wrapper to Attach the GDraw event handler to the gtk main loop.
|
||||||
|
|
||||||
|
Copyright <hashao2@gmail.com> 2009
|
||||||
|
@@ -67,7 +67,7 @@ def setup_syspath(modpath="modules"):
|
||||||
|
|
||||||
|
__all__ = ['Timer', 'GtkRunner', 'gtkrunner']
|
||||||
|
|
||||||
|
-from _gdraw import *
|
||||||
|
+from ._gdraw import *
|
||||||
|
from ctypes import *
|
||||||
|
import types
|
||||||
|
|
||||||
|
@@ -111,7 +111,7 @@ class Timer:
|
||||||
|
|
||||||
|
return
|
||||||
|
def dodo(*args):
|
||||||
|
- print 'aaa'
|
||||||
|
+ print('aaa')
|
||||||
|
return False
|
||||||
|
self.add(1000, dodo)
|
||||||
|
|
||||||
|
@@ -122,7 +122,7 @@ class Timer:
|
||||||
|
|
||||||
|
def _event_handler(self, gw, event):
|
||||||
|
evt = event.contents
|
||||||
|
- print "_event_handler()"
|
||||||
|
+ print("_event_handler()")
|
||||||
|
if evt.type == et_timer:
|
||||||
|
timer = evt.u.timer.timer
|
||||||
|
tkey = addressof(timer.contents)
|
||||||
|
@@ -147,7 +147,7 @@ class Timer:
|
||||||
|
ci.func = CallBackFunc(func)
|
||||||
|
ci.data = data
|
||||||
|
|
||||||
|
- print "timer.add timeout", timeout
|
||||||
|
+ print("timer.add timeout", timeout)
|
||||||
|
frequency = 1 # Use return value of func() to decide repeat like gtk.
|
||||||
|
timer = GDrawRequestTimer(self.win, timeout, timeout, byref(ci))
|
||||||
|
|
||||||
|
@@ -190,7 +190,7 @@ class GtkRunner:
|
||||||
|
|
||||||
|
def _do_main(self, *args):
|
||||||
|
'''The function called by the gdraw timeout handler.'''
|
||||||
|
- print "do_main"
|
||||||
|
+ print("do_main")
|
||||||
|
while gtk.events_pending():
|
||||||
|
gtk.main_iteration(False)
|
||||||
|
return True
|
||||||
|
@@ -207,15 +207,15 @@ class GtkRunner:
|
||||||
|
self.gtk_timer = None
|
||||||
|
|
||||||
|
def OnDestroyWindow(self, widget, fd ):
|
||||||
|
- print fd
|
||||||
|
+ print(fd)
|
||||||
|
fontforge.removeGtkWindowToMainEventLoopByFD( fd )
|
||||||
|
self.stop()
|
||||||
|
return True
|
||||||
|
|
||||||
|
def sniffwindow(self,w):
|
||||||
|
'''sniff key presses for a gtk window'''
|
||||||
|
- print "sniffwindow w", w
|
||||||
|
- print "sniff active font:", fontforge.activeFont()
|
||||||
|
+ print("sniffwindow w", w)
|
||||||
|
+ print("sniff active font:", fontforge.activeFont())
|
||||||
|
w.connect("key-release-event", self._do_main)
|
||||||
|
fontforge.addGtkWindowToMainEventLoop(w.window.xid)
|
||||||
|
fd = fontforge.getGtkWindowMainEventLoopFD(w.window.xid)
|
||||||
|
@@ -223,7 +223,7 @@ class GtkRunner:
|
||||||
|
|
||||||
|
def sniffwindowid(self,xid):
|
||||||
|
'''sniff key presses for a gtk window'''
|
||||||
|
- print "sniffwindowid xid", xid
|
||||||
|
+ print("sniffwindowid xid", xid)
|
||||||
|
#w.connect("key-release-event", self._do_main)
|
||||||
|
|
||||||
|
def start(self, timeout=GTIMEOUT):
|
||||||
|
diff --git a/pycontrib/graphicore.py b/pycontrib/graphicore.py
|
||||||
|
index f95e488..229a2b7 100755
|
||||||
|
--- a/pycontrib/graphicore.py
|
||||||
|
+++ b/pycontrib/graphicore.py
|
||||||
|
@@ -1,4 +1,4 @@
|
||||||
|
-#!/usr/bin/python
|
||||||
|
+#!/usr/bin/python3
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
"""
|
||||||
|
running the fontforge scripts in the graphicore folder on fontforge startup
|
||||||
|
@@ -22,4 +22,4 @@ sys.path.append(os.path.dirname(sys.modules[__name__].__file__))
|
||||||
|
sys.path.reverse();
|
||||||
|
|
||||||
|
#load the modules
|
||||||
|
-import graphicore.shell
|
||||||
|
\ No newline at end of file
|
||||||
|
+import graphicore.shell
|
||||||
|
diff --git a/pycontrib/graphicore/ipython_view.py b/pycontrib/graphicore/ipython_view.py
|
||||||
|
index f39eedb..2b77395 100644
|
||||||
|
--- a/pycontrib/graphicore/ipython_view.py
|
||||||
|
+++ b/pycontrib/graphicore/ipython_view.py
|
||||||
|
@@ -1,4 +1,4 @@
|
||||||
|
-#!/usr/bin/python
|
||||||
|
+#!/usr/bin/python3
|
||||||
|
'''
|
||||||
|
Provides IPython console widget.
|
||||||
|
|
||||||
|
@@ -17,10 +17,11 @@ import re
|
||||||
|
import sys
|
||||||
|
import os
|
||||||
|
import pango
|
||||||
|
-from StringIO import StringIO
|
||||||
|
-import thread
|
||||||
|
+from io import StringIO
|
||||||
|
+import _thread
|
||||||
|
|
||||||
|
import IPython
|
||||||
|
+from functools import reduce
|
||||||
|
|
||||||
|
class IterableIPShell:
|
||||||
|
'''
|
||||||
|
@@ -118,7 +119,7 @@ class IterableIPShell:
|
||||||
|
'''
|
||||||
|
This function updates namespace with sys.modules
|
||||||
|
'''
|
||||||
|
- for k,v in sys.modules.items():
|
||||||
|
+ for k,v in list(sys.modules.items()):
|
||||||
|
if not '.' in k:
|
||||||
|
self.IP.user_ns.update({k:v})
|
||||||
|
|
||||||
|
@@ -271,11 +272,11 @@ class IterableIPShell:
|
||||||
|
@type header: string
|
||||||
|
'''
|
||||||
|
stat = 0
|
||||||
|
- if verbose or debug: print header+cmd
|
||||||
|
+ if verbose or debug: print(header+cmd)
|
||||||
|
# flush stdout so we don't mangle python's buffering
|
||||||
|
if not debug:
|
||||||
|
input, output = os.popen4(cmd)
|
||||||
|
- print output.read()
|
||||||
|
+ print(output.read())
|
||||||
|
output.close()
|
||||||
|
input.close()
|
||||||
|
|
||||||
|
diff --git a/pycontrib/graphicore/shell.py b/pycontrib/graphicore/shell.py
|
||||||
|
index 5d102f7..32fa584 100755
|
||||||
|
--- a/pycontrib/graphicore/shell.py
|
||||||
|
+++ b/pycontrib/graphicore/shell.py
|
||||||
|
@@ -1,4 +1,4 @@
|
||||||
|
-#!/usr/bin/python
|
||||||
|
+#!/usr/bin/python3
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
"""
|
||||||
|
FontForge Interactive Python Shell
|
||||||
|
@@ -32,7 +32,7 @@ if len(sys.argv) == 0:
|
||||||
|
# some versions of IPython need content in sys.argv
|
||||||
|
sys.argv.append('')
|
||||||
|
|
||||||
|
-from ipython_view import *
|
||||||
|
+from .ipython_view import *
|
||||||
|
import gdraw
|
||||||
|
|
||||||
|
def runShell(data = None, glyphOrFont = None):
|
||||||
|
diff --git a/pycontrib/svg2sfd.py b/pycontrib/svg2sfd.py
|
||||||
|
index e1fc0ac..e23cb15 100644
|
||||||
|
--- a/pycontrib/svg2sfd.py
|
||||||
|
+++ b/pycontrib/svg2sfd.py
|
||||||
|
@@ -1,4 +1,4 @@
|
||||||
|
-#!/usr/bin/python
|
||||||
|
+#!/usr/bin/python3
|
||||||
|
#
|
||||||
|
# Copyright 2013 Google Inc. All rights reserved.
|
||||||
|
#
|
||||||
|
@@ -49,7 +49,7 @@ def print_one_cmd(cmd, args):
|
||||||
|
result.append('%f' % (scale * args[i]))
|
||||||
|
result.append(cmd)
|
||||||
|
result.append('0') # TODO: should mark corner points
|
||||||
|
- print ' '.join(result)
|
||||||
|
+ print(' '.join(result))
|
||||||
|
|
||||||
|
def apply_rel_xy(xy, args):
|
||||||
|
x0, y0 = xy
|
||||||
|
@@ -75,7 +75,7 @@ def path_to_sfd(path):
|
||||||
|
for i in range(num_args_cmd(cmd)):
|
||||||
|
m = fre.match(path)
|
||||||
|
if m is None:
|
||||||
|
- print 'no float match:', path
|
||||||
|
+ print('no float match:', path)
|
||||||
|
args.append(float(m.group(1)))
|
||||||
|
path = path[m.end():]
|
||||||
|
#print cmd, args
|
||||||
|
@@ -128,13 +128,13 @@ def conv_svg(fn, char, glyphnum = None):
|
||||||
|
if glyphnum == None:
|
||||||
|
glyphnum = lastglyphnum + 1
|
||||||
|
lastglyphnum = glyphnum
|
||||||
|
- print 'StartChar:', os.path.basename(fn)[:-4]
|
||||||
|
- print 'Encoding: %d %d %d' % (char, glyphnum, char)
|
||||||
|
- print 'Width: %d' % (21 * 40)
|
||||||
|
- print 'Flags: W'
|
||||||
|
- print 'LayerCount: 2'
|
||||||
|
- print 'Fore'
|
||||||
|
- print 'SplineSet'
|
||||||
|
+ print('StartChar:', os.path.basename(fn)[:-4])
|
||||||
|
+ print('Encoding: %d %d %d' % (char, glyphnum, char))
|
||||||
|
+ print('Width: %d' % (21 * 40))
|
||||||
|
+ print('Flags: W')
|
||||||
|
+ print('LayerCount: 2')
|
||||||
|
+ print('Fore')
|
||||||
|
+ print('SplineSet')
|
||||||
|
doc = xml.dom.minidom.parse(fn)
|
||||||
|
# TODO: reverse paths if fill color is white-ish (this is more code,
|
||||||
|
# and in the meantime, we'll rely on correct path direction in FF)
|
||||||
|
@@ -147,16 +147,16 @@ def conv_svg(fn, char, glyphnum = None):
|
||||||
|
cy = float(circle.getAttribute('cy'))
|
||||||
|
r = float(circle.getAttribute('r'))
|
||||||
|
circle_to_sfd(cx, cy, r)
|
||||||
|
- print 'EndSplineSet'
|
||||||
|
- print 'EndChar'
|
||||||
|
+ print('EndSplineSet')
|
||||||
|
+ print('EndChar')
|
||||||
|
|
||||||
|
def print_header():
|
||||||
|
global header_printed
|
||||||
|
- print '''SplineFontDB: 3.0
|
||||||
|
+ print('''SplineFontDB: 3.0
|
||||||
|
FontName: %s
|
||||||
|
FullName: %s
|
||||||
|
-FamilyName: %s''' % (font_name, font_name, font_name)
|
||||||
|
- print '''Weight: Medium
|
||||||
|
+FamilyName: %s''' % (font_name, font_name, font_name))
|
||||||
|
+ print('''Weight: Medium
|
||||||
|
Copyright: Copyright (C) 2011 Google Inc.
|
||||||
|
Version: 001.000
|
||||||
|
UnderlinePosition: -120
|
||||||
|
@@ -180,12 +180,12 @@ HheadAOffset: 0
|
||||||
|
HheadDescent: 200
|
||||||
|
HheadDOffset: 0
|
||||||
|
BeginChars: 57600 57600
|
||||||
|
-'''
|
||||||
|
+''')
|
||||||
|
header_printed = True
|
||||||
|
|
||||||
|
def print_footer():
|
||||||
|
- print '''EndChars
|
||||||
|
-EndSplineFont'''
|
||||||
|
+ print('''EndChars
|
||||||
|
+EndSplineFont''')
|
||||||
|
|
||||||
|
def parse_int(x):
|
||||||
|
if x.startswith('0x'):
|
||||||
|
@@ -197,7 +197,7 @@ def run_file(fn):
|
||||||
|
global char_num
|
||||||
|
global font_name
|
||||||
|
directory = ''
|
||||||
|
- for l in file(fn).xreadlines():
|
||||||
|
+ for l in file(fn):
|
||||||
|
if l.startswith('#'):
|
||||||
|
continue
|
||||||
|
s = l.strip().split()
|
||||||
|
diff --git a/pycontrib/webcollab.py b/pycontrib/webcollab.py
|
||||||
|
index 9ee0f17..4be07ec 100755
|
||||||
|
--- a/pycontrib/webcollab.py
|
||||||
|
+++ b/pycontrib/webcollab.py
|
||||||
|
@@ -1,4 +1,4 @@
|
||||||
|
-#!/usr/bin/python
|
||||||
|
+#!/usr/bin/python3
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
"""
|
||||||
|
running web collab server hooks
|
||||||
|
@@ -44,8 +44,8 @@ def startWebServerInCollabMode(data = None, glyphOrFont = None):
|
||||||
|
global child
|
||||||
|
global childNodejs
|
||||||
|
ensureChildClosed()
|
||||||
|
- print("FONTFORGE:" + FONTFORGE)
|
||||||
|
- print("script path:" + collabpath + "web-test-collab.py")
|
||||||
|
+ print(("FONTFORGE:" + FONTFORGE))
|
||||||
|
+ print(("script path:" + collabpath + "web-test-collab.py"))
|
||||||
|
child = subprocess.Popen( [ FONTFORGE, "-forceuihidden", "-script", collabpath + "web-test-collab.py" ] )
|
||||||
|
#
|
||||||
|
# start the nodejs server
|
||||||
|
--
|
||||||
|
2.9.3
|
||||||
|
|
30
SOURCES/fontforge-20140813-use-system-uthash.patch
Normal file
30
SOURCES/fontforge-20140813-use-system-uthash.patch
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
--- ./Makefile.am.old 2014-08-12 10:07:32.000000000 +0530
|
||||||
|
+++ ./Makefile.am 2014-09-08 16:23:56.046996941 +0530
|
||||||
|
@@ -43,7 +43,6 @@
|
||||||
|
AM_CPPFLAGS =
|
||||||
|
AM_LDFLAGS =
|
||||||
|
|
||||||
|
-BUILT_SOURCES = uthash/src
|
||||||
|
EXTRA_DIST =
|
||||||
|
CLEANFILES =
|
||||||
|
MOSTLYCLEANFILES =
|
||||||
|
@@ -113,7 +112,6 @@
|
||||||
|
Packaging/FontForge-doc.spec \
|
||||||
|
Packaging/FontForge.spec \
|
||||||
|
Packaging/FontForge.static.spec \
|
||||||
|
- uthash/src \
|
||||||
|
$(NULL)
|
||||||
|
|
||||||
|
#--------------------------------------------------------------------------
|
||||||
|
@@ -129,11 +127,6 @@
|
||||||
|
|
||||||
|
|
||||||
|
#--------------------------------------------------------------------------
|
||||||
|
-uthash/src:
|
||||||
|
- if [ ! -e uthash/src ]; then \
|
||||||
|
- if [ -e uthash ] ; then rm -r uthash ; fi ; \
|
||||||
|
- git clone https://github.com/troydhanson/uthash ; \
|
||||||
|
- fi ;
|
||||||
|
|
||||||
|
# We import a selection of targets from Frank's standard packaging Makefile.
|
||||||
|
|
2683
SOURCES/fontforge-20170731-covscan-issue-fix.patch
Normal file
2683
SOURCES/fontforge-20170731-covscan-issue-fix.patch
Normal file
File diff suppressed because it is too large
Load Diff
643
SPECS/fontforge.spec
Normal file
643
SPECS/fontforge.spec
Normal file
@ -0,0 +1,643 @@
|
|||||||
|
%global gettext_package FontForge
|
||||||
|
%global gnulib_githead 2bf7326
|
||||||
|
%global gittag0 20170731
|
||||||
|
|
||||||
|
Name: fontforge
|
||||||
|
Version: %{gittag0}
|
||||||
|
Release: 8%{?dist}
|
||||||
|
Summary: Outline and bitmap font editor
|
||||||
|
|
||||||
|
License: GPLv3+
|
||||||
|
URL: http://fontforge.github.io/
|
||||||
|
Source0: https://github.com/fontforge/%{name}/archive/%{gittag0}.tar.gz#/%{name}-%{version}.tar.gz
|
||||||
|
# https://github.com/fontforge/fontforge/issues/1725
|
||||||
|
Source1: http://git.savannah.gnu.org/gitweb/?p=gnulib.git;a=snapshot;h=%{gnulib_githead};sf=tgz;name=gnulib-%{gnulib_githead}.tar.gz
|
||||||
|
# https://github.com/fontforge/fontforge/pull/1723
|
||||||
|
Patch0: fontforge-20140813-use-system-uthash.patch
|
||||||
|
# Fedora specific patch to have python3 support only
|
||||||
|
Patch1: Add-python3-support.patch
|
||||||
|
Patch2: fontforge-20170731-covscan-issue-fix.patch
|
||||||
|
|
||||||
|
Requires: xdg-utils
|
||||||
|
Requires: autotrace
|
||||||
|
Requires: hicolor-icon-theme
|
||||||
|
|
||||||
|
BuildRequires: gcc
|
||||||
|
BuildRequires: git
|
||||||
|
BuildRequires: libjpeg-devel
|
||||||
|
BuildRequires: libtiff-devel
|
||||||
|
BuildRequires: libpng-devel
|
||||||
|
BuildRequires: giflib-devel
|
||||||
|
BuildRequires: libxml2-devel
|
||||||
|
BuildRequires: freetype-devel
|
||||||
|
BuildRequires: desktop-file-utils
|
||||||
|
BuildRequires: libuninameslist-devel
|
||||||
|
BuildRequires: libXt-devel
|
||||||
|
BuildRequires: xorg-x11-proto-devel
|
||||||
|
BuildRequires: gettext
|
||||||
|
BuildRequires: pango-devel
|
||||||
|
BuildRequires: cairo-devel
|
||||||
|
BuildRequires: libspiro-devel
|
||||||
|
BuildRequires: python3-devel
|
||||||
|
BuildRequires: libtool-ltdl-devel
|
||||||
|
BuildRequires: libtool
|
||||||
|
BuildRequires: readline-devel
|
||||||
|
# This is failing on aarch64 so drop it
|
||||||
|
#BuildRequires: python-ipython
|
||||||
|
BuildRequires: uthash-devel
|
||||||
|
# F25 build is failing add following to fix
|
||||||
|
BuildRequires: shared-mime-info
|
||||||
|
|
||||||
|
Provides: bundled(gnulib)
|
||||||
|
|
||||||
|
%description
|
||||||
|
FontForge (former PfaEdit) is a font editor for outline and bitmap
|
||||||
|
fonts. It supports a range of font formats, including PostScript
|
||||||
|
(ASCII and binary Type 1, some Type 3 and Type 0), TrueType, OpenType
|
||||||
|
(Type2) and CID-keyed fonts.
|
||||||
|
|
||||||
|
%package devel
|
||||||
|
Summary: Development tools for fontforge
|
||||||
|
Requires: %{name} = %{version}-%{release}
|
||||||
|
Requires: %{name}-doc = %{version}-%{release}
|
||||||
|
Requires: pkgconfig
|
||||||
|
|
||||||
|
%description devel
|
||||||
|
This package includes the libraries and header files you will need
|
||||||
|
to compile applications against fontforge.
|
||||||
|
|
||||||
|
%package doc
|
||||||
|
Summary: Documentation files for %{name}
|
||||||
|
BuildArch: noarch
|
||||||
|
|
||||||
|
%description doc
|
||||||
|
This package contains documentation files for %{name}.
|
||||||
|
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%autosetup -p1
|
||||||
|
tar xzf %{SOURCE1}
|
||||||
|
|
||||||
|
sed -i -e '/^#!\//, 1d' pycontrib/webcollab.py
|
||||||
|
|
||||||
|
mkdir htdocs
|
||||||
|
cp -pr doc/html/* htdocs
|
||||||
|
chmod 644 htdocs/nonBMP/index.html
|
||||||
|
# Fix bad line terminators
|
||||||
|
%{__sed} -i 's/\r//' htdocs/Big5.txt
|
||||||
|
%{__sed} -i 's/\r//' htdocs/corpchar.txt
|
||||||
|
|
||||||
|
%build
|
||||||
|
./bootstrap --skip-git --gnulib-srcdir=gnulib-%{gnulib_githead}
|
||||||
|
export CFLAGS="%{optflags} -fno-strict-aliasing"
|
||||||
|
|
||||||
|
%configure PYTHON=python3
|
||||||
|
make V=1 %{?_smp_mflags}
|
||||||
|
|
||||||
|
%install
|
||||||
|
make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p"
|
||||||
|
rm -f $RPM_BUILD_ROOT%{_libdir}/libg{draw,unicode}.{la,so}
|
||||||
|
|
||||||
|
desktop-file-install \
|
||||||
|
--dir $RPM_BUILD_ROOT%{_datadir}/applications \
|
||||||
|
--add-category X-Fedora \
|
||||||
|
desktop/fontforge.desktop
|
||||||
|
|
||||||
|
# The fontforge makefiles install htdocs as well, but we
|
||||||
|
# prefer to have them under the standard RPM location, so
|
||||||
|
# remove the extra copy
|
||||||
|
rm -rf $RPM_BUILD_ROOT%{_datadir}/doc/fontforge
|
||||||
|
|
||||||
|
# remove unneeded .la and .a files
|
||||||
|
find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
|
||||||
|
find $RPM_BUILD_ROOT -name '*.a' -exec rm -f {} ';'
|
||||||
|
|
||||||
|
# Find translations
|
||||||
|
%find_lang %{gettext_package}
|
||||||
|
|
||||||
|
mkdir -p $RPM_BUILD_ROOT%{_datadir}/appdata
|
||||||
|
install -m 644 -p desktop/fontforge.appdata.xml $RPM_BUILD_ROOT%{_datadir}/appdata
|
||||||
|
|
||||||
|
mkdir -p $RPM_BUILD_ROOT%{_datadir}/mime/packages
|
||||||
|
install -m 644 -p desktop/fontforge.xml $RPM_BUILD_ROOT%{_datadir}/mime/packages/
|
||||||
|
|
||||||
|
#Makefile install rules are playing evil here. Let's correct the permission.
|
||||||
|
#chmod 644 $RPM_BUILD_ROOT%{_datadir}/fontforge/python/graphicore/__init__.py
|
||||||
|
chmod 644 $RPM_BUILD_ROOT%{_datadir}/fontforge/python/gdraw/_gdraw.py
|
||||||
|
|
||||||
|
chmod 644 $RPM_BUILD_ROOT%{_datadir}/fontforge/nodejs/collabwebview/css/*.css
|
||||||
|
chmod 644 $RPM_BUILD_ROOT%{_datadir}/fontforge/nodejs/collabwebview/js/*.js
|
||||||
|
chmod 644 $RPM_BUILD_ROOT%{_datadir}/fontforge/nodejs/collabwebview/js/contentEditable/*
|
||||||
|
|
||||||
|
%post -p /sbin/ldconfig
|
||||||
|
|
||||||
|
%postun -p /sbin/ldconfig
|
||||||
|
|
||||||
|
%files -f %{gettext_package}.lang
|
||||||
|
%doc AUTHORS
|
||||||
|
%license LICENSE
|
||||||
|
%{_bindir}/*
|
||||||
|
%{_libdir}/lib*.so.*
|
||||||
|
%{_datadir}/applications/*fontforge.desktop
|
||||||
|
%{_datadir}/fontforge
|
||||||
|
%{_datadir}/icons/hicolor/*/apps/fontforge.*
|
||||||
|
%{_mandir}/man1/*.1*
|
||||||
|
%{_datadir}/mime/packages/fontforge.xml
|
||||||
|
%{_datadir}/appdata/fontforge.appdata.xml
|
||||||
|
%{python3_sitearch}/fontforge.so
|
||||||
|
%{python3_sitearch}/psMat.so
|
||||||
|
|
||||||
|
%files devel
|
||||||
|
%{_includedir}/fontforge/
|
||||||
|
%{_libdir}/lib*.so
|
||||||
|
%{_libdir}/pkgconfig/*.pc
|
||||||
|
|
||||||
|
%files doc
|
||||||
|
%doc htdocs
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Tue Oct 30 2018 Parag Nemade <pnemade AT redhat DOT com> - 20170731-8
|
||||||
|
- Resolves:rh#1644224 - fix some issues from covscan patch
|
||||||
|
|
||||||
|
* Sat Sep 22 2018 Parag Nemade <pnemade AT redhat DOT com> - 20170731-7
|
||||||
|
- Resolves:rh#1602497 - Fix some covscan issues
|
||||||
|
|
||||||
|
* Mon Jul 23 2018 Ray Strode <rstrode@redhat.com> - 20170731-6
|
||||||
|
- Drop gnulib BuildReq
|
||||||
|
|
||||||
|
* Sun Feb 11 2018 Sandro Mani <manisandro@gmail.com> - 20170731-5
|
||||||
|
- Rebuild (giflib)
|
||||||
|
|
||||||
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 20170731-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 11 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 20170731-3
|
||||||
|
- Remove obsolete scriptlets
|
||||||
|
|
||||||
|
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 20170731-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jul 31 2017 Parag Nemade <pnemade AT redhat DOT com> - 20170731-1
|
||||||
|
- Update to 20170731
|
||||||
|
|
||||||
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 20161012-7
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Mar 09 2017 Parag Nemade <pnemade AT redhat DOT com> - 20161012-6
|
||||||
|
- Resolves:rh#1429574 - [abrt] fontforge: PyFF_OpenFont(): fontforge killed by signal 6
|
||||||
|
- Added patch to fix python module for python3.6
|
||||||
|
|
||||||
|
* Sat Feb 18 2017 Parag Nemade <pnemade AT redhat DOT com> - 20161012-5
|
||||||
|
- Add missing BR: git
|
||||||
|
|
||||||
|
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 20161012-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 12 2017 Igor Gnatenko <ignatenko@redhat.com> - 20161012-3
|
||||||
|
- Rebuild for readline 7.x
|
||||||
|
|
||||||
|
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 20161012-2
|
||||||
|
- Rebuild for Python 3.6
|
||||||
|
|
||||||
|
* Thu Oct 13 2016 Parag Nemade <pnemade AT redhat DOT com> - 20161012-1
|
||||||
|
- Update to 20161012
|
||||||
|
|
||||||
|
* Thu Oct 06 2016 Parag Nemade <pnemade AT redhat DOT com> - 20161005-1
|
||||||
|
- Update to 20161005
|
||||||
|
|
||||||
|
* Wed Oct 05 2016 Parag Nemade <pnemade AT redhat DOT com> - 20161004-1
|
||||||
|
- Update to 20161004
|
||||||
|
|
||||||
|
* Mon Oct 03 2016 Parag Nemade <pnemade AT redhat DOT com> - 20161001-1
|
||||||
|
- Update to 20161001
|
||||||
|
|
||||||
|
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20160404-4
|
||||||
|
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
|
||||||
|
|
||||||
|
* Thu Jul 07 2016 Parag Nemade <pnemade AT redhat DOT com> - 20160404-3
|
||||||
|
- Rebuild for new libuninameslist-20160701 build
|
||||||
|
- Add BuildRequires: shared-mime-info
|
||||||
|
- Add BuildRequires: gcc
|
||||||
|
|
||||||
|
* Wed Apr 06 2016 Parag Nemade <pnemade AT redhat DOT com> - 20160404-2
|
||||||
|
- Move from python2 to python3 support
|
||||||
|
|
||||||
|
* Tue Apr 05 2016 Parag Nemade <pnemade AT redhat DOT com> - 20160404-1
|
||||||
|
- Update to 20160404
|
||||||
|
|
||||||
|
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 20150824-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Aug 26 2015 Parag Nemade <pnemade AT redhat DOT com> - 20150824-1
|
||||||
|
- Update to 20150824
|
||||||
|
- Follow https://fedoraproject.org/wiki/Packaging:SourceURL#Git_Tags
|
||||||
|
|
||||||
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20150612-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jun 13 2015 Parag Nemade <pnemade AT redhat DOT com> - 20150612-1
|
||||||
|
- Update to 20150612
|
||||||
|
|
||||||
|
* Fri May 01 2015 Parag Nemade <pnemade AT redhat DOT com> - 20150430-1
|
||||||
|
- Update to 20150430
|
||||||
|
|
||||||
|
* Mon Mar 30 2015 Parag Nemade <pnemade AT redhat DOT com> - 20150330-1
|
||||||
|
- Update to 20150330
|
||||||
|
- use %%license macro for LICENSE file
|
||||||
|
|
||||||
|
* Thu Mar 12 2015 Parag Nemade <pnemade AT redhat DOT com> - 20150228-1
|
||||||
|
- Update to 20150228
|
||||||
|
|
||||||
|
* Sun Feb 01 2015 Kevin Fenzi <kevin@scrye.com> 20141230-2
|
||||||
|
- Rebuild for new libspiro
|
||||||
|
|
||||||
|
* Sun Jan 04 2015 Kevin Fenzi <kevin@scrye.com> 20141230-1
|
||||||
|
- Update to 20141230
|
||||||
|
|
||||||
|
* Tue Sep 09 2014 Parag Nemade <pnemade AT redhat DOT com> - 20140813-3
|
||||||
|
- drop BR: python-ipython for aarch64 builds (rh#1139508)
|
||||||
|
|
||||||
|
* Mon Sep 08 2014 Parag Nemade <pnemade AT redhat DOT com> - 20140813-2
|
||||||
|
- Add gnulib source for bootstrap as koji don't have network
|
||||||
|
- Patch Makefile.am to use system uthash-devel
|
||||||
|
- We also need gnulib-devel
|
||||||
|
|
||||||
|
* Mon Sep 08 2014 Parag Nemade <pnemade AT redhat DOT com> - 20140813-1
|
||||||
|
- Update to fontforge 2.0 snapshot 20140813
|
||||||
|
- corrected some scriptlets as per packaging guidelines
|
||||||
|
- Added new subpackage -doc
|
||||||
|
|
||||||
|
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20120731b-13
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Aug 09 2014 Rex Dieter <rdieter@fedoraproject.org> 20120731b-12
|
||||||
|
- update mime scriptlet
|
||||||
|
|
||||||
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20120731b-11
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Sep 02 2013 Parag Nemade <pnemade AT redhat DOT com> - 20120731b-10
|
||||||
|
- Revert previously added -Wstrict-aliasing cflags
|
||||||
|
- We actaully need -fno-strict-aliasing (rh#903288)
|
||||||
|
- Remove %%defattr() (rh#1003518)
|
||||||
|
- fontforge.xml should not be executable (rh#1003518)
|
||||||
|
|
||||||
|
* Thu Aug 22 2013 Parag Nemade <pnemade AT redhat DOT com> - 20120731b-9
|
||||||
|
- Added cflags -Wstrict-aliasing
|
||||||
|
- Fixed some compile-time errors from invalid Makefile rules
|
||||||
|
- Fixed bogus date in changelog
|
||||||
|
|
||||||
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20120731b-8
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Apr 15 2013 Paul Flo Williams <paul@frixxon.co.uk> - 20120731b-7
|
||||||
|
- Don't crash on PDFs with filters we can't understand. Fixes bug #906492
|
||||||
|
|
||||||
|
* Sat Mar 23 2013 Kevin Fenzi <kevin@scrye.com> 20120731b-6
|
||||||
|
- Add fix for aarch64 support. Fixes bug #925354
|
||||||
|
|
||||||
|
* Mon Feb 11 2013 Paul Flo Williams <paul@frixxon.co.uk> - 20120731b-5
|
||||||
|
- De-vendorize desktop installation
|
||||||
|
|
||||||
|
* Thu Feb 07 2013 Paul Flo Williams <paul@frixxon.co.uk> - 20120731b-4
|
||||||
|
- Patch for bug #902089, out-of-bounds errors while reading PDFs
|
||||||
|
|
||||||
|
* Fri Jan 18 2013 Adam Tkac <atkac redhat com> - 20120731b-3
|
||||||
|
- rebuild due to "jpeg8-ABI" feature drop
|
||||||
|
|
||||||
|
* Tue Nov 27 2012 Kevin Fenzi <kevin@scrye.com> 20120731b-2
|
||||||
|
- Cosmetic cleanups for bug 880472
|
||||||
|
|
||||||
|
* Thu Aug 02 2012 Paul Flo Williams <paul@frixxon.co.uk> - 20120731b-1
|
||||||
|
- Update to 20120731b (problem with 64-bit builds in first release)
|
||||||
|
|
||||||
|
* Thu Aug 02 2012 Paul Flo Williams <paul@frixxon.co.uk> - 20120731-1
|
||||||
|
- Update to 20120731
|
||||||
|
|
||||||
|
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20110222-9
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun May 06 2012 Kevin Fenzi <kevin@scrye.com> - 20110222-8
|
||||||
|
- Rebuild for new libtiff.
|
||||||
|
|
||||||
|
* Sat Jan 28 2012 Parag Nemade <paragn AT fedoraproject.org> - 2011022-7
|
||||||
|
- Add patch for libpng15
|
||||||
|
|
||||||
|
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20110222-6
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Dec 06 2011 Adam Jackson <ajax@redhat.com> - 20110222-5
|
||||||
|
- Rebuild for new libpng
|
||||||
|
|
||||||
|
* Thu Apr 07 2011 Parag Nemade <paragn AT fedoraproject.org> - 2011022-4
|
||||||
|
- Add patch for multilib. Fixes bug #694409
|
||||||
|
|
||||||
|
* Thu Mar 31 2011 Paul Flo Williams <paul@frixxon.co.uk> - 20110222-3
|
||||||
|
- Add patch for charview crash. Fixes bug #660376
|
||||||
|
|
||||||
|
* Thu Mar 17 2011 Kevin Fenzi <kevin@tummy.com> - 20110222-2
|
||||||
|
- Drop sources that are now upstream. Fixes bug #688470
|
||||||
|
|
||||||
|
* Tue Feb 22 2011 Kevin Fenzi <kevin@tummy.com> - 20110222-1
|
||||||
|
- Update to 20110222
|
||||||
|
|
||||||
|
* Wed Feb 16 2011 Kevin Fenzi <kevin@tummy.com> - 20100501-7
|
||||||
|
- Fix patch for python. Fixes bug #677917
|
||||||
|
- Add patch for unicode glyph crash. Fixes bug #631172
|
||||||
|
|
||||||
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20100501-6
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Dec 04 2010 Kevin Fenzi <kevin@tummy.com> - 20100501-5
|
||||||
|
- Add patch for CVE-2010-4259
|
||||||
|
|
||||||
|
* Wed Jul 28 2010 Kevin Fenzi <kevin@tummy.com> - 20100501-4
|
||||||
|
- Add patch to build with python 2.7
|
||||||
|
|
||||||
|
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 20100501-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
|
||||||
|
|
||||||
|
* Fri Jul 16 2010 Kevin Fenzi <kevin@tummy.com> - 20100501-2
|
||||||
|
- Add patch for bug 536920
|
||||||
|
|
||||||
|
* Wed May 19 2010 Kevin Fenzi <kevin@tummy.com> - 20100501-1
|
||||||
|
- Update to 20100501
|
||||||
|
|
||||||
|
* Fri Apr 30 2010 Kevin Fenzi <kevin@tummy.com> - 20100429-1
|
||||||
|
- Update to 20100429
|
||||||
|
|
||||||
|
* Sat Mar 20 2010 Kevin Fenzi <kevin@tummy.com> - 20090923-3
|
||||||
|
- Fix patch to fix python module (fixes #560277)
|
||||||
|
|
||||||
|
* Wed Dec 30 2009 Kevin Fenzi <kevin@tummy.com> - 20090923-2
|
||||||
|
- Add patch to fix relative paths for fontlint (fixes #530760)
|
||||||
|
|
||||||
|
* Sun Nov 01 2009 Kevin Fenzi <kevin@tummy.com> - 20090923-1
|
||||||
|
- Upgrade to 20090923
|
||||||
|
|
||||||
|
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20090622-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jul 16 2009 Kevin Fenzi <kevin@tummy.com> - 20090622-1
|
||||||
|
- Upgrade to 20090622
|
||||||
|
|
||||||
|
* Thu Apr 16 2009 Kevin Fenzi <kevin@tummy.com> - 20090408-1
|
||||||
|
- Upgrade to 20090408
|
||||||
|
|
||||||
|
* Thu Apr 02 2009 Kevin Fenzi <kevin@tummy.com> - 20090224-2
|
||||||
|
- Apply patch for python modules loading (fixes #489109)
|
||||||
|
- use install -p to fix multiarch issue (fixes #480685)
|
||||||
|
|
||||||
|
* Thu Feb 26 2009 Kevin Fenzi <kevin@tummy.com> - 20090224-1
|
||||||
|
- Upgrade to 20090224
|
||||||
|
|
||||||
|
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20081224-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Feb 23 2009 Nicolas Mailhot <nim at fedoraproject dot org>
|
||||||
|
- 20081224-2
|
||||||
|
— global-ization
|
||||||
|
|
||||||
|
* Fri Feb 20 2009 Kevin Fenzi <kevin@tummy.com> - 20081224-1
|
||||||
|
- Upgrade to 20081224
|
||||||
|
- Enable python bindings
|
||||||
|
|
||||||
|
* Wed Jan 21 2009 Kevin Fenzi <kevin@tummy.com> - 20081215-4
|
||||||
|
- Add python-devel to BuildRequires
|
||||||
|
|
||||||
|
* Tue Dec 23 2008 Kevin Fenzi <kevin@tummy.com> - 20081215-3
|
||||||
|
- Add patch to fix buffer overflow. Fixes 471538
|
||||||
|
|
||||||
|
* Wed Dec 17 2008 Kevin Fenzi <kevin@tummy.com> - 20081215-2
|
||||||
|
- Add libspiro-devel to build with spiro
|
||||||
|
|
||||||
|
* Tue Dec 16 2008 Kevin Fenzi <kevin@tummy.com> - 20081215-1
|
||||||
|
- Upgrade to 20081215
|
||||||
|
- Build with cairo and pango
|
||||||
|
|
||||||
|
* Mon Dec 01 2008 Kevin Fenzi <kevin@tummy.com> - 20081117-1
|
||||||
|
- Upgrade to 20081117
|
||||||
|
|
||||||
|
* Mon Dec 01 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 20080927-2
|
||||||
|
- Rebuild for Python 2.6
|
||||||
|
|
||||||
|
* Sat Nov 08 2008 Nicolas Mailhot <nicolas.mailhot at laposte.net>
|
||||||
|
- 20080927-1
|
||||||
|
☢ quick & dirty version bump to start working on F11 font packages
|
||||||
|
⟲ time to forget about pfaedit
|
||||||
|
⤑ take care of rpmlint warnings
|
||||||
|
|
||||||
|
* Wed Sep 03 2008 Kevin Fenzi <kevin@tummy.com> - 20080828-1
|
||||||
|
- Upgrade to 20080828
|
||||||
|
- Add Requires on autotrace. Fixes 460668
|
||||||
|
- Confirm patch from 459451 is upstream here.
|
||||||
|
|
||||||
|
* Fri May 16 2008 Kevin Fenzi <kevin@tummy.com> - 20080429-1
|
||||||
|
- Upgrade to 20080429
|
||||||
|
|
||||||
|
* Mon Mar 24 2008 Kevin Fenzi <kevin@tummy.com> - 20080309-2
|
||||||
|
- Add mime info for .sfd files. Fixes 240669
|
||||||
|
|
||||||
|
* Mon Mar 17 2008 Kevin Fenzi <kevin@tummy.com> - 20080309-1
|
||||||
|
- Upgrade to 20080309
|
||||||
|
- Fixes bug 437833
|
||||||
|
|
||||||
|
* Mon Mar 03 2008 Kevin Fenzi <kevin@tummy.com> - 20080302-2
|
||||||
|
- Commit new sources
|
||||||
|
|
||||||
|
* Mon Mar 03 2008 Kevin Fenzi <kevin@tummy.com> - 20080302-1
|
||||||
|
- Update to upstream 20080302
|
||||||
|
|
||||||
|
* Sun Mar 02 2008 Kevin Fenzi <kevin@tummy.com> - 20080203-2
|
||||||
|
- Change Requires from htmlview to xdg-utils (bz 312691)
|
||||||
|
|
||||||
|
* Sat Mar 01 2008 Kevin Fenzi <kevin@tummy.com> - 20080203-1
|
||||||
|
- Update to upstream 20080203
|
||||||
|
- Add new devel subpackage
|
||||||
|
|
||||||
|
* Sun Dec 02 2007 Roozbeh Pournader <roozbeh@farsiweb.info> - 20071110-1
|
||||||
|
- Update to upstream 20071110
|
||||||
|
|
||||||
|
* Sun Oct 21 2007 Nicolas Mailhot <nicolas.mailhot at laposte.net>
|
||||||
|
☢ 20071002-1
|
||||||
|
⚠ quick & dirty version bump to start working on F9 font packages
|
||||||
|
|
||||||
|
* Sun Aug 26 2007 Kevin Fenzi <kevin@tummy.com> - 20070511-2
|
||||||
|
- Rebuild for BuildID
|
||||||
|
|
||||||
|
* Thu Jun 7 2007 Kevin Fenzi <kevin@tummy.com> - 20070511-1
|
||||||
|
- Update to upstream 20070511
|
||||||
|
- Remove some leftover CVS bits
|
||||||
|
- Remove useless .pc file.
|
||||||
|
|
||||||
|
* Fri Dec 22 2006 Roozbeh Pournader <roozbeh@farsiweb.info> - 20061220-1
|
||||||
|
- Update to upstream 20061220
|
||||||
|
|
||||||
|
* Sat Dec 09 2006 Roozbeh Pournader <roozbeh@farsiweb.info> - 20061025-2
|
||||||
|
- Add patch to fix fsSelection problem with DejaVu ExtraLight
|
||||||
|
|
||||||
|
* Sat Nov 25 2006 Roozbeh Pournader <roozbeh@farsiweb.info> - 20061025-1
|
||||||
|
- Update to 20061025
|
||||||
|
- Patch to correct usFirstCharIndex (George Williams)
|
||||||
|
|
||||||
|
* Fri Oct 20 2006 Kevin Fenzi <kevin@tummy.com> - 20061019-1
|
||||||
|
- Update to 20061019
|
||||||
|
|
||||||
|
* Thu Oct 05 2006 Christian Iseli <Christian.Iseli@licr.org> 20060822-2
|
||||||
|
- rebuilt for unwind info generation, broken in gcc-4.1.1-21
|
||||||
|
|
||||||
|
* Thu Sep 21 2006 Kevin Fenzi <kevin@tummy.com> - 20060822-1
|
||||||
|
- Update to 20060822
|
||||||
|
- Remove unneeded patch
|
||||||
|
- Add flag to compile right with giflib
|
||||||
|
|
||||||
|
* Sun Jun 18 2006 Roozbeh Pournader <roozbeh@farsiweb.info> - 20060125-7
|
||||||
|
- Add BuildRequires on gettext, to make sure the package builds in minimal
|
||||||
|
mock environments
|
||||||
|
|
||||||
|
* Mon Feb 13 2006 Roozbeh Pournader <roozbeh@farsiweb.info> - 20060125-6
|
||||||
|
- Rebuild for Fedora Extras 5
|
||||||
|
|
||||||
|
* Sun Feb 12 2006 Roozbeh Pournader <roozbeh@farsiweb.info> - 20060125-5
|
||||||
|
- Add patch to fix crash (#181052, George Williams)
|
||||||
|
|
||||||
|
* Wed Feb 01 2006 Roozbeh Pournader <roozbeh@farsiweb.info> - 20060125-4
|
||||||
|
- Add "BuildRequires:" on libXt-devel and xorg-x11-proto-devel
|
||||||
|
|
||||||
|
* Wed Feb 01 2006 Roozbeh Pournader <roozbeh@farsiweb.info> - 20060125-3
|
||||||
|
- Really remove XFree86-devel BuildReq
|
||||||
|
|
||||||
|
* Wed Feb 01 2006 Roozbeh Pournader <roozbeh@farsiweb.info> - 20060125-2
|
||||||
|
- Remove XFree86-devel BuildReq
|
||||||
|
|
||||||
|
* Wed Feb 01 2006 Roozbeh Pournader <roozbeh@farsiweb.info> - 20060125-1
|
||||||
|
- Update to 20060125 (bug #170177)
|
||||||
|
- Update docs to 20060114
|
||||||
|
- Change versioning to reflect upstream and follow packaging guidelines
|
||||||
|
- Provide pfaedit (bug #176548)
|
||||||
|
- Use %%{?dist} tag (bug #176472)
|
||||||
|
- Add localizations
|
||||||
|
- No need to remove CVS subdir: fixed upstream
|
||||||
|
- No need to covert man pages to UTF-8: fixed upstream
|
||||||
|
- Fixed DOS line terminators
|
||||||
|
- Use parallel build
|
||||||
|
|
||||||
|
* Sat Jul 30 2005 Owen Taylor <otaylor@redhat.com> - 0.0-2.20050729.fc4
|
||||||
|
- Update to 20050729
|
||||||
|
- Remove .docview patch, looking for HTMLview is upstream so no longer needed
|
||||||
|
|
||||||
|
* Tue May 10 2005 Owen Taylor <otaylor@redhat.com> - 0.0-2.20050502.fc4
|
||||||
|
- Update to 20050502
|
||||||
|
- Fix the build to look for the docs where we install them
|
||||||
|
|
||||||
|
* Sat Mar 19 2005 Owen Taylor <otaylor@redhat.com> - 0.0-2.20050310
|
||||||
|
- Update to 20050310
|
||||||
|
|
||||||
|
* Sat Jan 29 2005 Ville Skyttä <ville.skytta at iki.fi> - 0:0.0-2.20041231
|
||||||
|
- Avoid RPATH.
|
||||||
|
- Convert man pages to UTF-8.
|
||||||
|
- Fix pkgconfig and doc file permissions.
|
||||||
|
- Use updated upstream icon.
|
||||||
|
- Don't include installation documentation.
|
||||||
|
|
||||||
|
* Mon Jan 17 2005 Marius L. Jøhndal <mariuslj at ifi.uio.no> - 0:0.0-1.20041231
|
||||||
|
- Updated to 20041231.
|
||||||
|
|
||||||
|
* Thu Oct 28 2004 Marius L. Jøhndal <mariuslj at ifi.uio.no> - 0:0.0-0.fdr.1.20041014
|
||||||
|
- Updated to 20041014.
|
||||||
|
|
||||||
|
* Sun Sep 19 2004 Marius L. Jøhndal <mariuslj at ifi.uio.no> - 0:0.0-0.fdr.1.20040824
|
||||||
|
- Updated to 20040824.
|
||||||
|
|
||||||
|
* Wed Jun 30 2004 Marius L. Jøhndal <mariuslj at ifi.uio.no> - 0:0.0-0.fdr.1.20040618
|
||||||
|
- Updated to 20040618.
|
||||||
|
|
||||||
|
* Wed Jun 2 2004 Marius L. Jøhndal <mariuslj at ifi.uio.no> - 0:0.0-0.fdr.1.20040601
|
||||||
|
- Updated to 20040601.
|
||||||
|
|
||||||
|
* Tue May 11 2004 Marius L. Jøhndal <mariuslj at ifi.uio.no> - 0:0.0-0.fdr.1.20040509
|
||||||
|
- Updated to 20040509.
|
||||||
|
|
||||||
|
* Thu Apr 15 2004 Marius L. Jøhndal <mariuslj at ifi.uio.no> - 0:0.0-0.fdr.1.20040410
|
||||||
|
- Updated to 20040410.
|
||||||
|
|
||||||
|
* Sun Mar 28 2004 Marius L. Jøhndal <mariuslj at ifi.uio.no> - 0:0.0-0.fdr.1.20040321
|
||||||
|
- Updated to 20040321.
|
||||||
|
- Changed package name from pfaedit to fontforge.
|
||||||
|
- Added Obsoletes: pfaedit.
|
||||||
|
|
||||||
|
* Mon Mar 15 2004 Marius L. Jøhndal <mariuslj at ifi.uio.no> - 0:0.0-0.fdr.8.040310
|
||||||
|
- Updated to 040310.
|
||||||
|
|
||||||
|
* Sat Feb 7 2004 Marius L. Jøhndal <mariuslj at ifi.uio.no> 0:0.0-0.fdr.8.040204
|
||||||
|
- Updated to 040204.
|
||||||
|
- Removed some unnecessary directory ownerships (bug 1061).
|
||||||
|
|
||||||
|
* Sun Jan 25 2004 Marius L. Jøhndal <mariuslj at ifi.uio.no> 0:0.0-0.fdr.8.040111
|
||||||
|
- Updated documentation to 040111.
|
||||||
|
|
||||||
|
* Sun Jan 11 2004 Marius L. Jøhndal <mariuslj at ifi.uio.no> 0:0.0-0.fdr.7.040111
|
||||||
|
- Updated to 040111.
|
||||||
|
- Converted spec file to UTF-8.
|
||||||
|
|
||||||
|
* Wed Jan 7 2004 Marius L. Jøhndal <mariuslj at ifi.uio.no> 0:0.0-0.fdr.7.040102
|
||||||
|
- Updated to 040102.
|
||||||
|
|
||||||
|
* Sat Dec 13 2003 Marius L. Jøhndal <mariuslj at ifi.uio.no> 0:0.0-0.fdr.7.031210
|
||||||
|
- Updated to 031210.
|
||||||
|
|
||||||
|
* Sat Dec 13 2003 Marius L. Jøhndal <mariuslj at ifi.uio.no> 0:0.0-0.fdr.7.031205
|
||||||
|
- Updated to 031205.
|
||||||
|
|
||||||
|
* Fri Nov 28 2003 Marius L. Jøhndal <mariuslj at ifi.uio.no> 0:0.0-0.fdr.7.031123
|
||||||
|
- Updated to 031123.
|
||||||
|
|
||||||
|
* Wed Nov 12 2003 Marius L. Jøhndal <mariuslj at ifi.uio.no> 0:0.0-0.fdr.6.031110
|
||||||
|
- Updated to 031110.
|
||||||
|
- Eliminated build patch; incorporated in upstream tarball.
|
||||||
|
- Re-added documentation tarball since no longer included in source tarball.
|
||||||
|
- Added pfaicon.gif as Packaging directory disappeared from tarball.
|
||||||
|
|
||||||
|
* Mon Oct 13 2003 Marius L. Jøhndal <mariuslj at ifi.uio.no> 0:0.0-0.fdr.5.031012
|
||||||
|
- Refetched sources since upstream suddenly decided to change them (bug 497).
|
||||||
|
|
||||||
|
* Mon Oct 13 2003 Marius L. Jøhndal <mariuslj at ifi.uio.no> 0:0.0-0.fdr.4.031012
|
||||||
|
- Build req libuninameslist-devel instead of libuninameslist.
|
||||||
|
|
||||||
|
* Mon Oct 13 2003 Marius L. Jøhndal <mariuslj at ifi.uio.no> 0:0.0-0.fdr.3.031012
|
||||||
|
- Fixed non-standard value in desktop file (bug 497).
|
||||||
|
- Added libuninameslist support.
|
||||||
|
- Removed separate documentation tarball; mostly identical to those in source (bug 497).
|
||||||
|
|
||||||
|
* Mon Oct 13 2003 Marius L. Jøhndal <mariuslj at ifi.uio.no> 0:0.0-0.fdr.2.031012
|
||||||
|
- Patched to use dynamic linking instead of dlopen'ing (bug 497).
|
||||||
|
- Patched to use htmlview and use installed documentation (bug 497).
|
||||||
|
- Added build req libxml2-devel (bug 497).
|
||||||
|
- Disabled parallell make (bug 497).
|
||||||
|
- Added desktop entry (bug 497).
|
||||||
|
|
||||||
|
* Mon Oct 13 2003 Marius L. Jøhndal <mariuslj at ifi.uio.no> 0:0.0-0.fdr.1.031012
|
||||||
|
- Updated to 031012.
|
||||||
|
- Removed .so links.
|
||||||
|
- Removed empty AUTHORS file.
|
||||||
|
- Removed the samples subpackage.
|
||||||
|
|
||||||
|
* Mon Sep 22 2003 Marius L. Jøhndal <mariuslj at ifi.uio.no> 0:0.0-0.fdr.1.030904
|
||||||
|
- Updated to 030904.
|
||||||
|
|
||||||
|
* Wed Sep 3 2003 Marius L. Jøhndal <mariuslj at ifi.uio.no> 0:0.0-0.fdr.1.030831
|
||||||
|
- Updated to 030831.
|
||||||
|
|
||||||
|
* Tue Aug 12 2003 Marius L. Jøhndal <mariuslj at ifi.uio.no> 0:0.0-0.fdr.1.030803
|
||||||
|
- Updated to 030803.
|
||||||
|
|
||||||
|
* Mon Jul 21 2003 Marius L. Jøhndal <mariuslj at ifi.uio.no> 0:0.0-0.fdr.3.030702
|
||||||
|
- Added font samples.
|
||||||
|
- Added ldconfig to post and postun.
|
||||||
|
- Added samples subpackage.
|
||||||
|
|
||||||
|
* Sun Jul 6 2003 Marius L. Jøhndal <mariuslj at ifi.uio.no> 0:0.0-0.fdr.2.030702
|
||||||
|
- Removed README-MS and README-MacOSX from documentation.
|
||||||
|
|
||||||
|
* Thu Jul 3 2003 Marius L. Jøhndal <mariuslj at ifi.uio.no> 0:0.0-0.fdr.1.030512
|
||||||
|
- Initial RPM release based on Mandrake's PfaEdit-030512 RPM.
|
Loading…
Reference in New Issue
Block a user