* [gentoo-commits] repo/proj/guru:dev commit in: dev-libs/wren/
@ 2020-05-09 22:24 Michele Santullo
0 siblings, 0 replies; 5+ messages in thread
From: Michele Santullo @ 2020-05-09 22:24 UTC (permalink / raw
To: gentoo-commits
commit: bc3821916de1b6e0fd184622d5781ac986e9907e
Author: Michele Santullo <m.santullo <AT> posteo <DOT> net>
AuthorDate: Sat May 9 22:24:19 2020 +0000
Commit: Michele Santullo <m.santullo <AT> posteo <DOT> net>
CommitDate: Sat May 9 22:24:19 2020 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=bc382191
dev-libs/wren: adding package
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Michele Santullo <m.santullo <AT> posteo.net>
dev-libs/wren/Manifest | 1 +
dev-libs/wren/metadata.xml | 19 +++++++++++++
dev-libs/wren/wren-0.2.0.ebuild | 62 +++++++++++++++++++++++++++++++++++++++++
dev-libs/wren/wren-9999.ebuild | 62 +++++++++++++++++++++++++++++++++++++++++
4 files changed, 144 insertions(+)
diff --git a/dev-libs/wren/Manifest b/dev-libs/wren/Manifest
new file mode 100644
index 0000000..782d2d9
--- /dev/null
+++ b/dev-libs/wren/Manifest
@@ -0,0 +1 @@
+DIST wren-0.2.0.tar.gz 1791488 BLAKE2B a2f48e9b115ea89cf25af1fe8cefa3c26639ce06f89796df4f5eb744b2382b44f83d6285eedfa9cb5681342cc8ebca535bae586445225622c8ebdb30c7088975 SHA512 67912df14d8afa16a4e50fa67e232870e08eb392601f7b1633bcfb242f2de7624b9a3501df9e1ae40fb62646db57ff6553733ddb3015b6b5086999dadf7d2da2
diff --git a/dev-libs/wren/metadata.xml b/dev-libs/wren/metadata.xml
new file mode 100644
index 0000000..2c40eb0
--- /dev/null
+++ b/dev-libs/wren/metadata.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <longdescription lang="en">
+Wren is a small, fast, class-based concurrent scripting language
+Think Smalltalk in a Lua-sized package with a dash of Erlang and wrapped up in a familiar, modern syntax.
+ </longdescription>
+ <maintainer type="person">
+ <email>m.santullo@posteo.net</email>
+ <name>Michele Santullo</name>
+ </maintainer>
+ <upstream>
+ <bugs-to>https://github.com/wren-lang/wren/issues</bugs-to>
+ <remote-id type="github">wren-lang/wren</remote-id>
+ </upstream>
+ <use>
+ <flag name="tools">Install the wren command line interpreter</flag>
+ </use>
+</pkgmetadata>
diff --git a/dev-libs/wren/wren-0.2.0.ebuild b/dev-libs/wren/wren-0.2.0.ebuild
new file mode 100644
index 0000000..2b3681e
--- /dev/null
+++ b/dev-libs/wren/wren-0.2.0.ebuild
@@ -0,0 +1,62 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit toolchain-funcs
+
+DESCRIPTION="The Wren Programming Language"
+HOMEPAGE="http://wren.io/"
+if [[ ${PV} == 9999 ]]; then
+ EGIT_REPO_URI="https://github.com/wren-lang/${PN}.git"
+ inherit git-r3
+ KEYWORDS=""
+else
+ SRC_URI="https://github.com/wren-lang/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="static-libs tools"
+
+DEPEND=">=dev-libs/libuv-1.10.0"
+RDEPEND="${DEPEND}"
+BDEPEND=""
+#BDEPEND="test? ( dev-lang/python )"
+#RESTRICT="!test? ( test )"
+
+src_configure() {
+ return
+}
+
+src_compile() {
+ local targets=""
+
+ if use static-libs ; then
+ #do both shared and static libs
+ targets="${targets} vm"
+ else
+ targets="${targets} shared"
+ fi
+ if use tools ; then
+ targets="${targets} cli"
+ fi
+ #I don't think tests are working, I just get lots of linker errors
+ #if use test ; then
+ # targets="${targets} api_test unit_test"
+ #fi
+
+ tc-export AR CC
+ emake -f util/wren.mk LIBUV_DIR=${EPREFIX}/usr LIBUV=${EPREFIX}/usr/$(get_libdir)/libuv.so VERBOSE=1 ${targets}
+}
+
+src_install() {
+ if use tools ; then
+ dobin bin/wren
+ fi
+ if use static-libs ; then
+ dolib.a lib/libwren.a
+ fi
+ dolib.so lib/libwren.so
+}
diff --git a/dev-libs/wren/wren-9999.ebuild b/dev-libs/wren/wren-9999.ebuild
new file mode 100644
index 0000000..2b3681e
--- /dev/null
+++ b/dev-libs/wren/wren-9999.ebuild
@@ -0,0 +1,62 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit toolchain-funcs
+
+DESCRIPTION="The Wren Programming Language"
+HOMEPAGE="http://wren.io/"
+if [[ ${PV} == 9999 ]]; then
+ EGIT_REPO_URI="https://github.com/wren-lang/${PN}.git"
+ inherit git-r3
+ KEYWORDS=""
+else
+ SRC_URI="https://github.com/wren-lang/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="static-libs tools"
+
+DEPEND=">=dev-libs/libuv-1.10.0"
+RDEPEND="${DEPEND}"
+BDEPEND=""
+#BDEPEND="test? ( dev-lang/python )"
+#RESTRICT="!test? ( test )"
+
+src_configure() {
+ return
+}
+
+src_compile() {
+ local targets=""
+
+ if use static-libs ; then
+ #do both shared and static libs
+ targets="${targets} vm"
+ else
+ targets="${targets} shared"
+ fi
+ if use tools ; then
+ targets="${targets} cli"
+ fi
+ #I don't think tests are working, I just get lots of linker errors
+ #if use test ; then
+ # targets="${targets} api_test unit_test"
+ #fi
+
+ tc-export AR CC
+ emake -f util/wren.mk LIBUV_DIR=${EPREFIX}/usr LIBUV=${EPREFIX}/usr/$(get_libdir)/libuv.so VERBOSE=1 ${targets}
+}
+
+src_install() {
+ if use tools ; then
+ dobin bin/wren
+ fi
+ if use static-libs ; then
+ dolib.a lib/libwren.a
+ fi
+ dolib.so lib/libwren.so
+}
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-libs/wren/
@ 2020-05-10 19:20 Andrew Ammerlaan
2020-05-10 19:37 ` [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
0 siblings, 1 reply; 5+ messages in thread
From: Andrew Ammerlaan @ 2020-05-10 19:20 UTC (permalink / raw
To: gentoo-commits
commit: 0e53e18668aa6bb8a5c12b0eb8068aa2272de01b
Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Sun May 10 19:20:16 2020 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Sun May 10 19:20:16 2020 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0e53e186
dev-libs/wren: RESTRICT="test"
- quote variable
- consistent use of tabs and spaces in metadata
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
dev-libs/wren/metadata.xml | 28 ++++++++++++++--------------
dev-libs/wren/wren-0.2.0.ebuild | 3 ++-
dev-libs/wren/wren-9999.ebuild | 3 ++-
3 files changed, 18 insertions(+), 16 deletions(-)
diff --git a/dev-libs/wren/metadata.xml b/dev-libs/wren/metadata.xml
index 2c40eb0..854f4ec 100644
--- a/dev-libs/wren/metadata.xml
+++ b/dev-libs/wren/metadata.xml
@@ -1,19 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <longdescription lang="en">
-Wren is a small, fast, class-based concurrent scripting language
-Think Smalltalk in a Lua-sized package with a dash of Erlang and wrapped up in a familiar, modern syntax.
- </longdescription>
- <maintainer type="person">
- <email>m.santullo@posteo.net</email>
- <name>Michele Santullo</name>
- </maintainer>
- <upstream>
- <bugs-to>https://github.com/wren-lang/wren/issues</bugs-to>
+ <longdescription lang="en">
+ Wren is a small, fast, class-based concurrent scripting language
+ Think Smalltalk in a Lua-sized package with a dash of Erlang and wrapped up in a familiar, modern syntax.
+ </longdescription>
+ <maintainer type="person">
+ <email>m.santullo@posteo.net</email>
+ <name>Michele Santullo</name>
+ </maintainer>
+ <upstream>
+ <bugs-to>https://github.com/wren-lang/wren/issues</bugs-to>
<remote-id type="github">wren-lang/wren</remote-id>
- </upstream>
- <use>
- <flag name="tools">Install the wren command line interpreter</flag>
- </use>
+ </upstream>
+ <use>
+ <flag name="tools">Install the wren command line interpreter</flag>
+ </use>
</pkgmetadata>
diff --git a/dev-libs/wren/wren-0.2.0.ebuild b/dev-libs/wren/wren-0.2.0.ebuild
index 2b3681e..3491cfb 100644
--- a/dev-libs/wren/wren-0.2.0.ebuild
+++ b/dev-libs/wren/wren-0.2.0.ebuild
@@ -25,6 +25,7 @@ RDEPEND="${DEPEND}"
BDEPEND=""
#BDEPEND="test? ( dev-lang/python )"
#RESTRICT="!test? ( test )"
+RESTRICT="test"
src_configure() {
return
@@ -48,7 +49,7 @@ src_compile() {
#fi
tc-export AR CC
- emake -f util/wren.mk LIBUV_DIR=${EPREFIX}/usr LIBUV=${EPREFIX}/usr/$(get_libdir)/libuv.so VERBOSE=1 ${targets}
+ emake -f util/wren.mk LIBUV_DIR="${EPREFIX}/usr" LIBUV="${EPREFIX}/usr/$(get_libdir)/libuv.so" VERBOSE=1 ${targets}
}
src_install() {
diff --git a/dev-libs/wren/wren-9999.ebuild b/dev-libs/wren/wren-9999.ebuild
index 2b3681e..3491cfb 100644
--- a/dev-libs/wren/wren-9999.ebuild
+++ b/dev-libs/wren/wren-9999.ebuild
@@ -25,6 +25,7 @@ RDEPEND="${DEPEND}"
BDEPEND=""
#BDEPEND="test? ( dev-lang/python )"
#RESTRICT="!test? ( test )"
+RESTRICT="test"
src_configure() {
return
@@ -48,7 +49,7 @@ src_compile() {
#fi
tc-export AR CC
- emake -f util/wren.mk LIBUV_DIR=${EPREFIX}/usr LIBUV=${EPREFIX}/usr/$(get_libdir)/libuv.so VERBOSE=1 ${targets}
+ emake -f util/wren.mk LIBUV_DIR="${EPREFIX}/usr" LIBUV="${EPREFIX}/usr/$(get_libdir)/libuv.so" VERBOSE=1 ${targets}
}
src_install() {
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: dev-libs/wren/
2020-05-10 19:20 [gentoo-commits] repo/proj/guru:dev commit in: dev-libs/wren/ Andrew Ammerlaan
@ 2020-05-10 19:37 ` Andrew Ammerlaan
0 siblings, 0 replies; 5+ messages in thread
From: Andrew Ammerlaan @ 2020-05-10 19:37 UTC (permalink / raw
To: gentoo-commits
commit: 0e53e18668aa6bb8a5c12b0eb8068aa2272de01b
Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Sun May 10 19:20:16 2020 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Sun May 10 19:20:16 2020 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0e53e186
dev-libs/wren: RESTRICT="test"
- quote variable
- consistent use of tabs and spaces in metadata
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
dev-libs/wren/metadata.xml | 28 ++++++++++++++--------------
dev-libs/wren/wren-0.2.0.ebuild | 3 ++-
dev-libs/wren/wren-9999.ebuild | 3 ++-
3 files changed, 18 insertions(+), 16 deletions(-)
diff --git a/dev-libs/wren/metadata.xml b/dev-libs/wren/metadata.xml
index 2c40eb0..854f4ec 100644
--- a/dev-libs/wren/metadata.xml
+++ b/dev-libs/wren/metadata.xml
@@ -1,19 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <longdescription lang="en">
-Wren is a small, fast, class-based concurrent scripting language
-Think Smalltalk in a Lua-sized package with a dash of Erlang and wrapped up in a familiar, modern syntax.
- </longdescription>
- <maintainer type="person">
- <email>m.santullo@posteo.net</email>
- <name>Michele Santullo</name>
- </maintainer>
- <upstream>
- <bugs-to>https://github.com/wren-lang/wren/issues</bugs-to>
+ <longdescription lang="en">
+ Wren is a small, fast, class-based concurrent scripting language
+ Think Smalltalk in a Lua-sized package with a dash of Erlang and wrapped up in a familiar, modern syntax.
+ </longdescription>
+ <maintainer type="person">
+ <email>m.santullo@posteo.net</email>
+ <name>Michele Santullo</name>
+ </maintainer>
+ <upstream>
+ <bugs-to>https://github.com/wren-lang/wren/issues</bugs-to>
<remote-id type="github">wren-lang/wren</remote-id>
- </upstream>
- <use>
- <flag name="tools">Install the wren command line interpreter</flag>
- </use>
+ </upstream>
+ <use>
+ <flag name="tools">Install the wren command line interpreter</flag>
+ </use>
</pkgmetadata>
diff --git a/dev-libs/wren/wren-0.2.0.ebuild b/dev-libs/wren/wren-0.2.0.ebuild
index 2b3681e..3491cfb 100644
--- a/dev-libs/wren/wren-0.2.0.ebuild
+++ b/dev-libs/wren/wren-0.2.0.ebuild
@@ -25,6 +25,7 @@ RDEPEND="${DEPEND}"
BDEPEND=""
#BDEPEND="test? ( dev-lang/python )"
#RESTRICT="!test? ( test )"
+RESTRICT="test"
src_configure() {
return
@@ -48,7 +49,7 @@ src_compile() {
#fi
tc-export AR CC
- emake -f util/wren.mk LIBUV_DIR=${EPREFIX}/usr LIBUV=${EPREFIX}/usr/$(get_libdir)/libuv.so VERBOSE=1 ${targets}
+ emake -f util/wren.mk LIBUV_DIR="${EPREFIX}/usr" LIBUV="${EPREFIX}/usr/$(get_libdir)/libuv.so" VERBOSE=1 ${targets}
}
src_install() {
diff --git a/dev-libs/wren/wren-9999.ebuild b/dev-libs/wren/wren-9999.ebuild
index 2b3681e..3491cfb 100644
--- a/dev-libs/wren/wren-9999.ebuild
+++ b/dev-libs/wren/wren-9999.ebuild
@@ -25,6 +25,7 @@ RDEPEND="${DEPEND}"
BDEPEND=""
#BDEPEND="test? ( dev-lang/python )"
#RESTRICT="!test? ( test )"
+RESTRICT="test"
src_configure() {
return
@@ -48,7 +49,7 @@ src_compile() {
#fi
tc-export AR CC
- emake -f util/wren.mk LIBUV_DIR=${EPREFIX}/usr LIBUV=${EPREFIX}/usr/$(get_libdir)/libuv.so VERBOSE=1 ${targets}
+ emake -f util/wren.mk LIBUV_DIR="${EPREFIX}/usr" LIBUV="${EPREFIX}/usr/$(get_libdir)/libuv.so" VERBOSE=1 ${targets}
}
src_install() {
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-libs/wren/
@ 2020-05-15 19:32 Michele Santullo
0 siblings, 0 replies; 5+ messages in thread
From: Michele Santullo @ 2020-05-15 19:32 UTC (permalink / raw
To: gentoo-commits
commit: a61c4360f9854677b83189b0bd473166fe28a2c6
Author: Michele Santullo <m.santullo <AT> posteo <DOT> net>
AuthorDate: Fri May 15 19:31:48 2020 +0000
Commit: Michele Santullo <m.santullo <AT> posteo <DOT> net>
CommitDate: Fri May 15 19:31:48 2020 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a61c4360
dev-libs/wren: install headers and pkgconfig file
Original makefile doesn't generate a .pc file so
I'm making one myself from inside the ebuild.
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Michele Santullo <m.santullo <AT> posteo.net>
.../wren/{wren-0.2.0.ebuild => wren-0.2.0-r1.ebuild} | 16 ++++++++++++++++
dev-libs/wren/wren-9999.ebuild | 16 ++++++++++++++++
2 files changed, 32 insertions(+)
diff --git a/dev-libs/wren/wren-0.2.0.ebuild b/dev-libs/wren/wren-0.2.0-r1.ebuild
similarity index 70%
rename from dev-libs/wren/wren-0.2.0.ebuild
rename to dev-libs/wren/wren-0.2.0-r1.ebuild
index 3491cfb..11b147b 100644
--- a/dev-libs/wren/wren-0.2.0.ebuild
+++ b/dev-libs/wren/wren-0.2.0-r1.ebuild
@@ -48,6 +48,17 @@ src_compile() {
# targets="${targets} api_test unit_test"
#fi
+ echo "prefix=\"${EPREFIX}/usr\"" > ${PN}.pc
+ echo "libdir=\"\${prefix}/$(get_libdir)\"" >> ${PN}.pc
+ echo "includedir=\"\${prefix}/include\"" >> ${PN}.pc
+ echo "" >> ${PN}.pc
+ echo "Name: ${PN}" >> ${PN}.pc
+ echo "Description: ${DESCRIPTION}" >> ${PN}.pc
+ echo "URL: ${HOMEPAGE}" >> ${PN}.pc
+ echo "Version: ${PV}" >> ${PN}.pc
+ echo "Libs: \"-L\${libdir}\" -l${PN}" >> ${PN}.pc
+ echo "Cflags: \"-I\${includedir}\"" >> ${PN}.pc
+
tc-export AR CC
emake -f util/wren.mk LIBUV_DIR="${EPREFIX}/usr" LIBUV="${EPREFIX}/usr/$(get_libdir)/libuv.so" VERBOSE=1 ${targets}
}
@@ -60,4 +71,9 @@ src_install() {
dolib.a lib/libwren.a
fi
dolib.so lib/libwren.so
+ doheader src/include/wren.h
+ doheader src/include/wren.hpp
+
+ insinto /usr/$(get_libdir)/pkgconfig
+ doins ${PN}.pc
}
diff --git a/dev-libs/wren/wren-9999.ebuild b/dev-libs/wren/wren-9999.ebuild
index 3491cfb..11b147b 100644
--- a/dev-libs/wren/wren-9999.ebuild
+++ b/dev-libs/wren/wren-9999.ebuild
@@ -48,6 +48,17 @@ src_compile() {
# targets="${targets} api_test unit_test"
#fi
+ echo "prefix=\"${EPREFIX}/usr\"" > ${PN}.pc
+ echo "libdir=\"\${prefix}/$(get_libdir)\"" >> ${PN}.pc
+ echo "includedir=\"\${prefix}/include\"" >> ${PN}.pc
+ echo "" >> ${PN}.pc
+ echo "Name: ${PN}" >> ${PN}.pc
+ echo "Description: ${DESCRIPTION}" >> ${PN}.pc
+ echo "URL: ${HOMEPAGE}" >> ${PN}.pc
+ echo "Version: ${PV}" >> ${PN}.pc
+ echo "Libs: \"-L\${libdir}\" -l${PN}" >> ${PN}.pc
+ echo "Cflags: \"-I\${includedir}\"" >> ${PN}.pc
+
tc-export AR CC
emake -f util/wren.mk LIBUV_DIR="${EPREFIX}/usr" LIBUV="${EPREFIX}/usr/$(get_libdir)/libuv.so" VERBOSE=1 ${targets}
}
@@ -60,4 +71,9 @@ src_install() {
dolib.a lib/libwren.a
fi
dolib.so lib/libwren.so
+ doheader src/include/wren.h
+ doheader src/include/wren.hpp
+
+ insinto /usr/$(get_libdir)/pkgconfig
+ doins ${PN}.pc
}
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-libs/wren/
2020-10-22 13:40 Andrew Ammerlaan
@ 2020-10-22 13:40 ` Andrew Ammerlaan
0 siblings, 0 replies; 5+ messages in thread
From: Andrew Ammerlaan @ 2020-10-22 13:40 UTC (permalink / raw
To: gentoo-commits
commit: c1ad98ca9e5440d76cd0da3caeeaa66b68614268
Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Thu Oct 22 13:39:54 2020 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Thu Oct 22 13:39:54 2020 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c1ad98ca
dev-libs/wren: use https in homepage
Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
dev-libs/wren/wren-0.2.0-r1.ebuild | 2 +-
dev-libs/wren/wren-9999.ebuild | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-libs/wren/wren-0.2.0-r1.ebuild b/dev-libs/wren/wren-0.2.0-r1.ebuild
index 11b147b9..689c8a5d 100644
--- a/dev-libs/wren/wren-0.2.0-r1.ebuild
+++ b/dev-libs/wren/wren-0.2.0-r1.ebuild
@@ -6,7 +6,7 @@ EAPI=7
inherit toolchain-funcs
DESCRIPTION="The Wren Programming Language"
-HOMEPAGE="http://wren.io/"
+HOMEPAGE="https://wren.io/"
if [[ ${PV} == 9999 ]]; then
EGIT_REPO_URI="https://github.com/wren-lang/${PN}.git"
inherit git-r3
diff --git a/dev-libs/wren/wren-9999.ebuild b/dev-libs/wren/wren-9999.ebuild
index 11b147b9..689c8a5d 100644
--- a/dev-libs/wren/wren-9999.ebuild
+++ b/dev-libs/wren/wren-9999.ebuild
@@ -6,7 +6,7 @@ EAPI=7
inherit toolchain-funcs
DESCRIPTION="The Wren Programming Language"
-HOMEPAGE="http://wren.io/"
+HOMEPAGE="https://wren.io/"
if [[ ${PV} == 9999 ]]; then
EGIT_REPO_URI="https://github.com/wren-lang/${PN}.git"
inherit git-r3
^ permalink raw reply related [flat|nested] 5+ messages in thread
end of thread, other threads:[~2020-10-22 13:40 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-05-10 19:20 [gentoo-commits] repo/proj/guru:dev commit in: dev-libs/wren/ Andrew Ammerlaan
2020-05-10 19:37 ` [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
-- strict thread matches above, loose matches on Subject: below --
2020-10-22 13:40 Andrew Ammerlaan
2020-10-22 13:40 ` [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2020-05-15 19:32 Michele Santullo
2020-05-09 22:24 Michele Santullo
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox