├── LICENSE ├── Makefile ├── README.rst ├── TODO.rst ├── Tupfile.ini ├── Tuprules.tup ├── configure.sh ├── docs ├── Tupfile ├── _shaman ├── conf.py ├── shaman.rst ├── strfweather.3 └── strfweather.tex ├── src ├── Tupfile ├── shaman.c ├── usage.h ├── weather.c └── weather.h ├── test ├── Tupfile.bak ├── suite.c └── test.json └── tup.config /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalosGhost/shaman/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalosGhost/shaman/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalosGhost/shaman/HEAD/README.rst -------------------------------------------------------------------------------- /TODO.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalosGhost/shaman/HEAD/TODO.rst -------------------------------------------------------------------------------- /Tupfile.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tuprules.tup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalosGhost/shaman/HEAD/Tuprules.tup -------------------------------------------------------------------------------- /configure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalosGhost/shaman/HEAD/configure.sh -------------------------------------------------------------------------------- /docs/Tupfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalosGhost/shaman/HEAD/docs/Tupfile -------------------------------------------------------------------------------- /docs/_shaman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalosGhost/shaman/HEAD/docs/_shaman -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalosGhost/shaman/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/shaman.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalosGhost/shaman/HEAD/docs/shaman.rst -------------------------------------------------------------------------------- /docs/strfweather.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalosGhost/shaman/HEAD/docs/strfweather.3 -------------------------------------------------------------------------------- /docs/strfweather.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalosGhost/shaman/HEAD/docs/strfweather.tex -------------------------------------------------------------------------------- /src/Tupfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalosGhost/shaman/HEAD/src/Tupfile -------------------------------------------------------------------------------- /src/shaman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalosGhost/shaman/HEAD/src/shaman.c -------------------------------------------------------------------------------- /src/usage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalosGhost/shaman/HEAD/src/usage.h -------------------------------------------------------------------------------- /src/weather.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalosGhost/shaman/HEAD/src/weather.c -------------------------------------------------------------------------------- /src/weather.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalosGhost/shaman/HEAD/src/weather.h -------------------------------------------------------------------------------- /test/Tupfile.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalosGhost/shaman/HEAD/test/Tupfile.bak -------------------------------------------------------------------------------- /test/suite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalosGhost/shaman/HEAD/test/suite.c -------------------------------------------------------------------------------- /test/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalosGhost/shaman/HEAD/test/test.json -------------------------------------------------------------------------------- /tup.config: -------------------------------------------------------------------------------- 1 | CONFIG_VERSION=`git describe` 2 | --------------------------------------------------------------------------------