Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion build_conquest_python.py
Original file line number Diff line number Diff line change
Expand Up @@ -297,14 +297,16 @@ def verify(self):

class TkPackage(AutoconfMixin, NoArchiveMixin, Package):
name = 'tk'
version = '8.6.11'
version = '8.6.16'

@property
def source_archives(self):
return {
# Canonical would be https://prdownloads.sourceforge.net/tcl/ but it's fetching garbage
# How lovely to have a different tcl and tk version....
f'tk{self.version}-src.tar.gz': f'https://freefr.dl.sourceforge.net/project/tcl/Tcl/{self.version}/tk{self.version}.1-src.tar.gz'
# This works for 8.6.16: https://sourceforge.net/projects/tcl/files/Tcl/8.6.16/tk8.6.16-src.tar.gz/download,
# so we can try this if the above fails
}

@property
Expand Down