├── .github ├── FUNDING.yml └── issue_template.md ├── README ├── debian-archive └── archive.py ├── deprecated-symbols ├── gdk_deprecated.txt ├── gdk_pixbuf_deprecated.txt └── gtk_deprecated.txt ├── fix-fsf-address ├── fixlicense.sh └── fsf.py ├── get-git-repos └── download_repos.py ├── maintainer ├── arch-build-mate ├── docbook2mallard ├── mate-sync-repos └── release-upload ├── po-copyright └── po-copyright.py ├── translation-sync └── translation-sync.py ├── travis ├── README.md ├── debian.sh ├── distro_hook ├── docker-build ├── fedora.sh ├── gen-index-other-dns.sh ├── gen-index.sh ├── save-file-in-travis.sh └── template.yml └── update-repos └── update.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-dev-scripts/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-dev-scripts/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-dev-scripts/HEAD/README -------------------------------------------------------------------------------- /debian-archive/archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-dev-scripts/HEAD/debian-archive/archive.py -------------------------------------------------------------------------------- /deprecated-symbols/gdk_deprecated.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-dev-scripts/HEAD/deprecated-symbols/gdk_deprecated.txt -------------------------------------------------------------------------------- /deprecated-symbols/gdk_pixbuf_deprecated.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-dev-scripts/HEAD/deprecated-symbols/gdk_pixbuf_deprecated.txt -------------------------------------------------------------------------------- /deprecated-symbols/gtk_deprecated.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-dev-scripts/HEAD/deprecated-symbols/gtk_deprecated.txt -------------------------------------------------------------------------------- /fix-fsf-address/fixlicense.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-dev-scripts/HEAD/fix-fsf-address/fixlicense.sh -------------------------------------------------------------------------------- /fix-fsf-address/fsf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-dev-scripts/HEAD/fix-fsf-address/fsf.py -------------------------------------------------------------------------------- /get-git-repos/download_repos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-dev-scripts/HEAD/get-git-repos/download_repos.py -------------------------------------------------------------------------------- /maintainer/arch-build-mate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-dev-scripts/HEAD/maintainer/arch-build-mate -------------------------------------------------------------------------------- /maintainer/docbook2mallard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-dev-scripts/HEAD/maintainer/docbook2mallard -------------------------------------------------------------------------------- /maintainer/mate-sync-repos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-dev-scripts/HEAD/maintainer/mate-sync-repos -------------------------------------------------------------------------------- /maintainer/release-upload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-dev-scripts/HEAD/maintainer/release-upload -------------------------------------------------------------------------------- /po-copyright/po-copyright.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-dev-scripts/HEAD/po-copyright/po-copyright.py -------------------------------------------------------------------------------- /translation-sync/translation-sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-dev-scripts/HEAD/translation-sync/translation-sync.py -------------------------------------------------------------------------------- /travis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-dev-scripts/HEAD/travis/README.md -------------------------------------------------------------------------------- /travis/debian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-dev-scripts/HEAD/travis/debian.sh -------------------------------------------------------------------------------- /travis/distro_hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-dev-scripts/HEAD/travis/distro_hook -------------------------------------------------------------------------------- /travis/docker-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-dev-scripts/HEAD/travis/docker-build -------------------------------------------------------------------------------- /travis/fedora.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-dev-scripts/HEAD/travis/fedora.sh -------------------------------------------------------------------------------- /travis/gen-index-other-dns.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-dev-scripts/HEAD/travis/gen-index-other-dns.sh -------------------------------------------------------------------------------- /travis/gen-index.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-dev-scripts/HEAD/travis/gen-index.sh -------------------------------------------------------------------------------- /travis/save-file-in-travis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-dev-scripts/HEAD/travis/save-file-in-travis.sh -------------------------------------------------------------------------------- /travis/template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-dev-scripts/HEAD/travis/template.yml -------------------------------------------------------------------------------- /update-repos/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-dev-scripts/HEAD/update-repos/update.py --------------------------------------------------------------------------------