9 Commits
v0.2.0 ... main

Author SHA1 Message Date
9ae556df47 bumped version to 0.2.4 to fix breakign change
All checks were successful
Pack Validation CI / validate (push) Successful in 8s
Publish Language Pack / verify (push) Successful in 7s
Publish Language Pack / publish (push) Successful in 14s
2026-05-21 15:35:55 +00:00
8c1bbc2ab6 added 0.5.4 dependency to fix issues
All checks were successful
Pack Validation CI / validate (push) Successful in 7s
2026-05-21 15:35:10 +00:00
0ab35b8a90 added readme
All checks were successful
Pack Validation CI / validate (push) Successful in 7s
Trigger Docs Rebuild / trigger (push) Successful in 2s
2026-05-21 15:16:38 +00:00
20761a9aad added docs trigger
All checks were successful
Pack Validation CI / validate (push) Successful in 8s
2026-05-20 22:07:27 -05:00
6246faa9e8 Added readme
All checks were successful
Pack Validation CI / validate (push) Successful in 9s
2026-05-20 17:45:29 -05:00
de801eda78 fixed release naming in workflow publish.yml
All checks were successful
Pack Validation CI / validate (push) Successful in 7s
2026-05-19 18:01:10 -05:00
f2301f9317 changed toml file
All checks were successful
Pack Validation CI / validate (push) Successful in 9s
Publish Language Pack / verify (push) Successful in 6s
Publish Language Pack / publish (push) Successful in 12s
2026-05-19 17:57:02 -05:00
eb76ca81db fixed broken postfix test
All checks were successful
Pack Validation CI / validate (push) Successful in 8s
Publish Language Pack / verify (push) Successful in 6s
Publish Language Pack / publish (push) Successful in 14s
2026-05-19 16:36:03 -05:00
2b72e7bf5a added workfloqws, upgraded vwersion, and added tests
Some checks failed
Pack Validation CI / validate (push) Failing after 7s
2026-05-19 16:32:29 -05:00
6 changed files with 380 additions and 3 deletions

28
.gitea/workflows/ci.yml Normal file
View File

@@ -0,0 +1,28 @@
name: Pack Validation CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
validate:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install Test Dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
- name: Run Pack Verification Suite
run: python -m pytest tests/ -v

View File

