* [gentoo-commits] repo/gentoo:master commit in: dev-lua/luacov/
@ 2015-11-06 2:35 William Hubbs
0 siblings, 0 replies; 13+ messages in thread
From: William Hubbs @ 2015-11-06 2:35 UTC (permalink / raw
To: gentoo-commits
commit: c260d5756e9312619e86eb26dd863b30e2d349b7
Author: William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 6 02:31:57 2015 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Fri Nov 6 02:31:57 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c260d575
dev-lua/luacov: repoman fix -- add slot operator
dev-lua/luacov/luacov-0.8.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-lua/luacov/luacov-0.8.ebuild b/dev-lua/luacov/luacov-0.8.ebuild
index d1fd6c1..c21d837 100644
--- a/dev-lua/luacov/luacov-0.8.ebuild
+++ b/dev-lua/luacov/luacov-0.8.ebuild
@@ -15,7 +15,7 @@ SLOT="0"
KEYWORDS="~amd64"
IUSE=""
-COMMON_DEPEND=">=dev-lang/lua-5.1"
+COMMON_DEPEND=">=dev-lang/lua-5.1:="
DEPEND="${COMMON_DEPEND}
virtual/pkgconfig"
RDEPEND="${COMMON_DEPEND}"
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-lua/luacov/
@ 2020-12-03 13:50 Marek Szuba
0 siblings, 0 replies; 13+ messages in thread
From: Marek Szuba @ 2020-12-03 13:50 UTC (permalink / raw
To: gentoo-commits
commit: cd15421e2e0354248b49773b603d9fa84531fc63
Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 3 13:41:45 2020 +0000
Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Thu Dec 3 13:50:10 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd15421e
dev-lua/luacov: limit unmigrated ebuilds to dev-lang/lua:0
Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
dev-lua/luacov/luacov-0.8.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-lua/luacov/luacov-0.8.ebuild b/dev-lua/luacov/luacov-0.8.ebuild
index 280c33a87c1..97c531edf6c 100644
--- a/dev-lua/luacov/luacov-0.8.ebuild
+++ b/dev-lua/luacov/luacov-0.8.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=5
@@ -14,7 +14,7 @@ SLOT="0"
KEYWORDS="~amd64"
IUSE=""
-COMMON_DEPEND=">=dev-lang/lua-5.1:="
+COMMON_DEPEND=">=dev-lang/lua-5.1:0="
DEPEND="${COMMON_DEPEND}
virtual/pkgconfig"
RDEPEND="${COMMON_DEPEND}"
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-lua/luacov/
@ 2021-01-27 19:48 Conrad Kostecki
0 siblings, 0 replies; 13+ messages in thread
From: Conrad Kostecki @ 2021-01-27 19:48 UTC (permalink / raw
To: gentoo-commits
commit: 0d04d8d504b484d3652d5a896bdb8e781e45fdf4
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 24 18:04:41 2021 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Wed Jan 27 19:40:19 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d04d8d5
dev-lua/luacov: drop old version
Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
dev-lua/luacov/luacov-0.14.0.ebuild | 46 -------------------------------------
1 file changed, 46 deletions(-)
diff --git a/dev-lua/luacov/luacov-0.14.0.ebuild b/dev-lua/luacov/luacov-0.14.0.ebuild
deleted file mode 100644
index ab0c2bbc60d..00000000000
--- a/dev-lua/luacov/luacov-0.14.0.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit toolchain-funcs
-
-DESCRIPTION="A simple coverage analyzer for Lua scripts"
-HOMEPAGE="https://github.com/keplerproject/luacov"
-SRC_URI="https://github.com/keplerproject/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
-IUSE="luajit test"
-REQUIRED_USE="${LUA_REQUIRED_USE}"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- luajit? ( dev-lang/luajit:2 )
- !luajit? ( dev-lang/lua:0 )
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
- virtual/pkgconfig
- test? (
- dev-lua/busted
- ${RDEPEND}
- )
-"
-
-HTML_DOCS=( "doc/." )
-
-src_test() {
- busted --lua="$(usex luajit 'luajit' 'lua')" || die
-}
-
-src_install() {
- dobin src/bin/luacov
-
- insinto "$($(tc-getPKG_CONFIG) --variable INSTALL_LMOD $(usex luajit 'luajit' 'lua'))"
- doins src/luacov.lua
- doins -r src/luacov
-
- einstalldocs
-}
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-lua/luacov/
@ 2021-04-17 12:24 Conrad Kostecki
0 siblings, 0 replies; 13+ messages in thread
From: Conrad Kostecki @ 2021-04-17 12:24 UTC (permalink / raw
To: gentoo-commits
commit: 79812e97aad2eddb47a85351c2dc601230f7132c
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 17 12:18:43 2021 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sat Apr 17 12:24:13 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79812e97
dev-lua/luacov: add <stabilize-allarches/>
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
dev-lua/luacov/metadata.xml | 1 +
1 file changed, 1 insertion(+)
diff --git a/dev-lua/luacov/metadata.xml b/dev-lua/luacov/metadata.xml
index 09de5599f7c..7b9c5abd463 100644
--- a/dev-lua/luacov/metadata.xml
+++ b/dev-lua/luacov/metadata.xml
@@ -9,6 +9,7 @@
<email>conikost@gentoo.org</email>
<name>Conrad Kostecki</name>
</maintainer>
+ <stabilize-allarches/>
<upstream>
<remote-id type="github">keplerproject/luacov</remote-id>
</upstream>
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-lua/luacov/
@ 2021-04-20 21:20 Sergei Trofimovich
0 siblings, 0 replies; 13+ messages in thread
From: Sergei Trofimovich @ 2021-04-20 21:20 UTC (permalink / raw
To: gentoo-commits
commit: bd4e8e4a81a0a832e4cba49cd30380fd12e9c0cb
Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 20 21:16:00 2021 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Tue Apr 20 21:20:34 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd4e8e4a
dev-lua/luacov: keyworded 0.14.0-r100 for ia64
keyworded wrt bug #783420
Package-Manager: Portage-3.0.18, Repoman-3.0.3
RepoMan-Options: --include-arches="ia64"
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
dev-lua/luacov/luacov-0.14.0-r100.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-lua/luacov/luacov-0.14.0-r100.ebuild b/dev-lua/luacov/luacov-0.14.0-r100.ebuild
index 9f9d91d40d6..4ac32d2c415 100644
--- a/dev-lua/luacov/luacov-0.14.0-r100.ebuild
+++ b/dev-lua/luacov/luacov-0.14.0-r100.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
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/keplerproject/${PN}/archive/v${PV}.tar.gz -> ${P}.ta
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~x86"
IUSE="test"
REQUIRED_USE="${LUA_REQUIRED_USE}"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-lua/luacov/
@ 2021-04-21 20:29 Conrad Kostecki
0 siblings, 0 replies; 13+ messages in thread
From: Conrad Kostecki @ 2021-04-21 20:29 UTC (permalink / raw
To: gentoo-commits
commit: b69a05a1c933afb16f3baf94efc837c36890624d
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 21 20:22:25 2021 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Wed Apr 21 20:29:38 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b69a05a1
dev-lua/luacov: add ~ppc ~ppc64 keyword
Bug: https://bugs.gentoo.org/783423
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
dev-lua/luacov/luacov-0.14.0-r100.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-lua/luacov/luacov-0.14.0-r100.ebuild b/dev-lua/luacov/luacov-0.14.0-r100.ebuild
index 4ac32d2c415..14729733d8e 100644
--- a/dev-lua/luacov/luacov-0.14.0-r100.ebuild
+++ b/dev-lua/luacov/luacov-0.14.0-r100.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/keplerproject/${PN}/archive/v${PV}.tar.gz -> ${P}.ta
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86"
IUSE="test"
REQUIRED_USE="${LUA_REQUIRED_USE}"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-lua/luacov/
@ 2021-04-21 21:03 Conrad Kostecki
0 siblings, 0 replies; 13+ messages in thread
From: Conrad Kostecki @ 2021-04-21 21:03 UTC (permalink / raw
To: gentoo-commits
commit: 35c7b656bc273fde6cca26a775af49a7085dbd94
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 21 20:57:14 2021 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Wed Apr 21 21:02:51 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35c7b656
dev-lua/luacov: add missing cliargs for test
Bug: https://bugs.gentoo.org/784848
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
dev-lua/luacov/luacov-0.14.0-r100.ebuild | 1 +
1 file changed, 1 insertion(+)
diff --git a/dev-lua/luacov/luacov-0.14.0-r100.ebuild b/dev-lua/luacov/luacov-0.14.0-r100.ebuild
index 14729733d8e..e9d0694d683 100644
--- a/dev-lua/luacov/luacov-0.14.0-r100.ebuild
+++ b/dev-lua/luacov/luacov-0.14.0-r100.ebuild
@@ -24,6 +24,7 @@ BDEPEND="
virtual/pkgconfig
test? (
dev-lua/busted[${LUA_USEDEP}]
+ dev-lua/lua_cliargs[${LUA_USEDEP}]
${RDEPEND}
)
"
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-lua/luacov/
@ 2021-04-22 19:31 Sergei Trofimovich
0 siblings, 0 replies; 13+ messages in thread
From: Sergei Trofimovich @ 2021-04-22 19:31 UTC (permalink / raw
To: gentoo-commits
commit: 6a3befcacafbdb8d07f5e89cc4f2eb144aa53da3
Author: Rolf Eike Beer <eike <AT> sf-mail <DOT> de>
AuthorDate: Thu Apr 22 19:26:53 2021 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Thu Apr 22 19:30:52 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a3befca
dev-lua/luacov: keyworded 0.14.0-r100 for hppa/sparc, bug #783420
Package-Manager: Portage-3.0.17, Repoman-3.0.2
RepoMan-Options: --include-arches="hppa sparc"
Signed-off-by: Rolf Eike Beer <eike <AT> sf-mail.de>
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
dev-lua/luacov/luacov-0.14.0-r100.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-lua/luacov/luacov-0.14.0-r100.ebuild b/dev-lua/luacov/luacov-0.14.0-r100.ebuild
index e9d0694d683..b8755276b85 100644
--- a/dev-lua/luacov/luacov-0.14.0-r100.ebuild
+++ b/dev-lua/luacov/luacov-0.14.0-r100.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/keplerproject/${PN}/archive/v${PV}.tar.gz -> ${P}.ta
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="test"
REQUIRED_USE="${LUA_REQUIRED_USE}"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-lua/luacov/
@ 2022-02-15 22:11 Patrick McLean
0 siblings, 0 replies; 13+ messages in thread
From: Patrick McLean @ 2022-02-15 22:11 UTC (permalink / raw
To: gentoo-commits
commit: b6f6651b9c7c13edfa2e500521247453045ac2fc
Author: Patrick McLean <chutzpah <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 15 22:11:26 2022 +0000
Commit: Patrick McLean <chutzpah <AT> gentoo <DOT> org>
CommitDate: Tue Feb 15 22:11:26 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6f6651b
dev-lua/luacov: Fix name of doc dir
Closes: https://bugs.gentoo.org/833023
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Patrick McLean <chutzpah <AT> gentoo.org>
dev-lua/luacov/luacov-0.15.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-lua/luacov/luacov-0.15.0.ebuild b/dev-lua/luacov/luacov-0.15.0.ebuild
index 3f80f11204be..6ebf602b4270 100644
--- a/dev-lua/luacov/luacov-0.15.0.ebuild
+++ b/dev-lua/luacov/luacov-0.15.0.ebuild
@@ -29,7 +29,7 @@ BDEPEND="
)
"
-HTML_DOCS=( "doc/." )
+HTML_DOCS=( "docs/." )
lua_src_test() {
busted --lua=${ELUA} || die
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-lua/luacov/
@ 2024-06-10 20:39 William Hubbs
0 siblings, 0 replies; 13+ messages in thread
From: William Hubbs @ 2024-06-10 20:39 UTC (permalink / raw
To: gentoo-commits
commit: 92c8d718b1bb2f54a3a9c9f5610e804feaaa1be6
Author: William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 10 20:35:04 2024 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Mon Jun 10 20:37:14 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92c8d718
dev-lua/luacov: drop myself as a maintainer
Signed-off-by: William Hubbs <williamh <AT> gentoo.org>
dev-lua/luacov/metadata.xml | 4 ----
1 file changed, 4 deletions(-)
diff --git a/dev-lua/luacov/metadata.xml b/dev-lua/luacov/metadata.xml
index 8678dcf1b480..ce977377719e 100644
--- a/dev-lua/luacov/metadata.xml
+++ b/dev-lua/luacov/metadata.xml
@@ -1,10 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <maintainer type="person">
- <email>williamh@gentoo.org</email>
- <name>William Hubbs</name>
- </maintainer>
<maintainer type="person">
<email>conikost@gentoo.org</email>
<name>Conrad Kostecki</name>
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-lua/luacov/
@ 2024-12-02 14:50 Sam James
0 siblings, 0 replies; 13+ messages in thread
From: Sam James @ 2024-12-02 14:50 UTC (permalink / raw
To: gentoo-commits
commit: 164a168d64a0ee75e002397d8bad534e31e4a69c
Author: Nicolas PARLANT <nicolas.parlant <AT> parhuet <DOT> fr>
AuthorDate: Mon Dec 2 10:36:27 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Dec 2 14:47:58 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=164a168d
dev-lua/luacov: enable lua5-4
See: https://github.com/lunarmodules/luacov/pull/83 https://github.com/lunarmodules/luacov/pull/84
Signed-off-by: Nicolas PARLANT <nicolas.parlant <AT> parhuet.fr>
Closes: https://github.com/gentoo/gentoo/pull/39558
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-lua/luacov/luacov-0.15.0.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-lua/luacov/luacov-0.15.0.ebuild b/dev-lua/luacov/luacov-0.15.0.ebuild
index 67a6b309406c..2e2ad21f6de0 100644
--- a/dev-lua/luacov/luacov-0.15.0.ebuild
+++ b/dev-lua/luacov/luacov-0.15.0.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
-LUA_COMPAT=( lua5-{1..3} luajit )
+LUA_COMPAT=( lua5-{1..4} luajit )
inherit lua
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-lua/luacov/
@ 2024-12-23 20:01 Conrad Kostecki
0 siblings, 0 replies; 13+ messages in thread
From: Conrad Kostecki @ 2024-12-23 20:01 UTC (permalink / raw
To: gentoo-commits
commit: 04fdd4235c30f945a5efb6416ac94645710c6b67
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 23 19:35:33 2024 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Mon Dec 23 19:35:33 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04fdd423
dev-lua/luacov: add 0.16.0
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
dev-lua/luacov/Manifest | 1 +
dev-lua/luacov/luacov-0.16.0.ebuild | 54 +++++++++++++++++++++++++++++++++++++
2 files changed, 55 insertions(+)
diff --git a/dev-lua/luacov/Manifest b/dev-lua/luacov/Manifest
index bf35ef5bb0e8..a179ee8bf228 100644
--- a/dev-lua/luacov/Manifest
+++ b/dev-lua/luacov/Manifest
@@ -1 +1,2 @@
DIST luacov-0.15.0.tar.gz 52571 BLAKE2B f9d12295739b1461a4b9d698990430a17b5e73608bec062bf614c5ed84d91b86e2de61031275e0c767f61fcb1da0747dc2587aa0d6ef5ec119f809bf947c74ab SHA512 cab02c540aad905db1fecd7f62545157c8ff9ea82f9ea602bff7b6093e3940a3a316e212a2efe30fa2439435dae6cd4005c2ee41de6b937d3e5f447bc2128a59
+DIST luacov-0.16.0.tar.gz 481029 BLAKE2B 7a5aee3b6b0f24636ea4bf8dddd5d3e1fc51c24f04e3db02b55737d193e9408e6e0fba7d99e95f184d47c5152c3eefc34ecbdc0ad2376903b6e228d666f4320d SHA512 a28112e7c0527246dc83edbb33d5dd072729ccfe8ade697830ba074426853e76edde3e0b58eb3f1dafba08749788f7058eaccb3f6d8f47caede41db11c4a779f
diff --git a/dev-lua/luacov/luacov-0.16.0.ebuild b/dev-lua/luacov/luacov-0.16.0.ebuild
new file mode 100644
index 000000000000..2e2ad21f6de0
--- /dev/null
+++ b/dev-lua/luacov/luacov-0.16.0.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+LUA_COMPAT=( lua5-{1..4} luajit )
+
+inherit lua
+
+DESCRIPTION="A simple coverage analyzer for Lua scripts"
+HOMEPAGE="https://github.com/keplerproject/luacov"
+SRC_URI="https://github.com/keplerproject/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
+IUSE="test"
+REQUIRED_USE="${LUA_REQUIRED_USE}"
+RESTRICT="!test? ( test )"
+
+RDEPEND="${LUA_DEPS}"
+DEPEND="${RDEPEND}"
+BDEPEND="
+ virtual/pkgconfig
+ test? (
+ dev-lua/busted[${LUA_USEDEP}]
+ dev-lua/lua_cliargs[${LUA_USEDEP}]
+ ${RDEPEND}
+ )
+"
+
+HTML_DOCS=( "docs/." )
+
+lua_src_test() {
+ busted --lua=${ELUA} || die
+}
+
+src_test() {
+ lua_foreach_impl lua_src_test
+}
+
+lua_src_install() {
+ insinto "$(lua_get_lmod_dir)"
+ doins src/luacov.lua
+ doins -r src/luacov
+}
+
+src_install() {
+ lua_foreach_impl lua_src_install
+
+ dobin src/bin/luacov
+
+ einstalldocs
+}
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-lua/luacov/
@ 2024-12-23 20:01 Conrad Kostecki
0 siblings, 0 replies; 13+ messages in thread
From: Conrad Kostecki @ 2024-12-23 20:01 UTC (permalink / raw
To: gentoo-commits
commit: ac6e6289219b922c4eca8aa3ed74e72837b9b800
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 23 19:36:08 2024 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Mon Dec 23 19:36:08 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac6e6289
dev-lua/luacov: drop 0.15.0
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
dev-lua/luacov/Manifest | 1 -
dev-lua/luacov/luacov-0.15.0.ebuild | 54 -------------------------------------
2 files changed, 55 deletions(-)
diff --git a/dev-lua/luacov/Manifest b/dev-lua/luacov/Manifest
index a179ee8bf228..7e95425c3720 100644
--- a/dev-lua/luacov/Manifest
+++ b/dev-lua/luacov/Manifest
@@ -1,2 +1 @@
-DIST luacov-0.15.0.tar.gz 52571 BLAKE2B f9d12295739b1461a4b9d698990430a17b5e73608bec062bf614c5ed84d91b86e2de61031275e0c767f61fcb1da0747dc2587aa0d6ef5ec119f809bf947c74ab SHA512 cab02c540aad905db1fecd7f62545157c8ff9ea82f9ea602bff7b6093e3940a3a316e212a2efe30fa2439435dae6cd4005c2ee41de6b937d3e5f447bc2128a59
DIST luacov-0.16.0.tar.gz 481029 BLAKE2B 7a5aee3b6b0f24636ea4bf8dddd5d3e1fc51c24f04e3db02b55737d193e9408e6e0fba7d99e95f184d47c5152c3eefc34ecbdc0ad2376903b6e228d666f4320d SHA512 a28112e7c0527246dc83edbb33d5dd072729ccfe8ade697830ba074426853e76edde3e0b58eb3f1dafba08749788f7058eaccb3f6d8f47caede41db11c4a779f
diff --git a/dev-lua/luacov/luacov-0.15.0.ebuild b/dev-lua/luacov/luacov-0.15.0.ebuild
deleted file mode 100644
index 2e2ad21f6de0..000000000000
--- a/dev-lua/luacov/luacov-0.15.0.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-LUA_COMPAT=( lua5-{1..4} luajit )
-
-inherit lua
-
-DESCRIPTION="A simple coverage analyzer for Lua scripts"
-HOMEPAGE="https://github.com/keplerproject/luacov"
-SRC_URI="https://github.com/keplerproject/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
-IUSE="test"
-REQUIRED_USE="${LUA_REQUIRED_USE}"
-RESTRICT="!test? ( test )"
-
-RDEPEND="${LUA_DEPS}"
-DEPEND="${RDEPEND}"
-BDEPEND="
- virtual/pkgconfig
- test? (
- dev-lua/busted[${LUA_USEDEP}]
- dev-lua/lua_cliargs[${LUA_USEDEP}]
- ${RDEPEND}
- )
-"
-
-HTML_DOCS=( "docs/." )
-
-lua_src_test() {
- busted --lua=${ELUA} || die
-}
-
-src_test() {
- lua_foreach_impl lua_src_test
-}
-
-lua_src_install() {
- insinto "$(lua_get_lmod_dir)"
- doins src/luacov.lua
- doins -r src/luacov
-}
-
-src_install() {
- lua_foreach_impl lua_src_install
-
- dobin src/bin/luacov
-
- einstalldocs
-}
^ permalink raw reply related [flat|nested] 13+ messages in thread
end of thread, other threads:[~2024-12-23 20:01 UTC | newest]
Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-23 20:01 [gentoo-commits] repo/gentoo:master commit in: dev-lua/luacov/ Conrad Kostecki
-- strict thread matches above, loose matches on Subject: below --
2024-12-23 20:01 Conrad Kostecki
2024-12-02 14:50 Sam James
2024-06-10 20:39 William Hubbs
2022-02-15 22:11 Patrick McLean
2021-04-22 19:31 Sergei Trofimovich
2021-04-21 21:03 Conrad Kostecki
2021-04-21 20:29 Conrad Kostecki
2021-04-20 21:20 Sergei Trofimovich
2021-04-17 12:24 Conrad Kostecki
2021-01-27 19:48 Conrad Kostecki
2020-12-03 13:50 Marek Szuba
2015-11-06 2:35 William Hubbs
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox