* [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/libcutl/
@ 2022-06-05 0:58 Andrii Pravorskyi
0 siblings, 0 replies; 3+ messages in thread
From: Andrii Pravorskyi @ 2022-06-05 0:58 UTC (permalink / raw
To: gentoo-commits
commit: 561a65e2d33d4fe377b25d98c7f9bf1eb3616790
Author: Andrii Pravorskyi <pravorskyi <AT> meta <DOT> ua>
AuthorDate: Sun Jun 5 00:58:22 2022 +0000
Commit: Andrii Pravorskyi <pravorskyi <AT> meta <DOT> ua>
CommitDate: Sun Jun 5 00:58:22 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=561a65e2
dev-cpp/libcutl: new package
Signed-off-by: Andrii Pravorskyi <pravorskyi <AT> meta.ua>
dev-cpp/libcutl/Manifest | 1 +
dev-cpp/libcutl/libcutl-1.11.0_beta9.ebuild | 61 +++++++++++++++++++++++++++++
dev-cpp/libcutl/metadata.xml | 10 +++++
3 files changed, 72 insertions(+)
diff --git a/dev-cpp/libcutl/Manifest b/dev-cpp/libcutl/Manifest
new file mode 100644
index 000000000..948b8f646
--- /dev/null
+++ b/dev-cpp/libcutl/Manifest
@@ -0,0 +1 @@
+DIST libcutl-1.11.0-b.9.tar.gz 35388 BLAKE2B 241db59fce05d8b9d425342f04727d016893f8253914f55d68730409dc3208c6f94bf261fd1a610ad06d0c75381864b7ec3424a40c2b4d0466d58aa7bd180dad SHA512 2949518a8f0d71cef5325957df96eb36193f11f1fc0da070a93c6159966efcc79183b96a57a1b25e98296a967883c3012ac3a659046d41abe43e654c64339d84
diff --git a/dev-cpp/libcutl/libcutl-1.11.0_beta9.ebuild b/dev-cpp/libcutl/libcutl-1.11.0_beta9.ebuild
new file mode 100644
index 000000000..1e6bdc845
--- /dev/null
+++ b/dev-cpp/libcutl/libcutl-1.11.0_beta9.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+MY_P="${PN}-$(ver_cut 1-3)-b.$(ver_cut 5)"
+
+inherit multiprocessing
+
+SRC_URI="https://pkg.cppget.org/1/beta/${PN}/${MY_P}.tar.gz"
+KEYWORDS='~amd64 ~x86'
+DESCRIPTION='C++ utility library'
+HOMEPAGE='https://www.codesynthesis.com/projects/libstudxml/'
+LICENSE='MIT'
+
+SLOT='0'
+IUSE='test'
+RESTRICT='!test? ( test )'
+
+BDEPEND='dev-util/build2'
+
+S="${WORKDIR}/${MY_P}"
+
+src_configure() {
+ b configure \
+ config.cc.coptions="${CFLAGS}" \
+ config.cc.loptions="${LDFLAGS}" \
+ config.cxx.coptions="${CXXFLAGS}" \
+ config.cxx.loptions="${LDFLAGS}" \
+ --jobs $(makeopts_jobs) \
+ --no-progress \
+ --verbose 2
+}
+
+src_compile() {
+ b update-for-install \
+ config.install.root="${EPREFIX}"/usr \
+ --jobs $(makeopts_jobs) \
+ --no-progress \
+ --verbose 2
+ use test && b update-for-test \
+ --jobs $(makeopts_jobs) \
+ --no-progress \
+ --verbose 2
+}
+
+src_test() {
+ b test \
+ --jobs $(makeopts_jobs) \
+ --no-progress \
+ --verbose 2
+}
+
+src_install() {
+ b install \
+ config.install.chroot="${D}" \
+ config.install.root="${EPREFIX}"/usr \
+ config.install.lib="${EPREFIX}"/usr/$(get_libdir) \
+ config.install.doc="${EPREFIX}"/usr/share/doc/${PF} \
+ --no-progress
+}
diff --git a/dev-cpp/libcutl/metadata.xml b/dev-cpp/libcutl/metadata.xml
new file mode 100644
index 000000000..0d9c85300
--- /dev/null
+++ b/dev-cpp/libcutl/metadata.xml
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <longdescription lang="en">
+ libcutl is a C++ utility library. It contains a collection of
+ generic and independent components such as meta-programming
+ tests, smart pointers, containers, compiler building blocks,
+ etc.
+ </longdescription>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/libcutl/
@ 2022-06-05 21:51 Andrii Pravorskyi
0 siblings, 0 replies; 3+ messages in thread
From: Andrii Pravorskyi @ 2022-06-05 21:51 UTC (permalink / raw
To: gentoo-commits
commit: 81ed1bd15edd04cc5cba778ebcfc5606d260de2c
Author: Andrii Pravorskyi <pravorskyi <AT> meta <DOT> ua>
AuthorDate: Sun Jun 5 21:50:37 2022 +0000
Commit: Andrii Pravorskyi <pravorskyi <AT> meta <DOT> ua>
CommitDate: Sun Jun 5 21:50:37 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=81ed1bd1
dev-cpp/libcutl: add the maintainer, update ebuild
Signed-off-by: Andrii Pravorskyi <pravorskyi <AT> meta.ua>
dev-cpp/libcutl/libcutl-1.11.0_beta9.ebuild | 16 ++++++++--------
dev-cpp/libcutl/metadata.xml | 5 +++++
2 files changed, 13 insertions(+), 8 deletions(-)
diff --git a/dev-cpp/libcutl/libcutl-1.11.0_beta9.ebuild b/dev-cpp/libcutl/libcutl-1.11.0_beta9.ebuild
index 1e6bdc845..12b258c0b 100644
--- a/dev-cpp/libcutl/libcutl-1.11.0_beta9.ebuild
+++ b/dev-cpp/libcutl/libcutl-1.11.0_beta9.ebuild
@@ -1,16 +1,16 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
MY_P="${PN}-$(ver_cut 1-3)-b.$(ver_cut 5)"
-inherit multiprocessing
+inherit edo multiprocessing
SRC_URI="https://pkg.cppget.org/1/beta/${PN}/${MY_P}.tar.gz"
KEYWORDS='~amd64 ~x86'
DESCRIPTION='C++ utility library'
-HOMEPAGE='https://www.codesynthesis.com/projects/libstudxml/'
+HOMEPAGE='https://www.codesynthesis.com/projects/libcutl/'
LICENSE='MIT'
SLOT='0'
@@ -22,7 +22,7 @@ BDEPEND='dev-util/build2'
S="${WORKDIR}/${MY_P}"
src_configure() {
- b configure \
+ edo b configure \
config.cc.coptions="${CFLAGS}" \
config.cc.loptions="${LDFLAGS}" \
config.cxx.coptions="${CXXFLAGS}" \
@@ -33,26 +33,26 @@ src_configure() {
}
src_compile() {
- b update-for-install \
+ edo b update-for-install \
config.install.root="${EPREFIX}"/usr \
--jobs $(makeopts_jobs) \
--no-progress \
--verbose 2
- use test && b update-for-test \
+ use test && edo b update-for-test \
--jobs $(makeopts_jobs) \
--no-progress \
--verbose 2
}
src_test() {
- b test \
+ edo b test \
--jobs $(makeopts_jobs) \
--no-progress \
--verbose 2
}
src_install() {
- b install \
+ edo b install \
config.install.chroot="${D}" \
config.install.root="${EPREFIX}"/usr \
config.install.lib="${EPREFIX}"/usr/$(get_libdir) \
diff --git a/dev-cpp/libcutl/metadata.xml b/dev-cpp/libcutl/metadata.xml
index 0d9c85300..8e3a67742 100644
--- a/dev-cpp/libcutl/metadata.xml
+++ b/dev-cpp/libcutl/metadata.xml
@@ -7,4 +7,9 @@
tests, smart pointers, containers, compiler building blocks,
etc.
</longdescription>
+ <maintainer type="person">
+ <description>co-maintainers welcome</description>
+ <email>pravorskyi@meta.ua</email>
+ <name>Andrii Pravorskyi</name>
+ </maintainer>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/libcutl/
@ 2022-06-07 6:26 Anna Vyalkova
0 siblings, 0 replies; 3+ messages in thread
From: Anna Vyalkova @ 2022-06-07 6:26 UTC (permalink / raw
To: gentoo-commits
commit: e65fd3bf0ec156eeed63c4c3405a5c2952d9a77a
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Mon Jun 6 10:06:13 2022 +0000
Commit: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Tue Jun 7 06:26:03 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e65fd3bf
dev-cpp/libcutl: use build2 eclass
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
dev-cpp/libcutl/libcutl-1.11.0_beta9.ebuild | 55 ++++-------------------------
1 file changed, 6 insertions(+), 49 deletions(-)
diff --git a/dev-cpp/libcutl/libcutl-1.11.0_beta9.ebuild b/dev-cpp/libcutl/libcutl-1.11.0_beta9.ebuild
index 12b258c0b..187eb5e62 100644
--- a/dev-cpp/libcutl/libcutl-1.11.0_beta9.ebuild
+++ b/dev-cpp/libcutl/libcutl-1.11.0_beta9.ebuild
@@ -5,57 +5,14 @@ EAPI=8
MY_P="${PN}-$(ver_cut 1-3)-b.$(ver_cut 5)"
-inherit edo multiprocessing
+inherit build2
SRC_URI="https://pkg.cppget.org/1/beta/${PN}/${MY_P}.tar.gz"
-KEYWORDS='~amd64 ~x86'
-DESCRIPTION='C++ utility library'
-HOMEPAGE='https://www.codesynthesis.com/projects/libcutl/'
-LICENSE='MIT'
+DESCRIPTION="C++ utility library"
+HOMEPAGE="https://www.codesynthesis.com/projects/libcutl/"
-SLOT='0'
-IUSE='test'
-RESTRICT='!test? ( test )'
-
-BDEPEND='dev-util/build2'
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+LICENSE="MIT"
S="${WORKDIR}/${MY_P}"
-
-src_configure() {
- edo b configure \
- config.cc.coptions="${CFLAGS}" \
- config.cc.loptions="${LDFLAGS}" \
- config.cxx.coptions="${CXXFLAGS}" \
- config.cxx.loptions="${LDFLAGS}" \
- --jobs $(makeopts_jobs) \
- --no-progress \
- --verbose 2
-}
-
-src_compile() {
- edo b update-for-install \
- config.install.root="${EPREFIX}"/usr \
- --jobs $(makeopts_jobs) \
- --no-progress \
- --verbose 2
- use test && edo b update-for-test \
- --jobs $(makeopts_jobs) \
- --no-progress \
- --verbose 2
-}
-
-src_test() {
- edo b test \
- --jobs $(makeopts_jobs) \
- --no-progress \
- --verbose 2
-}
-
-src_install() {
- edo b install \
- config.install.chroot="${D}" \
- config.install.root="${EPREFIX}"/usr \
- config.install.lib="${EPREFIX}"/usr/$(get_libdir) \
- config.install.doc="${EPREFIX}"/usr/share/doc/${PF} \
- --no-progress
-}
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2022-06-07 6:27 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-06-05 0:58 [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/libcutl/ Andrii Pravorskyi
-- strict thread matches above, loose matches on Subject: below --
2022-06-05 21:51 Andrii Pravorskyi
2022-06-07 6:26 Anna Vyalkova
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox