* [gentoo-commits] repo/gentoo:master commit in: dev-lang/qore/
@ 2023-09-24 4:02 Maciej Barć
0 siblings, 0 replies; 8+ messages in thread
From: Maciej Barć @ 2023-09-24 4:02 UTC (permalink / raw
To: gentoo-commits
commit: 52ebcc1aadbe96778db38b090234c5cf36b09e42
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 24 03:57:36 2023 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Sun Sep 24 04:02:25 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52ebcc1a
dev-lang/qore: new package; 1.19.0
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
dev-lang/qore/Manifest | 1 +
dev-lang/qore/metadata.xml | 23 +++++++++++++
dev-lang/qore/qore-1.19.0.ebuild | 72 ++++++++++++++++++++++++++++++++++++++++
3 files changed, 96 insertions(+)
diff --git a/dev-lang/qore/Manifest b/dev-lang/qore/Manifest
new file mode 100644
index 000000000000..ff5dbf68371b
--- /dev/null
+++ b/dev-lang/qore/Manifest
@@ -0,0 +1 @@
+DIST qore-1.19.0.tar.gz 3932880 BLAKE2B 8987a818e4fef495d9e07477715f18ad70541c81108bbc3aac56660e4d2ee9349303654ba07a849a7bfb43952d0ee8b868224f029254c83f435aa024def08669 SHA512 5264db098644ba39316e7825f1ed8243240c506a22c15836fcfa9500b173807ee9c4d213577d3a9eee7220d5d15ad171f05f75a431fb0537c95ab3dc761cbba3
diff --git a/dev-lang/qore/metadata.xml b/dev-lang/qore/metadata.xml
new file mode 100644
index 000000000000..f623d113a866
--- /dev/null
+++ b/dev-lang/qore/metadata.xml
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+
+<pkgmetadata>
+ <maintainer type="person">
+ <email>xgqt@gentoo.org</email>
+ <name>Maciej Barć</name>
+ </maintainer>
+ <longdescription>
+ The Qore programming language is a powerful, thread-capable, embeddable
+ weakly-typed language with optional strong typing and procedural and
+ object-oriented features designed for anything from quick scripting to
+ complex multithreaded, network-aware application development to embedded
+ application scripting. Qore was initially designed to facilitate the rapid
+ implementation of sophisticated interfaces in embedded code in an
+ enterprise environment, and has since grown into a general-purpose language
+ as well.
+ </longdescription>
+ <upstream>
+ <bugs-to>https://github.com/qorelanguage/qore/issues</bugs-to>
+ <remote-id type="github">qorelanguage/qore</remote-id>
+ </upstream>
+</pkgmetadata>
diff --git a/dev-lang/qore/qore-1.19.0.ebuild b/dev-lang/qore/qore-1.19.0.ebuild
new file mode 100644
index 000000000000..5ca2ae1bc341
--- /dev/null
+++ b/dev-lang/qore/qore-1.19.0.ebuild
@@ -0,0 +1,72 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools
+
+DESCRIPTION="Qore, the embeddable multithreaded scripting language"
+HOMEPAGE="http://qore.org/
+ https://github.com/qorelanguage/qore/"
+
+if [[ "${PV}" == *9999* ]] ; then
+ inherit git-r3
+
+ EGIT_REPO_URI="https://github.com/qorelanguage/${PN}.git"
+else
+ SRC_URI="https://github.com/qorelanguage/${PN}/archive/release-${PV}.tar.gz
+ -> ${P}.tar.gz"
+ S="${WORKDIR}/${PN}-release-${PV}"
+
+ KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="GPL-2+ LGPL-2.1+ MIT"
+SLOT="0"
+IUSE="debug"
+
+RDEPEND="
+ app-arch/bzip2:=
+ dev-libs/libpcre:=
+ dev-libs/mpfr:=
+ dev-libs/openssl:=
+ sys-libs/zlib:=
+"
+DEPEND="
+ ${RDEPEND}
+"
+BDEPEND="
+ sys-devel/bison
+ sys-devel/flex
+"
+
+src_prepare() {
+ default
+
+ eautoreconf
+}
+
+src_configure() {
+ local -a myconf=(
+ --disable-optimization
+ --disable-profile
+ --disable-static-bz2
+ --disable-static-common
+ --disable-static-openssl
+ --disable-static-pcre
+ --disable-static-zlib
+ $(use_enable debug)
+ )
+ econf "${myconf[@]}"
+}
+
+src_test() {
+ PATH="${S}:${PATH}" emake check
+}
+
+src_install() {
+ default
+
+ find "${ED}" -type f -name "*.la" -delete ||
+ die "failed to remove libtool files without corresponding static libraries"
+}
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-lang/qore/
@ 2023-09-26 16:28 Maciej Barć
0 siblings, 0 replies; 8+ messages in thread
From: Maciej Barć @ 2023-09-26 16:28 UTC (permalink / raw
To: gentoo-commits
commit: ce6b8a7aebfa829a961d2dc63019979b5945b464
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 26 16:26:15 2023 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Tue Sep 26 16:28:15 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce6b8a7a
dev-lang/qore: bump to 1.19.1
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
dev-lang/qore/Manifest | 1 +
dev-lang/qore/qore-1.19.1.ebuild | 72 ++++++++++++++++++++++++++++++++++++++++
2 files changed, 73 insertions(+)
diff --git a/dev-lang/qore/Manifest b/dev-lang/qore/Manifest
index ff5dbf68371b..36d20182875c 100644
--- a/dev-lang/qore/Manifest
+++ b/dev-lang/qore/Manifest
@@ -1 +1,2 @@
DIST qore-1.19.0.tar.gz 3932880 BLAKE2B 8987a818e4fef495d9e07477715f18ad70541c81108bbc3aac56660e4d2ee9349303654ba07a849a7bfb43952d0ee8b868224f029254c83f435aa024def08669 SHA512 5264db098644ba39316e7825f1ed8243240c506a22c15836fcfa9500b173807ee9c4d213577d3a9eee7220d5d15ad171f05f75a431fb0537c95ab3dc761cbba3
+DIST qore-1.19.1.tar.gz 3933768 BLAKE2B 8e3002a55f1cf15f22ff604b1ceaf71995727510e365ae6ab03b71a91ddc1a82c5d6d89514b989a3509a5b39228fcf8fe11b6d88df8af784cace9b56b9d22482 SHA512 bf2203f8fe81cd4a604e06859380664f5cf635f5496e1ce6b6d5760d4cba82e510c78acef7ced4fdacd6df722f6eb305307106f12df3201003858a5a55256d9e
diff --git a/dev-lang/qore/qore-1.19.1.ebuild b/dev-lang/qore/qore-1.19.1.ebuild
new file mode 100644
index 000000000000..5ca2ae1bc341
--- /dev/null
+++ b/dev-lang/qore/qore-1.19.1.ebuild
@@ -0,0 +1,72 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools
+
+DESCRIPTION="Qore, the embeddable multithreaded scripting language"
+HOMEPAGE="http://qore.org/
+ https://github.com/qorelanguage/qore/"
+
+if [[ "${PV}" == *9999* ]] ; then
+ inherit git-r3
+
+ EGIT_REPO_URI="https://github.com/qorelanguage/${PN}.git"
+else
+ SRC_URI="https://github.com/qorelanguage/${PN}/archive/release-${PV}.tar.gz
+ -> ${P}.tar.gz"
+ S="${WORKDIR}/${PN}-release-${PV}"
+
+ KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="GPL-2+ LGPL-2.1+ MIT"
+SLOT="0"
+IUSE="debug"
+
+RDEPEND="
+ app-arch/bzip2:=
+ dev-libs/libpcre:=
+ dev-libs/mpfr:=
+ dev-libs/openssl:=
+ sys-libs/zlib:=
+"
+DEPEND="
+ ${RDEPEND}
+"
+BDEPEND="
+ sys-devel/bison
+ sys-devel/flex
+"
+
+src_prepare() {
+ default
+
+ eautoreconf
+}
+
+src_configure() {
+ local -a myconf=(
+ --disable-optimization
+ --disable-profile
+ --disable-static-bz2
+ --disable-static-common
+ --disable-static-openssl
+ --disable-static-pcre
+ --disable-static-zlib
+ $(use_enable debug)
+ )
+ econf "${myconf[@]}"
+}
+
+src_test() {
+ PATH="${S}:${PATH}" emake check
+}
+
+src_install() {
+ default
+
+ find "${ED}" -type f -name "*.la" -delete ||
+ die "failed to remove libtool files without corresponding static libraries"
+}
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-lang/qore/
@ 2023-10-06 15:21 Maciej Barć
0 siblings, 0 replies; 8+ messages in thread
From: Maciej Barć @ 2023-10-06 15:21 UTC (permalink / raw
To: gentoo-commits
commit: 7a9795178531839edbb8a79e1e5e16c543184268
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 6 10:04:07 2023 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Fri Oct 6 15:20:47 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a979517
dev-lang/qore: unset LEX and YACC
Closes: https://bugs.gentoo.org/914760
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
dev-lang/qore/qore-1.19.0.ebuild | 4 ++++
dev-lang/qore/qore-1.19.1.ebuild | 4 ++++
2 files changed, 8 insertions(+)
diff --git a/dev-lang/qore/qore-1.19.0.ebuild b/dev-lang/qore/qore-1.19.0.ebuild
index 5ca2ae1bc341..470c8707dfd1 100644
--- a/dev-lang/qore/qore-1.19.0.ebuild
+++ b/dev-lang/qore/qore-1.19.0.ebuild
@@ -47,6 +47,10 @@ src_prepare() {
}
src_configure() {
+ # Needs "bison" and "flex" exactly.
+ unset LEX
+ unset YACC
+
local -a myconf=(
--disable-optimization
--disable-profile
diff --git a/dev-lang/qore/qore-1.19.1.ebuild b/dev-lang/qore/qore-1.19.1.ebuild
index 5ca2ae1bc341..470c8707dfd1 100644
--- a/dev-lang/qore/qore-1.19.1.ebuild
+++ b/dev-lang/qore/qore-1.19.1.ebuild
@@ -47,6 +47,10 @@ src_prepare() {
}
src_configure() {
+ # Needs "bison" and "flex" exactly.
+ unset LEX
+ unset YACC
+
local -a myconf=(
--disable-optimization
--disable-profile
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-lang/qore/
@ 2023-10-24 16:51 Arthur Zamarin
0 siblings, 0 replies; 8+ messages in thread
From: Arthur Zamarin @ 2023-10-24 16:51 UTC (permalink / raw
To: gentoo-commits
commit: 5a99f405cf4a5b03870ba9ddf9d1a82bc149949a
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 24 16:50:59 2023 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Tue Oct 24 16:50:59 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a99f405
dev-lang/qore: Stabilize 1.19.0 amd64, #916220
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
dev-lang/qore/qore-1.19.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-lang/qore/qore-1.19.0.ebuild b/dev-lang/qore/qore-1.19.0.ebuild
index 470c8707dfd1..38b2af9a08c7 100644
--- a/dev-lang/qore/qore-1.19.0.ebuild
+++ b/dev-lang/qore/qore-1.19.0.ebuild
@@ -18,7 +18,7 @@ else
-> ${P}.tar.gz"
S="${WORKDIR}/${PN}-release-${PV}"
- KEYWORDS="~amd64 ~x86"
+ KEYWORDS="amd64 ~x86"
fi
LICENSE="GPL-2+ LGPL-2.1+ MIT"
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-lang/qore/
@ 2023-10-31 0:47 Sam James
0 siblings, 0 replies; 8+ messages in thread
From: Sam James @ 2023-10-31 0:47 UTC (permalink / raw
To: gentoo-commits
commit: 65ec46e48b56fc9e2b8dcde08f1f9b79aed9ac47
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 31 00:47:27 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Oct 31 00:47:27 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65ec46e4
dev-lang/qore: Stabilize 1.19.1 amd64, #916551
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-lang/qore/qore-1.19.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-lang/qore/qore-1.19.1.ebuild b/dev-lang/qore/qore-1.19.1.ebuild
index 470c8707dfd1..38b2af9a08c7 100644
--- a/dev-lang/qore/qore-1.19.1.ebuild
+++ b/dev-lang/qore/qore-1.19.1.ebuild
@@ -18,7 +18,7 @@ else
-> ${P}.tar.gz"
S="${WORKDIR}/${PN}-release-${PV}"
- KEYWORDS="~amd64 ~x86"
+ KEYWORDS="amd64 ~x86"
fi
LICENSE="GPL-2+ LGPL-2.1+ MIT"
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-lang/qore/
@ 2023-12-15 16:51 Maciej Barć
0 siblings, 0 replies; 8+ messages in thread
From: Maciej Barć @ 2023-12-15 16:51 UTC (permalink / raw
To: gentoo-commits
commit: 7477378f8776c7755f062693c905a6ba3606374e
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 15 10:00:16 2023 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Fri Dec 15 16:51:28 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7477378f
dev-lang/qore: drop old 1.19.0
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
dev-lang/qore/Manifest | 1 -
dev-lang/qore/qore-1.19.0.ebuild | 76 ----------------------------------------
2 files changed, 77 deletions(-)
diff --git a/dev-lang/qore/Manifest b/dev-lang/qore/Manifest
index 36d20182875c..4183d9e8cd07 100644
--- a/dev-lang/qore/Manifest
+++ b/dev-lang/qore/Manifest
@@ -1,2 +1 @@
-DIST qore-1.19.0.tar.gz 3932880 BLAKE2B 8987a818e4fef495d9e07477715f18ad70541c81108bbc3aac56660e4d2ee9349303654ba07a849a7bfb43952d0ee8b868224f029254c83f435aa024def08669 SHA512 5264db098644ba39316e7825f1ed8243240c506a22c15836fcfa9500b173807ee9c4d213577d3a9eee7220d5d15ad171f05f75a431fb0537c95ab3dc761cbba3
DIST qore-1.19.1.tar.gz 3933768 BLAKE2B 8e3002a55f1cf15f22ff604b1ceaf71995727510e365ae6ab03b71a91ddc1a82c5d6d89514b989a3509a5b39228fcf8fe11b6d88df8af784cace9b56b9d22482 SHA512 bf2203f8fe81cd4a604e06859380664f5cf635f5496e1ce6b6d5760d4cba82e510c78acef7ced4fdacd6df722f6eb305307106f12df3201003858a5a55256d9e
diff --git a/dev-lang/qore/qore-1.19.0.ebuild b/dev-lang/qore/qore-1.19.0.ebuild
deleted file mode 100644
index 38b2af9a08c7..000000000000
--- a/dev-lang/qore/qore-1.19.0.ebuild
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools
-
-DESCRIPTION="Qore, the embeddable multithreaded scripting language"
-HOMEPAGE="http://qore.org/
- https://github.com/qorelanguage/qore/"
-
-if [[ "${PV}" == *9999* ]] ; then
- inherit git-r3
-
- EGIT_REPO_URI="https://github.com/qorelanguage/${PN}.git"
-else
- SRC_URI="https://github.com/qorelanguage/${PN}/archive/release-${PV}.tar.gz
- -> ${P}.tar.gz"
- S="${WORKDIR}/${PN}-release-${PV}"
-
- KEYWORDS="amd64 ~x86"
-fi
-
-LICENSE="GPL-2+ LGPL-2.1+ MIT"
-SLOT="0"
-IUSE="debug"
-
-RDEPEND="
- app-arch/bzip2:=
- dev-libs/libpcre:=
- dev-libs/mpfr:=
- dev-libs/openssl:=
- sys-libs/zlib:=
-"
-DEPEND="
- ${RDEPEND}
-"
-BDEPEND="
- sys-devel/bison
- sys-devel/flex
-"
-
-src_prepare() {
- default
-
- eautoreconf
-}
-
-src_configure() {
- # Needs "bison" and "flex" exactly.
- unset LEX
- unset YACC
-
- local -a myconf=(
- --disable-optimization
- --disable-profile
- --disable-static-bz2
- --disable-static-common
- --disable-static-openssl
- --disable-static-pcre
- --disable-static-zlib
- $(use_enable debug)
- )
- econf "${myconf[@]}"
-}
-
-src_test() {
- PATH="${S}:${PATH}" emake check
-}
-
-src_install() {
- default
-
- find "${ED}" -type f -name "*.la" -delete ||
- die "failed to remove libtool files without corresponding static libraries"
-}
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-lang/qore/
@ 2024-02-19 15:30 Maciej Barć
0 siblings, 0 replies; 8+ messages in thread
From: Maciej Barć @ 2024-02-19 15:30 UTC (permalink / raw
To: gentoo-commits
commit: 1bb45e202cbda77e18250aa4bef9b5104223981f
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 19 14:56:08 2024 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Mon Feb 19 15:30:34 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1bb45e20
dev-lang/qore: bump to 1.19.2
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
dev-lang/qore/Manifest | 1 +
dev-lang/qore/qore-1.19.2.ebuild | 76 ++++++++++++++++++++++++++++++++++++++++
2 files changed, 77 insertions(+)
diff --git a/dev-lang/qore/Manifest b/dev-lang/qore/Manifest
index 4183d9e8cd07..f0801e744773 100644
--- a/dev-lang/qore/Manifest
+++ b/dev-lang/qore/Manifest
@@ -1 +1,2 @@
DIST qore-1.19.1.tar.gz 3933768 BLAKE2B 8e3002a55f1cf15f22ff604b1ceaf71995727510e365ae6ab03b71a91ddc1a82c5d6d89514b989a3509a5b39228fcf8fe11b6d88df8af784cace9b56b9d22482 SHA512 bf2203f8fe81cd4a604e06859380664f5cf635f5496e1ce6b6d5760d4cba82e510c78acef7ced4fdacd6df722f6eb305307106f12df3201003858a5a55256d9e
+DIST qore-1.19.2.tar.gz 3937953 BLAKE2B 136fd456dc6f262c3c1237448945c7d79b6c48a31c63e5213c7f03a695cda40d91605fc5f8f7887354ae47741342233228107ee327c192b449665fdec0664e62 SHA512 b79ecd1ed9ee934039e143711941a8317e02220403c934865632b37f030797520f0db434ef517e2d813f35a37d966f7c5a745202969fcee32494c4972f503fb1
diff --git a/dev-lang/qore/qore-1.19.2.ebuild b/dev-lang/qore/qore-1.19.2.ebuild
new file mode 100644
index 000000000000..85ee3b1fc485
--- /dev/null
+++ b/dev-lang/qore/qore-1.19.2.ebuild
@@ -0,0 +1,76 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools
+
+DESCRIPTION="Qore, the embeddable multithreaded scripting language"
+HOMEPAGE="http://qore.org/
+ https://github.com/qorelanguage/qore/"
+
+if [[ "${PV}" == *9999* ]] ; then
+ inherit git-r3
+
+ EGIT_REPO_URI="https://github.com/qorelanguage/${PN}.git"
+else
+ SRC_URI="https://github.com/qorelanguage/${PN}/archive/release-${PV}.tar.gz
+ -> ${P}.tar.gz"
+ S="${WORKDIR}/${PN}-release-${PV}"
+
+ KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="GPL-2+ LGPL-2.1+ MIT"
+SLOT="0"
+IUSE="debug"
+
+RDEPEND="
+ app-arch/bzip2:=
+ dev-libs/libpcre:=
+ dev-libs/mpfr:=
+ dev-libs/openssl:=
+ sys-libs/zlib:=
+"
+DEPEND="
+ ${RDEPEND}
+"
+BDEPEND="
+ sys-devel/bison
+ sys-devel/flex
+"
+
+src_prepare() {
+ default
+
+ eautoreconf
+}
+
+src_configure() {
+ # Needs "bison" and "flex" exactly.
+ unset LEX
+ unset YACC
+
+ local -a myconf=(
+ --disable-optimization
+ --disable-profile
+ --disable-static-bz2
+ --disable-static-common
+ --disable-static-openssl
+ --disable-static-pcre
+ --disable-static-zlib
+ $(use_enable debug)
+ )
+ econf "${myconf[@]}"
+}
+
+src_test() {
+ PATH="${S}:${PATH}" emake check
+}
+
+src_install() {
+ default
+
+ find "${ED}" -type f -name "*.la" -delete ||
+ die "failed to remove libtool files without corresponding static libraries"
+}
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-lang/qore/
@ 2024-04-11 1:38 Maciej Barć
0 siblings, 0 replies; 8+ messages in thread
From: Maciej Barć @ 2024-04-11 1:38 UTC (permalink / raw
To: gentoo-commits
commit: 4569b12d054c2263367c9b98a9539ece6e5e9416
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 10 23:40:51 2024 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Thu Apr 11 01:38:43 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4569b12d
dev-lang/qore: drop old 1.19.1
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
dev-lang/qore/Manifest | 1 -
dev-lang/qore/qore-1.19.1.ebuild | 76 ----------------------------------------
2 files changed, 77 deletions(-)
diff --git a/dev-lang/qore/Manifest b/dev-lang/qore/Manifest
index f0801e744773..57a7cef0bdf8 100644
--- a/dev-lang/qore/Manifest
+++ b/dev-lang/qore/Manifest
@@ -1,2 +1 @@
-DIST qore-1.19.1.tar.gz 3933768 BLAKE2B 8e3002a55f1cf15f22ff604b1ceaf71995727510e365ae6ab03b71a91ddc1a82c5d6d89514b989a3509a5b39228fcf8fe11b6d88df8af784cace9b56b9d22482 SHA512 bf2203f8fe81cd4a604e06859380664f5cf635f5496e1ce6b6d5760d4cba82e510c78acef7ced4fdacd6df722f6eb305307106f12df3201003858a5a55256d9e
DIST qore-1.19.2.tar.gz 3937953 BLAKE2B 136fd456dc6f262c3c1237448945c7d79b6c48a31c63e5213c7f03a695cda40d91605fc5f8f7887354ae47741342233228107ee327c192b449665fdec0664e62 SHA512 b79ecd1ed9ee934039e143711941a8317e02220403c934865632b37f030797520f0db434ef517e2d813f35a37d966f7c5a745202969fcee32494c4972f503fb1
diff --git a/dev-lang/qore/qore-1.19.1.ebuild b/dev-lang/qore/qore-1.19.1.ebuild
deleted file mode 100644
index 38b2af9a08c7..000000000000
--- a/dev-lang/qore/qore-1.19.1.ebuild
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools
-
-DESCRIPTION="Qore, the embeddable multithreaded scripting language"
-HOMEPAGE="http://qore.org/
- https://github.com/qorelanguage/qore/"
-
-if [[ "${PV}" == *9999* ]] ; then
- inherit git-r3
-
- EGIT_REPO_URI="https://github.com/qorelanguage/${PN}.git"
-else
- SRC_URI="https://github.com/qorelanguage/${PN}/archive/release-${PV}.tar.gz
- -> ${P}.tar.gz"
- S="${WORKDIR}/${PN}-release-${PV}"
-
- KEYWORDS="amd64 ~x86"
-fi
-
-LICENSE="GPL-2+ LGPL-2.1+ MIT"
-SLOT="0"
-IUSE="debug"
-
-RDEPEND="
- app-arch/bzip2:=
- dev-libs/libpcre:=
- dev-libs/mpfr:=
- dev-libs/openssl:=
- sys-libs/zlib:=
-"
-DEPEND="
- ${RDEPEND}
-"
-BDEPEND="
- sys-devel/bison
- sys-devel/flex
-"
-
-src_prepare() {
- default
-
- eautoreconf
-}
-
-src_configure() {
- # Needs "bison" and "flex" exactly.
- unset LEX
- unset YACC
-
- local -a myconf=(
- --disable-optimization
- --disable-profile
- --disable-static-bz2
- --disable-static-common
- --disable-static-openssl
- --disable-static-pcre
- --disable-static-zlib
- $(use_enable debug)
- )
- econf "${myconf[@]}"
-}
-
-src_test() {
- PATH="${S}:${PATH}" emake check
-}
-
-src_install() {
- default
-
- find "${ED}" -type f -name "*.la" -delete ||
- die "failed to remove libtool files without corresponding static libraries"
-}
^ permalink raw reply related [flat|nested] 8+ messages in thread
end of thread, other threads:[~2024-04-11 1:38 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-09-24 4:02 [gentoo-commits] repo/gentoo:master commit in: dev-lang/qore/ Maciej Barć
-- strict thread matches above, loose matches on Subject: below --
2023-09-26 16:28 Maciej Barć
2023-10-06 15:21 Maciej Barć
2023-10-24 16:51 Arthur Zamarin
2023-10-31 0:47 Sam James
2023-12-15 16:51 Maciej Barć
2024-02-19 15:30 Maciej Barć
2024-04-11 1:38 Maciej Barć
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox