From ec9f79e1d3358df31a704f16a76a269ccceae2b2 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sat, 24 Dec 2022 20:03:07 +0000 Subject: gentoo auto-resync : 24:12:2022 - 20:03:07 --- dev-libs/aml/Manifest | 6 +++--- dev-libs/aml/aml-0.2.1.ebuild | 40 ---------------------------------------- dev-libs/aml/aml-0.2.2.ebuild | 40 ++++++++++++++++++++++++++++++++++++++++ dev-libs/aml/metadata.xml | 3 +++ 4 files changed, 46 insertions(+), 43 deletions(-) delete mode 100644 dev-libs/aml/aml-0.2.1.ebuild create mode 100644 dev-libs/aml/aml-0.2.2.ebuild (limited to 'dev-libs/aml') diff --git a/dev-libs/aml/Manifest b/dev-libs/aml/Manifest index f39392763bed..75d56a6b62e9 100644 --- a/dev-libs/aml/Manifest +++ b/dev-libs/aml/Manifest @@ -1,4 +1,4 @@ -DIST aml-0.2.1.tar.gz 20413 BLAKE2B 62f8cc0e75f23ac7dc8835dd874f584cdb5b394b0d7af08feded06b99ccff66395e0ec04bdd26917ef7784457dc170c2c99bc98a118ecff947602e4d9a60bf21 SHA512 0af4a50cafbddd2a593dac437e6c8121de5265d0383139818bcda97d672a7430cb410ce32552b6842bc82eaebb061bc6cc0ee1b45a483754efbdfbc2103fa2e3 -EBUILD aml-0.2.1.ebuild 781 BLAKE2B 84ef1a03bef5871649d70370a596a4581d1c925a4db5513217b6ebb904cb9a16951c45a6fc0f5832499bdee77f9e5e112b2471916d91377df131accb0fad0f3d SHA512 f7dbebee00b2692cf4d617c4d5863c28ab37160bfa2f250b3061c192bdf6a6cf8739b3b2a18138c3a1d99036f25a3684c5427e4ebc217ffc1f7961f6c3f74c60 +DIST aml-0.2.2.tar.gz 20442 BLAKE2B 3ea4e03ba511096fc02db628d2591ddf247f79ccdf7638614a2a20fe74dfa563b555662492d976371b407ab013bbb83c193c047fca48f7f08b05cf47e6a87ab4 SHA512 3cb5bf28186a9056b579dd76440202837d96a7abde9427c45a810068d5e051c642303cd73b012e3b093ffb1577896753a50fcc508b2a30c49146033bb74156e7 +EBUILD aml-0.2.2.ebuild 781 BLAKE2B ea8a4befb581d3adb605d2b96dfc1068bdcab706dc47e52763e3c7e892d6ff81296b2043225dee915684951677e657ff68b4f8760b7b96d972f9b462cebd8419 SHA512 b73ea0f16403bb9be8fc54000c564a9542688caf751833c578696cde2f8901f7936fb8b42d5666715fa4c49d2e865de6cc03262589b1f7eca5adee41e8861f91 EBUILD aml-9999.ebuild 781 BLAKE2B 84ef1a03bef5871649d70370a596a4581d1c925a4db5513217b6ebb904cb9a16951c45a6fc0f5832499bdee77f9e5e112b2471916d91377df131accb0fad0f3d SHA512 f7dbebee00b2692cf4d617c4d5863c28ab37160bfa2f250b3061c192bdf6a6cf8739b3b2a18138c3a1d99036f25a3684c5427e4ebc217ffc1f7961f6c3f74c60 -MISC metadata.xml 241 BLAKE2B 846f82e50a664313c50b12a55e75e373c741f992d300613e78ff61acacc9c26ce73fd9fc3d8e195eabc2fb3ce8f4b327b667e02f96cc7937c3d8d2805c80768e SHA512 65d4acc3b715ff5e9929bee91adeebae522449519fc091cbdaa3afd74bdb36cb7f8f13d96ca7e95757ad9e66ace68727ca96940a4187ece4c7821a5f8992e64e +MISC metadata.xml 314 BLAKE2B fc1e90acf2fa500b8297519bd2dc8564d1f9e16dec689c0dcc93afa22178e4d1b9ddfc4443a02b7135aa6a4a8454fc58b829f8b232b23271be73ace58d7aa268 SHA512 f8a38eface650ff709222d3c1ff19516cdbb94c70b1e2b826bd1df5a02a40ecbc1c921e8649cd71ae55902beb52d21eab609b0263e63e2328fb12923cf4b699f diff --git a/dev-libs/aml/aml-0.2.1.ebuild b/dev-libs/aml/aml-0.2.1.ebuild deleted file mode 100644 index 5ff10f20992d..000000000000 --- a/dev-libs/aml/aml-0.2.1.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 2020-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit meson - -DESCRIPTION="Event timer executor loop" -HOMEPAGE="https://github.com/any1/aml/" - -if [[ ${PV} == 9999 ]]; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/any1/aml.git" -else - SRC_URI="https://github.com/any1/aml/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~riscv ~x86" -fi - -LICENSE="ISC" -SLOT="0" -IUSE="examples" - -DEPEND="elibc_musl? ( sys-libs/queue-standalone )" - -src_prepare() { - default - - # The bundled copy includes cdefs which breaks on musl and - # this header is already available on glibc. - # bug #828806 - rm include/sys/queue.h || die -} - -src_configure() { - local emesonargs=( - $(meson_use examples) - ) - - meson_src_configure -} diff --git a/dev-libs/aml/aml-0.2.2.ebuild b/dev-libs/aml/aml-0.2.2.ebuild new file mode 100644 index 000000000000..4fb5ab4d3ca9 --- /dev/null +++ b/dev-libs/aml/aml-0.2.2.ebuild @@ -0,0 +1,40 @@ +# Copyright 2020-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit meson + +DESCRIPTION="Event timer executor loop" +HOMEPAGE="https://github.com/any1/aml/" + +if [[ ${PV} == 9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/any1/aml.git" +else + SRC_URI="https://github.com/any1/aml/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~riscv ~x86" +fi + +LICENSE="ISC" +SLOT="0" +IUSE="examples" + +DEPEND="elibc_musl? ( sys-libs/queue-standalone )" + +src_prepare() { + default + + # The bundled copy includes cdefs which breaks on musl and + # this header is already available on glibc. + # bug #828806 + rm include/sys/queue.h || die +} + +src_configure() { + local emesonargs=( + $(meson_use examples) + ) + + meson_src_configure +} diff --git a/dev-libs/aml/metadata.xml b/dev-libs/aml/metadata.xml index 25cb689305de..3721b93dab05 100644 --- a/dev-libs/aml/metadata.xml +++ b/dev-libs/aml/metadata.xml @@ -2,6 +2,9 @@ + + any1/aml + Build and install examples -- cgit v1.2.3