commit: 819b0b032bb94e56bbd2875477d6d655fe4c2e04 Author: Maciej Barć <xgqt <AT> gentoo <DOT> org> AuthorDate: Sat Dec 27 20:50:28 2025 +0000 Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org> CommitDate: Sat Dec 27 21:01:56 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=819b0b03
www-servers/kore: drop old 4.2.3 Closes: https://bugs.gentoo.org/907902 Closes: https://bugs.gentoo.org/913529 Closes: https://bugs.gentoo.org/928415 Closes: https://bugs.gentoo.org/942212 Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org> www-servers/kore/Manifest | 1 - www-servers/kore/kore-4.2.3.ebuild | 68 -------------------------------------- 2 files changed, 69 deletions(-) diff --git a/www-servers/kore/Manifest b/www-servers/kore/Manifest index 7055e669dca7..f5b62e48a5b4 100644 --- a/www-servers/kore/Manifest +++ b/www-servers/kore/Manifest @@ -1,2 +1 @@ -DIST kore-4.2.3.tar.gz 1085717 BLAKE2B 1c12c6974ea5997d776efcf490728bf4f90c978d4547bd1c608549d97a544fb0f45e8cd58aab6730999c267a85807d5eb3a04fdcf16817df122992f339c3f05d SHA512 7ed5eb116da190640605d40c757bf49d503d2d866fc7effe9ad658f84f12aec671ec5935677767dd9721b686b61e278b16d8b4360c2fe9ea1eb57068746f52b1 DIST kore-4.3.0_rc4.gh.tar.gz 1090477 BLAKE2B 34965ca7790e3163345ab6d367b7decc93fbf06504d3742ffa73773dc9c3d4e4e074a0dfe171d684f7528ff2edbf8d8b7679d0f71ef6717414755411f3275718 SHA512 2f0b57d2502fc2adb62dbcd74bd5463a446c9ee80786b952a5dbb4293d696ca0977e3b6e8ce44d8cf85a6bdf3153d6ba49a2618a58125bb7630a8b66b85875cc diff --git a/www-servers/kore/kore-4.2.3.ebuild b/www-servers/kore/kore-4.2.3.ebuild deleted file mode 100644 index 53ae2d4c25fb..000000000000 --- a/www-servers/kore/kore-4.2.3.ebuild +++ /dev/null @@ -1,68 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit toolchain-funcs - -DESCRIPTION="Web application platform for writing scalable, concurrent web based processes" -HOMEPAGE="https://kore.io/ - https://github.com/jorisvink/kore/" - -if [[ ${PV} == *9999* ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://git.kore.io/kore.git" -else - SRC_URI="https://kore.io/releases/${P}.tar.gz" - KEYWORDS="~amd64 ~x86" -fi - -LICENSE="ISC" -SLOT="0" -IUSE="+acme +curl debug +http +json +openssl postgres +threads" -REQUIRED_USE="acme? ( curl openssl )" - -RDEPEND=" - curl? ( net-misc/curl:= ) - json? ( dev-libs/yajl:= ) - openssl? ( dev-libs/openssl:= ) - postgres? ( dev-db/postgresql:= ) -" -DEPEND="${RDEPEND}" - -PATCHES=( - "${FILESDIR}"/${PN}-4.2.3-makefile.patch - "${FILESDIR}"/${PN}-4.2.3-kodev-makefile.patch -) - -DOCS=( README.md ) - -src_prepare() { - default - - sed -i 's|-Werror||g' kodev/Makefile tools/kore-serve/conf/build.conf || die -} - -src_compile() { - tc-export CC - - # See https://github.com/jorisvink/kore#building-kore - env ACME=$(usex acme 1 '') \ - CURL=$(usex curl 1 '') \ - DEBUG=$(usex debug 1 '') \ - JSONRPC=$(usex json 1 '') \ - NOHTTP=$(usex http '' 1) \ - PGSQL=$(usex postgres 1 '') \ - TASKS=$(usex threads 1 '') \ - TLS_BACKEND=$(usex openssl openssl none) \ - CFLAGS="${CFLAGS} ${LDFLAGS}" \ - LDFLAGS="${LDFLAGS}" \ - PREFIX=/usr \ - emake -} - -src_install() { - emake DESTDIR="${D}" PREFIX=/usr install - - einstalldocs -}
