Activity log for bug #1579902

Date Who What changed Old value New value Message
2016-05-09 20:34:51 Philippec bug added bug
2016-05-09 20:36:39 Philippec attachment added wx panel squares are displayed https://bugs.launchpad.net/panda3d/+bug/1579902/+attachment/4659463/+files/bugwx.png
2016-05-09 20:38:34 Philippec attachment added windows.JPG https://bugs.launchpad.net/panda3d/+bug/1579902/+attachment/4659464/+files/windows.JPG
2016-05-09 20:39:24 Philippec description PC ubuntu trusty 14.04.4 LTS Ubuntu panda3d1.9_1.9.2~trusty_amd64.deb. -I package the program below : /usr/bin/packp3d -o /home/philippe/gameeditor-svn/code/test/wx/testWX.p3d -d /home/philippe/gameeditor-svn/code/test/wx -m testWX.py -r wx -r morepy -D testWX.py: import wx from direct.showbase.ShowBase import ShowBase class MyApp(ShowBase): def __init__(self): ShowBase.__init__(self) self.accept('a', self.oGui) def oGui(self): app = wx.App() window = wx.Frame(None, title = "wxPython Frame", size = (300,200)) panel = wx.Panel(window) label = wx.StaticText(panel, label = "Hello World", pos = (100,50)) window.Show(True) app.MainLoop() app = MyApp() app.run() -I execute the p3d program : /usr/bin/panda3d /home/philippe/gameeditor-svn/code/test/wx/testWX.p3d. When screen is displayed : I use the keyboard 'a' in order to display a wx window => the text "Hello World" is replaced by squares and I got the following error messages in the terminal windows: .... Fontconfig error: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 70: non-double matrix element Fontconfig error: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 70: non-double matrix element Fontconfig warning: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 78: saw unknown, expected number (p3dpython:17132): Pango-CRITICAL **: No modules found: No builtin or dynamically loaded modules were found. PangoFc will not work correctly. This probably means there was an error in the creation of: '/etc/pango/pango.modules' You should create this file by running: pango-querymodules > '/etc/pango/pango.modules' (p3dpython:17132): Pango-WARNING **: failed to choose a font, expect ugly output. engine-type='PangoRenderFc', script='latin' - for you information : on windows 10 family, version 1511, panda3D 1.9.1, OS : XP64, the execution of package p3d works well PC ubuntu trusty 14.04.4 LTS Ubuntu panda3d1.9_1.9.2~trusty_amd64.deb. -I package the program below : /usr/bin/packp3d -o /home/philippe/gameeditor-svn/code/test/wx/testWX.p3d -d /home/philippe/gameeditor-svn/code/test/wx -m testWX.py -r wx -r morepy -D testWX.py: import wx from direct.showbase.ShowBase import ShowBase class MyApp(ShowBase):     def __init__(self):         ShowBase.__init__(self)         self.accept('a', self.oGui)     def oGui(self):         app = wx.App()         window = wx.Frame(None, title = "wxPython Frame", size = (300,200))         panel = wx.Panel(window)         label = wx.StaticText(panel, label = "Hello World", pos = (100,50))         window.Show(True)         app.MainLoop() app = MyApp() app.run() -I execute the p3d program : /usr/bin/panda3d /home/philippe/gameeditor-svn/code/test/wx/testWX.p3d. When screen is displayed : I use the keyboard 'a' in order to display a wx window => the text "Hello World" is replaced by squares and I got the following error messages in the terminal windows: .... Fontconfig error: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 70: non-double matrix element Fontconfig error: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 70: non-double matrix element Fontconfig warning: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 78: saw unknown, expected number (p3dpython:17132): Pango-CRITICAL **: No modules found: No builtin or dynamically loaded modules were found. PangoFc will not work correctly. This probably means there was an error in the creation of:   '/etc/pango/pango.modules' You should create this file by running:   pango-querymodules > '/etc/pango/pango.modules' (p3dpython:17132): Pango-WARNING **: failed to choose a font, expect ugly output. engine-type='PangoRenderFc', script='latin'
2016-05-09 20:40:21 Philippec description PC ubuntu trusty 14.04.4 LTS Ubuntu panda3d1.9_1.9.2~trusty_amd64.deb. -I package the program below : /usr/bin/packp3d -o /home/philippe/gameeditor-svn/code/test/wx/testWX.p3d -d /home/philippe/gameeditor-svn/code/test/wx -m testWX.py -r wx -r morepy -D testWX.py: import wx from direct.showbase.ShowBase import ShowBase class MyApp(ShowBase):     def __init__(self):         ShowBase.__init__(self)         self.accept('a', self.oGui)     def oGui(self):         app = wx.App()         window = wx.Frame(None, title = "wxPython Frame", size = (300,200))         panel = wx.Panel(window)         label = wx.StaticText(panel, label = "Hello World", pos = (100,50))         window.Show(True)         app.MainLoop() app = MyApp() app.run() -I execute the p3d program : /usr/bin/panda3d /home/philippe/gameeditor-svn/code/test/wx/testWX.p3d. When screen is displayed : I use the keyboard 'a' in order to display a wx window => the text "Hello World" is replaced by squares and I got the following error messages in the terminal windows: .... Fontconfig error: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 70: non-double matrix element Fontconfig error: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 70: non-double matrix element Fontconfig warning: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 78: saw unknown, expected number (p3dpython:17132): Pango-CRITICAL **: No modules found: No builtin or dynamically loaded modules were found. PangoFc will not work correctly. This probably means there was an error in the creation of:   '/etc/pango/pango.modules' You should create this file by running:   pango-querymodules > '/etc/pango/pango.modules' (p3dpython:17132): Pango-WARNING **: failed to choose a font, expect ugly output. engine-type='PangoRenderFc', script='latin' PC ubuntu trusty 14.04.4 LTS Ubuntu panda3d1.9_1.9.2~trusty_amd64.deb. 1/ I package the program below : /usr/bin/packp3d -o /home/philippe/gameeditor-svn/code/test/wx/testWX.p3d -d /home/philippe/gameeditor-svn/code/test/wx -m testWX.py -r wx -r morepy -D testWX.py: import wx from direct.showbase.ShowBase import ShowBase class MyApp(ShowBase):     def __init__(self):         ShowBase.__init__(self)         self.accept('a', self.oGui)     def oGui(self):         app = wx.App()         window = wx.Frame(None, title = "wxPython Frame", size = (300,200))         panel = wx.Panel(window)         label = wx.StaticText(panel, label = "Hello World", pos = (100,50))         window.Show(True)         app.MainLoop() app = MyApp() app.run() 2/ I execute the p3d program : /usr/bin/panda3d /home/philippe/gameeditor-svn/code/test/wx/testWX.p3d. When screen is displayed : I use the keyboard 'a' in order to display a wx window => the text "Hello World" is replaced by squares and I got the following error messages in the terminal windows: .... Fontconfig error: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 70: non-double matrix element Fontconfig error: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 70: non-double matrix element Fontconfig warning: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 78: saw unknown, expected number (p3dpython:17132): Pango-CRITICAL **: No modules found: No builtin or dynamically loaded modules were found. PangoFc will not work correctly. This probably means there was an error in the creation of:   '/etc/pango/pango.modules' You should create this file by running:   pango-querymodules > '/etc/pango/pango.modules' (p3dpython:17132): Pango-WARNING **: failed to choose a font, expect ugly output. engine-type='PangoRenderFc', script='latin'
2016-05-09 20:42:44 Philippec description PC ubuntu trusty 14.04.4 LTS Ubuntu panda3d1.9_1.9.2~trusty_amd64.deb. 1/ I package the program below : /usr/bin/packp3d -o /home/philippe/gameeditor-svn/code/test/wx/testWX.p3d -d /home/philippe/gameeditor-svn/code/test/wx -m testWX.py -r wx -r morepy -D testWX.py: import wx from direct.showbase.ShowBase import ShowBase class MyApp(ShowBase):     def __init__(self):         ShowBase.__init__(self)         self.accept('a', self.oGui)     def oGui(self):         app = wx.App()         window = wx.Frame(None, title = "wxPython Frame", size = (300,200))         panel = wx.Panel(window)         label = wx.StaticText(panel, label = "Hello World", pos = (100,50))         window.Show(True)         app.MainLoop() app = MyApp() app.run() 2/ I execute the p3d program : /usr/bin/panda3d /home/philippe/gameeditor-svn/code/test/wx/testWX.p3d. When screen is displayed : I use the keyboard 'a' in order to display a wx window => the text "Hello World" is replaced by squares and I got the following error messages in the terminal windows: .... Fontconfig error: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 70: non-double matrix element Fontconfig error: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 70: non-double matrix element Fontconfig warning: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 78: saw unknown, expected number (p3dpython:17132): Pango-CRITICAL **: No modules found: No builtin or dynamically loaded modules were found. PangoFc will not work correctly. This probably means there was an error in the creation of:   '/etc/pango/pango.modules' You should create this file by running:   pango-querymodules > '/etc/pango/pango.modules' (p3dpython:17132): Pango-WARNING **: failed to choose a font, expect ugly output. engine-type='PangoRenderFc', script='latin' PC ubuntu trusty 14.04.4 LTS Ubuntu panda3d1.9_1.9.2~trusty_amd64.deb. 1/ I package the program below : /usr/bin/packp3d -o /home/philippe/gameeditor-svn/code/test/wx/testWX.p3d -d /home/philippe/gameeditor-svn/code/test/wx -m testWX.py -r wx -r morepy -D testWX.py: import wx from direct.showbase.ShowBase import ShowBase class MyApp(ShowBase):     def __init__(self):         ShowBase.__init__(self)         self.accept('a', self.oGui)     def oGui(self):         app = wx.App()         window = wx.Frame(None, title = "wxPython Frame", size = (300,200))         panel = wx.Panel(window)         label = wx.StaticText(panel, label = "Hello World", pos = (100,50))         window.Show(True)         app.MainLoop() app = MyApp() app.run() 2/ I execute the p3d program : /usr/bin/panda3d /home/philippe/gameeditor-svn/code/test/wx/testWX.p3d. When panda3d screen is displayed : I use the keyboard 'a' in order to display a wx window => the text "Hello World" is replaced by squares and I got the following error messages in the terminal windows: .... Fontconfig error: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 70: non-double matrix element Fontconfig error: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 70: non-double matrix element Fontconfig warning: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 78: saw unknown, expected number (p3dpython:17132): Pango-CRITICAL **: No modules found: No builtin or dynamically loaded modules were found. PangoFc will not work correctly. This probably means there was an error in the creation of:   '/etc/pango/pango.modules' You should create this file by running:   pango-querymodules > '/etc/pango/pango.modules' (p3dpython:17132): Pango-WARNING **: failed to choose a font, expect ugly output. engine-type='PangoRenderFc', script='latin'
2016-05-09 20:50:04 Philippec bug task added panda3d (Ubuntu)
2016-05-09 20:50:28 Philippec bug task deleted panda3d
2016-07-10 14:04:46 rdb bug task added panda3d
2016-12-22 22:36:27 rdb tags packaging runtime
2017-02-19 19:48:56 rdb panda3d (Ubuntu): status New Invalid
2017-02-19 19:49:45 rdb tags packaging runtime linux packaging runtime wx
2019-01-10 11:50:07 rdb panda3d: status New Won't Fix