mirror of
https://git.freebsd.org/ports.git
synced 2025-07-17 17:29:23 -04:00
Commit b7f05445c0
has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner)
17 lines
597 B
Text
17 lines
597 B
Text
appdirs is small Python module for determining appropriate platform-specific
|
|
dirs, e.g. a "user data dir". Those are typically platform-specific, for
|
|
instance, if running on Mac OS X, you should use:
|
|
|
|
~/Library/Application Support/<AppName>
|
|
|
|
On Linux (and other Unices) the dir, according to the XDG spec, is:
|
|
|
|
~/.local/share/<AppName>
|
|
|
|
appdirs will help the application to choose an appropriate:
|
|
- user data dir (user_data_dir)
|
|
- user config dir (user_config_dir)
|
|
- user cache dir (user_cache_dir)
|
|
- site data dir (site_data_dir)
|
|
- site config dir (site_config_dir)
|
|
- user log dir (user_log_dir)
|