Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
206 changes: 0 additions & 206 deletions LICENSE-PALIMPSEST

This file was deleted.

8 changes: 4 additions & 4 deletions docs/RSR_COMPLIANCE.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ operates on local filesystem only - Works without internet connection

*Required Files* (all present): - ✅ `+README.md+` - Comprehensive
project documentation - ✅ `+LICENSE-MIT+` - MIT License - ✅
`+LICENSE-APACHE+` - Apache License 2.0 - ✅ `+LICENSE-PALIMPSEST+` -
MPL-2.0 v0.8 (experimental) - ✅ `+SECURITY.md+` - Security policy and
`+LICENSE-APACHE+` - Apache License 2.0 - ✅ `+LICENSE+` -
MPL-2.0 - ✅ `+SECURITY.md+` - Security policy and
reporting - ✅ `+CONTRIBUTING.md+` - Contribution guidelines - ✅
`+CODE_OF_CONDUCT.md+` - Community standards - ✅ `+MAINTAINERS.md+` -
Project governance - ✅ `+CHANGELOG.md+` - Version history
Expand Down Expand Up @@ -159,8 +159,8 @@ $ cargo clippy -- -D warnings # ✓ No warnings
==== 10. Legal Compliance ✅

*Triple Licensing*: - ✅ MIT License (`+LICENSE-MIT+`) - ✅ Apache
License 2.0 (`+LICENSE-APACHE+`) - ✅ MPL-2.0 v0.8
(`+LICENSE-PALIMPSEST+`)
License 2.0 (`+LICENSE-APACHE+`) - ✅ MPL-2.0
(`+LICENSE+`)

Users may choose *any* of the three licenses.

Expand Down
4 changes: 2 additions & 2 deletions scripts/verify-rsr.sh
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ echo ""

echo "📚 RSR Category 4: Documentation"
check "README.adoc exists" "[ -f README.adoc ]"
check "LICENSE files exist (triple licensed)" "[ -f LICENSE-MIT ] && [ -f LICENSE-APACHE ] && [ -f LICENSE-PALIMPSEST ]"
check "LICENSE files exist (triple licensed)" "[ -f LICENSE-MIT ] && [ -f LICENSE-APACHE ] && [ -f LICENSE ]"
check "CHANGELOG.adoc exists" "[ -f CHANGELOG.adoc ]"
check "CONTRIBUTING.adoc exists" "[ -f CONTRIBUTING.adoc ]"
check "CODE_OF_CONDUCT.adoc exists" "[ -f CODE_OF_CONDUCT.adoc ]"
Expand Down Expand Up @@ -115,7 +115,7 @@ warn "No warnings in release build" "cargo build --release --quiet 2>&1 | grep -
echo ""

echo "⚖️ RSR Category 10: Legal Compliance"
check "Triple licensing (MIT + Apache + Palimpsest)" "[ -f LICENSE-MIT ] && [ -f LICENSE-APACHE ] && [ -f LICENSE-PALIMPSEST ]"
check "Triple licensing (MIT + Apache + MPL-2.0)" "[ -f LICENSE-MIT ] && [ -f LICENSE-APACHE ] && [ -f LICENSE ]"
check "License headers in source files" "head -20 crates/fslint-cli/src/main.rs | grep -q 'Copyright\|License' || true"
warn "Dependency license audit" "cargo license 2>/dev/null | grep -q 'MIT\|Apache' || true"
echo ""
Expand Down
Loading