├── .github └── pull_request_template.md ├── .gitignore ├── Makefile ├── README.md ├── archives └── .gitkeep └── debian ├── README.Debian ├── README.md ├── changelog ├── compat ├── conf ├── apache.conf ├── lighttpd.conf ├── matomo-archive └── matomo-log ├── control ├── copyright ├── gpg-keys └── matomo-keyring-automatic.gpg ├── matomo.config ├── matomo.dirs ├── matomo.docs ├── matomo.install ├── matomo.links ├── matomo.lintian-overrides ├── matomo.postinst ├── matomo.postrm ├── matomo.preinst ├── matomo.prerm ├── po └── .gitkeep ├── rules ├── scripts ├── githelp.sh ├── history.sh └── vercomp.sh ├── source └── format └── templates /.github/pull_request_template.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/matomo-package/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/matomo-package/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/matomo-package/HEAD/README.md -------------------------------------------------------------------------------- /archives/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /debian/README.Debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/matomo-package/HEAD/debian/README.Debian -------------------------------------------------------------------------------- /debian/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/matomo-package/HEAD/debian/README.md -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/matomo-package/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 13 2 | -------------------------------------------------------------------------------- /debian/conf/apache.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/matomo-package/HEAD/debian/conf/apache.conf -------------------------------------------------------------------------------- /debian/conf/lighttpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/matomo-package/HEAD/debian/conf/lighttpd.conf -------------------------------------------------------------------------------- /debian/conf/matomo-archive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/matomo-package/HEAD/debian/conf/matomo-archive -------------------------------------------------------------------------------- /debian/conf/matomo-log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/matomo-package/HEAD/debian/conf/matomo-log -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/matomo-package/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/matomo-package/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/gpg-keys/matomo-keyring-automatic.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/matomo-package/HEAD/debian/gpg-keys/matomo-keyring-automatic.gpg -------------------------------------------------------------------------------- /debian/matomo.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/matomo-package/HEAD/debian/matomo.config -------------------------------------------------------------------------------- /debian/matomo.dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/matomo-package/HEAD/debian/matomo.dirs -------------------------------------------------------------------------------- /debian/matomo.docs: -------------------------------------------------------------------------------- 1 | matomo/LEGALNOTICE 2 | -------------------------------------------------------------------------------- /debian/matomo.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/matomo-package/HEAD/debian/matomo.install -------------------------------------------------------------------------------- /debian/matomo.links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/matomo-package/HEAD/debian/matomo.links -------------------------------------------------------------------------------- /debian/matomo.lintian-overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/matomo-package/HEAD/debian/matomo.lintian-overrides -------------------------------------------------------------------------------- /debian/matomo.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/matomo-package/HEAD/debian/matomo.postinst -------------------------------------------------------------------------------- /debian/matomo.postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/matomo-package/HEAD/debian/matomo.postrm -------------------------------------------------------------------------------- /debian/matomo.preinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/matomo-package/HEAD/debian/matomo.preinst -------------------------------------------------------------------------------- /debian/matomo.prerm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/matomo-package/HEAD/debian/matomo.prerm -------------------------------------------------------------------------------- /debian/po/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/matomo-package/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/scripts/githelp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/matomo-package/HEAD/debian/scripts/githelp.sh -------------------------------------------------------------------------------- /debian/scripts/history.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/matomo-package/HEAD/debian/scripts/history.sh -------------------------------------------------------------------------------- /debian/scripts/vercomp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/matomo-package/HEAD/debian/scripts/vercomp.sh -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 1.0 2 | -------------------------------------------------------------------------------- /debian/templates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/matomo-package/HEAD/debian/templates --------------------------------------------------------------------------------