Re: [lang/racket-minimal-7.5] Racket has issues rendering text via 2htdp/image

2020-02-03 Thread rsiddharth
Juan Francisco Cantero Hurtado writes: > Here is a simple workaround: > > # cd /etc/fonts/conf.d > # cat 71-no-ghostscript.conf > > > > > > /usr/local/share/fonts/ghostscript/* > > > > # > Thanks for the work around! It works. - rsiddharth.

Re: [lang/racket-minimal-7.5] Racket has issues rendering text via 2htdp/image

2020-02-03 Thread Juan Francisco Cantero Hurtado
On Sun, Feb 02, 2020 at 11:50:12PM -0500, rsiddharth wrote: > I found a reliable way to replicate the issue on OpenBSD snapshot #628: > > 0. $ uname -a > > OpenBSD cygnus.ricketyspace.net 6.6 GENERIC.MP#628 amd64 > > 1. $ raco pkg install --jobs $(sysctl -n hw.ncpuonline) --auto

Re: [lang/racket-minimal-7.5] Racket has issues rendering text via 2htdp/image

2020-02-03 Thread Stuart Henderson
No. -- Sent from a phone, apologies for poor formatting. On 3 February 2020 10:28:41 rsiddharth wrote: Stuart Henderson writes: It's because new pango doesn't support type1 or pcf bitmap fonts, such as the ones pulled in by installing ghostscript. So, is this an upstream issue that

Re: [lang/racket-minimal-7.5] Racket has issues rendering text via 2htdp/image

2020-02-03 Thread rsiddharth
Stuart Henderson writes: > It's because new pango doesn't support type1 or pcf bitmap fonts, such > as the ones pulled in by installing ghostscript. So, is this an upstream issue that needs to be reported to racket developers?

Re: [lang/racket-minimal-7.5] Racket has issues rendering text via 2htdp/image

2020-02-03 Thread Stuart Henderson
It's because new pango doesn't support type1 or pcf bitmap fonts, such as the ones pulled in by installing ghostscript. -- Sent from a phone, apologies for poor formatting. On 3 February 2020 04:51:14 rsiddharth wrote: I found a reliable way to replicate the issue on OpenBSD snapshot #628:

Re: [lang/racket-minimal-7.5] Racket has issues rendering text via 2htdp/image

2020-02-02 Thread rsiddharth
I found a reliable way to replicate the issue on OpenBSD snapshot #628: 0. $ uname -a OpenBSD cygnus.ricketyspace.net 6.6 GENERIC.MP#628 amd64 1. $ raco pkg install --jobs $(sysctl -n hw.ncpuonline) --auto drracket 1.1. $ $HOME/.racket/7.5/bin/drracket The text in the

Re: [lang/racket-minimal-7.5] Racket has issues rendering text via 2htdp/image

2020-01-14 Thread Juan Francisco Cantero Hurtado
On Tue, 14 Jan 2020 22:34:38 + Stuart Henderson wrote: > On 2020/01/12 23:59, Juan Francisco Cantero Hurtado wrote: > > In the video, I see font rendering problems in the DrRacket REPL, > > which is quite weird because the code editor and the menu work > > fine. So, you have missing fonts, a

Re: [lang/racket-minimal-7.5] Racket has issues rendering text via 2htdp/image

2020-01-14 Thread Stuart Henderson
On 2020/01/12 23:59, Juan Francisco Cantero Hurtado wrote: > In the video, I see font rendering problems in the DrRacket REPL, which > is quite weird because the code editor and the menu work fine. So, you > have missing fonts, a broken config which renders erroneously some > glyphs or a broken

Re: [lang/racket-minimal-7.5] Racket has issues rendering text via 2htdp/image

2020-01-14 Thread rsiddharth
rsiddharth writes: > I tried creating a new user (via adduser(8)) and ran DrRacket as > the new user; the text did rendered properly in the REPL and for my > version of the hello function[1]. > > [1]: https://ricketyspace.net/tmp/text.rkt Oops, typo. It is "...the text did

Re: [lang/racket-minimal-7.5] Racket has issues rendering text via 2htdp/image

2020-01-14 Thread rsiddharth
Juan Francisco Cantero Hurtado writes: > Start the computer but don't log in as a regular user using xenodm or > startx. Change to a different virtual console with Ctrl + Alt + F2 and > log in as root. > > Delete (saving a copy of /etc or $HOME if you want) > /var/cache/fontconfig, /etc/fonts

Re: [lang/racket-minimal-7.5] Racket has issues rendering text via 2htdp/image

2020-01-14 Thread rsiddharth
Juan Francisco Cantero Hurtado writes: > Your code works for me. > > solene@ and I tested this code and worked for us: > > #lang racket > > (require 2htdp/image) > > (define (hello) > (text/font "Hello World 42" 24 "black" > "Luxi Sans" 'roman 'normal 'normal #f)) > > (save-image

Re: [lang/racket-minimal-7.5] Racket has issues rendering text via 2htdp/image

2020-01-12 Thread Juan Francisco Cantero Hurtado
On Sun, Jan 12, 2020 at 07:24:52PM +0100, Juan Francisco Cantero Hurtado wrote: > On Sat, Jan 11, 2020 at 08:59:32PM -0500, rsiddharth wrote: > > Hi, > > > > Racket's 2htdp/image's `text`[1] function is having troubling rendering > > text: > > > >

Re: [lang/racket-minimal-7.5] Racket has issues rendering text via 2htdp/image

2020-01-12 Thread Juan Francisco Cantero Hurtado
On Sat, Jan 11, 2020 at 08:59:32PM -0500, rsiddharth wrote: > Hi, > > Racket's 2htdp/image's `text`[1] function is having troubling rendering > text: > > https://ricketyspace.net/tmp/racket-2htdp-image-text-issue.png > (In Emacs Racket-REPL via racket-mode[2]) > >