├── COPYING ├── MANIFEST.in ├── README.md ├── TODO.md ├── greg ├── aux_functions.py ├── classes.py ├── commands.py ├── data │ └── greg.conf └── parser.py ├── pkgbuilds ├── git │ ├── .SRCINFO │ └── PKGBUILD └── stable │ └── PKGBUILD └── setup.py /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manolomartinez/greg/HEAD/COPYING -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manolomartinez/greg/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manolomartinez/greg/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manolomartinez/greg/HEAD/TODO.md -------------------------------------------------------------------------------- /greg/aux_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manolomartinez/greg/HEAD/greg/aux_functions.py -------------------------------------------------------------------------------- /greg/classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manolomartinez/greg/HEAD/greg/classes.py -------------------------------------------------------------------------------- /greg/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manolomartinez/greg/HEAD/greg/commands.py -------------------------------------------------------------------------------- /greg/data/greg.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manolomartinez/greg/HEAD/greg/data/greg.conf -------------------------------------------------------------------------------- /greg/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manolomartinez/greg/HEAD/greg/parser.py -------------------------------------------------------------------------------- /pkgbuilds/git/.SRCINFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manolomartinez/greg/HEAD/pkgbuilds/git/.SRCINFO -------------------------------------------------------------------------------- /pkgbuilds/git/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manolomartinez/greg/HEAD/pkgbuilds/git/PKGBUILD -------------------------------------------------------------------------------- /pkgbuilds/stable/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manolomartinez/greg/HEAD/pkgbuilds/stable/PKGBUILD -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manolomartinez/greg/HEAD/setup.py --------------------------------------------------------------------------------