├── COPYING ├── README.md ├── TODO.md ├── debian_templates ├── apache.conf.http.template ├── apache.conf.httpsonly.template ├── apache.conf.mixed.template ├── apache.conf.redirect.template ├── apachedir.template ├── compat ├── config ├── config.db ├── config.web ├── confmodule ├── control ├── control.binarytemplate ├── copyright ├── dirs ├── dirs.web ├── install ├── logrotate ├── postinst ├── postinst.configure.db ├── postinst.configure.end.web ├── postinst.configure.web ├── postinst.constants.db ├── postinst.constants.web ├── postrm ├── postrm.db ├── postrm.purge.db ├── preinst ├── preinst.db ├── preinst.web ├── prerm ├── prerm.db ├── prerm.web ├── rules └── templates ├── lib └── Liip │ ├── Debian │ └── Helper.pm │ ├── Symfony2 │ └── Application.pm │ └── YAML.pm ├── maketime.pl ├── project_templates ├── Makefile ├── changelog └── packagemanifest.yml └── sf2debpkg_prepare /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjollnir/sf2debpkg/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjollnir/sf2debpkg/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjollnir/sf2debpkg/HEAD/TODO.md -------------------------------------------------------------------------------- /debian_templates/apache.conf.http.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjollnir/sf2debpkg/HEAD/debian_templates/apache.conf.http.template -------------------------------------------------------------------------------- /debian_templates/apache.conf.httpsonly.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjollnir/sf2debpkg/HEAD/debian_templates/apache.conf.httpsonly.template -------------------------------------------------------------------------------- /debian_templates/apache.conf.mixed.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjollnir/sf2debpkg/HEAD/debian_templates/apache.conf.mixed.template -------------------------------------------------------------------------------- /debian_templates/apache.conf.redirect.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjollnir/sf2debpkg/HEAD/debian_templates/apache.conf.redirect.template -------------------------------------------------------------------------------- /debian_templates/apachedir.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjollnir/sf2debpkg/HEAD/debian_templates/apachedir.template -------------------------------------------------------------------------------- /debian_templates/compat: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /debian_templates/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjollnir/sf2debpkg/HEAD/debian_templates/config -------------------------------------------------------------------------------- /debian_templates/config.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjollnir/sf2debpkg/HEAD/debian_templates/config.db -------------------------------------------------------------------------------- /debian_templates/config.web: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjollnir/sf2debpkg/HEAD/debian_templates/config.web -------------------------------------------------------------------------------- /debian_templates/confmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjollnir/sf2debpkg/HEAD/debian_templates/confmodule -------------------------------------------------------------------------------- /debian_templates/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjollnir/sf2debpkg/HEAD/debian_templates/control -------------------------------------------------------------------------------- /debian_templates/control.binarytemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjollnir/sf2debpkg/HEAD/debian_templates/control.binarytemplate -------------------------------------------------------------------------------- /debian_templates/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjollnir/sf2debpkg/HEAD/debian_templates/copyright -------------------------------------------------------------------------------- /debian_templates/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjollnir/sf2debpkg/HEAD/debian_templates/dirs -------------------------------------------------------------------------------- /debian_templates/dirs.web: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjollnir/sf2debpkg/HEAD/debian_templates/dirs.web -------------------------------------------------------------------------------- /debian_templates/install: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /debian_templates/logrotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjollnir/sf2debpkg/HEAD/debian_templates/logrotate -------------------------------------------------------------------------------- /debian_templates/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjollnir/sf2debpkg/HEAD/debian_templates/postinst -------------------------------------------------------------------------------- /debian_templates/postinst.configure.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjollnir/sf2debpkg/HEAD/debian_templates/postinst.configure.db -------------------------------------------------------------------------------- /debian_templates/postinst.configure.end.web: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjollnir/sf2debpkg/HEAD/debian_templates/postinst.configure.end.web -------------------------------------------------------------------------------- /debian_templates/postinst.configure.web: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjollnir/sf2debpkg/HEAD/debian_templates/postinst.configure.web -------------------------------------------------------------------------------- /debian_templates/postinst.constants.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjollnir/sf2debpkg/HEAD/debian_templates/postinst.constants.db -------------------------------------------------------------------------------- /debian_templates/postinst.constants.web: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjollnir/sf2debpkg/HEAD/debian_templates/postinst.constants.web -------------------------------------------------------------------------------- /debian_templates/postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjollnir/sf2debpkg/HEAD/debian_templates/postrm -------------------------------------------------------------------------------- /debian_templates/postrm.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjollnir/sf2debpkg/HEAD/debian_templates/postrm.db -------------------------------------------------------------------------------- /debian_templates/postrm.purge.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjollnir/sf2debpkg/HEAD/debian_templates/postrm.purge.db -------------------------------------------------------------------------------- /debian_templates/preinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjollnir/sf2debpkg/HEAD/debian_templates/preinst -------------------------------------------------------------------------------- /debian_templates/preinst.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjollnir/sf2debpkg/HEAD/debian_templates/preinst.db -------------------------------------------------------------------------------- /debian_templates/preinst.web: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjollnir/sf2debpkg/HEAD/debian_templates/preinst.web -------------------------------------------------------------------------------- /debian_templates/prerm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjollnir/sf2debpkg/HEAD/debian_templates/prerm -------------------------------------------------------------------------------- /debian_templates/prerm.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjollnir/sf2debpkg/HEAD/debian_templates/prerm.db -------------------------------------------------------------------------------- /debian_templates/prerm.web: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjollnir/sf2debpkg/HEAD/debian_templates/prerm.web -------------------------------------------------------------------------------- /debian_templates/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjollnir/sf2debpkg/HEAD/debian_templates/rules -------------------------------------------------------------------------------- /debian_templates/templates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjollnir/sf2debpkg/HEAD/debian_templates/templates -------------------------------------------------------------------------------- /lib/Liip/Debian/Helper.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjollnir/sf2debpkg/HEAD/lib/Liip/Debian/Helper.pm -------------------------------------------------------------------------------- /lib/Liip/Symfony2/Application.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjollnir/sf2debpkg/HEAD/lib/Liip/Symfony2/Application.pm -------------------------------------------------------------------------------- /lib/Liip/YAML.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjollnir/sf2debpkg/HEAD/lib/Liip/YAML.pm -------------------------------------------------------------------------------- /maketime.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjollnir/sf2debpkg/HEAD/maketime.pl -------------------------------------------------------------------------------- /project_templates/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjollnir/sf2debpkg/HEAD/project_templates/Makefile -------------------------------------------------------------------------------- /project_templates/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjollnir/sf2debpkg/HEAD/project_templates/changelog -------------------------------------------------------------------------------- /project_templates/packagemanifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjollnir/sf2debpkg/HEAD/project_templates/packagemanifest.yml -------------------------------------------------------------------------------- /sf2debpkg_prepare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjollnir/sf2debpkg/HEAD/sf2debpkg_prepare --------------------------------------------------------------------------------