* [gentoo-commits] repo/proj/guru:dev commit in: dev-lua/cqueues/
@ 2024-10-22 22:07 Nicolas PARLANT
0 siblings, 0 replies; 8+ messages in thread
From: Nicolas PARLANT @ 2024-10-22 22:07 UTC (permalink / raw
To: gentoo-commits
commit: 17842faa0a53144fca0ae96c1f7caa11814ef07e
Author: Nicolas PARLANT <nicolas.parlant <AT> parhuet <DOT> fr>
AuthorDate: Tue Oct 22 22:02:40 2024 +0000
Commit: Nicolas PARLANT <ppn <AT> parhuet <DOT> fr>
CommitDate: Tue Oct 22 22:02:40 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=17842faa
dev-lua/cqueues: new package, add 20200726
Signed-off-by: Nicolas PARLANT <nicolas.parlant <AT> parhuet.fr>
dev-lua/cqueues/Manifest | 1 +
dev-lua/cqueues/cqueues-20200726.ebuild | 96 +++++++++++++++++++++++++++++++++
dev-lua/cqueues/metadata.xml | 11 ++++
3 files changed, 108 insertions(+)
diff --git a/dev-lua/cqueues/Manifest b/dev-lua/cqueues/Manifest
new file mode 100644
index 000000000..a4309ac2f
--- /dev/null
+++ b/dev-lua/cqueues/Manifest
@@ -0,0 +1 @@
+DIST cqueues-rel-20200726.tar.gz 511659 BLAKE2B 2e8da34d4818e96d6872d0e544ff39465f4b55527146dd0003a80a4f11be34601fc34a123a8bd7535f3437afb4825ab9995d63141991c0b4c520c365decbaf37 SHA512 f2198a2a887bca445fe480949e05ecc94c3112827dbd65d2de0258316beee12f6052fa2670560daab708421e669dde0ac581b365af6bb94a3fc6f322c8bc7547
diff --git a/dev-lua/cqueues/cqueues-20200726.ebuild b/dev-lua/cqueues/cqueues-20200726.ebuild
new file mode 100644
index 000000000..05b66b97e
--- /dev/null
+++ b/dev-lua/cqueues/cqueues-20200726.ebuild
@@ -0,0 +1,96 @@
+# Copyright 2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+LUA_COMPAT=( lua5-{1..4} luajit )
+MY_P="${PN}-rel-${PV}"
+
+inherit lua toolchain-funcs
+
+DESCRIPTION="Stackable Continuation Queues"
+HOMEPAGE="http://25thandclement.com/~william/projects/cqueues.html https://github.com/wahern/cqueues"
+SRC_URI="https://github.com/wahern/${PN}/archive/rel-${PV}.tar.gz -> ${MY_P}.tar.gz"
+
+S="${WORKDIR}/${MY_P}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="examples"
+
+REQUIRED_USE="${LUA_REQUIRED_USE}"
+DEPEND="
+ ${LUA_DEPS}
+ dev-libs/openssl:0=
+"
+RDEPEND="${DEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+DOCS=( "doc/." )
+
+# Thanks to dev-lua/luaossl for workarounds
+
+src_prepare() {
+ default
+
+ sed \
+ -e '/LUAPATH :=/d' \
+ -e '/LUAPATH_FN =/d' \
+ -e '/ALL_LIBS +=/d' \
+ -i GNUmakefile || die
+
+ lua_copy_sources
+}
+
+lua_src_compile() {
+ pushd "${BUILD_DIR}" || die
+
+ if [[ ${ELUA} != luajit ]]; then
+ LUA_VERSION="$(ver_cut 1-2 $(lua_get_version))"
+ else
+ # This is a workaround for luajit, as it confirms to lua5.1
+ # and the 'GNUmakefile' doesn't understand LuaJITs version.
+ LUA_VERSION="5.1"
+ fi
+
+ emake CC="$(tc-getCC)" \
+ ALL_CFLAGS="${CFLAGS} $(lua_get_CFLAGS)" \
+ ALL_CPPFLAGS="${CPPFLAGS} -D_GNU_SOURCE" \
+ ALL_SOFLAGS="${SOFLAGS} -shared" \
+ ALL_LDFLAGS="${LDFLAGS}" \
+ all${LUA_VERSION}
+
+ popd
+}
+
+src_compile() {
+ lua_foreach_impl lua_src_compile
+}
+
+lua_src_install() {
+ pushd "${BUILD_DIR}" || die
+
+ if [[ ${ELUA} != luajit ]]; then
+ LUA_VERSION="$(ver_cut 1-2 $(lua_get_version))"
+ else
+ # This is a workaround for luajit, as it confirms to lua5.1
+ # and the 'GNUmakefile' doesn't understand LuaJITs version.
+ LUA_VERSION="5.1"
+ fi
+
+ emake "DESTDIR=${D}" \
+ "lua${LUA_VERSION/./}cpath=$(lua_get_cmod_dir)" \
+ "lua${LUA_VERSION/./}path=$(lua_get_lmod_dir)" \
+ "prefix=${EPREFIX}/usr" \
+ install${LUA_VERSION}
+
+ popd
+}
+
+src_install() {
+ lua_foreach_impl lua_src_install
+
+ use examples && dodoc -r "examples/."
+ einstalldocs
+}
diff --git a/dev-lua/cqueues/metadata.xml b/dev-lua/cqueues/metadata.xml
new file mode 100644
index 000000000..2635b3090
--- /dev/null
+++ b/dev-lua/cqueues/metadata.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>ppn@parhuet.fr</email>
+ <name>Nicolas PARLANT</name>
+ </maintainer>
+ <upstream>
+ <remote-id type="github">wahern/cqueues</remote-id>
+ </upstream>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-lua/cqueues/
@ 2024-10-23 21:33 Nicolas PARLANT
0 siblings, 0 replies; 8+ messages in thread
From: Nicolas PARLANT @ 2024-10-23 21:33 UTC (permalink / raw
To: gentoo-commits
commit: 305d74f150afd7cdc712c2a5631a216ecc43ad26
Author: Nicolas PARLANT <nicolas.parlant <AT> parhuet <DOT> fr>
AuthorDate: Wed Oct 23 21:32:59 2024 +0000
Commit: Nicolas PARLANT <ppn <AT> parhuet <DOT> fr>
CommitDate: Wed Oct 23 21:33:34 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=305d74f1
dev-lua/cqueues: fix restore ALL_LIBS
Signed-off-by: Nicolas PARLANT <nicolas.parlant <AT> parhuet.fr>
dev-lua/cqueues/cqueues-20200726.ebuild | 1 -
1 file changed, 1 deletion(-)
diff --git a/dev-lua/cqueues/cqueues-20200726.ebuild b/dev-lua/cqueues/cqueues-20200726.ebuild
index 05b66b97e..aee005e2f 100644
--- a/dev-lua/cqueues/cqueues-20200726.ebuild
+++ b/dev-lua/cqueues/cqueues-20200726.ebuild
@@ -37,7 +37,6 @@ src_prepare() {
sed \
-e '/LUAPATH :=/d' \
-e '/LUAPATH_FN =/d' \
- -e '/ALL_LIBS +=/d' \
-i GNUmakefile || die
lua_copy_sources
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-lua/cqueues/
@ 2024-10-24 8:23 Nicolas PARLANT
0 siblings, 0 replies; 8+ messages in thread
From: Nicolas PARLANT @ 2024-10-24 8:23 UTC (permalink / raw
To: gentoo-commits
commit: bdba88f006958f27e052f28a0cae17e1ca37e961
Author: Nicolas PARLANT <nicolas.parlant <AT> parhuet <DOT> fr>
AuthorDate: Thu Oct 24 08:21:54 2024 +0000
Commit: Nicolas PARLANT <ppn <AT> parhuet <DOT> fr>
CommitDate: Thu Oct 24 08:21:54 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=bdba88f0
dev-lua/cqueues: restore basics CFLAGS from upstream
Closes: https://bugs.gentoo.org/942055
Signed-off-by: Nicolas PARLANT <nicolas.parlant <AT> parhuet.fr>
dev-lua/cqueues/cqueues-20200726.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-lua/cqueues/cqueues-20200726.ebuild b/dev-lua/cqueues/cqueues-20200726.ebuild
index aee005e2f..10ab77edf 100644
--- a/dev-lua/cqueues/cqueues-20200726.ebuild
+++ b/dev-lua/cqueues/cqueues-20200726.ebuild
@@ -54,7 +54,7 @@ lua_src_compile() {
fi
emake CC="$(tc-getCC)" \
- ALL_CFLAGS="${CFLAGS} $(lua_get_CFLAGS)" \
+ ALL_CFLAGS="${CFLAGS} -std=gnu99 -fPIC $(lua_get_CFLAGS)" \
ALL_CPPFLAGS="${CPPFLAGS} -D_GNU_SOURCE" \
ALL_SOFLAGS="${SOFLAGS} -shared" \
ALL_LDFLAGS="${LDFLAGS}" \
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-lua/cqueues/
@ 2024-10-26 23:42 Nicolas PARLANT
0 siblings, 0 replies; 8+ messages in thread
From: Nicolas PARLANT @ 2024-10-26 23:42 UTC (permalink / raw
To: gentoo-commits
commit: 24db7d8b50648b3367cfe727b69dab0ee2f788e6
Author: Nicolas PARLANT <nicolas.parlant <AT> parhuet <DOT> fr>
AuthorDate: Sat Oct 26 23:36:25 2024 +0000
Commit: Nicolas PARLANT <ppn <AT> parhuet <DOT> fr>
CommitDate: Sat Oct 26 23:42:28 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=24db7d8b
dev-lua/cqueues: restrict test
tests with starttls are buggy
Closes: https://bugs.gentoo.org/942105
Signed-off-by: Nicolas PARLANT <nicolas.parlant <AT> parhuet.fr>
dev-lua/cqueues/cqueues-20200726.ebuild | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/dev-lua/cqueues/cqueues-20200726.ebuild b/dev-lua/cqueues/cqueues-20200726.ebuild
index 10ab77edf..5bce52a20 100644
--- a/dev-lua/cqueues/cqueues-20200726.ebuild
+++ b/dev-lua/cqueues/cqueues-20200726.ebuild
@@ -20,6 +20,10 @@ KEYWORDS="~amd64"
IUSE="examples"
REQUIRED_USE="${LUA_REQUIRED_USE}"
+
+# tests with starttls are buggy
+RESTRICT="test"
+
DEPEND="
${LUA_DEPS}
dev-libs/openssl:0=
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-lua/cqueues/
@ 2024-12-03 8:13 Nicolas PARLANT
0 siblings, 0 replies; 8+ messages in thread
From: Nicolas PARLANT @ 2024-12-03 8:13 UTC (permalink / raw
To: gentoo-commits
commit: e69f17d4edb9ed7f5e8940fc37acfcd6167d4d3c
Author: Nicolas PARLANT <nicolas.parlant <AT> parhuet <DOT> fr>
AuthorDate: Tue Dec 3 08:12:50 2024 +0000
Commit: Nicolas PARLANT <ppn <AT> parhuet <DOT> fr>
CommitDate: Tue Dec 3 08:13:56 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e69f17d4
dev-lua/cqueues: fix calling ar/ranlib directly
Closes: https://bugs.gentoo.org/945787
Signed-off-by: Nicolas PARLANT <nicolas.parlant <AT> parhuet.fr>
dev-lua/cqueues/cqueues-20200726.ebuild | 2 ++
1 file changed, 2 insertions(+)
diff --git a/dev-lua/cqueues/cqueues-20200726.ebuild b/dev-lua/cqueues/cqueues-20200726.ebuild
index d6caa4f84..4cd068753 100644
--- a/dev-lua/cqueues/cqueues-20200726.ebuild
+++ b/dev-lua/cqueues/cqueues-20200726.ebuild
@@ -64,6 +64,8 @@ lua_src_compile() {
fi
emake CC="$(tc-getCC)" \
+ AR="$(tc-getAR)" \
+ RANLIB="$(tc-getRANLIB)" \
ALL_CFLAGS="${CFLAGS} -std=gnu99 -fPIC $(lua_get_CFLAGS)" \
ALL_CPPFLAGS="${CPPFLAGS} -D_GNU_SOURCE" \
ALL_SOFLAGS="${SOFLAGS} -shared" \
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-lua/cqueues/
@ 2024-12-05 8:46 Nicolas PARLANT
0 siblings, 0 replies; 8+ messages in thread
From: Nicolas PARLANT @ 2024-12-05 8:46 UTC (permalink / raw
To: gentoo-commits
commit: 41ece2223308c75c10771741bdeca6b790b5e270
Author: Nicolas PARLANT <nicolas.parlant <AT> parhuet <DOT> fr>
AuthorDate: Thu Dec 5 08:35:07 2024 +0000
Commit: Nicolas PARLANT <ppn <AT> parhuet <DOT> fr>
CommitDate: Thu Dec 5 08:46:45 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=41ece222
dev-lua/cqueues: disable dns tests
Closes: https://bugs.gentoo.org/913367
Signed-off-by: Nicolas PARLANT <nicolas.parlant <AT> parhuet.fr>
dev-lua/cqueues/cqueues-20200726.ebuild | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/dev-lua/cqueues/cqueues-20200726.ebuild b/dev-lua/cqueues/cqueues-20200726.ebuild
index 99fefd8db..09c44178b 100644
--- a/dev-lua/cqueues/cqueues-20200726.ebuild
+++ b/dev-lua/cqueues/cqueues-20200726.ebuild
@@ -81,11 +81,13 @@ src_prepare() {
# tests deleted :
# 22, 73, 87 = weak/old ssl
- # 30 = call google.com
+ # 30,62,153 = network required
rm regress/22-client-dtls.lua \
regress/73-starttls-buffering.lua \
regress/87-alpn-disappears.lua \
- regress/30-starttls-completion.lua || die
+ regress/30-starttls-completion.lua \
+ regress/62-noname.lua \
+ regress/153-dns-resolvers.lua || die
lua_copy_sources
lua_foreach_impl lua_src_prepare
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-lua/cqueues/
@ 2024-12-06 20:45 Nicolas PARLANT
0 siblings, 0 replies; 8+ messages in thread
From: Nicolas PARLANT @ 2024-12-06 20:45 UTC (permalink / raw
To: gentoo-commits
commit: f5026823c6ff2f8dc71f108a0231f55a6621f860
Author: Nicolas PARLANT <nicolas.parlant <AT> parhuet <DOT> fr>
AuthorDate: Fri Dec 6 00:46:46 2024 +0000
Commit: Nicolas PARLANT <ppn <AT> parhuet <DOT> fr>
CommitDate: Fri Dec 6 20:45:49 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f5026823
dev-lua/cqueues: add 20200726_p20241204
use EGIT_COMMIT to keep update instead of patch
Signed-off-by: Nicolas PARLANT <nicolas.parlant <AT> parhuet.fr>
dev-lua/cqueues/Manifest | 1 +
dev-lua/cqueues/cqueues-20200726_p20241204.ebuild | 157 ++++++++++++++++++++++
2 files changed, 158 insertions(+)
diff --git a/dev-lua/cqueues/Manifest b/dev-lua/cqueues/Manifest
index a4309ac2f..913c6afde 100644
--- a/dev-lua/cqueues/Manifest
+++ b/dev-lua/cqueues/Manifest
@@ -1 +1,2 @@
+DIST cqueues-20200726_p20241204.tar.gz 511991 BLAKE2B 13aeb72435fbfd84e3af11f7d79547ca72b2863ffff4d24d1e14115225973f175b19440732c1d9f4f57c22ef454b3abfe503e7b18de145b4c04f44e87297365c SHA512 9e510c3da50ce601d7fde8cf4e3f4262aa9ec1e81099e4411cf233a138338f5098de8eddce5600732ff7ad97329a7eb501f7c51b911b0c3dd82cd4f0220e4c99
DIST cqueues-rel-20200726.tar.gz 511659 BLAKE2B 2e8da34d4818e96d6872d0e544ff39465f4b55527146dd0003a80a4f11be34601fc34a123a8bd7535f3437afb4825ab9995d63141991c0b4c520c365decbaf37 SHA512 f2198a2a887bca445fe480949e05ecc94c3112827dbd65d2de0258316beee12f6052fa2670560daab708421e669dde0ac581b365af6bb94a3fc6f322c8bc7547
diff --git a/dev-lua/cqueues/cqueues-20200726_p20241204.ebuild b/dev-lua/cqueues/cqueues-20200726_p20241204.ebuild
new file mode 100644
index 000000000..1b546a8d4
--- /dev/null
+++ b/dev-lua/cqueues/cqueues-20200726_p20241204.ebuild
@@ -0,0 +1,157 @@
+# Copyright 2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+LUA_COMPAT=( lua5-{1..4} luajit )
+
+inherit lua toolchain-funcs
+
+DESCRIPTION="Stackable Continuation Queues"
+HOMEPAGE="https://github.com/wahern/cqueues"
+HOMEPAGE+=" http://25thandclement.com/~william/projects/cqueues.html"
+EGIT_COMMIT="8c0142577d3cb1f24917879997678bef0d084815"
+SRC_URI="https://github.com/wahern/${PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
+
+S="${WORKDIR}/${PN}-${EGIT_COMMIT}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="examples"
+
+REQUIRED_USE="${LUA_REQUIRED_USE}"
+
+DEPEND="
+ ${LUA_DEPS}
+ dev-libs/openssl:0=
+"
+RDEPEND="${DEPEND}"
+BDEPEND="
+ dev-lua/compat53[${LUA_USEDEP}]
+ virtual/pkgconfig
+"
+
+DOCS=( "doc/." )
+
+lua_src_prepare() {
+ pushd "${BUILD_DIR}" || die
+
+ if [[ ${ELUA} != luajit ]]; then
+ LUA_VERSION="$(ver_cut 1-2 $(lua_get_version))"
+ # these two tests are forced upstream for luajit only
+ rm "${BUILD_DIR}"/regress/{44-resolvers-gc,51-join-defunct-thread}.lua || die
+ else
+ # Thanks to dev-lua/luaossl for this workaround
+ # This is a workaround for luajit, as it confirms to lua5.1
+ # and the 'GNUmakefile' doesn't understand LuaJITs version.
+ LUA_VERSION="5.1"
+ fi
+
+ if [[ ${LUA_VERSION} != 5.3 ]]; then
+ # this test is forced upstream for lua5-3 only
+ rm "${BUILD_DIR}"/regress/152-thread-integer-passing.lua || die
+ fi
+
+ # install tests for lua_version only
+ sed -e 's:for V in 5.1 5.2 5.3 5.4:for V in '${LUA_VERSION}':' \
+ -i "${BUILD_DIR}"/regress/GNUmakefile || die
+
+ popd
+}
+
+src_prepare() {
+ default
+ rm -r vendor || die
+ sed \
+ -e '/HAVE_API_FN =/d' \
+ -e '/ALL_CFLAGS += -g/d' \
+ -e '/ALL_LDFLAGS += -L/d' \
+ -e 's:-O2::' \
+ -i GNUmakefile || die
+
+ # use header from dev-lua/compat53 instead of vendor
+ sed -e 's:-DCOMPAT53_PREFIX=cqueues::' \
+ -e 's:$$(d)/../vendor/compat53/c-api/compat-5.3.h::' \
+ -e '/)\/compat53/,/)\/compat53/d' \
+ -i src/GNUmakefile || die
+
+ sed -e 's:"../vendor/compat53/c-api\/compat-5.3.h":<compat-5.3.h>:' \
+ -i src/cqueues.h || die
+
+ # tests deleted :
+ # 22, 73, 87 = weak/old ssl
+ # 30,62,153 = network required
+ rm regress/22-client-dtls.lua \
+ regress/73-starttls-buffering.lua \
+ regress/87-alpn-disappears.lua \
+ regress/30-starttls-completion.lua \
+ regress/62-noname.lua \
+ regress/153-dns-resolvers.lua || die
+
+ lua_copy_sources
+ lua_foreach_impl lua_src_prepare
+}
+
+lua_src_compile() {
+ pushd "${BUILD_DIR}" || die
+
+ if [[ ${ELUA} != luajit ]]; then
+ LUA_VERSION="$(ver_cut 1-2 $(lua_get_version))"
+ else
+ LUA_VERSION="5.1"
+ fi
+
+ emake CC=$(tc-getCC) \
+ all${LUA_VERSION}
+
+ popd
+}
+
+src_compile() {
+ lua_foreach_impl lua_src_compile
+}
+
+lua_src_test() {
+ pushd "${BUILD_DIR}" || die
+
+ if [[ ${ELUA} != luajit ]]; then
+ LUA_VERSION="$(ver_cut 1-2 $(lua_get_version))"
+ else
+ LUA_VERSION="5.1"
+ fi
+
+ emake CC=$(tc-getCC) check
+
+ popd
+}
+
+src_test() {
+ lua_foreach_impl lua_src_test
+}
+
+lua_src_install() {
+ pushd "${BUILD_DIR}" || die
+
+ if [[ ${ELUA} != luajit ]]; then
+ LUA_VERSION="$(ver_cut 1-2 $(lua_get_version))"
+ else
+ LUA_VERSION="5.1"
+ fi
+
+ emake CC=$(tc-getCC) \
+ "DESTDIR=${D}" \
+ "lua${LUA_VERSION/./}cpath=$(lua_get_cmod_dir)" \
+ "lua${LUA_VERSION/./}path=$(lua_get_lmod_dir)" \
+ "prefix=${EPREFIX}/usr" \
+ install${LUA_VERSION}
+
+ popd
+}
+
+src_install() {
+ lua_foreach_impl lua_src_install
+
+ use examples && dodoc -r "examples/."
+ einstalldocs
+}
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-lua/cqueues/
@ 2024-12-11 5:01 Anna Vyalkova
0 siblings, 0 replies; 8+ messages in thread
From: Anna Vyalkova @ 2024-12-11 5:01 UTC (permalink / raw
To: gentoo-commits
commit: 99fc0f561194f816d046f74a2ddf42db44e9f67b
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Wed Dec 11 04:53:56 2024 +0000
Commit: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Wed Dec 11 04:53:56 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=99fc0f56
dev-lua/cqueues: treeclean, promoted to ::gentoo
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
dev-lua/cqueues/Manifest | 1 -
dev-lua/cqueues/cqueues-20200726_p20241204.ebuild | 157 ----------------------
dev-lua/cqueues/metadata.xml | 11 --
3 files changed, 169 deletions(-)
diff --git a/dev-lua/cqueues/Manifest b/dev-lua/cqueues/Manifest
deleted file mode 100644
index 9a955e64f..000000000
--- a/dev-lua/cqueues/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST cqueues-20200726_p20241204.tar.gz 511991 BLAKE2B 13aeb72435fbfd84e3af11f7d79547ca72b2863ffff4d24d1e14115225973f175b19440732c1d9f4f57c22ef454b3abfe503e7b18de145b4c04f44e87297365c SHA512 9e510c3da50ce601d7fde8cf4e3f4262aa9ec1e81099e4411cf233a138338f5098de8eddce5600732ff7ad97329a7eb501f7c51b911b0c3dd82cd4f0220e4c99
diff --git a/dev-lua/cqueues/cqueues-20200726_p20241204.ebuild b/dev-lua/cqueues/cqueues-20200726_p20241204.ebuild
deleted file mode 100644
index 1b546a8d4..000000000
--- a/dev-lua/cqueues/cqueues-20200726_p20241204.ebuild
+++ /dev/null
@@ -1,157 +0,0 @@
-# Copyright 2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-LUA_COMPAT=( lua5-{1..4} luajit )
-
-inherit lua toolchain-funcs
-
-DESCRIPTION="Stackable Continuation Queues"
-HOMEPAGE="https://github.com/wahern/cqueues"
-HOMEPAGE+=" http://25thandclement.com/~william/projects/cqueues.html"
-EGIT_COMMIT="8c0142577d3cb1f24917879997678bef0d084815"
-SRC_URI="https://github.com/wahern/${PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
-
-S="${WORKDIR}/${PN}-${EGIT_COMMIT}"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="examples"
-
-REQUIRED_USE="${LUA_REQUIRED_USE}"
-
-DEPEND="
- ${LUA_DEPS}
- dev-libs/openssl:0=
-"
-RDEPEND="${DEPEND}"
-BDEPEND="
- dev-lua/compat53[${LUA_USEDEP}]
- virtual/pkgconfig
-"
-
-DOCS=( "doc/." )
-
-lua_src_prepare() {
- pushd "${BUILD_DIR}" || die
-
- if [[ ${ELUA} != luajit ]]; then
- LUA_VERSION="$(ver_cut 1-2 $(lua_get_version))"
- # these two tests are forced upstream for luajit only
- rm "${BUILD_DIR}"/regress/{44-resolvers-gc,51-join-defunct-thread}.lua || die
- else
- # Thanks to dev-lua/luaossl for this workaround
- # This is a workaround for luajit, as it confirms to lua5.1
- # and the 'GNUmakefile' doesn't understand LuaJITs version.
- LUA_VERSION="5.1"
- fi
-
- if [[ ${LUA_VERSION} != 5.3 ]]; then
- # this test is forced upstream for lua5-3 only
- rm "${BUILD_DIR}"/regress/152-thread-integer-passing.lua || die
- fi
-
- # install tests for lua_version only
- sed -e 's:for V in 5.1 5.2 5.3 5.4:for V in '${LUA_VERSION}':' \
- -i "${BUILD_DIR}"/regress/GNUmakefile || die
-
- popd
-}
-
-src_prepare() {
- default
- rm -r vendor || die
- sed \
- -e '/HAVE_API_FN =/d' \
- -e '/ALL_CFLAGS += -g/d' \
- -e '/ALL_LDFLAGS += -L/d' \
- -e 's:-O2::' \
- -i GNUmakefile || die
-
- # use header from dev-lua/compat53 instead of vendor
- sed -e 's:-DCOMPAT53_PREFIX=cqueues::' \
- -e 's:$$(d)/../vendor/compat53/c-api/compat-5.3.h::' \
- -e '/)\/compat53/,/)\/compat53/d' \
- -i src/GNUmakefile || die
-
- sed -e 's:"../vendor/compat53/c-api\/compat-5.3.h":<compat-5.3.h>:' \
- -i src/cqueues.h || die
-
- # tests deleted :
- # 22, 73, 87 = weak/old ssl
- # 30,62,153 = network required
- rm regress/22-client-dtls.lua \
- regress/73-starttls-buffering.lua \
- regress/87-alpn-disappears.lua \
- regress/30-starttls-completion.lua \
- regress/62-noname.lua \
- regress/153-dns-resolvers.lua || die
-
- lua_copy_sources
- lua_foreach_impl lua_src_prepare
-}
-
-lua_src_compile() {
- pushd "${BUILD_DIR}" || die
-
- if [[ ${ELUA} != luajit ]]; then
- LUA_VERSION="$(ver_cut 1-2 $(lua_get_version))"
- else
- LUA_VERSION="5.1"
- fi
-
- emake CC=$(tc-getCC) \
- all${LUA_VERSION}
-
- popd
-}
-
-src_compile() {
- lua_foreach_impl lua_src_compile
-}
-
-lua_src_test() {
- pushd "${BUILD_DIR}" || die
-
- if [[ ${ELUA} != luajit ]]; then
- LUA_VERSION="$(ver_cut 1-2 $(lua_get_version))"
- else
- LUA_VERSION="5.1"
- fi
-
- emake CC=$(tc-getCC) check
-
- popd
-}
-
-src_test() {
- lua_foreach_impl lua_src_test
-}
-
-lua_src_install() {
- pushd "${BUILD_DIR}" || die
-
- if [[ ${ELUA} != luajit ]]; then
- LUA_VERSION="$(ver_cut 1-2 $(lua_get_version))"
- else
- LUA_VERSION="5.1"
- fi
-
- emake CC=$(tc-getCC) \
- "DESTDIR=${D}" \
- "lua${LUA_VERSION/./}cpath=$(lua_get_cmod_dir)" \
- "lua${LUA_VERSION/./}path=$(lua_get_lmod_dir)" \
- "prefix=${EPREFIX}/usr" \
- install${LUA_VERSION}
-
- popd
-}
-
-src_install() {
- lua_foreach_impl lua_src_install
-
- use examples && dodoc -r "examples/."
- einstalldocs
-}
diff --git a/dev-lua/cqueues/metadata.xml b/dev-lua/cqueues/metadata.xml
deleted file mode 100644
index 592676cdf..000000000
--- a/dev-lua/cqueues/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>nicolas.parlant@parhuet.fr</email>
- <name>Nicolas PARLANT</name>
- </maintainer>
- <upstream>
- <remote-id type="github">wahern/cqueues</remote-id>
- </upstream>
-</pkgmetadata>
^ permalink raw reply related [flat|nested] 8+ messages in thread
end of thread, other threads:[~2024-12-11 5:01 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-11 5:01 [gentoo-commits] repo/proj/guru:dev commit in: dev-lua/cqueues/ Anna Vyalkova
-- strict thread matches above, loose matches on Subject: below --
2024-12-06 20:45 Nicolas PARLANT
2024-12-05 8:46 Nicolas PARLANT
2024-12-03 8:13 Nicolas PARLANT
2024-10-26 23:42 Nicolas PARLANT
2024-10-24 8:23 Nicolas PARLANT
2024-10-23 21:33 Nicolas PARLANT
2024-10-22 22:07 Nicolas PARLANT
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox