* [gentoo-commits] repo/gentoo:master commit in: www-client/luakit/
@ 2018-07-07 12:15 Jonas Stein
0 siblings, 0 replies; 17+ messages in thread
From: Jonas Stein @ 2018-07-07 12:15 UTC (permalink / raw
To: gentoo-commits
commit: 8cf155df007f2b7abf36b19e0cd9469c1dfc83e0
Author: Jonas Stein <jstein <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 7 11:13:58 2018 +0000
Commit: Jonas Stein <jstein <AT> gentoo <DOT> org>
CommitDate: Sat Jul 7 12:14:44 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8cf155df
www-client/luakit: Maintainer retired
Proxied maintainer retired.
Bug: https://bugs.gentoo.org/617928
Package-Manager: Portage-2.3.41, Repoman-2.3.9
www-client/luakit/metadata.xml | 11 ++---------
1 file changed, 2 insertions(+), 9 deletions(-)
diff --git a/www-client/luakit/metadata.xml b/www-client/luakit/metadata.xml
index 6db62770082..91b52104f17 100644
--- a/www-client/luakit/metadata.xml
+++ b/www-client/luakit/metadata.xml
@@ -1,12 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <maintainer type="person" >
- <email>lluixhi@gmail.com</email>
- <name>Aric Belsito</name>
- </maintainer>
- <maintainer type="project">
- <email>proxy-maint@gentoo.org</email>
- <name>Proxy Maintainers</name>
- </maintainer>
-</pkgmetadata>
+ <!-- maintainer-needed -->
+ </pkgmetadata>
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-client/luakit/
@ 2019-05-23 18:14 Ben Kohler
0 siblings, 0 replies; 17+ messages in thread
From: Ben Kohler @ 2019-05-23 18:14 UTC (permalink / raw
To: gentoo-commits
commit: da0b5a14e9b6093a3c44c912caaf8e67d22622be
Author: Ben Kohler <bkohler <AT> gentoo <DOT> org>
AuthorDate: Thu May 23 18:13:35 2019 +0000
Commit: Ben Kohler <bkohler <AT> gentoo <DOT> org>
CommitDate: Thu May 23 18:13:51 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da0b5a14
www-client/luakit: fix install paths on live build
Adjustments needed due to
https://github.com/luakit/luakit/commit/fc07ed5a5ba5425fe52b7b4868ca8a73bc40ab6f
Package-Manager: Portage-2.3.66, Repoman-2.3.12
Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>
www-client/luakit/luakit-9999.ebuild | 9 +++------
1 file changed, 3 insertions(+), 6 deletions(-)
diff --git a/www-client/luakit/luakit-9999.ebuild b/www-client/luakit/luakit-9999.ebuild
index 136f8177f30..263bf90d254 100644
--- a/www-client/luakit/luakit-9999.ebuild
+++ b/www-client/luakit/luakit-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -40,9 +40,6 @@ DEPEND="${RDEPEND}
src_compile() {
emake \
CC=$(tc-getCC) \
- PREFIX="${EPREFIX}/usr" \
- DOCDIR="${EPREFIX}/usr/share/doc/${PF}" \
- XDGPREFIX="${EPREFIX}/etc/xdg" \
LUA_PKG_NAME=$(usex luajit 'luajit' 'lua') \
LUA_BIN_NAME=$(usex luajit 'luajit' 'lua') \
all
@@ -60,8 +57,8 @@ src_install() {
emake \
DESTDIR="${D}" \
PREFIX="${EPREFIX}/usr" \
- DOCDIR="${ED}/usr/share/doc/${PF}" \
- XDGPREFIX="${ED}/etc/xdg" \
+ DOCDIR="${EPREFIX}/usr/share/doc/${PF}" \
+ XDGPREFIX="${EPREFIX}/etc/xdg" \
install
rm "${ED}/usr/share/doc/${PF}/COPYING.GPLv3" || die
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-client/luakit/
@ 2019-05-23 18:30 Ben Kohler
0 siblings, 0 replies; 17+ messages in thread
From: Ben Kohler @ 2019-05-23 18:30 UTC (permalink / raw
To: gentoo-commits
commit: cb863ffe977f4649714bf73ce7040a75d70b705c
Author: Ben Kohler <bkohler <AT> gentoo <DOT> org>
AuthorDate: Thu May 23 18:29:40 2019 +0000
Commit: Ben Kohler <bkohler <AT> gentoo <DOT> org>
CommitDate: Thu May 23 18:29:40 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb863ffe
www-client/luakit: fix non-luajit install & tests
This build system defaults to looking for luajit so we need to override
LUA_*_NAME when not using luajit. The ebuild had some overrides but not
in enough places. This commit should fix install & tests.
Closes: https://bugs.gentoo.org/633770
Package-Manager: Portage-2.3.66, Repoman-2.3.12
Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>
www-client/luakit/luakit-2017.08.10.ebuild | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/www-client/luakit/luakit-2017.08.10.ebuild b/www-client/luakit/luakit-2017.08.10.ebuild
index 58974d97427..487247b7ce7 100644
--- a/www-client/luakit/luakit-2017.08.10.ebuild
+++ b/www-client/luakit/luakit-2017.08.10.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -56,12 +56,15 @@ src_compile() {
src_test() {
emake \
+ LUA_PKG_NAME=$(usex luajit 'luajit' 'lua') \
LUA_BIN_NAME=$(usex luajit 'luajit' 'lua') \
run-tests
}
src_install() {
emake \
+ LUA_PKG_NAME=$(usex luajit 'luajit' 'lua') \
+ LUA_BIN_NAME=$(usex luajit 'luajit' 'lua') \
DESTDIR="${D}" \
PREFIX="${EPREFIX}/usr" \
DOCDIR="${ED}/usr/share/doc/${PF}" \
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-client/luakit/
@ 2020-04-01 14:38 Joonas Niilola
0 siblings, 0 replies; 17+ messages in thread
From: Joonas Niilola @ 2020-04-01 14:38 UTC (permalink / raw
To: gentoo-commits
commit: e8d672db8ff6df16fc571bb725fceb3d37ad69b0
Author: Kristopher Keller <kristopher004 <AT> gmail <DOT> com>
AuthorDate: Sat Mar 28 22:26:23 2020 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Wed Apr 1 14:37:33 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8d672db
www-client/luakit: update live ebuild
Add prefix to emake so luakit can find modules and fix various repoman
warnings.
- Bump copyright
- Bump to EAPI 7
- Inherit xdg-utils
- Use https for repo uri
- Add PREFIX to emake in compile phase
- Edit Makefile to install uncompressed man page
- Add xdg functions for desktop file
Closes: https://bugs.gentoo.org/715184
Package-Manager: Portage-2.3.96, Repoman-2.3.22
Signed-off-by: Kristopher Keller <kristopher004 <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/15157
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
www-client/luakit/luakit-9999.ebuild | 17 +++++++++++++----
1 file changed, 13 insertions(+), 4 deletions(-)
diff --git a/www-client/luakit/luakit-9999.ebuild b/www-client/luakit/luakit-9999.ebuild
index fb0f02b0108..3f617a46a60 100644
--- a/www-client/luakit/luakit-9999.ebuild
+++ b/www-client/luakit/luakit-9999.ebuild
@@ -1,16 +1,16 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=6
+EAPI=7
-inherit toolchain-funcs
+inherit toolchain-funcs xdg-utils
DESCRIPTION="A fast, light, simple to use micro-browser using WebKit and Lua"
HOMEPAGE="https://luakit.github.io/luakit"
if [[ ${PV} == 9999 ]]; then
inherit git-r3
- EGIT_REPO_URI="git://github.com/luakit/luakit.git"
+ EGIT_REPO_URI="https://github.com/luakit/luakit.git"
else
SRC_URI="https://github.com/luakit/luakit/archive/${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64"
@@ -43,6 +43,7 @@ src_compile() {
CC=$(tc-getCC) \
LUA_PKG_NAME=$(usex luajit 'luajit' 'lua') \
LUA_BIN_NAME=$(usex luajit 'luajit' 'lua') \
+ PREFIX="${EPREFIX}/usr" \
all
use doc && emake doc
@@ -55,6 +56,8 @@ src_test() {
}
src_install() {
+ sed -i 's/install -m644 luakit.1.gz/install -m644 luakit.1/g' Makefile || die
+
emake \
DESTDIR="${D}" \
PREFIX="${EPREFIX}/usr" \
@@ -66,3 +69,9 @@ src_install() {
use doc && dodoc -r doc/html
}
+
+pkg_postrm() {
+ xdg_desktop_database_update
+ xdg_icon_cache_update
+ xdg_mimeinfo_database_update
+}
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-client/luakit/
@ 2020-09-24 9:46 Jeroen Roovers
0 siblings, 0 replies; 17+ messages in thread
From: Jeroen Roovers @ 2020-09-24 9:46 UTC (permalink / raw
To: gentoo-commits
commit: 0866090abf8a34ee32c80ea5776769ac63d1107c
Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 24 09:45:35 2020 +0000
Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Thu Sep 24 09:46:00 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0866090a
www-client/luakit: Disable some failing tests
Package-Manager: Portage-3.0.8, Repoman-3.0.1
Bug: https://bugs.gentoo.org/742599
Signed-off-by: Jeroen Roovers <jer <AT> gentoo.org>
www-client/luakit/luakit-2.2.1.ebuild | 5 +++++
www-client/luakit/luakit-9999.ebuild | 5 +++++
2 files changed, 10 insertions(+)
diff --git a/www-client/luakit/luakit-2.2.1.ebuild b/www-client/luakit/luakit-2.2.1.ebuild
index 8c5715afc58..a6eb394117a 100644
--- a/www-client/luakit/luakit-2.2.1.ebuild
+++ b/www-client/luakit/luakit-2.2.1.ebuild
@@ -61,6 +61,11 @@ src_compile() {
}
src_test() {
+ local failing_test
+ for failing_test in test_clib_luakit test_image_css; do
+ mv tests/async/${failing_test}.lua{,.disabled} || die
+ done
+
emake \
LUA_BIN_NAME=$(usex luajit luajit lua) \
run-tests
diff --git a/www-client/luakit/luakit-9999.ebuild b/www-client/luakit/luakit-9999.ebuild
index 450c214f8e7..a1c4b6f80bf 100644
--- a/www-client/luakit/luakit-9999.ebuild
+++ b/www-client/luakit/luakit-9999.ebuild
@@ -60,6 +60,11 @@ src_compile() {
}
src_test() {
+ local failing_test
+ for failing_test in test_clib_luakit test_image_css; do
+ mv tests/async/${failing_test}.lua{,.disabled} || die
+ done
+
emake \
LUA_BIN_NAME=$(usex luajit luajit lua) \
run-tests
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-client/luakit/
@ 2020-09-24 13:49 Jeroen Roovers
0 siblings, 0 replies; 17+ messages in thread
From: Jeroen Roovers @ 2020-09-24 13:49 UTC (permalink / raw
To: gentoo-commits
commit: acac3c3891c67956dabf7f8302493aafc48a08d7
Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 24 13:45:39 2020 +0000
Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Thu Sep 24 13:49:16 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=acac3c38
www-client/luakit: Export LUA_BIN_NAME and LUA_PKG_NAME
Package-Manager: Portage-3.0.8, Repoman-3.0.1
Bug: https://bugs.gentoo.org/744505
Signed-off-by: Jeroen Roovers <jer <AT> gentoo.org>
www-client/luakit/luakit-2.2.1.ebuild | 10 ++++------
www-client/luakit/luakit-9999.ebuild | 10 ++++------
2 files changed, 8 insertions(+), 12 deletions(-)
diff --git a/www-client/luakit/luakit-2.2.1.ebuild b/www-client/luakit/luakit-2.2.1.ebuild
index a6eb394117a..efeb361d7b9 100644
--- a/www-client/luakit/luakit-2.2.1.ebuild
+++ b/www-client/luakit/luakit-2.2.1.ebuild
@@ -47,13 +47,13 @@ PATCHES=(
)
src_configure() {
+ export LUA_BIN_NAME=$(usex luajit luajit lua)
+ export LUA_PKG_NAME=$(usex luajit luajit lua)
tc-export CC PKG_CONFIG
}
src_compile() {
emake \
- LUA_PKG_NAME=$(usex luajit luajit lua) \
- LUA_BIN_NAME=$(usex luajit luajit lua) \
PREFIX="${EPREFIX}/usr" \
${PN}
@@ -66,16 +66,14 @@ src_test() {
mv tests/async/${failing_test}.lua{,.disabled} || die
done
- emake \
- LUA_BIN_NAME=$(usex luajit luajit lua) \
- run-tests
+ emake run-tests
}
src_install() {
emake \
DESTDIR="${D}" \
- PREFIX="${EPREFIX}/usr" \
DOCDIR="${EPREFIX}/usr/share/doc/${PF}" \
+ PREFIX="${EPREFIX}/usr" \
XDGPREFIX="${EPREFIX}/etc/xdg" \
install
diff --git a/www-client/luakit/luakit-9999.ebuild b/www-client/luakit/luakit-9999.ebuild
index a1c4b6f80bf..e249169925e 100644
--- a/www-client/luakit/luakit-9999.ebuild
+++ b/www-client/luakit/luakit-9999.ebuild
@@ -46,13 +46,13 @@ PATCHES=(
)
src_configure() {
+ export LUA_BIN_NAME=$(usex luajit luajit lua)
+ export LUA_PKG_NAME=$(usex luajit luajit lua)
tc-export CC PKG_CONFIG
}
src_compile() {
emake \
- LUA_PKG_NAME=$(usex luajit luajit lua) \
- LUA_BIN_NAME=$(usex luajit luajit lua) \
PREFIX="${EPREFIX}/usr" \
${PN}
@@ -65,16 +65,14 @@ src_test() {
mv tests/async/${failing_test}.lua{,.disabled} || die
done
- emake \
- LUA_BIN_NAME=$(usex luajit luajit lua) \
- run-tests
+ emake run-tests
}
src_install() {
emake \
DESTDIR="${D}" \
- PREFIX="${EPREFIX}/usr" \
DOCDIR="${EPREFIX}/usr/share/doc/${PF}" \
+ PREFIX="${EPREFIX}/usr" \
XDGPREFIX="${EPREFIX}/etc/xdg" \
install
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-client/luakit/
@ 2020-11-29 17:09 Marek Szuba
0 siblings, 0 replies; 17+ messages in thread
From: Marek Szuba @ 2020-11-29 17:09 UTC (permalink / raw
To: gentoo-commits
commit: 3821a11452bc185586530f578f68fa2f6e5d1039
Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 29 16:45:22 2020 +0000
Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Sun Nov 29 17:08:53 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3821a114
www-client/luakit: fix USE=-luajit logic
This was not complete before because in the event of dev-lang/luajit
having been present, it would result in the luakit executable being
built against PUC Lua but luakit.so and the test suite against LuaJIT.
Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
www-client/luakit/luakit-2.2.1.ebuild | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/www-client/luakit/luakit-2.2.1.ebuild b/www-client/luakit/luakit-2.2.1.ebuild
index efeb361d7b9..6821a2d84cd 100644
--- a/www-client/luakit/luakit-2.2.1.ebuild
+++ b/www-client/luakit/luakit-2.2.1.ebuild
@@ -55,7 +55,8 @@ src_configure() {
src_compile() {
emake \
PREFIX="${EPREFIX}/usr" \
- ${PN}
+ USE_LUAJIT=$(usex luajit 1 0) \
+ ${PN} ${PN}.so
use doc && emake doc
}
@@ -66,7 +67,9 @@ src_test() {
mv tests/async/${failing_test}.lua{,.disabled} || die
done
- emake run-tests
+ emake \
+ USE_LUAJIT=$(usex luajit 1 0) \
+ run-tests
}
src_install() {
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-client/luakit/
@ 2021-01-17 21:25 Marek Szuba
0 siblings, 0 replies; 17+ messages in thread
From: Marek Szuba @ 2021-01-17 21:25 UTC (permalink / raw
To: gentoo-commits
commit: 6717e8e06c8727d60380bee7d6915366aa023b01
Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 17 21:20:02 2021 +0000
Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Sun Jan 17 21:24:52 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6717e8e0
www-client/luajit: set USE_LUAJIT in src_install() too
Seems to be needed according to comments in the bug.
Bug: https://bugs.gentoo.org/744541
Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
www-client/luakit/luakit-2.2.1-r100.ebuild | 1 +
www-client/luakit/luakit-2.2.1.ebuild | 1 +
www-client/luakit/luakit-9999.ebuild | 1 +
3 files changed, 3 insertions(+)
diff --git a/www-client/luakit/luakit-2.2.1-r100.ebuild b/www-client/luakit/luakit-2.2.1-r100.ebuild
index 4c0f4d8faf9..b1ab4c1af05 100644
--- a/www-client/luakit/luakit-2.2.1-r100.ebuild
+++ b/www-client/luakit/luakit-2.2.1-r100.ebuild
@@ -83,6 +83,7 @@ src_install() {
DESTDIR="${ED}" \
DOCDIR="${EPREFIX}/usr/share/doc/${PF}" \
PREFIX="${EPREFIX}/usr" \
+ USE_LUAJIT=$(usex lua_single_target_luajit 1 0) \
XDGPREFIX="${EPREFIX}/etc/xdg" \
install
diff --git a/www-client/luakit/luakit-2.2.1.ebuild b/www-client/luakit/luakit-2.2.1.ebuild
index 6821a2d84cd..ee701ad719a 100644
--- a/www-client/luakit/luakit-2.2.1.ebuild
+++ b/www-client/luakit/luakit-2.2.1.ebuild
@@ -77,6 +77,7 @@ src_install() {
DESTDIR="${D}" \
DOCDIR="${EPREFIX}/usr/share/doc/${PF}" \
PREFIX="${EPREFIX}/usr" \
+ USE_LUAJIT=$(usex luajit 1 0) \
XDGPREFIX="${EPREFIX}/etc/xdg" \
install
diff --git a/www-client/luakit/luakit-9999.ebuild b/www-client/luakit/luakit-9999.ebuild
index 874b328f3b3..c9e270416ac 100644
--- a/www-client/luakit/luakit-9999.ebuild
+++ b/www-client/luakit/luakit-9999.ebuild
@@ -82,6 +82,7 @@ src_install() {
DESTDIR="${ED}" \
DOCDIR="${EPREFIX}/usr/share/doc/${PF}" \
PREFIX="${EPREFIX}/usr" \
+ USE_LUAJIT=$(usex lua_single_target_luajit 1 0) \
XDGPREFIX="${EPREFIX}/etc/xdg" \
install
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-client/luakit/
@ 2021-01-25 17:38 Marek Szuba
0 siblings, 0 replies; 17+ messages in thread
From: Marek Szuba @ 2021-01-25 17:38 UTC (permalink / raw
To: gentoo-commits
commit: ba81b7efe145393b90ddbfb68db7687a23bda356
Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 25 14:11:31 2021 +0000
Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Mon Jan 25 17:37:23 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba81b7ef
www-client/luakit: remove old
Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
www-client/luakit/luakit-2.2.1.ebuild | 87 -----------------------------------
1 file changed, 87 deletions(-)
diff --git a/www-client/luakit/luakit-2.2.1.ebuild b/www-client/luakit/luakit-2.2.1.ebuild
deleted file mode 100644
index ee701ad719a..00000000000
--- a/www-client/luakit/luakit-2.2.1.ebuild
+++ /dev/null
@@ -1,87 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-inherit toolchain-funcs xdg
-
-DESCRIPTION="A fast, extensible, and customizable web browser"
-HOMEPAGE="https://luakit.github.io/luakit"
-
-if [[ ${PV} == 9999 ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/luakit/luakit.git"
-else
- SRC_URI="https://github.com/luakit/luakit/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64"
-fi
-
-LICENSE="GPL-3"
-SLOT="0"
-IUSE="doc luajit test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- dev-db/sqlite:3
- dev-libs/glib:2
- dev-lua/luafilesystem[luajit=]
- net-libs/webkit-gtk:4=
- x11-libs/gtk+:3
- luajit? ( dev-lang/luajit:2 )
- !luajit? ( dev-lang/lua:0 )
-"
-DEPEND="
- ${RDEPEND}
- test? (
- dev-lua/luassert[luajit=]
- dev-lua/luacheck[luajit=]
- x11-base/xorg-server[xvfb]
- )
-"
-BDEPEND="
- virtual/pkgconfig
- doc? ( app-doc/doxygen )
-"
-PATCHES=(
- "${FILESDIR}"/${PN}-2.2.1-make.patch
- "${FILESDIR}"/${PN}-2.2.1-pkg-config.patch
-)
-
-src_configure() {
- export LUA_BIN_NAME=$(usex luajit luajit lua)
- export LUA_PKG_NAME=$(usex luajit luajit lua)
- tc-export CC PKG_CONFIG
-}
-
-src_compile() {
- emake \
- PREFIX="${EPREFIX}/usr" \
- USE_LUAJIT=$(usex luajit 1 0) \
- ${PN} ${PN}.so
-
- use doc && emake doc
-}
-
-src_test() {
- local failing_test
- for failing_test in test_clib_luakit test_image_css; do
- mv tests/async/${failing_test}.lua{,.disabled} || die
- done
-
- emake \
- USE_LUAJIT=$(usex luajit 1 0) \
- run-tests
-}
-
-src_install() {
- emake \
- DESTDIR="${D}" \
- DOCDIR="${EPREFIX}/usr/share/doc/${PF}" \
- PREFIX="${EPREFIX}/usr" \
- USE_LUAJIT=$(usex luajit 1 0) \
- XDGPREFIX="${EPREFIX}/etc/xdg" \
- install
-
- rm "${ED}/usr/share/doc/${PF}/COPYING.GPLv3" || die
-
- use doc && dodoc -r doc/html
-}
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-client/luakit/
@ 2021-06-08 13:24 Joonas Niilola
0 siblings, 0 replies; 17+ messages in thread
From: Joonas Niilola @ 2021-06-08 13:24 UTC (permalink / raw
To: gentoo-commits
commit: c5c62d80b6fabaab3a5cd19f6f1b97da81e4258d
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 8 13:23:25 2021 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Tue Jun 8 13:24:04 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5c62d80
www-client/luakit: fix license on 2.3
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
www-client/luakit/luakit-2.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/www-client/luakit/luakit-2.3.ebuild b/www-client/luakit/luakit-2.3.ebuild
index 8e075591c9a..4898eed6a66 100644
--- a/www-client/luakit/luakit-2.3.ebuild
+++ b/www-client/luakit/luakit-2.3.ebuild
@@ -18,7 +18,7 @@ else
KEYWORDS="~amd64"
fi
-LICENSE="GPL-3"
+LICENSE="GPL-3+"
SLOT="0"
IUSE="doc test"
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-client/luakit/
@ 2021-06-08 13:24 Joonas Niilola
0 siblings, 0 replies; 17+ messages in thread
From: Joonas Niilola @ 2021-06-08 13:24 UTC (permalink / raw
To: gentoo-commits
commit: 3bf33fd9cd1466eabf6f68dc8e7d17ee8fcefed9
Author: Oz N Tiram <oz.tiram <AT> gmail <DOT> com>
AuthorDate: Tue May 18 19:57:29 2021 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Tue Jun 8 13:24:04 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3bf33fd9
www-client/luakit: bump version to 2.3
Also, added myself as a proxy maintainer
Package-Manager: Portage-3.0.18, Repoman-3.0.2
Signed-off-by: Oz Tiram <oz.tiram <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/20876
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
www-client/luakit/Manifest | 1 +
www-client/luakit/luakit-2.3.ebuild | 92 +++++++++++++++++++++++++++++++++++++
www-client/luakit/metadata.xml | 22 ++++++++-
3 files changed, 113 insertions(+), 2 deletions(-)
diff --git a/www-client/luakit/Manifest b/www-client/luakit/Manifest
index 4f492cd6ef6..636495d9404 100644
--- a/www-client/luakit/Manifest
+++ b/www-client/luakit/Manifest
@@ -1 +1,2 @@
DIST luakit-2.2.1.tar.gz 488845 BLAKE2B 2bed592f7d56fc4b5bad4fee3563805954c6211222e25344d01430ef9f2921c240e9cb3c735564fae66d0739d50da41a90309c7dba3ba9f4631d880b9a47e4b1 SHA512 9a055c1541f31027805d3da2604d98c0193a9c2874099fc3ab3ef08c645a8e91b8504d1162e86cbd29a5e5e0a3c54b3154299708f864d135d8640bcc3866674b
+DIST luakit-2.3.tar.gz 497470 BLAKE2B 980eabba255a83a26acf565df170907805df5eb6ea7bfc978c5a180c27575d7ebadec7c97ba7af1a60cdc08654f4c4ca1967b25272dd4788a553815f91cc1502 SHA512 98a473bcafbd082093689fd58b8c9828e3d79b8ae367ea4d030bb2b1671bf4f61a4f07fe57b99e6c69c40e26ad8b96b88b67e48ce085187923a1a1d976bdcee3
diff --git a/www-client/luakit/luakit-2.3.ebuild b/www-client/luakit/luakit-2.3.ebuild
new file mode 100644
index 00000000000..8e075591c9a
--- /dev/null
+++ b/www-client/luakit/luakit-2.3.ebuild
@@ -0,0 +1,92 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+LUA_COMPAT=( lua5-1 luajit )
+
+inherit lua-single toolchain-funcs xdg
+
+DESCRIPTION="A fast, extensible, and customizable web browser"
+HOMEPAGE="https://luakit.github.io/luakit"
+
+if [[ ${PV} == 9999 ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/luakit/luakit.git"
+else
+ SRC_URI="https://github.com/luakit/luakit/archive/${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+IUSE="doc test"
+
+REQUIRED_USE="${LUA_REQUIRED_USE}"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+ dev-db/sqlite:3
+ dev-libs/glib:2
+ net-libs/webkit-gtk:4=
+ x11-libs/gtk+:3
+ ${LUA_DEPS}
+ $(lua_gen_cond_dep '
+ dev-lua/luafilesystem[${LUA_USEDEP}]
+ ')
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+ virtual/pkgconfig
+ doc? ( app-doc/doxygen )
+ test? (
+ $(lua_gen_cond_dep '
+ dev-lua/luassert[${LUA_USEDEP}]
+ dev-lua/luacheck[${LUA_USEDEP}]
+ ')
+ x11-base/xorg-server[xvfb]
+ )
+"
+PATCHES=(
+ "${FILESDIR}"/${PN}-2.2.1-make.patch
+)
+
+src_configure() {
+ export LUA_BIN_NAME=${ELUA}
+ export LUA_PKG_NAME=${ELUA}
+ tc-export CC PKG_CONFIG
+}
+
+src_compile() {
+ emake \
+ PREFIX="${EPREFIX}/usr" \
+ USE_LUAJIT=$(usex lua_single_target_luajit 1 0) \
+ ${PN} ${PN}.so
+
+ use doc && emake doc
+}
+
+src_test() {
+ local failing_test
+ for failing_test in test_clib_luakit test_image_css; do
+ mv tests/async/${failing_test}.lua{,.disabled} || die
+ done
+
+ emake \
+ USE_LUAJIT=$(usex lua_single_target_luajit 1 0) \
+ run-tests
+}
+
+src_install() {
+ emake \
+ DESTDIR="${ED}" \
+ DOCDIR="${EPREFIX}/usr/share/doc/${PF}" \
+ PREFIX="${EPREFIX}/usr" \
+ USE_LUAJIT=$(usex lua_single_target_luajit 1 0) \
+ XDGPREFIX="${EPREFIX}/etc/xdg" \
+ install
+
+ rm "${ED}/usr/share/doc/${PF}/COPYING.GPLv3" || die
+
+ use doc && dodoc -r doc/html
+}
diff --git a/www-client/luakit/metadata.xml b/www-client/luakit/metadata.xml
index 91b52104f17..3e615d255d8 100644
--- a/www-client/luakit/metadata.xml
+++ b/www-client/luakit/metadata.xml
@@ -1,5 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <!-- maintainer-needed -->
- </pkgmetadata>
+ <maintainer type="person" proxied="yes">
+ <name>Oz Tiram</name>
+ <email>oz.tiram@gmail.com</email>
+ </maintainer>
+ <maintainer type="project" proxied="proxy">
+ <email>proxy-maint@gentoo.org</email>
+ <name>Proxy Maintainers</name>
+ </maintainer>
+ <longdescription lang="en">
+ Luakit is a highly configurable browser framework based on the WebKit
+ web content engine and the GTK+ toolkit. It is very fast, extensible
+ with Lua, and licensed under the GNU GPLv3 license.
+ It is primarily targeted at power users, developers and anyone who wants
+ to have fine-grained control over their web browser's behaviour and
+ interface.
+ </longdescription>
+ <upstream>
+ <remote-id type="github">luakit/luakit</remote-id>
+ </upstream>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-client/luakit/
@ 2021-06-08 13:24 Joonas Niilola
0 siblings, 0 replies; 17+ messages in thread
From: Joonas Niilola @ 2021-06-08 13:24 UTC (permalink / raw
To: gentoo-commits
commit: e21bf5fc5398e5cccec3e4db94fecc8f02b89bd4
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 8 13:23:41 2021 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Tue Jun 8 13:24:05 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e21bf5fc
www-client/luakit: sync live
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
www-client/luakit/luakit-9999.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/www-client/luakit/luakit-9999.ebuild b/www-client/luakit/luakit-9999.ebuild
index c9e270416ac..4898eed6a66 100644
--- a/www-client/luakit/luakit-9999.ebuild
+++ b/www-client/luakit/luakit-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -18,7 +18,7 @@ else
KEYWORDS="~amd64"
fi
-LICENSE="GPL-3"
+LICENSE="GPL-3+"
SLOT="0"
IUSE="doc test"
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-client/luakit/
@ 2021-12-27 17:37 Arthur Zamarin
0 siblings, 0 replies; 17+ messages in thread
From: Arthur Zamarin @ 2021-12-27 17:37 UTC (permalink / raw
To: gentoo-commits
commit: 3542c9c825babdbf7710124caa91eef216793c43
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 27 17:37:39 2021 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Mon Dec 27 17:37:39 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3542c9c8
www-client/luakit: Keyword 2.3 arm64, #829784
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
www-client/luakit/luakit-2.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/www-client/luakit/luakit-2.3.ebuild b/www-client/luakit/luakit-2.3.ebuild
index 4898eed6a661..0956e99f0f2e 100644
--- a/www-client/luakit/luakit-2.3.ebuild
+++ b/www-client/luakit/luakit-2.3.ebuild
@@ -15,7 +15,7 @@ if [[ ${PV} == 9999 ]]; then
EGIT_REPO_URI="https://github.com/luakit/luakit.git"
else
SRC_URI="https://github.com/luakit/luakit/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64"
+ KEYWORDS="~amd64 ~arm64"
fi
LICENSE="GPL-3+"
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-client/luakit/
@ 2023-03-16 23:51 Sam James
0 siblings, 0 replies; 17+ messages in thread
From: Sam James @ 2023-03-16 23:51 UTC (permalink / raw
To: gentoo-commits
commit: 7443350a860b025b89a7f1e501a6ee630f0344f3
Author: Oz Tiram <oz.tiram <AT> gmail <DOT> com>
AuthorDate: Mon Feb 27 14:07:08 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Mar 16 23:50:36 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7443350a
www-client/luakit: add 2.3.3
Closes: https://bugs.gentoo.org/900775
Bug: https://bugs.gentoo.org/893714
Signed-off-by: Oz Tiram <oz.tiram <AT> gmail.com>
Signed-off-by: Sam James <sam <AT> gentoo.org>
www-client/luakit/Manifest | 1 +
www-client/luakit/luakit-2.3.3.ebuild | 87 +++++++++++++++++++++++++++++++++++
2 files changed, 88 insertions(+)
diff --git a/www-client/luakit/Manifest b/www-client/luakit/Manifest
index 636495d9404f..7d4a8cc9f198 100644
--- a/www-client/luakit/Manifest
+++ b/www-client/luakit/Manifest
@@ -1,2 +1,3 @@
DIST luakit-2.2.1.tar.gz 488845 BLAKE2B 2bed592f7d56fc4b5bad4fee3563805954c6211222e25344d01430ef9f2921c240e9cb3c735564fae66d0739d50da41a90309c7dba3ba9f4631d880b9a47e4b1 SHA512 9a055c1541f31027805d3da2604d98c0193a9c2874099fc3ab3ef08c645a8e91b8504d1162e86cbd29a5e5e0a3c54b3154299708f864d135d8640bcc3866674b
+DIST luakit-2.3.3.tar.gz 507343 BLAKE2B 4b9c3b3e4d5ff50f1c7409cf8f77ca7c81032f13051c3cca2aef4f794ee159fd12c5bfe0706e74414056899ef64330e888fe141256e52bc6d89eb572cca975e0 SHA512 ae5088541118c693db4a90f7e727d1f4094b56d4ea4cd51d2019351ff6b44672a1d7b9f80b351a37767556564b68633d815649ceaa4d8bd3b966a20a155ba2b2
DIST luakit-2.3.tar.gz 497470 BLAKE2B 980eabba255a83a26acf565df170907805df5eb6ea7bfc978c5a180c27575d7ebadec7c97ba7af1a60cdc08654f4c4ca1967b25272dd4788a553815f91cc1502 SHA512 98a473bcafbd082093689fd58b8c9828e3d79b8ae367ea4d030bb2b1671bf4f61a4f07fe57b99e6c69c40e26ad8b96b88b67e48ce085187923a1a1d976bdcee3
diff --git a/www-client/luakit/luakit-2.3.3.ebuild b/www-client/luakit/luakit-2.3.3.ebuild
new file mode 100644
index 000000000000..4c994069bf52
--- /dev/null
+++ b/www-client/luakit/luakit-2.3.3.ebuild
@@ -0,0 +1,87 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+LUA_COMPAT=( lua5-1 luajit )
+
+inherit lua-single toolchain-funcs xdg
+
+DESCRIPTION="A fast, extensible, and customizable web browser"
+HOMEPAGE="https://luakit.github.io/luakit"
+
+SRC_URI="https://github.com/luakit/luakit/archive/${PV}.tar.gz -> ${P}.tar.gz"
+KEYWORDS="~amd64 ~arm64"
+
+LICENSE="GPL-3+"
+SLOT="0"
+IUSE="doc test"
+
+REQUIRED_USE="${LUA_REQUIRED_USE}"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+ dev-db/sqlite:3
+ dev-libs/glib:2
+ net-libs/webkit-gtk:4.1=
+ x11-libs/gtk+:3
+ ${LUA_DEPS}
+ $(lua_gen_cond_dep '
+ dev-lua/luafilesystem[${LUA_USEDEP}]
+ ')
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+ virtual/pkgconfig
+ doc? (
+ dev-lua/luafilesystem
+ app-doc/doxygen
+ media-gfx/graphviz
+ )
+ test? (
+ $(lua_gen_cond_dep '
+ dev-lua/luassert[${LUA_USEDEP}]
+ dev-lua/luacheck[${LUA_USEDEP}]
+ ')
+ x11-base/xorg-server[xvfb]
+ )
+"
+src_configure() {
+ export LUA_BIN_NAME=${ELUA}
+ export LUA_PKG_NAME=${ELUA}
+ tc-export CC PKG_CONFIG
+}
+
+src_compile() {
+ emake \
+ PREFIX="${EPREFIX}/usr" \
+ USE_LUAJIT=$(usex lua_single_target_luajit 1 0) \
+ ${PN} ${PN}.so
+
+ use doc && emake doc
+}
+
+src_test() {
+ local failing_test
+ for failing_test in test_clib_luakit test_image_css; do
+ mv tests/async/${failing_test}.lua{,.disabled} || die
+ done
+
+ emake \
+ USE_LUAJIT=$(usex lua_single_target_luajit 1 0) \
+ run-tests
+}
+
+src_install() {
+ emake \
+ DESTDIR="${ED}" \
+ DOCDIR="${EPREFIX}/usr/share/doc/${PF}" \
+ PREFIX="${EPREFIX}/usr" \
+ USE_LUAJIT=$(usex lua_single_target_luajit 1 0) \
+ XDGPREFIX="${EPREFIX}/etc/xdg" \
+ install
+
+ rm "${ED}/usr/share/doc/${PF}/COPYING.GPLv3" || die
+
+ use doc && dodoc -r doc/html
+}
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-client/luakit/
@ 2023-03-16 23:51 Sam James
0 siblings, 0 replies; 17+ messages in thread
From: Sam James @ 2023-03-16 23:51 UTC (permalink / raw
To: gentoo-commits
commit: 882c8eede53797cdf10d4e6c0df8ded5bfccfd45
Author: Oz Tiram <oz.tiram <AT> gmail <DOT> com>
AuthorDate: Mon Feb 27 14:08:14 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Mar 16 23:50:37 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=882c8eed
www-client/luakit: drop 2.2.1-r100, 2.3
Signed-off-by: Oz Tiram <oz.tiram <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/29832
Signed-off-by: Sam James <sam <AT> gentoo.org>
www-client/luakit/Manifest | 2 -
www-client/luakit/luakit-2.2.1-r100.ebuild | 93 ------------------------------
www-client/luakit/luakit-2.3.ebuild | 92 -----------------------------
3 files changed, 187 deletions(-)
diff --git a/www-client/luakit/Manifest b/www-client/luakit/Manifest
index 7d4a8cc9f198..8df8b4ce7c7f 100644
--- a/www-client/luakit/Manifest
+++ b/www-client/luakit/Manifest
@@ -1,3 +1 @@
-DIST luakit-2.2.1.tar.gz 488845 BLAKE2B 2bed592f7d56fc4b5bad4fee3563805954c6211222e25344d01430ef9f2921c240e9cb3c735564fae66d0739d50da41a90309c7dba3ba9f4631d880b9a47e4b1 SHA512 9a055c1541f31027805d3da2604d98c0193a9c2874099fc3ab3ef08c645a8e91b8504d1162e86cbd29a5e5e0a3c54b3154299708f864d135d8640bcc3866674b
DIST luakit-2.3.3.tar.gz 507343 BLAKE2B 4b9c3b3e4d5ff50f1c7409cf8f77ca7c81032f13051c3cca2aef4f794ee159fd12c5bfe0706e74414056899ef64330e888fe141256e52bc6d89eb572cca975e0 SHA512 ae5088541118c693db4a90f7e727d1f4094b56d4ea4cd51d2019351ff6b44672a1d7b9f80b351a37767556564b68633d815649ceaa4d8bd3b966a20a155ba2b2
-DIST luakit-2.3.tar.gz 497470 BLAKE2B 980eabba255a83a26acf565df170907805df5eb6ea7bfc978c5a180c27575d7ebadec7c97ba7af1a60cdc08654f4c4ca1967b25272dd4788a553815f91cc1502 SHA512 98a473bcafbd082093689fd58b8c9828e3d79b8ae367ea4d030bb2b1671bf4f61a4f07fe57b99e6c69c40e26ad8b96b88b67e48ce085187923a1a1d976bdcee3
diff --git a/www-client/luakit/luakit-2.2.1-r100.ebuild b/www-client/luakit/luakit-2.2.1-r100.ebuild
deleted file mode 100644
index b1ab4c1af055..000000000000
--- a/www-client/luakit/luakit-2.2.1-r100.ebuild
+++ /dev/null
@@ -1,93 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-LUA_COMPAT=( lua5-1 luajit )
-
-inherit lua-single toolchain-funcs xdg
-
-DESCRIPTION="A fast, extensible, and customizable web browser"
-HOMEPAGE="https://luakit.github.io/luakit"
-
-if [[ ${PV} == 9999 ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/luakit/luakit.git"
-else
- SRC_URI="https://github.com/luakit/luakit/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64"
-fi
-
-LICENSE="GPL-3"
-SLOT="0"
-IUSE="doc test"
-
-REQUIRED_USE="${LUA_REQUIRED_USE}"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- dev-db/sqlite:3
- dev-libs/glib:2
- net-libs/webkit-gtk:4=
- x11-libs/gtk+:3
- ${LUA_DEPS}
- $(lua_gen_cond_dep '
- dev-lua/luafilesystem[${LUA_USEDEP}]
- ')
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
- virtual/pkgconfig
- doc? ( app-doc/doxygen )
- test? (
- $(lua_gen_cond_dep '
- dev-lua/luassert[${LUA_USEDEP}]
- dev-lua/luacheck[${LUA_USEDEP}]
- ')
- x11-base/xorg-server[xvfb]
- )
-"
-PATCHES=(
- "${FILESDIR}"/${PN}-2.2.1-make.patch
- "${FILESDIR}"/${PN}-2.2.1-pkg-config.patch
-)
-
-src_configure() {
- export LUA_BIN_NAME=${ELUA}
- export LUA_PKG_NAME=${ELUA}
- tc-export CC PKG_CONFIG
-}
-
-src_compile() {
- emake \
- PREFIX="${EPREFIX}/usr" \
- USE_LUAJIT=$(usex lua_single_target_luajit 1 0) \
- ${PN} ${PN}.so
-
- use doc && emake doc
-}
-
-src_test() {
- local failing_test
- for failing_test in test_clib_luakit test_image_css; do
- mv tests/async/${failing_test}.lua{,.disabled} || die
- done
-
- emake \
- USE_LUAJIT=$(usex lua_single_target_luajit 1 0) \
- run-tests
-}
-
-src_install() {
- emake \
- DESTDIR="${ED}" \
- DOCDIR="${EPREFIX}/usr/share/doc/${PF}" \
- PREFIX="${EPREFIX}/usr" \
- USE_LUAJIT=$(usex lua_single_target_luajit 1 0) \
- XDGPREFIX="${EPREFIX}/etc/xdg" \
- install
-
- rm "${ED}/usr/share/doc/${PF}/COPYING.GPLv3" || die
-
- use doc && dodoc -r doc/html
-}
diff --git a/www-client/luakit/luakit-2.3.ebuild b/www-client/luakit/luakit-2.3.ebuild
deleted file mode 100644
index 0956e99f0f2e..000000000000
--- a/www-client/luakit/luakit-2.3.ebuild
+++ /dev/null
@@ -1,92 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-LUA_COMPAT=( lua5-1 luajit )
-
-inherit lua-single toolchain-funcs xdg
-
-DESCRIPTION="A fast, extensible, and customizable web browser"
-HOMEPAGE="https://luakit.github.io/luakit"
-
-if [[ ${PV} == 9999 ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/luakit/luakit.git"
-else
- SRC_URI="https://github.com/luakit/luakit/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~arm64"
-fi
-
-LICENSE="GPL-3+"
-SLOT="0"
-IUSE="doc test"
-
-REQUIRED_USE="${LUA_REQUIRED_USE}"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- dev-db/sqlite:3
- dev-libs/glib:2
- net-libs/webkit-gtk:4=
- x11-libs/gtk+:3
- ${LUA_DEPS}
- $(lua_gen_cond_dep '
- dev-lua/luafilesystem[${LUA_USEDEP}]
- ')
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
- virtual/pkgconfig
- doc? ( app-doc/doxygen )
- test? (
- $(lua_gen_cond_dep '
- dev-lua/luassert[${LUA_USEDEP}]
- dev-lua/luacheck[${LUA_USEDEP}]
- ')
- x11-base/xorg-server[xvfb]
- )
-"
-PATCHES=(
- "${FILESDIR}"/${PN}-2.2.1-make.patch
-)
-
-src_configure() {
- export LUA_BIN_NAME=${ELUA}
- export LUA_PKG_NAME=${ELUA}
- tc-export CC PKG_CONFIG
-}
-
-src_compile() {
- emake \
- PREFIX="${EPREFIX}/usr" \
- USE_LUAJIT=$(usex lua_single_target_luajit 1 0) \
- ${PN} ${PN}.so
-
- use doc && emake doc
-}
-
-src_test() {
- local failing_test
- for failing_test in test_clib_luakit test_image_css; do
- mv tests/async/${failing_test}.lua{,.disabled} || die
- done
-
- emake \
- USE_LUAJIT=$(usex lua_single_target_luajit 1 0) \
- run-tests
-}
-
-src_install() {
- emake \
- DESTDIR="${ED}" \
- DOCDIR="${EPREFIX}/usr/share/doc/${PF}" \
- PREFIX="${EPREFIX}/usr" \
- USE_LUAJIT=$(usex lua_single_target_luajit 1 0) \
- XDGPREFIX="${EPREFIX}/etc/xdg" \
- install
-
- rm "${ED}/usr/share/doc/${PF}/COPYING.GPLv3" || die
-
- use doc && dodoc -r doc/html
-}
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-client/luakit/
@ 2023-03-17 0:07 Sam James
0 siblings, 0 replies; 17+ messages in thread
From: Sam James @ 2023-03-17 0:07 UTC (permalink / raw
To: gentoo-commits
commit: f1ae7180cb6f538c590784805f4e833d5a4dd239
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 17 00:06:34 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Mar 17 00:06:39 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1ae7180
www-client/luakit: drop 9999
Out of sync and very outdated.
Signed-off-by: Sam James <sam <AT> gentoo.org>
www-client/luakit/luakit-9999.ebuild | 92 ------------------------------------
1 file changed, 92 deletions(-)
diff --git a/www-client/luakit/luakit-9999.ebuild b/www-client/luakit/luakit-9999.ebuild
deleted file mode 100644
index 81da040c1b33..000000000000
--- a/www-client/luakit/luakit-9999.ebuild
+++ /dev/null
@@ -1,92 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-LUA_COMPAT=( lua5-1 luajit )
-
-inherit lua-single toolchain-funcs xdg
-
-DESCRIPTION="A fast, extensible, and customizable web browser"
-HOMEPAGE="https://luakit.github.io/luakit"
-
-if [[ ${PV} == 9999 ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/luakit/luakit.git"
-else
- SRC_URI="https://github.com/luakit/luakit/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64"
-fi
-
-LICENSE="GPL-3+"
-SLOT="0"
-IUSE="doc test"
-
-REQUIRED_USE="${LUA_REQUIRED_USE}"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- dev-db/sqlite:3
- dev-libs/glib:2
- net-libs/webkit-gtk:4=
- x11-libs/gtk+:3
- ${LUA_DEPS}
- $(lua_gen_cond_dep '
- dev-lua/luafilesystem[${LUA_USEDEP}]
- ')
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
- virtual/pkgconfig
- doc? ( app-doc/doxygen )
- test? (
- $(lua_gen_cond_dep '
- dev-lua/luassert[${LUA_USEDEP}]
- dev-lua/luacheck[${LUA_USEDEP}]
- ')
- x11-base/xorg-server[xvfb]
- )
-"
-PATCHES=(
- "${FILESDIR}"/${PN}-9999-make.patch
-)
-
-src_configure() {
- export LUA_BIN_NAME=${ELUA}
- export LUA_PKG_NAME=${ELUA}
- tc-export CC PKG_CONFIG
-}
-
-src_compile() {
- emake \
- PREFIX="${EPREFIX}/usr" \
- USE_LUAJIT=$(usex lua_single_target_luajit 1 0) \
- ${PN} ${PN}.so
-
- use doc && emake doc
-}
-
-src_test() {
- local failing_test
- for failing_test in test_clib_luakit test_image_css; do
- mv tests/async/${failing_test}.lua{,.disabled} || die
- done
-
- emake \
- USE_LUAJIT=$(usex lua_single_target_luajit 1 0) \
- run-tests
-}
-
-src_install() {
- emake \
- DESTDIR="${ED}" \
- DOCDIR="${EPREFIX}/usr/share/doc/${PF}" \
- PREFIX="${EPREFIX}/usr" \
- USE_LUAJIT=$(usex lua_single_target_luajit 1 0) \
- XDGPREFIX="${EPREFIX}/etc/xdg" \
- install
-
- rm "${ED}/usr/share/doc/${PF}/COPYING.GPLv3" || die
-
- use doc && dodoc -r doc/html
-}
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-client/luakit/
@ 2023-03-22 3:12 Sam James
0 siblings, 0 replies; 17+ messages in thread
From: Sam James @ 2023-03-22 3:12 UTC (permalink / raw
To: gentoo-commits
commit: 99493f018e1d7a902f163cf2f8ee3a0d434181fb
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 22 03:12:00 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Mar 22 03:12:00 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99493f01
www-client/luakit: fix webkit-gtk dep
It doesn't actually support 4.1 right now.
Closes: https://bugs.gentoo.org/902067
Bug: https://bugs.gentoo.org/893714
Signed-off-by: Sam James <sam <AT> gentoo.org>
www-client/luakit/{luakit-2.3.3.ebuild => luakit-2.3.3-r1.ebuild} | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/www-client/luakit/luakit-2.3.3.ebuild b/www-client/luakit/luakit-2.3.3-r1.ebuild
similarity index 98%
rename from www-client/luakit/luakit-2.3.3.ebuild
rename to www-client/luakit/luakit-2.3.3-r1.ebuild
index 4c994069bf52..b573bb34668b 100644
--- a/www-client/luakit/luakit-2.3.3.ebuild
+++ b/www-client/luakit/luakit-2.3.3-r1.ebuild
@@ -23,7 +23,7 @@ RESTRICT="!test? ( test )"
RDEPEND="
dev-db/sqlite:3
dev-libs/glib:2
- net-libs/webkit-gtk:4.1=
+ net-libs/webkit-gtk:4=
x11-libs/gtk+:3
${LUA_DEPS}
$(lua_gen_cond_dep '
^ permalink raw reply related [flat|nested] 17+ messages in thread
end of thread, other threads:[~2023-03-22 3:12 UTC | newest]
Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-05-23 18:30 [gentoo-commits] repo/gentoo:master commit in: www-client/luakit/ Ben Kohler
-- strict thread matches above, loose matches on Subject: below --
2023-03-22 3:12 Sam James
2023-03-17 0:07 Sam James
2023-03-16 23:51 Sam James
2023-03-16 23:51 Sam James
2021-12-27 17:37 Arthur Zamarin
2021-06-08 13:24 Joonas Niilola
2021-06-08 13:24 Joonas Niilola
2021-06-08 13:24 Joonas Niilola
2021-01-25 17:38 Marek Szuba
2021-01-17 21:25 Marek Szuba
2020-11-29 17:09 Marek Szuba
2020-09-24 13:49 Jeroen Roovers
2020-09-24 9:46 Jeroen Roovers
2020-04-01 14:38 Joonas Niilola
2019-05-23 18:14 Ben Kohler
2018-07-07 12:15 Jonas Stein
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox