├── .gitignore ├── README.md ├── alpine ├── openresty-debug │ ├── APKBUILD │ ├── openresty-debug.confd │ ├── openresty-debug.initd │ ├── openresty-debug.post-install │ ├── openresty-debug.pre-install │ └── restydoc-less-fix.patch ├── openresty-openssl-debug │ ├── APKBUILD │ ├── openssl-1.1.0d-sess_set_get_cb_yield.patch │ └── openssl-1.1.0j-parallel_build_fix.patch ├── openresty-openssl │ ├── APKBUILD │ ├── openssl-1.1.0d-sess_set_get_cb_yield.patch │ └── openssl-1.1.0j-parallel_build_fix.patch ├── openresty-openssl111-debug │ ├── APKBUILD │ ├── openssl-1.1.1c-sess_set_get_cb_yield.patch │ └── openssl-1.1.1f-sess_set_get_cb_yield.patch ├── openresty-openssl111 │ ├── APKBUILD │ ├── openssl-1.1.1c-sess_set_get_cb_yield.patch │ └── openssl-1.1.1f-sess_set_get_cb_yield.patch ├── openresty-openssl3-debug │ ├── APKBUILD │ └── openssl-3.5.4-sess_set_get_cb_yield.patch ├── openresty-openssl3 │ ├── APKBUILD │ └── openssl-3.5.4-sess_set_get_cb_yield.patch ├── openresty-pcre │ └── APKBUILD ├── openresty-pcre2 │ └── APKBUILD ├── openresty-zlib │ └── APKBUILD ├── openresty │ ├── APKBUILD │ ├── openresty.confd │ ├── openresty.initd │ ├── openresty.post-install │ ├── openresty.pre-install │ └── restydoc-less-fix.patch ├── perl-lemplate │ └── APKBUILD ├── update-or ├── update-pcre2 └── update-ssl3 ├── deb ├── .gitignore ├── Makefile ├── liblemplate-perl │ └── debian │ │ ├── changelog.tt2 │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── rules │ │ ├── source │ │ └── format │ │ ├── upstream │ │ └── metadata │ │ └── watch ├── libtest-nginx-perl │ └── debian │ │ ├── changelog.tt2 │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── rules │ │ ├── source │ │ └── format │ │ ├── upstream │ │ └── metadata │ │ └── watch ├── openresty-asan.mk ├── openresty-asan │ └── debian │ │ ├── changelog.tt2 │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── openresty-asan.install │ │ ├── rules │ │ └── source │ │ └── format ├── openresty-debug │ └── debian │ │ ├── changelog.tt2 │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── openresty-debug.conffiles │ │ ├── openresty-debug.install │ │ ├── rules │ │ └── source │ │ └── format ├── openresty-openssl-debug │ └── debian │ │ ├── changelog.tt2 │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── openresty-openssl-debug-dev.install │ │ ├── openresty-openssl-debug.install │ │ ├── patches │ │ ├── openssl-1.0.2h-sess_set_get_cb_yield.patch │ │ ├── openssl-1.1.0d-sess_set_get_cb_yield.patch │ │ └── series │ │ ├── rules │ │ └── source │ │ └── format ├── openresty-openssl │ └── debian │ │ ├── changelog.tt2 │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── openresty-openssl-dev.install │ │ ├── openresty-openssl.install │ │ ├── patches │ │ ├── openssl-1.1.0d-sess_set_get_cb_yield.patch │ │ └── series │ │ ├── rules │ │ └── source │ │ └── format ├── openresty-openssl111-asan.mk ├── openresty-openssl111-asan │ └── debian │ │ ├── changelog.tt2 │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── openresty-openssl111-asan-dev.install │ │ ├── openresty-openssl111-asan.install │ │ ├── patches │ │ ├── openssl-1.1.1f-sess_set_get_cb_yield.patch │ │ └── series │ │ ├── rules │ │ └── source │ │ └── format ├── openresty-openssl111-debug │ └── debian │ │ ├── changelog.tt2 │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── openresty-openssl111-debug-dev.install │ │ ├── openresty-openssl111-debug.install │ │ ├── patches │ │ ├── openssl-1.1.1c-sess_set_get_cb_yield.patch │ │ ├── openssl-1.1.1e-sess_set_get_cb_yield.patch │ │ ├── openssl-1.1.1f-sess_set_get_cb_yield.patch │ │ └── series │ │ ├── rules │ │ └── source │ │ └── format ├── openresty-openssl111 │ └── debian │ │ ├── changelog.tt2 │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── openresty-openssl111-dev.install │ │ ├── openresty-openssl111.install │ │ ├── patches │ │ ├── openssl-1.1.1c-sess_set_get_cb_yield.patch │ │ ├── openssl-1.1.1e-sess_set_get_cb_yield.patch │ │ ├── openssl-1.1.1f-sess_set_get_cb_yield.patch │ │ └── series │ │ ├── rules │ │ └── source │ │ └── format ├── openresty-openssl3-asan.mk ├── openresty-openssl3-asan │ └── debian │ │ ├── changelog.tt2 │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── openresty-openssl3-asan-dev.install │ │ ├── openresty-openssl3-asan.install │ │ ├── patches │ │ ├── openssl-3.5.4-sess_set_get_cb_yield.patch │ │ └── series │ │ ├── rules │ │ └── source │ │ └── format ├── openresty-openssl3-debug.mk ├── openresty-openssl3-debug │ └── debian │ │ ├── changelog.tt2 │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── openresty-openssl3-debug-dev.install │ │ ├── openresty-openssl3-debug.install │ │ ├── patches │ │ ├── openssl-3.5.4-sess_set_get_cb_yield.patch │ │ └── series │ │ ├── rules │ │ └── source │ │ └── format ├── openresty-openssl3.mk ├── openresty-openssl3 │ └── debian │ │ ├── changelog.tt2 │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── openresty-openssl3-dev.install │ │ ├── openresty-openssl3.install │ │ ├── patches │ │ ├── openssl-3.5.4-sess_set_get_cb_yield.patch │ │ └── series │ │ ├── rules │ │ └── source │ │ └── format ├── openresty-pcre-asan.mk ├── openresty-pcre-asan │ └── debian │ │ ├── changelog.tt2 │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── openresty-pcre-asan-dev.install │ │ ├── openresty-pcre-asan.install │ │ ├── rules │ │ └── source │ │ └── format ├── openresty-pcre │ └── debian │ │ ├── changelog.tt2 │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── openresty-pcre-dev.install │ │ ├── openresty-pcre.install │ │ ├── rules │ │ └── source │ │ └── format ├── openresty-pcre2-asan.mk ├── openresty-pcre2-asan │ └── debian │ │ ├── changelog.tt2 │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── openresty-pcre2-asan-dev.install │ │ ├── openresty-pcre2-asan.install │ │ ├── rules │ │ └── source │ │ └── format ├── openresty-pcre2.mk ├── openresty-pcre2 │ └── debian │ │ ├── changelog.tt2 │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── openresty-pcre2-dev.install │ │ ├── openresty-pcre2.install │ │ ├── patches │ │ ├── pcre2-10.45-range-minus.patch │ │ ├── pcre2-range-minus.patch │ │ └── series │ │ ├── rules │ │ └── source │ │ └── format ├── openresty-valgrind │ └── debian │ │ ├── changelog.tt2 │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── openresty-valgrind.conffiles │ │ ├── openresty-valgrind.install │ │ ├── rules │ │ └── source │ │ └── format ├── openresty-zlib-asan.mk ├── openresty-zlib-asan │ └── debian │ │ ├── changelog.tt2 │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── openresty-zlib-asan-dev.install │ │ ├── openresty-zlib-asan.install │ │ ├── rules │ │ └── source │ │ └── format ├── openresty-zlib │ └── debian │ │ ├── changelog.tt2 │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── openresty-zlib-dev.install │ │ ├── openresty-zlib.install │ │ ├── rules │ │ └── source │ │ └── format ├── openresty │ └── debian │ │ ├── changelog.tt2 │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── openresty-opm.install │ │ ├── openresty-opm.links │ │ ├── openresty-resty.install │ │ ├── openresty-resty.links │ │ ├── openresty-restydoc.install │ │ ├── openresty-restydoc.links │ │ ├── openresty.conffiles │ │ ├── openresty.init │ │ ├── openresty.install │ │ ├── openresty.links │ │ ├── openresty.service │ │ ├── rules │ │ └── source │ │ └── format ├── to-ppa.sh ├── update-makefile-clean-targets.pl ├── update-or ├── update-pcre2 ├── update-ssl ├── update-ssl3 └── update-zlib └── rpm ├── SOURCES ├── Test-Nginx-0.25-older_perl.patch ├── nginx-1.13.6-rm_glibc_crypt_r_workaround.patch ├── openresty-1.9.15.1.patch ├── openresty.init ├── openresty.service ├── openssl-3.5.0-sess_set_get_cb_yield.patch ├── pcre2-10.45-range-minus.patch └── pcre2-range-minus.patch └── SPECS ├── Makefile ├── openresty-asan.spec ├── openresty-debug.spec ├── openresty-openssl-asan.spec ├── openresty-openssl-debug.spec ├── openresty-openssl.spec ├── openresty-openssl111-asan.spec ├── openresty-openssl111-debug.spec ├── openresty-openssl111.spec ├── openresty-openssl3-asan.spec ├── openresty-openssl3-debug.spec ├── openresty-openssl3.spec ├── openresty-pcre-asan.spec ├── openresty-pcre.spec ├── openresty-pcre2-asan.spec ├── openresty-pcre2.spec ├── openresty-valgrind.spec ├── openresty-zlib-asan.spec ├── openresty-zlib.spec ├── openresty.spec ├── perl-IO-Tty.spec ├── perl-IPC-Run.spec ├── perl-Lemplate.spec ├── perl-Readonly.spec ├── perl-Spiffy.spec ├── perl-Test-Base.spec ├── perl-Test-Deep.spec ├── perl-Test-LongString.spec ├── perl-Test-Nginx.spec ├── perl-Test-Simple.spec ├── update-or ├── update-pcre ├── update-pcre2 ├── update-ssl ├── update-ssl111 ├── update-ssl3 └── update-zlib /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/README.md -------------------------------------------------------------------------------- /alpine/openresty-debug/APKBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/alpine/openresty-debug/APKBUILD -------------------------------------------------------------------------------- /alpine/openresty-debug/openresty-debug.confd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/alpine/openresty-debug/openresty-debug.confd -------------------------------------------------------------------------------- /alpine/openresty-debug/openresty-debug.initd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/alpine/openresty-debug/openresty-debug.initd -------------------------------------------------------------------------------- /alpine/openresty-debug/openresty-debug.post-install: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # add something which happends after install 4 | 5 | -------------------------------------------------------------------------------- /alpine/openresty-debug/openresty-debug.pre-install: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # add something which happends before install 4 | 5 | -------------------------------------------------------------------------------- /alpine/openresty-debug/restydoc-less-fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/alpine/openresty-debug/restydoc-less-fix.patch -------------------------------------------------------------------------------- /alpine/openresty-openssl-debug/APKBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/alpine/openresty-openssl-debug/APKBUILD -------------------------------------------------------------------------------- /alpine/openresty-openssl-debug/openssl-1.1.0d-sess_set_get_cb_yield.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/alpine/openresty-openssl-debug/openssl-1.1.0d-sess_set_get_cb_yield.patch -------------------------------------------------------------------------------- /alpine/openresty-openssl-debug/openssl-1.1.0j-parallel_build_fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/alpine/openresty-openssl-debug/openssl-1.1.0j-parallel_build_fix.patch -------------------------------------------------------------------------------- /alpine/openresty-openssl/APKBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/alpine/openresty-openssl/APKBUILD -------------------------------------------------------------------------------- /alpine/openresty-openssl/openssl-1.1.0d-sess_set_get_cb_yield.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/alpine/openresty-openssl/openssl-1.1.0d-sess_set_get_cb_yield.patch -------------------------------------------------------------------------------- /alpine/openresty-openssl/openssl-1.1.0j-parallel_build_fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/alpine/openresty-openssl/openssl-1.1.0j-parallel_build_fix.patch -------------------------------------------------------------------------------- /alpine/openresty-openssl111-debug/APKBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/alpine/openresty-openssl111-debug/APKBUILD -------------------------------------------------------------------------------- /alpine/openresty-openssl111-debug/openssl-1.1.1c-sess_set_get_cb_yield.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/alpine/openresty-openssl111-debug/openssl-1.1.1c-sess_set_get_cb_yield.patch -------------------------------------------------------------------------------- /alpine/openresty-openssl111-debug/openssl-1.1.1f-sess_set_get_cb_yield.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/alpine/openresty-openssl111-debug/openssl-1.1.1f-sess_set_get_cb_yield.patch -------------------------------------------------------------------------------- /alpine/openresty-openssl111/APKBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/alpine/openresty-openssl111/APKBUILD -------------------------------------------------------------------------------- /alpine/openresty-openssl111/openssl-1.1.1c-sess_set_get_cb_yield.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/alpine/openresty-openssl111/openssl-1.1.1c-sess_set_get_cb_yield.patch -------------------------------------------------------------------------------- /alpine/openresty-openssl111/openssl-1.1.1f-sess_set_get_cb_yield.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/alpine/openresty-openssl111/openssl-1.1.1f-sess_set_get_cb_yield.patch -------------------------------------------------------------------------------- /alpine/openresty-openssl3-debug/APKBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/alpine/openresty-openssl3-debug/APKBUILD -------------------------------------------------------------------------------- /alpine/openresty-openssl3-debug/openssl-3.5.4-sess_set_get_cb_yield.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/alpine/openresty-openssl3-debug/openssl-3.5.4-sess_set_get_cb_yield.patch -------------------------------------------------------------------------------- /alpine/openresty-openssl3/APKBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/alpine/openresty-openssl3/APKBUILD -------------------------------------------------------------------------------- /alpine/openresty-openssl3/openssl-3.5.4-sess_set_get_cb_yield.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/alpine/openresty-openssl3/openssl-3.5.4-sess_set_get_cb_yield.patch -------------------------------------------------------------------------------- /alpine/openresty-pcre/APKBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/alpine/openresty-pcre/APKBUILD -------------------------------------------------------------------------------- /alpine/openresty-pcre2/APKBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/alpine/openresty-pcre2/APKBUILD -------------------------------------------------------------------------------- /alpine/openresty-zlib/APKBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/alpine/openresty-zlib/APKBUILD -------------------------------------------------------------------------------- /alpine/openresty/APKBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/alpine/openresty/APKBUILD -------------------------------------------------------------------------------- /alpine/openresty/openresty.confd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/alpine/openresty/openresty.confd -------------------------------------------------------------------------------- /alpine/openresty/openresty.initd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/alpine/openresty/openresty.initd -------------------------------------------------------------------------------- /alpine/openresty/openresty.post-install: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # add something which happends after install 4 | 5 | -------------------------------------------------------------------------------- /alpine/openresty/openresty.pre-install: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # add something which happends before install 4 | 5 | -------------------------------------------------------------------------------- /alpine/openresty/restydoc-less-fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/alpine/openresty/restydoc-less-fix.patch -------------------------------------------------------------------------------- /alpine/perl-lemplate/APKBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/alpine/perl-lemplate/APKBUILD -------------------------------------------------------------------------------- /alpine/update-or: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/alpine/update-or -------------------------------------------------------------------------------- /alpine/update-pcre2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/alpine/update-pcre2 -------------------------------------------------------------------------------- /alpine/update-ssl3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/alpine/update-ssl3 -------------------------------------------------------------------------------- /deb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/.gitignore -------------------------------------------------------------------------------- /deb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/Makefile -------------------------------------------------------------------------------- /deb/liblemplate-perl/debian/changelog.tt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/liblemplate-perl/debian/changelog.tt2 -------------------------------------------------------------------------------- /deb/liblemplate-perl/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /deb/liblemplate-perl/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/liblemplate-perl/debian/control -------------------------------------------------------------------------------- /deb/liblemplate-perl/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/liblemplate-perl/debian/copyright -------------------------------------------------------------------------------- /deb/liblemplate-perl/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/liblemplate-perl/debian/rules -------------------------------------------------------------------------------- /deb/liblemplate-perl/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /deb/liblemplate-perl/debian/upstream/metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/liblemplate-perl/debian/upstream/metadata -------------------------------------------------------------------------------- /deb/liblemplate-perl/debian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/liblemplate-perl/debian/watch -------------------------------------------------------------------------------- /deb/libtest-nginx-perl/debian/changelog.tt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/libtest-nginx-perl/debian/changelog.tt2 -------------------------------------------------------------------------------- /deb/libtest-nginx-perl/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /deb/libtest-nginx-perl/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/libtest-nginx-perl/debian/control -------------------------------------------------------------------------------- /deb/libtest-nginx-perl/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/libtest-nginx-perl/debian/copyright -------------------------------------------------------------------------------- /deb/libtest-nginx-perl/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/libtest-nginx-perl/debian/rules -------------------------------------------------------------------------------- /deb/libtest-nginx-perl/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /deb/libtest-nginx-perl/debian/upstream/metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/libtest-nginx-perl/debian/upstream/metadata -------------------------------------------------------------------------------- /deb/libtest-nginx-perl/debian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/libtest-nginx-perl/debian/watch -------------------------------------------------------------------------------- /deb/openresty-asan.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-asan.mk -------------------------------------------------------------------------------- /deb/openresty-asan/debian/changelog.tt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-asan/debian/changelog.tt2 -------------------------------------------------------------------------------- /deb/openresty-asan/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /deb/openresty-asan/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-asan/debian/control -------------------------------------------------------------------------------- /deb/openresty-asan/debian/copyright: -------------------------------------------------------------------------------- 1 | License: BSD 2 | -------------------------------------------------------------------------------- /deb/openresty-asan/debian/openresty-asan.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-asan/debian/openresty-asan.install -------------------------------------------------------------------------------- /deb/openresty-asan/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-asan/debian/rules -------------------------------------------------------------------------------- /deb/openresty-asan/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /deb/openresty-debug/debian/changelog.tt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-debug/debian/changelog.tt2 -------------------------------------------------------------------------------- /deb/openresty-debug/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /deb/openresty-debug/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-debug/debian/control -------------------------------------------------------------------------------- /deb/openresty-debug/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-debug/debian/copyright -------------------------------------------------------------------------------- /deb/openresty-debug/debian/openresty-debug.conffiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-debug/debian/openresty-debug.conffiles -------------------------------------------------------------------------------- /deb/openresty-debug/debian/openresty-debug.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-debug/debian/openresty-debug.install -------------------------------------------------------------------------------- /deb/openresty-debug/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-debug/debian/rules -------------------------------------------------------------------------------- /deb/openresty-debug/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /deb/openresty-openssl-debug/debian/changelog.tt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-openssl-debug/debian/changelog.tt2 -------------------------------------------------------------------------------- /deb/openresty-openssl-debug/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /deb/openresty-openssl-debug/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-openssl-debug/debian/control -------------------------------------------------------------------------------- /deb/openresty-openssl-debug/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-openssl-debug/debian/copyright -------------------------------------------------------------------------------- /deb/openresty-openssl-debug/debian/openresty-openssl-debug-dev.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-openssl-debug/debian/openresty-openssl-debug-dev.install -------------------------------------------------------------------------------- /deb/openresty-openssl-debug/debian/openresty-openssl-debug.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-openssl-debug/debian/openresty-openssl-debug.install -------------------------------------------------------------------------------- /deb/openresty-openssl-debug/debian/patches/openssl-1.0.2h-sess_set_get_cb_yield.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-openssl-debug/debian/patches/openssl-1.0.2h-sess_set_get_cb_yield.patch -------------------------------------------------------------------------------- /deb/openresty-openssl-debug/debian/patches/openssl-1.1.0d-sess_set_get_cb_yield.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-openssl-debug/debian/patches/openssl-1.1.0d-sess_set_get_cb_yield.patch -------------------------------------------------------------------------------- /deb/openresty-openssl-debug/debian/patches/series: -------------------------------------------------------------------------------- 1 | openssl-1.1.0d-sess_set_get_cb_yield.patch 2 | -------------------------------------------------------------------------------- /deb/openresty-openssl-debug/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-openssl-debug/debian/rules -------------------------------------------------------------------------------- /deb/openresty-openssl-debug/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /deb/openresty-openssl/debian/changelog.tt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-openssl/debian/changelog.tt2 -------------------------------------------------------------------------------- /deb/openresty-openssl/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /deb/openresty-openssl/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-openssl/debian/control -------------------------------------------------------------------------------- /deb/openresty-openssl/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-openssl/debian/copyright -------------------------------------------------------------------------------- /deb/openresty-openssl/debian/openresty-openssl-dev.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-openssl/debian/openresty-openssl-dev.install -------------------------------------------------------------------------------- /deb/openresty-openssl/debian/openresty-openssl.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-openssl/debian/openresty-openssl.install -------------------------------------------------------------------------------- /deb/openresty-openssl/debian/patches/openssl-1.1.0d-sess_set_get_cb_yield.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-openssl/debian/patches/openssl-1.1.0d-sess_set_get_cb_yield.patch -------------------------------------------------------------------------------- /deb/openresty-openssl/debian/patches/series: -------------------------------------------------------------------------------- 1 | openssl-1.1.0d-sess_set_get_cb_yield.patch 2 | -------------------------------------------------------------------------------- /deb/openresty-openssl/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-openssl/debian/rules -------------------------------------------------------------------------------- /deb/openresty-openssl/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /deb/openresty-openssl111-asan.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-openssl111-asan.mk -------------------------------------------------------------------------------- /deb/openresty-openssl111-asan/debian/changelog.tt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-openssl111-asan/debian/changelog.tt2 -------------------------------------------------------------------------------- /deb/openresty-openssl111-asan/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /deb/openresty-openssl111-asan/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-openssl111-asan/debian/control -------------------------------------------------------------------------------- /deb/openresty-openssl111-asan/debian/copyright: -------------------------------------------------------------------------------- 1 | License: OpenSSL 2 | -------------------------------------------------------------------------------- /deb/openresty-openssl111-asan/debian/openresty-openssl111-asan-dev.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-openssl111-asan/debian/openresty-openssl111-asan-dev.install -------------------------------------------------------------------------------- /deb/openresty-openssl111-asan/debian/openresty-openssl111-asan.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-openssl111-asan/debian/openresty-openssl111-asan.install -------------------------------------------------------------------------------- /deb/openresty-openssl111-asan/debian/patches/openssl-1.1.1f-sess_set_get_cb_yield.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-openssl111-asan/debian/patches/openssl-1.1.1f-sess_set_get_cb_yield.patch -------------------------------------------------------------------------------- /deb/openresty-openssl111-asan/debian/patches/series: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-openssl111-asan/debian/patches/series -------------------------------------------------------------------------------- /deb/openresty-openssl111-asan/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-openssl111-asan/debian/rules -------------------------------------------------------------------------------- /deb/openresty-openssl111-asan/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /deb/openresty-openssl111-debug/debian/changelog.tt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-openssl111-debug/debian/changelog.tt2 -------------------------------------------------------------------------------- /deb/openresty-openssl111-debug/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /deb/openresty-openssl111-debug/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-openssl111-debug/debian/control -------------------------------------------------------------------------------- /deb/openresty-openssl111-debug/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-openssl111-debug/debian/copyright -------------------------------------------------------------------------------- /deb/openresty-openssl111-debug/debian/openresty-openssl111-debug-dev.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-openssl111-debug/debian/openresty-openssl111-debug-dev.install -------------------------------------------------------------------------------- /deb/openresty-openssl111-debug/debian/openresty-openssl111-debug.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-openssl111-debug/debian/openresty-openssl111-debug.install -------------------------------------------------------------------------------- /deb/openresty-openssl111-debug/debian/patches/openssl-1.1.1c-sess_set_get_cb_yield.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-openssl111-debug/debian/patches/openssl-1.1.1c-sess_set_get_cb_yield.patch -------------------------------------------------------------------------------- /deb/openresty-openssl111-debug/debian/patches/openssl-1.1.1e-sess_set_get_cb_yield.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-openssl111-debug/debian/patches/openssl-1.1.1e-sess_set_get_cb_yield.patch -------------------------------------------------------------------------------- /deb/openresty-openssl111-debug/debian/patches/openssl-1.1.1f-sess_set_get_cb_yield.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-openssl111-debug/debian/patches/openssl-1.1.1f-sess_set_get_cb_yield.patch -------------------------------------------------------------------------------- /deb/openresty-openssl111-debug/debian/patches/series: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-openssl111-debug/debian/patches/series -------------------------------------------------------------------------------- /deb/openresty-openssl111-debug/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-openssl111-debug/debian/rules -------------------------------------------------------------------------------- /deb/openresty-openssl111-debug/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /deb/openresty-openssl111/debian/changelog.tt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-openssl111/debian/changelog.tt2 -------------------------------------------------------------------------------- /deb/openresty-openssl111/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /deb/openresty-openssl111/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-openssl111/debian/control -------------------------------------------------------------------------------- /deb/openresty-openssl111/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-openssl111/debian/copyright -------------------------------------------------------------------------------- /deb/openresty-openssl111/debian/openresty-openssl111-dev.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-openssl111/debian/openresty-openssl111-dev.install -------------------------------------------------------------------------------- /deb/openresty-openssl111/debian/openresty-openssl111.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-openssl111/debian/openresty-openssl111.install -------------------------------------------------------------------------------- /deb/openresty-openssl111/debian/patches/openssl-1.1.1c-sess_set_get_cb_yield.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-openssl111/debian/patches/openssl-1.1.1c-sess_set_get_cb_yield.patch -------------------------------------------------------------------------------- /deb/openresty-openssl111/debian/patches/openssl-1.1.1e-sess_set_get_cb_yield.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-openssl111/debian/patches/openssl-1.1.1e-sess_set_get_cb_yield.patch -------------------------------------------------------------------------------- /deb/openresty-openssl111/debian/patches/openssl-1.1.1f-sess_set_get_cb_yield.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-openssl111/debian/patches/openssl-1.1.1f-sess_set_get_cb_yield.patch -------------------------------------------------------------------------------- /deb/openresty-openssl111/debian/patches/series: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-openssl111/debian/patches/series -------------------------------------------------------------------------------- /deb/openresty-openssl111/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-openssl111/debian/rules -------------------------------------------------------------------------------- /deb/openresty-openssl111/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /deb/openresty-openssl3-asan.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-openssl3-asan.mk -------------------------------------------------------------------------------- /deb/openresty-openssl3-asan/debian/changelog.tt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-openssl3-asan/debian/changelog.tt2 -------------------------------------------------------------------------------- /deb/openresty-openssl3-asan/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /deb/openresty-openssl3-asan/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-openssl3-asan/debian/control -------------------------------------------------------------------------------- /deb/openresty-openssl3-asan/debian/copyright: -------------------------------------------------------------------------------- 1 | License: OpenSSL 2 | -------------------------------------------------------------------------------- /deb/openresty-openssl3-asan/debian/openresty-openssl3-asan-dev.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-openssl3-asan/debian/openresty-openssl3-asan-dev.install -------------------------------------------------------------------------------- /deb/openresty-openssl3-asan/debian/openresty-openssl3-asan.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-openssl3-asan/debian/openresty-openssl3-asan.install -------------------------------------------------------------------------------- /deb/openresty-openssl3-asan/debian/patches/openssl-3.5.4-sess_set_get_cb_yield.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-openssl3-asan/debian/patches/openssl-3.5.4-sess_set_get_cb_yield.patch -------------------------------------------------------------------------------- /deb/openresty-openssl3-asan/debian/patches/series: -------------------------------------------------------------------------------- 1 | openssl-3.5.4-sess_set_get_cb_yield.patch 2 | -------------------------------------------------------------------------------- /deb/openresty-openssl3-asan/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-openssl3-asan/debian/rules -------------------------------------------------------------------------------- /deb/openresty-openssl3-asan/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /deb/openresty-openssl3-debug.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-openssl3-debug.mk -------------------------------------------------------------------------------- /deb/openresty-openssl3-debug/debian/changelog.tt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-openssl3-debug/debian/changelog.tt2 -------------------------------------------------------------------------------- /deb/openresty-openssl3-debug/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /deb/openresty-openssl3-debug/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-openssl3-debug/debian/control -------------------------------------------------------------------------------- /deb/openresty-openssl3-debug/debian/copyright: -------------------------------------------------------------------------------- 1 | License: OpenSSL 2 | -------------------------------------------------------------------------------- /deb/openresty-openssl3-debug/debian/openresty-openssl3-debug-dev.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-openssl3-debug/debian/openresty-openssl3-debug-dev.install -------------------------------------------------------------------------------- /deb/openresty-openssl3-debug/debian/openresty-openssl3-debug.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-openssl3-debug/debian/openresty-openssl3-debug.install -------------------------------------------------------------------------------- /deb/openresty-openssl3-debug/debian/patches/openssl-3.5.4-sess_set_get_cb_yield.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-openssl3-debug/debian/patches/openssl-3.5.4-sess_set_get_cb_yield.patch -------------------------------------------------------------------------------- /deb/openresty-openssl3-debug/debian/patches/series: -------------------------------------------------------------------------------- 1 | openssl-3.5.4-sess_set_get_cb_yield.patch 2 | -------------------------------------------------------------------------------- /deb/openresty-openssl3-debug/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-openssl3-debug/debian/rules -------------------------------------------------------------------------------- /deb/openresty-openssl3-debug/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /deb/openresty-openssl3.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-openssl3.mk -------------------------------------------------------------------------------- /deb/openresty-openssl3/debian/changelog.tt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-openssl3/debian/changelog.tt2 -------------------------------------------------------------------------------- /deb/openresty-openssl3/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /deb/openresty-openssl3/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-openssl3/debian/control -------------------------------------------------------------------------------- /deb/openresty-openssl3/debian/copyright: -------------------------------------------------------------------------------- 1 | License: OpenSSL 2 | -------------------------------------------------------------------------------- /deb/openresty-openssl3/debian/openresty-openssl3-dev.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-openssl3/debian/openresty-openssl3-dev.install -------------------------------------------------------------------------------- /deb/openresty-openssl3/debian/openresty-openssl3.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-openssl3/debian/openresty-openssl3.install -------------------------------------------------------------------------------- /deb/openresty-openssl3/debian/patches/openssl-3.5.4-sess_set_get_cb_yield.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-openssl3/debian/patches/openssl-3.5.4-sess_set_get_cb_yield.patch -------------------------------------------------------------------------------- /deb/openresty-openssl3/debian/patches/series: -------------------------------------------------------------------------------- 1 | openssl-3.5.4-sess_set_get_cb_yield.patch 2 | -------------------------------------------------------------------------------- /deb/openresty-openssl3/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-openssl3/debian/rules -------------------------------------------------------------------------------- /deb/openresty-openssl3/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /deb/openresty-pcre-asan.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-pcre-asan.mk -------------------------------------------------------------------------------- /deb/openresty-pcre-asan/debian/changelog.tt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-pcre-asan/debian/changelog.tt2 -------------------------------------------------------------------------------- /deb/openresty-pcre-asan/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /deb/openresty-pcre-asan/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-pcre-asan/debian/control -------------------------------------------------------------------------------- /deb/openresty-pcre-asan/debian/copyright: -------------------------------------------------------------------------------- 1 | License: BSD 2 | -------------------------------------------------------------------------------- /deb/openresty-pcre-asan/debian/openresty-pcre-asan-dev.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-pcre-asan/debian/openresty-pcre-asan-dev.install -------------------------------------------------------------------------------- /deb/openresty-pcre-asan/debian/openresty-pcre-asan.install: -------------------------------------------------------------------------------- 1 | usr/local/openresty-asan/pcre/lib/*.so* 2 | -------------------------------------------------------------------------------- /deb/openresty-pcre-asan/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-pcre-asan/debian/rules -------------------------------------------------------------------------------- /deb/openresty-pcre-asan/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /deb/openresty-pcre/debian/changelog.tt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-pcre/debian/changelog.tt2 -------------------------------------------------------------------------------- /deb/openresty-pcre/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /deb/openresty-pcre/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-pcre/debian/control -------------------------------------------------------------------------------- /deb/openresty-pcre/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-pcre/debian/copyright -------------------------------------------------------------------------------- /deb/openresty-pcre/debian/openresty-pcre-dev.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-pcre/debian/openresty-pcre-dev.install -------------------------------------------------------------------------------- /deb/openresty-pcre/debian/openresty-pcre.install: -------------------------------------------------------------------------------- 1 | usr/local/openresty/pcre/lib/*.so* 2 | -------------------------------------------------------------------------------- /deb/openresty-pcre/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-pcre/debian/rules -------------------------------------------------------------------------------- /deb/openresty-pcre/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /deb/openresty-pcre2-asan.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-pcre2-asan.mk -------------------------------------------------------------------------------- /deb/openresty-pcre2-asan/debian/changelog.tt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-pcre2-asan/debian/changelog.tt2 -------------------------------------------------------------------------------- /deb/openresty-pcre2-asan/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /deb/openresty-pcre2-asan/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-pcre2-asan/debian/control -------------------------------------------------------------------------------- /deb/openresty-pcre2-asan/debian/copyright: -------------------------------------------------------------------------------- 1 | License: BSD 2 | -------------------------------------------------------------------------------- /deb/openresty-pcre2-asan/debian/openresty-pcre2-asan-dev.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-pcre2-asan/debian/openresty-pcre2-asan-dev.install -------------------------------------------------------------------------------- /deb/openresty-pcre2-asan/debian/openresty-pcre2-asan.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-pcre2-asan/debian/openresty-pcre2-asan.install -------------------------------------------------------------------------------- /deb/openresty-pcre2-asan/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-pcre2-asan/debian/rules -------------------------------------------------------------------------------- /deb/openresty-pcre2-asan/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /deb/openresty-pcre2.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-pcre2.mk -------------------------------------------------------------------------------- /deb/openresty-pcre2/debian/changelog.tt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-pcre2/debian/changelog.tt2 -------------------------------------------------------------------------------- /deb/openresty-pcre2/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /deb/openresty-pcre2/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-pcre2/debian/control -------------------------------------------------------------------------------- /deb/openresty-pcre2/debian/copyright: -------------------------------------------------------------------------------- 1 | License: BSD 2 | -------------------------------------------------------------------------------- /deb/openresty-pcre2/debian/openresty-pcre2-dev.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-pcre2/debian/openresty-pcre2-dev.install -------------------------------------------------------------------------------- /deb/openresty-pcre2/debian/openresty-pcre2.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-pcre2/debian/openresty-pcre2.install -------------------------------------------------------------------------------- /deb/openresty-pcre2/debian/patches/pcre2-10.45-range-minus.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-pcre2/debian/patches/pcre2-10.45-range-minus.patch -------------------------------------------------------------------------------- /deb/openresty-pcre2/debian/patches/pcre2-range-minus.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-pcre2/debian/patches/pcre2-range-minus.patch -------------------------------------------------------------------------------- /deb/openresty-pcre2/debian/patches/series: -------------------------------------------------------------------------------- 1 | pcre2-10.45-range-minus.patch 2 | -------------------------------------------------------------------------------- /deb/openresty-pcre2/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-pcre2/debian/rules -------------------------------------------------------------------------------- /deb/openresty-pcre2/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /deb/openresty-valgrind/debian/changelog.tt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-valgrind/debian/changelog.tt2 -------------------------------------------------------------------------------- /deb/openresty-valgrind/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /deb/openresty-valgrind/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-valgrind/debian/control -------------------------------------------------------------------------------- /deb/openresty-valgrind/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-valgrind/debian/copyright -------------------------------------------------------------------------------- /deb/openresty-valgrind/debian/openresty-valgrind.conffiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-valgrind/debian/openresty-valgrind.conffiles -------------------------------------------------------------------------------- /deb/openresty-valgrind/debian/openresty-valgrind.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-valgrind/debian/openresty-valgrind.install -------------------------------------------------------------------------------- /deb/openresty-valgrind/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-valgrind/debian/rules -------------------------------------------------------------------------------- /deb/openresty-valgrind/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /deb/openresty-zlib-asan.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-zlib-asan.mk -------------------------------------------------------------------------------- /deb/openresty-zlib-asan/debian/changelog.tt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-zlib-asan/debian/changelog.tt2 -------------------------------------------------------------------------------- /deb/openresty-zlib-asan/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /deb/openresty-zlib-asan/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-zlib-asan/debian/control -------------------------------------------------------------------------------- /deb/openresty-zlib-asan/debian/copyright: -------------------------------------------------------------------------------- 1 | License: zlib and Boost 2 | -------------------------------------------------------------------------------- /deb/openresty-zlib-asan/debian/openresty-zlib-asan-dev.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-zlib-asan/debian/openresty-zlib-asan-dev.install -------------------------------------------------------------------------------- /deb/openresty-zlib-asan/debian/openresty-zlib-asan.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-zlib-asan/debian/openresty-zlib-asan.install -------------------------------------------------------------------------------- /deb/openresty-zlib-asan/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-zlib-asan/debian/rules -------------------------------------------------------------------------------- /deb/openresty-zlib-asan/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /deb/openresty-zlib/debian/changelog.tt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-zlib/debian/changelog.tt2 -------------------------------------------------------------------------------- /deb/openresty-zlib/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /deb/openresty-zlib/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-zlib/debian/control -------------------------------------------------------------------------------- /deb/openresty-zlib/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-zlib/debian/copyright -------------------------------------------------------------------------------- /deb/openresty-zlib/debian/openresty-zlib-dev.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-zlib/debian/openresty-zlib-dev.install -------------------------------------------------------------------------------- /deb/openresty-zlib/debian/openresty-zlib.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-zlib/debian/openresty-zlib.install -------------------------------------------------------------------------------- /deb/openresty-zlib/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty-zlib/debian/rules -------------------------------------------------------------------------------- /deb/openresty-zlib/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /deb/openresty/debian/changelog.tt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty/debian/changelog.tt2 -------------------------------------------------------------------------------- /deb/openresty/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /deb/openresty/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty/debian/control -------------------------------------------------------------------------------- /deb/openresty/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty/debian/copyright -------------------------------------------------------------------------------- /deb/openresty/debian/openresty-opm.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty/debian/openresty-opm.install -------------------------------------------------------------------------------- /deb/openresty/debian/openresty-opm.links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty/debian/openresty-opm.links -------------------------------------------------------------------------------- /deb/openresty/debian/openresty-resty.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty/debian/openresty-resty.install -------------------------------------------------------------------------------- /deb/openresty/debian/openresty-resty.links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty/debian/openresty-resty.links -------------------------------------------------------------------------------- /deb/openresty/debian/openresty-restydoc.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty/debian/openresty-restydoc.install -------------------------------------------------------------------------------- /deb/openresty/debian/openresty-restydoc.links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty/debian/openresty-restydoc.links -------------------------------------------------------------------------------- /deb/openresty/debian/openresty.conffiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty/debian/openresty.conffiles -------------------------------------------------------------------------------- /deb/openresty/debian/openresty.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty/debian/openresty.init -------------------------------------------------------------------------------- /deb/openresty/debian/openresty.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty/debian/openresty.install -------------------------------------------------------------------------------- /deb/openresty/debian/openresty.links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty/debian/openresty.links -------------------------------------------------------------------------------- /deb/openresty/debian/openresty.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty/debian/openresty.service -------------------------------------------------------------------------------- /deb/openresty/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/openresty/debian/rules -------------------------------------------------------------------------------- /deb/openresty/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /deb/to-ppa.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/to-ppa.sh -------------------------------------------------------------------------------- /deb/update-makefile-clean-targets.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/update-makefile-clean-targets.pl -------------------------------------------------------------------------------- /deb/update-or: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/update-or -------------------------------------------------------------------------------- /deb/update-pcre2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/update-pcre2 -------------------------------------------------------------------------------- /deb/update-ssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/update-ssl -------------------------------------------------------------------------------- /deb/update-ssl3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/update-ssl3 -------------------------------------------------------------------------------- /deb/update-zlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/deb/update-zlib -------------------------------------------------------------------------------- /rpm/SOURCES/Test-Nginx-0.25-older_perl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/rpm/SOURCES/Test-Nginx-0.25-older_perl.patch -------------------------------------------------------------------------------- /rpm/SOURCES/nginx-1.13.6-rm_glibc_crypt_r_workaround.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/rpm/SOURCES/nginx-1.13.6-rm_glibc_crypt_r_workaround.patch -------------------------------------------------------------------------------- /rpm/SOURCES/openresty-1.9.15.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/rpm/SOURCES/openresty-1.9.15.1.patch -------------------------------------------------------------------------------- /rpm/SOURCES/openresty.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/rpm/SOURCES/openresty.init -------------------------------------------------------------------------------- /rpm/SOURCES/openresty.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/rpm/SOURCES/openresty.service -------------------------------------------------------------------------------- /rpm/SOURCES/openssl-3.5.0-sess_set_get_cb_yield.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/rpm/SOURCES/openssl-3.5.0-sess_set_get_cb_yield.patch -------------------------------------------------------------------------------- /rpm/SOURCES/pcre2-10.45-range-minus.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/rpm/SOURCES/pcre2-10.45-range-minus.patch -------------------------------------------------------------------------------- /rpm/SOURCES/pcre2-range-minus.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/rpm/SOURCES/pcre2-range-minus.patch -------------------------------------------------------------------------------- /rpm/SPECS/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/rpm/SPECS/Makefile -------------------------------------------------------------------------------- /rpm/SPECS/openresty-asan.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/rpm/SPECS/openresty-asan.spec -------------------------------------------------------------------------------- /rpm/SPECS/openresty-debug.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/rpm/SPECS/openresty-debug.spec -------------------------------------------------------------------------------- /rpm/SPECS/openresty-openssl-asan.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/rpm/SPECS/openresty-openssl-asan.spec -------------------------------------------------------------------------------- /rpm/SPECS/openresty-openssl-debug.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/rpm/SPECS/openresty-openssl-debug.spec -------------------------------------------------------------------------------- /rpm/SPECS/openresty-openssl.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/rpm/SPECS/openresty-openssl.spec -------------------------------------------------------------------------------- /rpm/SPECS/openresty-openssl111-asan.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/rpm/SPECS/openresty-openssl111-asan.spec -------------------------------------------------------------------------------- /rpm/SPECS/openresty-openssl111-debug.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/rpm/SPECS/openresty-openssl111-debug.spec -------------------------------------------------------------------------------- /rpm/SPECS/openresty-openssl111.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/rpm/SPECS/openresty-openssl111.spec -------------------------------------------------------------------------------- /rpm/SPECS/openresty-openssl3-asan.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/rpm/SPECS/openresty-openssl3-asan.spec -------------------------------------------------------------------------------- /rpm/SPECS/openresty-openssl3-debug.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/rpm/SPECS/openresty-openssl3-debug.spec -------------------------------------------------------------------------------- /rpm/SPECS/openresty-openssl3.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/rpm/SPECS/openresty-openssl3.spec -------------------------------------------------------------------------------- /rpm/SPECS/openresty-pcre-asan.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/rpm/SPECS/openresty-pcre-asan.spec -------------------------------------------------------------------------------- /rpm/SPECS/openresty-pcre.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/rpm/SPECS/openresty-pcre.spec -------------------------------------------------------------------------------- /rpm/SPECS/openresty-pcre2-asan.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/rpm/SPECS/openresty-pcre2-asan.spec -------------------------------------------------------------------------------- /rpm/SPECS/openresty-pcre2.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/rpm/SPECS/openresty-pcre2.spec -------------------------------------------------------------------------------- /rpm/SPECS/openresty-valgrind.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/rpm/SPECS/openresty-valgrind.spec -------------------------------------------------------------------------------- /rpm/SPECS/openresty-zlib-asan.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/rpm/SPECS/openresty-zlib-asan.spec -------------------------------------------------------------------------------- /rpm/SPECS/openresty-zlib.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/rpm/SPECS/openresty-zlib.spec -------------------------------------------------------------------------------- /rpm/SPECS/openresty.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/rpm/SPECS/openresty.spec -------------------------------------------------------------------------------- /rpm/SPECS/perl-IO-Tty.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/rpm/SPECS/perl-IO-Tty.spec -------------------------------------------------------------------------------- /rpm/SPECS/perl-IPC-Run.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/rpm/SPECS/perl-IPC-Run.spec -------------------------------------------------------------------------------- /rpm/SPECS/perl-Lemplate.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/rpm/SPECS/perl-Lemplate.spec -------------------------------------------------------------------------------- /rpm/SPECS/perl-Readonly.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/rpm/SPECS/perl-Readonly.spec -------------------------------------------------------------------------------- /rpm/SPECS/perl-Spiffy.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/rpm/SPECS/perl-Spiffy.spec -------------------------------------------------------------------------------- /rpm/SPECS/perl-Test-Base.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/rpm/SPECS/perl-Test-Base.spec -------------------------------------------------------------------------------- /rpm/SPECS/perl-Test-Deep.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/rpm/SPECS/perl-Test-Deep.spec -------------------------------------------------------------------------------- /rpm/SPECS/perl-Test-LongString.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/rpm/SPECS/perl-Test-LongString.spec -------------------------------------------------------------------------------- /rpm/SPECS/perl-Test-Nginx.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/rpm/SPECS/perl-Test-Nginx.spec -------------------------------------------------------------------------------- /rpm/SPECS/perl-Test-Simple.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/rpm/SPECS/perl-Test-Simple.spec -------------------------------------------------------------------------------- /rpm/SPECS/update-or: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/rpm/SPECS/update-or -------------------------------------------------------------------------------- /rpm/SPECS/update-pcre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/rpm/SPECS/update-pcre -------------------------------------------------------------------------------- /rpm/SPECS/update-pcre2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/rpm/SPECS/update-pcre2 -------------------------------------------------------------------------------- /rpm/SPECS/update-ssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/rpm/SPECS/update-ssl -------------------------------------------------------------------------------- /rpm/SPECS/update-ssl111: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/rpm/SPECS/update-ssl111 -------------------------------------------------------------------------------- /rpm/SPECS/update-ssl3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/rpm/SPECS/update-ssl3 -------------------------------------------------------------------------------- /rpm/SPECS/update-zlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/openresty-packaging/HEAD/rpm/SPECS/update-zlib --------------------------------------------------------------------------------