From 3e9fa44e9c862fccfedf3cfdad18bf1f3c29d64c Mon Sep 17 00:00:00 2001 From: "Liguros - Gitlab CI/CD [develop]" Date: Tue, 11 Mar 2025 18:55:07 +0000 Subject: Adding metadata --- dev-cpp/asio/Manifest | 2 +- dev-cpp/asio/asio-1.31.0.ebuild | 58 ----------------------------------------- dev-cpp/asio/asio-1.34.0.ebuild | 58 +++++++++++++++++++++++++++++++++++++++++ 3 files changed, 59 insertions(+), 59 deletions(-) delete mode 100644 dev-cpp/asio/asio-1.31.0.ebuild create mode 100644 dev-cpp/asio/asio-1.34.0.ebuild (limited to 'dev-cpp/asio') diff --git a/dev-cpp/asio/Manifest b/dev-cpp/asio/Manifest index d1788b4d766b..b94658928e4f 100644 --- a/dev-cpp/asio/Manifest +++ b/dev-cpp/asio/Manifest @@ -1,2 +1,2 @@ -DIST asio-1-31-0.tar.gz 2857145 BLAKE2B 34ab6fb8c3d26100bba94541b851578d180a456a6cbc3c0755b2a0d48c3cb61a2104f2dc58d0a266fc9f670a575b449f9caa528cee9154623e888a10cf7080f0 SHA512 505c3f4e4043cd73be1a28ab611d7f61046d6b60f80c08aaceea892a76ce7f51056d39516d7b4e836611a9974c227de52c0434122af0ea8539ceb57363a82b62 DIST asio-1-32-0.tar.gz 2857719 BLAKE2B 1a86245fa9622d33bba22a82e455147fb4cfbd7e1a9bf4bd0107f46881163e9938ed06156b6f40fa1cfbe4007e3016cc8572d1d7caafada74c80725bce302f93 SHA512 9374ff97bd4af7b5b41754970b2bcb468f450fee46a80c9c3344f732c64091f2ac5a73ebf4ac1831c623793c08a3c109ae90b601273c40d062bfd4f026f1d94d +DIST asio-1-34-0.tar.gz 2845964 BLAKE2B 6b51544ead3c17a1ab35524b21e1ff51d38ae86a70622bc86c04678d882843f5f03c35363a7f0b23393fa688b6dd0600cec5c1a4812e273cca1813700c04f0ec SHA512 989e1b453cd5ab3cd8d9d35ea828c6fefb539b41c5e7f57b1dcba9a0a0f1cb2f90a80b4e03cc071fc904e2cf82212e6afb29062d50c2ebf36e798ce171f3ed48 diff --git a/dev-cpp/asio/asio-1.31.0.ebuild b/dev-cpp/asio/asio-1.31.0.ebuild deleted file mode 100644 index bafa58f95e12..000000000000 --- a/dev-cpp/asio/asio-1.31.0.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 2021-2024 Liguros Authors -# Distributed under the terms of the GNU General Public License v2 -EAPI=8 - -inherit autotools - -DESCRIPTION="Asynchronous Network Library" -HOMEPAGE="http://think-async.com/Asio/ https://github.com/chriskohlhoff/asio" -MY_PV=$(ver_rs 1- "-") -SRC_URI="https://github.com/chriskohlhoff/asio/archive/${PN}-${MY_PV}.tar.gz" - -LICENSE="Boost-1.0" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" -IUSE="doc examples libressl ssl test" -RESTRICT="!test? ( test )" -# test searches for libssl during ./configure, and REQUIRED_USE is easier than -# patching configure to not search for it with USE=-ssl -REQUIRED_USE="test? ( ssl )" - -RDEPEND="dev-libs/boost:= - ssl? ( - !libressl? ( dev-libs/openssl:0= ) - libressl? ( >=dev-libs/libressl-3.5.0:0= ) - )" -DEPEND="${RDEPEND}" - -S=${WORKDIR}/${PN}-${PN}-${MY_PV}/asio - -src_prepare() { - default - - eautoreconf - - if ! use test; then - # Don't build nor install any examples or unittests - # since we don't have a script to run them - cat > src/Makefile.in <<-EOF || die - all: - - install: - - clean: - EOF - fi -} - -src_install() { - use doc && local HTML_DOCS=( doc/. ) - default - - if use examples; then - # Get rid of the object files - emake clean - dodoc -r src/examples - docompress -x /usr/share/doc/${PF}/examples - fi -} diff --git a/dev-cpp/asio/asio-1.34.0.ebuild b/dev-cpp/asio/asio-1.34.0.ebuild new file mode 100644 index 000000000000..801fed872e6d --- /dev/null +++ b/dev-cpp/asio/asio-1.34.0.ebuild @@ -0,0 +1,58 @@ +# Copyright 2021-2025 Liguros Authors +# Distributed under the terms of the GNU General Public License v2 +EAPI=8 + +inherit autotools + +DESCRIPTION="Asynchronous Network Library" +HOMEPAGE="http://think-async.com/Asio/ https://github.com/chriskohlhoff/asio" +MY_PV=$(ver_rs 1- "-") +SRC_URI="https://github.com/chriskohlhoff/asio/archive/${PN}-${MY_PV}.tar.gz" + +LICENSE="Boost-1.0" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="doc examples libressl ssl test" +RESTRICT="!test? ( test )" +# test searches for libssl during ./configure, and REQUIRED_USE is easier than +# patching configure to not search for it with USE=-ssl +REQUIRED_USE="test? ( ssl )" + +RDEPEND="dev-libs/boost:= + ssl? ( + !libressl? ( dev-libs/openssl:0= ) + libressl? ( >=dev-libs/libressl-3.5.0:0= ) + )" +DEPEND="${RDEPEND}" + +S=${WORKDIR}/${PN}-${PN}-${MY_PV}/asio + +src_prepare() { + default + + eautoreconf + + if ! use test; then + # Don't build nor install any examples or unittests + # since we don't have a script to run them + cat > src/Makefile.in <<-EOF || die + all: + + install: + + clean: + EOF + fi +} + +src_install() { + use doc && local HTML_DOCS=( doc/. ) + default + + if use examples; then + # Get rid of the object files + emake clean + dodoc -r src/examples + docompress -x /usr/share/doc/${PF}/examples + fi +} -- cgit v1.3.1