tonyg changed the topic of #racket to: The Racket Programming Language -- https://racket-lang.org/ -- https://gather.town/app/wH1EDG3McffLjrs0/racket-users -- http://pasterack.org -- logged at https://libera.irclog.whitequark.org/racket/ -- This is the right place to ask for help with (Dr)Racket. Remember to wait around for an answer!
badkins has quit [Remote host closed the connection]
FreeFull has quit []
codingquark has quit [Ping timeout: 268 seconds]
badkins has joined #racket
badkins has quit [Ping timeout: 244 seconds]
codingquark has joined #racket
codingquark has quit [Ping timeout: 245 seconds]
codingquark has joined #racket
livoreno has quit [Ping timeout: 240 seconds]
ecraven has quit [Ping timeout: 260 seconds]
ecraven has joined #racket
williewillus_ has joined #racket
williewillus_ has quit [Remote host closed the connection]
williewillus_ has joined #racket
libertyprime has joined #racket
mon_aaraj has quit [Ping timeout: 252 seconds]
mon_aaraj has joined #racket
livoreno has joined #racket
jao has quit [Ping timeout: 268 seconds]
badkins has joined #racket
badkins has quit [Ping timeout: 245 seconds]
xgqt has quit [Remote host closed the connection]
xgqt has joined #racket
mon_aaraj has quit [Ping timeout: 245 seconds]
williewillus_ has quit [Quit: Leaving]
mon_aaraj has joined #racket
ur5us has joined #racket
mon_aaraj has quit [Ping timeout: 252 seconds]
mon_aaraj has joined #racket
badkins has joined #racket
badkins has quit [Ping timeout: 255 seconds]
TeddyDD has quit [Remote host closed the connection]
TeddyDD has joined #racket
libertyprime has quit [Ping timeout: 245 seconds]
livoreno has quit [Remote host closed the connection]
livoreno has joined #racket
libertyprime has joined #racket
jao has joined #racket
libertyprime has quit [Ping timeout: 245 seconds]
notzmv has quit [Ping timeout: 276 seconds]
livoreno has quit [Ping timeout: 260 seconds]
livoreno has joined #racket
badkins has joined #racket
mfiano has quit [Quit: WeeChat 3.5]
badkins has quit [Ping timeout: 245 seconds]
mon_aaraj has quit [Ping timeout: 252 seconds]
mon_aaraj has joined #racket
notzmv has joined #racket
mfiano has joined #racket
badkins has joined #racket
Psybur has joined #racket
mon_aaraj has quit [Ping timeout: 245 seconds]
mon_aaraj has joined #racket
mon_aaraj has quit [Ping timeout: 245 seconds]
mon_aaraj has joined #racket
badkins has quit [Remote host closed the connection]
parnikkapore has joined #racket
badkins has joined #racket
ur5us has quit [Ping timeout: 240 seconds]
tonyg has quit [Ping timeout: 272 seconds]
tonyg has joined #racket
mon_aaraj has quit [Ping timeout: 252 seconds]
mon_aaraj has joined #racket
badkins has quit [Remote host closed the connection]
badkins has joined #racket
badkins has quit [Ping timeout: 244 seconds]
parnikkapore has quit [Quit: Leaving]
badkins has joined #racket
mon_aaraj has quit [Ping timeout: 252 seconds]
bremner has quit [Quit: Coyote finally caught me]
bremner has joined #racket
bremner has quit [Client Quit]
mon_aaraj has joined #racket
bremner has joined #racket
x9f83kjdos9pksdf has joined #racket
<x9f83kjdos9pksdf> I can't seem to get past this error: "raco setup: WARNING: undefined tag in <pkgs>/…my package name"
<x9f83kjdos9pksdf> Where should I start looking for the problem?
<x9f83kjdos9pksdf> AFAICT each of the functions listed is being exported exactly once.
tonyg1 has joined #racket
tonyg has quit [Ping timeout: 252 seconds]
tonyg1 is now known as tonyg
badkins has quit [Remote host closed the connection]
mon_aaraj has quit [Ping timeout: 268 seconds]
mon_aaraj has joined #racket
x9f83kjdos9pksdf has quit [Ping timeout: 245 seconds]
badkins has joined #racket
xgqt has quit [Ping timeout: 252 seconds]
xgqt has joined #racket
mon_aaraj has quit [Ping timeout: 268 seconds]
mon_aaraj has joined #racket
x9f83kjdos9pksdf has joined #racket
<x9f83kjdos9pksdf> Sorry, my village just called. They want their idiot back.
<x9f83kjdos9pksdf> The undefined tags that it's complaining about… I hadn't actually got around to defining those in the .scrbl file yet! 🤦
libertyprime has joined #racket
codingquark has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
codingquark has joined #racket
<winny> x9f83kjdos9pksdf: that error is kind of cryptic, might be constructive to mention in the issue tracker
<winny> like what is a tag tbh, i didn't know scribble uses that lingo, i thought they were just procedures :)
badkins has quit [Remote host closed the connection]
emacsomancer has joined #racket
badkins has joined #racket
badkins has quit [Ping timeout: 244 seconds]
badkins has joined #racket
libertyprime has quit [Ping timeout: 252 seconds]
badkins has quit [Remote host closed the connection]
badkins has joined #racket
badkins has quit [Remote host closed the connection]
badkins has joined #racket
badkins has quit [Ping timeout: 255 seconds]
<x9f83kjdos9pksdf> winny: AFAIU "tag" basically means "link" or "anchor". It's when something comes out with a red underline in the documentation. Yes, the error message could probably be made clearer, but at the end of the day the issue was that I simply had not defined the corresponding entries via @defproc, @defstruct*, etc., so the message was spot on.
<winny> Gotcha til :-) thx
<winny> Glad you figured it out
<x9f83kjdos9pksdf> In my defence, I was conditioned by an earlier attempt in a different
<x9f83kjdos9pksdf> package, which took me ages to figure out how to stop it complaining
<x9f83kjdos9pksdf> about "undefined tags". I think in the end the issue was that I was importing some of the functions twice, or using one path (like collection/module) in one place and a different one in another ("module.rkt"). They pointed to the same file but via a different route and that seemed to get scribble confused.