@@ -0,0 +1,80 @@
name: Publish Language Pack
on:
push:
tags:
- "v*" # Fires directly on v0.1.0, v0.2.0 etc.
jobs:
# Enforce that tests MUST pass before release can execute
verify:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install and Verify
run: |
pip install pytest
pytest tests/ -v
publish:
needs: verify # Blocks execution if verify job fails
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install Release Tools
run: pip install build twine
- name: Build Wheel and Source Distribution
# Automatically detects pyproject.toml and builds the correct pack
run: python -m build .
- name: Publish Package to PyPI
env:
TWINE_USERNAME: __token__
# Inherits your clean Organization level secret
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
run: twine upload --skip-existing dist/*
- name: Build Gitea Release with Assets
env:
# Pulls your clean Organization level Gitea Token
GIT_RELEASE_TOKEN: ${{ secrets.GIT_RELEASE_TOKEN }}
run: |
TAG=${GITHUB_REF#refs/tags/}
REPO_NAME=${{ github.event.repository.name }}
# Delete existing release block if present
EXISTING=$(curl -s -H "Authorization: token $GIT_RELEASE_TOKEN" "${{ github.server_url }}/api/v1/repos/${{ github.repository }}/releases/tags/$TAG")
EXISTING_ID=$(echo $EXISTING | python -c "import sys,json; d=json.load(sys.stdin); print(d.get('id',''))" 2>/dev/null || echo "")
if [ -n "$EXISTING_ID" ]; then
curl -s -X DELETE -H "Authorization: token $GIT_RELEASE_TOKEN" "${{ github.server_url }}/api/v1/repos/${{ github.repository }}/releases/$EXISTING_ID"
fi
# Create fresh production release container
RELEASE=$(curl -s -X POST \
-H "Authorization: token $GIT_RELEASE_TOKEN" \
-H "Content-Type: application/json" \
-d "{
\"tag_name\": \"$TAG\",
\"name\": \"$TAG\",
\"body\": \"Language pack release version $TAG for the foreignthon transpiler framework.\",
\"draft\": false,
\"prerelease\": false
}" "${{ github.server_url }}/api/v1/repos/${{ github.repository }}/releases")
RELEASE_ID=$(echo $RELEASE | python -c "import sys,json; print(json.load(sys.stdin)['id'])")
# Upload wheels directly into Gitea Assets tab
for FILE in dist/*; do
curl -s -X POST -H "Authorization: token $GIT_RELEASE_TOKEN" -F "attachment=@$FILE" "${{ github.server_url }}/api/v1/repos/${{ github.repository }}/releases/$RELEASE_ID/assets"
done

View File

@@ -0,0 +1,21 @@
name: Trigger Docs Rebuild
on:
push:
branches: ["main"]
paths:
- "README.md"
jobs:
trigger:
runs-on: ubuntu-latest
steps:
- name: Trigger docs rebuild
env:
DOCS_TOKEN: ${{ secrets.DOCS_TRIGGER_TOKEN }}
run: |
curl -s -X POST \
-H "Authorization: token $DOCS_TOKEN" \
-H "Content-Type: application/json" \
-d '{"ref": "main"}' \
"https://git.keshavanand.net/api/v1/repos/foreign-thon/foreignthon-docs/actions/workflows/deploy.yml/dispatches"

125
README.md
View File

@@ -1 +1,126 @@
# foreignthon-ta
Tamil language pack for [ForeignThon](https://foreignthon.keshavanand.net/) — write Python in தமிழ்.
---
## Install
```bash
pip install foreignthon foreignthon-ta
```
---
## Example
**`fizzbuzz.ta.py`**
```python
ிரலகம fizzbuzz(n):
ஆக i உள வரம(1, n + 1):
i % 15 == 0 @@ஆன:
பதிி("FizzBuzz")
i % 3 == 0 @@இலஆன:
பதிி("Fizz")
i % 5 == 0 @@இலஆன:
பதிி("Buzz")
மறறபடி:
பதிி(i)
fizzbuzz(20)
```
This uses Tamil's natural SOV word order — the condition comes first, then the keyword with `@@`. See [Postfix Syntax](https://foreignthon.keshavanand.net/postfix-syntax/) for details.
Compiles to standard Python:
```python
def fizzbuzz(n):
for i in range(1, n + 1):
if i % 15 == 0:
print("FizzBuzz")
elif i % 3 == 0:
print("Fizz")
elif i % 5 == 0:
print("Buzz")
else:
print(i)
fizzbuzz(20)
```
---
## Keyword reference
| Python | தமிழ் |
|---|---|
| `if` | `ஆனால்` |
| `else` | `மற்றபடி` |
| `elif` | `இல்லைஆனால்` |
| `for` | `ஆக` |
| `while` | `வரை` |
| `def` | `நிரல்பாகம்` |
| `class` | `கோப்பு` |
| `return` | `பின்கோடு` |
| `import` | `இறக்கு` |
| `True` | `உண்மை` |
| `False` | `பொய்` |
| `None` | `ஒன்றுமில்லை` |
| `print` | `பதிப்பி` |
| `input` | `உள்ளீடு` |
| `len` | `நீளம்` |
| `range` | `வரம்பு` |
Full mapping: [`ta.json`](https://git.keshavanand.net/foreign-thon/foreignthon-ta/raw/branch/main/src/foreignthon_ta/ta.json)
---
## Postfix syntax
Tamil is SOV — the condition naturally comes before the keyword. The `@@` operator lets you write it that way:
```python
# prefix style (also valid)
ஆன x > 0:
பதிி(x)
# postfix style — natural Tamil order
x > 0 @@ஆன:
பதிி(x)
```
Both compile identically. Decompile standard Python with postfix output:
```bash
fpy decompile script.py --lang ta --postfix
```
---
## Start a project
```bash
fpy new myproject --lang ta
cd myproject
fpy run src/main.ta.py
```
---
## Documentation
→ [foreignthon.keshavanand.net](https://foreignthon.keshavanand.net/)
---
## Contributing
Found a missing translation or a better keyword choice? Open an issue or PR — no access to the core repo needed.
---
## License
GPL v3

View File

@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
[project]
name = "foreignthon-ta"
version = "0.2.1"
version = "0.2.4"
description = "Tamil language pack for ForeignThon."
license = { text = "GPL v3" }
requires-python = ">=3.9"
@@ -12,10 +12,19 @@ authors = [
{ name = "Keshav Anand", email = "keshavanand.dev@gmail.com" }
]
keywords = ["foreignthon", "tamil", "தமிழ்"]
dependencies = ["foreignthon>=0.5.2"]
dependencies = ["foreignthon>=0.5.4"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Topic :: Software Development :: Compilers",
]
[project.urls]
Homepage = "https://git.keshavanand.net/foreign-thon/foreignthon-ta"
[project.entry-points."foreignthon.langs"]
ta = "foreignthon_ta"
[tool.hatch.build.targets.wheel]
packages = ["src/foreignthon_ta"]
packages = ["src/foreignthon_ta"]

114
tests/test_pack.py Normal file
View File

@@ -0,0 +1,114 @@
from __future__ import annotations
import builtins
import json
import keyword
from pathlib import Path
import pytest
# ---------------------------------------------------------------------------
# Dynamic Discovery: Find the pack file in this specific repository
# ---------------------------------------------------------------------------
def find_pack_file() -> Path:
"""Scans the repository root for a Foreignthon language pack JSON."""
repo_root = Path(__file__).parent.parent
for path in repo_root.rglob("*.json"):
# Ignore virtual environments, cache files, and CI directories
ignored_dirs = {".venv", "venv", ".git", ".pytest_cache", ".gitea", ".github"}
if any(part in path.parts for part in ignored_dirs):
continue
# Peek inside the JSON to see if it's a Foreignthon pack
try:
with open(path, encoding="utf-8") as f:
content = json.load(f)
if "meta" in content and "keywords" in content:
return path
except (json.JSONDecodeError, KeyError, TypeError):
continue
raise FileNotFoundError(
"Could not find a valid Foreignthon language pack JSON file in this repository."
)
# ---------------------------------------------------------------------------
# Global Validation Sets
# ---------------------------------------------------------------------------
VALID_KEYWORDS = set(keyword.kwlist) | {"True", "False", "None"}
VALID_BUILTINS = set(dir(builtins))
# ---------------------------------------------------------------------------
# The Universal Test Suite
# ---------------------------------------------------------------------------
@pytest.fixture(scope="module")
def pack_data() -> tuple[Path, dict]:
"""Loads the dynamically discovered pack file once for the test module."""
path = find_pack_file()
with open(path, encoding="utf-8") as f:
return path, json.load(f)
def test_meta_section_integrity(pack_data):
path, data = pack_data
assert "meta" in data, f"Missing 'meta' section in {path.name}"
meta = data["meta"]
assert meta.get("name"), "meta.name cannot be empty"
assert meta.get("native_name"), "meta.native_name cannot be empty"
assert meta.get("code"), "meta.code cannot be empty"
# Enforce that the file name matches the language code (e.g., es.json matches code 'es')
assert (
path.stem == meta["code"]
), f"Filename '{path.name}' must exactly match meta.code '{meta['code']}'"
def test_keywords_integrity(pack_data):
path, data = pack_data
assert "keywords" in data, f"Missing 'keywords' section in {path.name}"
for foreign_word, python_keyword in data["keywords"].items():
assert python_keyword in VALID_KEYWORDS, (
f"Invalid target '{python_keyword}' for foreign keyword '{foreign_word}' in {path.name}. "
"It is not a recognized Python keyword."
)
def test_builtins_and_exceptions_integrity(pack_data):
path, data = pack_data
# Validate Builtins
assert "builtins" in data, f"Missing 'builtins' section in {path.name}"
for foreign_word, python_builtin in data["builtins"].items():
assert (
python_builtin in VALID_BUILTINS
), f"Invalid target '{python_builtin}' for builtin function '{foreign_word}' in {path.name}."
# Validate Exceptions
assert "exceptions" in data, f"Missing 'exceptions' section in {path.name}"
for foreign_word, python_exception in data["exceptions"].items():
assert (
python_exception in VALID_BUILTINS
), f"Invalid target '{python_exception}' for exception '{foreign_word}' in {path.name}."
def test_postfix_keywords_integrity(pack_data):
path, data = pack_data
assert "postfix_keywords" in data, f"Missing 'postfix_keywords' section in {path.name}"
assert isinstance(data["postfix_keywords"], list), "'postfix_keywords' must be an array/list"
# Extract all the English Python keywords that have been mapped in this pack
mapped_python_targets = set(data["keywords"].values())
# Ensure any declared English postfix keyword actually has a mapped translation
for post_kw in data["postfix_keywords"]:
assert post_kw in mapped_python_targets, (
f"English postfix keyword '{post_kw}' is missing from the mapped values "
f"in the main 'keywords' dictionary in {path.name}."
)