Add git source docs, weekly FreeCAD, update_check URLs

- FreeCAD updated to weekly-2026.03.19 development builds
  Source: github.com/FreeCAD/FreeCAD/releases (weekly tags)
- dwl package: added update_check URL and git source comments
- README: added standalone repo notice and submodule reference

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-19 11:58:05 +01:00
parent 5668d305dc
commit b83ae5fcd9
3 changed files with 32 additions and 6 deletions

View File

@@ -2,6 +2,10 @@
124 package definitions for the complete DarkForge Linux system. Each package is a TOML file describing how to download, build, and install a piece of software. 124 package definitions for the complete DarkForge Linux system. Each package is a TOML file describing how to download, build, and install a piece of software.
This is a standalone repository used as a git submodule by the main DarkForge project. It contains only package definitions (TOML files) — no build scripts or binaries.
**Standalone repo:** `git@git.dannyhaslund.dk:danny8632/repos.git`
## Repository Layout ## Repository Layout
``` ```

View File

@@ -6,15 +6,28 @@ url = "https://codeberg.org/dwl/dwl"
license = "GPL-3.0" license = "GPL-3.0"
[source] [source]
# Tarball release (default)
url = "https://codeberg.org/dwl/dwl/archive/v${version}.tar.gz" url = "https://codeberg.org/dwl/dwl/archive/v${version}.tar.gz"
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
# To build from git main branch instead, change to:
# url = ""
# sha256 = "SKIP"
# git = "https://codeberg.org/dwl/dwl.git"
# branch = "main"
#
# To pin to a specific tag:
# git = "https://codeberg.org/dwl/dwl.git"
# tag = "v${version}"
update_check = "https://codeberg.org/api/v1/repos/dwl/dwl/releases/latest"
[dependencies] [dependencies]
run = ["wlroots", "wayland", "wayland-protocols", "libinput", "xwayland"] run = ["wlroots", "wayland", "wayland-protocols", "libinput", "xwayland"]
build = ["gcc", "make", "pkg-config"] build = ["gcc", "make", "pkg-config"]
[build] [build]
system = "custom" system = "custom"
configure = """""" configure = ""
make = """make""" make = "make"
install = """make DESTDIR=${PKG} PREFIX=/usr install""" install = "make DESTDIR=${PKG} PREFIX=/usr install"

View File

@@ -1,14 +1,23 @@
[package] [package]
name = "freecad" name = "freecad"
version = "1.0.0" version = "weekly-2026.03.19"
description = "Parametric 3D CAD modeler" description = "Parametric 3D CAD modeler (weekly development build)"
url = "https://www.freecad.org/" url = "https://www.freecad.org/"
license = "LGPL-2.0" license = "LGPL-2.0"
[source] [source]
url = "https://github.com/FreeCAD/FreeCAD/archive/refs/tags/${version}/FreeCAD-${version}.tar.gz" # Weekly builds from FreeCAD GitHub releases
url = "https://github.com/FreeCAD/FreeCAD/releases/download/${version}/freecad_source_${version}.tar.gz"
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
# Alternative: build from git main branch for latest development
# Uncomment git/branch and set sha256 = "SKIP" to use git source instead
# git = "https://github.com/FreeCAD/FreeCAD.git"
# branch = "main"
# Upstream update check — queries GitHub releases for new weekly tags
update_check = "https://api.github.com/repos/FreeCAD/FreeCAD/releases/latest"
[dependencies] [dependencies]
run = ["glibc", "python", "qt6-base", "opencascade", "boost", "xerces-c", "freetype", "zlib", "libpng"] run = ["glibc", "python", "qt6-base", "opencascade", "boost", "xerces-c", "freetype", "zlib", "libpng"]
build = ["gcc", "cmake", "ninja", "pkg-config", "swig"] build = ["gcc", "cmake", "ninja", "pkg-config", "swig"]