mirror of
https://git.freebsd.org/ports.git
synced 2025-05-18 10:03:10 -04:00
Use python-flavors. Switch to manuall install method because there is no setup.py anymore. Switch to DISTVERSION. Submitter takes maintainership. Changelogs: https://github.com/ihabunek/toot/releases/tag/0.43.0 https://github.com/ihabunek/toot/releases/tag/0.44.0 https://github.com/ihabunek/toot/releases/tag/0.44.1 https://github.com/ihabunek/toot/releases/tag/0.45.0 https://github.com/ihabunek/toot/releases/tag/0.46.0 https://github.com/ihabunek/toot/releases/tag/0.47.0 https://github.com/ihabunek/toot/releases/tag/0.47.1 PR: 283634
8 lines
203 B
Text
8 lines
203 B
Text
#!%%PYTHON_CMD%%
|
|
# -*- coding: utf-8 -*-
|
|
import re
|
|
import sys
|
|
from toot.cli import cli
|
|
if __name__ == '__main__':
|
|
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
|
|
sys.exit(cli())
|