├── README.rst ├── archrepo2 ├── __init__.py ├── archreposrv.py ├── dbutil.py ├── lib │ ├── __init__.py │ ├── archpkg.py │ └── nicelogger.py └── repomon.py ├── misc ├── archrepo2.ini.example └── archrepo2.service ├── scripts ├── on_update_notification ├── touch_pkg_with_newer_sig ├── upgrade_from_0.2_to_0.3.py └── upgrade_from_0.3_to_0.4.py ├── setup.py └── test ├── instructions.act └── repomon_test.py /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/archrepo2/HEAD/README.rst -------------------------------------------------------------------------------- /archrepo2/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '0.6dev' 2 | -------------------------------------------------------------------------------- /archrepo2/archreposrv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/archrepo2/HEAD/archrepo2/archreposrv.py -------------------------------------------------------------------------------- /archrepo2/dbutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/archrepo2/HEAD/archrepo2/dbutil.py -------------------------------------------------------------------------------- /archrepo2/lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/archrepo2/HEAD/archrepo2/lib/__init__.py -------------------------------------------------------------------------------- /archrepo2/lib/archpkg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/archrepo2/HEAD/archrepo2/lib/archpkg.py -------------------------------------------------------------------------------- /archrepo2/lib/nicelogger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/archrepo2/HEAD/archrepo2/lib/nicelogger.py -------------------------------------------------------------------------------- /archrepo2/repomon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/archrepo2/HEAD/archrepo2/repomon.py -------------------------------------------------------------------------------- /misc/archrepo2.ini.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/archrepo2/HEAD/misc/archrepo2.ini.example -------------------------------------------------------------------------------- /misc/archrepo2.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/archrepo2/HEAD/misc/archrepo2.service -------------------------------------------------------------------------------- /scripts/on_update_notification: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/archrepo2/HEAD/scripts/on_update_notification -------------------------------------------------------------------------------- /scripts/touch_pkg_with_newer_sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/archrepo2/HEAD/scripts/touch_pkg_with_newer_sig -------------------------------------------------------------------------------- /scripts/upgrade_from_0.2_to_0.3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/archrepo2/HEAD/scripts/upgrade_from_0.2_to_0.3.py -------------------------------------------------------------------------------- /scripts/upgrade_from_0.3_to_0.4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/archrepo2/HEAD/scripts/upgrade_from_0.3_to_0.4.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/archrepo2/HEAD/setup.py -------------------------------------------------------------------------------- /test/instructions.act: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/archrepo2/HEAD/test/instructions.act -------------------------------------------------------------------------------- /test/repomon_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/archrepo2/HEAD/test/repomon_test.py --------------------------------------------------------------------------------