public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: www-apps/webmcp/
@ 2019-11-13 19:58 Aaron Bauman
  0 siblings, 0 replies; 6+ messages in thread
From: Aaron Bauman @ 2019-11-13 19:58 UTC (permalink / raw
  To: gentoo-commits

commit:     05671ef7df4883de7237cef69d8f82387b736861
Author:     Aaron Bauman <bman <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 13 19:54:49 2019 +0000
Commit:     Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Wed Nov 13 19:58:48 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05671ef7

www-apps/webmcp: drop old EAPI

Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>

 www-apps/webmcp/Manifest            |  1 -
 www-apps/webmcp/webmcp-1.2.5.ebuild | 65 -------------------------------------
 2 files changed, 66 deletions(-)

diff --git a/www-apps/webmcp/Manifest b/www-apps/webmcp/Manifest
index d470d414f68..a5d7a17c7d8 100644
--- a/www-apps/webmcp/Manifest
+++ b/www-apps/webmcp/Manifest
@@ -1,2 +1 @@
-DIST webmcp-v1.2.5.tar.gz 131003 BLAKE2B 362d06101db325841e2a2399041c5a13da6cca5750db08d2e5c06bc5a5402b87603ff218b9d6a8c5b9d78309dd2b097f91d5c0ea80f302afb36451e90870ff6c SHA512 40ce2f48c0e7362b7cb7a20a44c19d597fd919d98dbd2865aa6c1b5f9c41f593aee408309cf530a7cd0f94e2976ddda93816e723228a7285e689f13e31135589
 DIST webmcp-v1.2.6.tar.gz 132283 BLAKE2B ed5539b91eeb809a1e19b98f2dc8888c055ec547c95c53c0ea9232531bf9b8432ba6a0ad566a1d2fecbdcc056a52e42e99b973741fc44f923ea88369393c5ade SHA512 a233c312f85851c690f9b020e5df1fffb548c708199279021f384a36cf6e2b73a9b7bc2343c886ccc0e18aecf6d205e2a699fa2398b9bf0da587bc4f8a8f8556

diff --git a/www-apps/webmcp/webmcp-1.2.5.ebuild b/www-apps/webmcp/webmcp-1.2.5.ebuild
deleted file mode 100644
index 33c08e14666..00000000000
--- a/www-apps/webmcp/webmcp-1.2.5.ebuild
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit eutils toolchain-funcs
-
-MY_P=${PN}-v${PV}
-DESCRIPTION="Web application framework written in Lua and C"
-HOMEPAGE="http://www.public-software-group.org/webmcp"
-SRC_URI="http://www.public-software-group.org/pub/projects/${PN}/v${PV}/${MY_P}.tar.gz"
-
-LICENSE="HPND"
-KEYWORDS="~amd64"
-SLOT=0
-IUSE=""
-
-RDEPEND="dev-lang/lua
-	dev-db/postgresql"
-DEPEND="${RDEPEND}"
-
-S="${WORKDIR}"/${MY_P}
-
-src_prepare() {
-	epatch "${FILESDIR}"/${P}-gentoo.patch
-}
-
-src_compile() {
-	emake CC=$(tc-getCC) LD=$(tc-getCC)
-	# Dereference symlinks
-	cd framework
-	mkdir lib.link
-	mv lib/* lib.link
-	cp lib.link/* lib
-}
-
-src_install() {
-	into /usr/lib/${PN}
-	dolib.so framework/lib/*.so
-	for subdir in "" ".precompiled"; do
-		MY_DEST=/usr/lib/${PN}/framework${subdir}
-
-		cd framework${subdir}
-		exeinto ${MY_DEST}/accelerator
-		doexe accelerator/webmcp_accelerator.so
-		insinto ${MY_DEST}
-		doins -r env js
-		exeinto ${MY_DEST}/cgi-bin
-		doexe cgi-bin/webmcp*.lua
-		into ${MY_DEST}
-		dobin bin/*
-		insinto ${MY_DEST}/lib
-		doins lib/*.lua
-		cd ..
-
-		for file in extos.so mondelefant_native.so multirand.so; do
-			dosym ../../$(get_libdir)/$file ${MY_DEST}/lib/$file
-		done
-
-		insinto /usr/share/${PN}
-		doins -r demo-app${subdir}
-	done
-	dodoc doc/*sample.conf libraries/mondelefant/example.lua
-	dohtml doc/autodoc.html
-}


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: www-apps/webmcp/
@ 2020-06-28 20:51 Aaron Bauman
  0 siblings, 0 replies; 6+ messages in thread
From: Aaron Bauman @ 2020-06-28 20:51 UTC (permalink / raw
  To: gentoo-commits

commit:     4976a54d605432d84245c700661fd45a9853a9f0
Author:     Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Sun Jun 28 15:33:40 2020 +0000
Commit:     Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Sun Jun 28 20:51:15 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4976a54d

www-apps/webmcp: use HTTPS

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/16471
Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>

 www-apps/webmcp/webmcp-1.2.6.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/www-apps/webmcp/webmcp-1.2.6.ebuild b/www-apps/webmcp/webmcp-1.2.6.ebuild
index a156ac3bbf9..117dd6461db 100644
--- a/www-apps/webmcp/webmcp-1.2.6.ebuild
+++ b/www-apps/webmcp/webmcp-1.2.6.ebuild
@@ -7,8 +7,8 @@ inherit toolchain-funcs
 
 MY_P=${PN}-v${PV}
 DESCRIPTION="Web application framework written in Lua and C"
-HOMEPAGE="http://www.public-software-group.org/webmcp"
-SRC_URI="http://www.public-software-group.org/pub/projects/${PN}/v${PV}/${MY_P}.tar.gz"
+HOMEPAGE="https://www.public-software-group.org/webmcp"
+SRC_URI="https://www.public-software-group.org/pub/projects/${PN}/v${PV}/${MY_P}.tar.gz"
 
 LICENSE="HPND"
 KEYWORDS="~amd64"


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: www-apps/webmcp/
@ 2021-03-26  0:39 Conrad Kostecki
  0 siblings, 0 replies; 6+ messages in thread
From: Conrad Kostecki @ 2021-03-26  0:39 UTC (permalink / raw
  To: gentoo-commits

commit:     a170471d58d1dbd53a4576631775d3dbb09890a1
Author:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 26 00:35:46 2021 +0000
Commit:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Fri Mar 26 00:37:12 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a170471d

www-apps/webmcp: migrate to slotted lua

Closes: https://bugs.gentoo.org/752873
Package-Manager: Portage-3.0.16, Repoman-3.0.2
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>

 www-apps/webmcp/webmcp-1.2.6-r1.ebuild | 74 ++++++++++++++++++++++++++++++++++
 1 file changed, 74 insertions(+)

diff --git a/www-apps/webmcp/webmcp-1.2.6-r1.ebuild b/www-apps/webmcp/webmcp-1.2.6-r1.ebuild
new file mode 100644
index 00000000000..135b1a65ad3
--- /dev/null
+++ b/www-apps/webmcp/webmcp-1.2.6-r1.ebuild
@@ -0,0 +1,74 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+LUA_COMPAT=( lua5-{1..4} luajit )
+
+inherit lua-single toolchain-funcs
+
+MY_P=${PN}-v${PV}
+DESCRIPTION="Web application framework written in Lua and C"
+HOMEPAGE="https://www.public-software-group.org/webmcp"
+SRC_URI="https://www.public-software-group.org/pub/projects/${PN}/v${PV}/${MY_P}.tar.gz"
+
+LICENSE="HPND"
+KEYWORDS="~amd64"
+SLOT=0
+
+RDEPEND="
+	${LUA_DEPS}
+	dev-db/postgresql:=
+"
+DEPEND="${RDEPEND}"
+
+S="${WORKDIR}"/${MY_P}
+
+PATCHES=( "${FILESDIR}"/${P}-gentoo.patch )
+
+src_prepare() {
+	default
+
+	# Use correct LUA version
+	sed -e "s/-llua/$(lua_get_LIBS)/g" -i libraries/multirand/Makefile -i libraries/mondelefant/Makefile -i libraries/extos/Makefile || die
+}
+
+src_compile() {
+	emake CC="$(tc-getCC) $(lua_get_CFLAGS)" LD="$(tc-getCC)" MYLDFLAGS="${LDFLAGS}"
+	# Dereference symlinks
+	cd framework
+	mkdir lib.link
+	mv lib/* lib.link
+	cp lib.link/* lib
+}
+
+src_install() {
+	into /usr/lib/${PN}
+	dolib.so framework/lib/*.so
+	for subdir in "" ".precompiled"; do
+		MY_DEST=/usr/lib/${PN}/framework${subdir}
+
+		cd framework${subdir}
+		exeinto ${MY_DEST}/accelerator
+		doexe accelerator/webmcp_accelerator.so
+		insinto ${MY_DEST}
+		doins -r env js
+		exeinto ${MY_DEST}/cgi-bin
+		doexe cgi-bin/webmcp*.lua
+		into ${MY_DEST}
+		dobin bin/*
+		insinto ${MY_DEST}/lib
+		doins lib/*.lua
+		cd ..
+
+		for file in extos.so mondelefant_native.so multirand.so; do
+			dosym ../../$(get_libdir)/$file ${MY_DEST}/lib/$file
+		done
+
+		insinto /usr/share/${PN}
+		doins -r demo-app${subdir}
+	done
+	dodoc doc/*sample.conf libraries/mondelefant/example.lua
+	docinto html
+	dodoc doc/autodoc.html
+}


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: www-apps/webmcp/
@ 2021-03-26  0:39 Conrad Kostecki
  0 siblings, 0 replies; 6+ messages in thread
From: Conrad Kostecki @ 2021-03-26  0:39 UTC (permalink / raw
  To: gentoo-commits

commit:     2ec07d10de2c01f581eef3ea52438b93005a96a1
Author:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 26 00:37:02 2021 +0000
Commit:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Fri Mar 26 00:37:13 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ec07d10

www-apps/webmcp: drop old version

Dropping non slotted lua version.

Package-Manager: Portage-3.0.16, Repoman-3.0.2
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>

 www-apps/webmcp/webmcp-1.2.6.ebuild | 64 -------------------------------------
 1 file changed, 64 deletions(-)

diff --git a/www-apps/webmcp/webmcp-1.2.6.ebuild b/www-apps/webmcp/webmcp-1.2.6.ebuild
deleted file mode 100644
index 70f63e2a0bd..00000000000
--- a/www-apps/webmcp/webmcp-1.2.6.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit toolchain-funcs
-
-MY_P=${PN}-v${PV}
-DESCRIPTION="Web application framework written in Lua and C"
-HOMEPAGE="https://www.public-software-group.org/webmcp"
-SRC_URI="https://www.public-software-group.org/pub/projects/${PN}/v${PV}/${MY_P}.tar.gz"
-
-LICENSE="HPND"
-KEYWORDS="~amd64"
-SLOT=0
-IUSE=""
-
-RDEPEND="dev-lang/lua:0=
-	dev-db/postgresql:="
-DEPEND="${RDEPEND}"
-
-S="${WORKDIR}"/${MY_P}
-
-PATCHES=( "${FILESDIR}"/${P}-gentoo.patch )
-
-src_compile() {
-	emake CC=$(tc-getCC) LD=$(tc-getCC) MYLDFLAGS="${LDFLAGS}"
-	# Dereference symlinks
-	cd framework
-	mkdir lib.link
-	mv lib/* lib.link
-	cp lib.link/* lib
-}
-
-src_install() {
-	into /usr/lib/${PN}
-	dolib.so framework/lib/*.so
-	for subdir in "" ".precompiled"; do
-		MY_DEST=/usr/lib/${PN}/framework${subdir}
-
-		cd framework${subdir}
-		exeinto ${MY_DEST}/accelerator
-		doexe accelerator/webmcp_accelerator.so
-		insinto ${MY_DEST}
-		doins -r env js
-		exeinto ${MY_DEST}/cgi-bin
-		doexe cgi-bin/webmcp*.lua
-		into ${MY_DEST}
-		dobin bin/*
-		insinto ${MY_DEST}/lib
-		doins lib/*.lua
-		cd ..
-
-		for file in extos.so mondelefant_native.so multirand.so; do
-			dosym ../../$(get_libdir)/$file ${MY_DEST}/lib/$file
-		done
-
-		insinto /usr/share/${PN}
-		doins -r demo-app${subdir}
-	done
-	dodoc doc/*sample.conf libraries/mondelefant/example.lua
-	docinto html
-	dodoc doc/autodoc.html
-}


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: www-apps/webmcp/
@ 2021-04-22 16:24 Alfredo Tupone
  0 siblings, 0 replies; 6+ messages in thread
From: Alfredo Tupone @ 2021-04-22 16:24 UTC (permalink / raw
  To: gentoo-commits

commit:     84dfc04e0ef24df0d6742fb9ff81634395011147
Author:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 22 16:23:45 2021 +0000
Commit:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Thu Apr 22 16:24:07 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84dfc04e

www-apps/webmcp: add REQUIRED_USE

Closes: https://bugs.gentoo.org/785073
Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>

 www-apps/webmcp/webmcp-2.1.0.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/www-apps/webmcp/webmcp-2.1.0.ebuild b/www-apps/webmcp/webmcp-2.1.0.ebuild
index 4ee6ed52337..832a99224e4 100644
--- a/www-apps/webmcp/webmcp-2.1.0.ebuild
+++ b/www-apps/webmcp/webmcp-2.1.0.ebuild
@@ -22,6 +22,8 @@ RDEPEND="
 "
 DEPEND="${RDEPEND}"
 
+REQUIRED_USE="${LUA_REQUIRED_USE}"
+
 S="${WORKDIR}"/${MY_P}
 
 PATCHES=( "${FILESDIR}"/${P}-gentoo.patch )


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: www-apps/webmcp/
@ 2022-12-05 18:26 Alfredo Tupone
  0 siblings, 0 replies; 6+ messages in thread
From: Alfredo Tupone @ 2022-12-05 18:26 UTC (permalink / raw
  To: gentoo-commits

commit:     409d9fb5aee7a9582741e12ccb170841ebc5b4d6
Author:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Mon Dec  5 18:25:14 2022 +0000
Commit:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Mon Dec  5 18:25:49 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=409d9fb5

www-apps/webmcp: ExcessiveLineLength

Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>

 www-apps/webmcp/webmcp-1.2.6-r1.ebuild | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/www-apps/webmcp/webmcp-1.2.6-r1.ebuild b/www-apps/webmcp/webmcp-1.2.6-r1.ebuild
index 135b1a65ad3f..5e614d549307 100644
--- a/www-apps/webmcp/webmcp-1.2.6-r1.ebuild
+++ b/www-apps/webmcp/webmcp-1.2.6-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -30,7 +30,11 @@ src_prepare() {
 	default
 
 	# Use correct LUA version
-	sed -e "s/-llua/$(lua_get_LIBS)/g" -i libraries/multirand/Makefile -i libraries/mondelefant/Makefile -i libraries/extos/Makefile || die
+	sed -i \
+		-e "s/-llua/$(lua_get_LIBS)/g" \
+		libraries/multirand/Makefile \
+		libraries/mondelefant/Makefile \
+		libraries/extos/Makefile || die
 }
 
 src_compile() {


^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2022-12-05 18:26 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-06-28 20:51 [gentoo-commits] repo/gentoo:master commit in: www-apps/webmcp/ Aaron Bauman
  -- strict thread matches above, loose matches on Subject: below --
2022-12-05 18:26 Alfredo Tupone
2021-04-22 16:24 Alfredo Tupone
2021-03-26  0:39 Conrad Kostecki
2021-03-26  0:39 Conrad Kostecki
2019-11-13 19:58 Aaron Bauman

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox