commit: 8e56cf55abed5c0639b37766c290994078e7f278 Author: Jonas Frei <freijon <AT> pm <DOT> me> AuthorDate: Wed Apr 16 18:36:45 2025 +0000 Commit: Jonas Frei <freijon <AT> pm <DOT> me> CommitDate: Thu Apr 17 12:25:35 2025 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=8e56cf55
net-misc/curlie: add 1.8.2 Signed-off-by: Jonas Frei <freijon <AT> pm.me> net-misc/curlie/Manifest | 2 ++ net-misc/curlie/curlie-1.8.2.ebuild | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 35 insertions(+) diff --git a/net-misc/curlie/Manifest b/net-misc/curlie/Manifest index ba0361542..a82e6d3ca 100644 --- a/net-misc/curlie/Manifest +++ b/net-misc/curlie/Manifest @@ -1,2 +1,4 @@ DIST curlie-1.7.2-deps.tar.xz 24899320 BLAKE2B 837e10c6d547956016ffbc2fc4a4bc74a0e600d6ecfa987d2194b9055450138c0f21c2bcd3321af8ec6a57ed4881ce2c61dfa09d9a73fde76818ea98e5d97a6a SHA512 147863111435d8cc34a687f8203547e545b202a58154178788848ceaa7f3aff9f9a0fb99639bc053d2b4d53b1f030e9939fb4d1014ebf9bf36a5e865d3f87c52 DIST curlie-1.7.2.tar.gz 441361 BLAKE2B 4e805430632bb0df98ccc57ed6dd9c3efac687bbc381cbee3d3d896baea69df33a11111dc07732ab4535c5ecc74cc8719ab44bc30d5fc207856c3ef79c9f78c1 SHA512 d74c81458a4b378f3c98d7c7574b3c18767d159b6bb01bf71486da839c224110bd6b42717637cd9c2deb90811076314ba2d2cc2d9917f9f06c9dc2a11f87acce +DIST curlie-1.8.2-deps.tar.xz 2437668 BLAKE2B 58b8896b0adf574c36783c26a17144880405f252dcd5ed4dc7a141dd43eff2ab9d333e04fcc0a59a0fb2fc08e843414fb112eaacea988934ad64e0ae40b73a3f SHA512 cf7d38b2e6c5fb88f2f3ad24152548e32d617770973d1d33185d869b37270f601467f857aa44437f0fd7f18dac01cdc85b2ecc8c7deb7e0d21408e9022db6af2 +DIST curlie-1.8.2.tar.gz 440572 BLAKE2B fcb9ededca246226619c5b34802ba85d885fc1bb1835033894d0d68845e4693bb61b794f957906790da53612c3f7bd039cb8a6e1e6ad3c391fdcf4ec3b690380 SHA512 ec332f76e9ade22e026f4920d39a4c678886f436b1021e0bf8ab62da52bad506d728f5516bb72dbda566e9e359d2cbe77f0e5dcc4632e7f36170750f42a3bdf6 diff --git a/net-misc/curlie/curlie-1.8.2.ebuild b/net-misc/curlie/curlie-1.8.2.ebuild new file mode 100644 index 000000000..6c07d0fa8 --- /dev/null +++ b/net-misc/curlie/curlie-1.8.2.ebuild @@ -0,0 +1,33 @@ +# Copyright 2022-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit go-module + +DESCRIPTION="Curlie is a frontend to curl that adds the ease of use of httpie" +HOMEPAGE="https://curlie.io/" +SRC_URI="https://github.com/rs/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + +# Using a dependency tarball as per https://devmanual.gentoo.org/eclass-reference/go-module.eclass/index.html +DEPS_URI="https://github.com/freijon/${PN}/releases/download/v${PV}/${P}-deps.tar.xz" +SRC_URI+=" ${DEPS_URI}" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" + +DEPEND=" + net-misc/curl +" +RDEPEND="${DEPEND}" + +src_compile() { + ego build . +} + +src_install() { + dobin ${PN} + dodoc "README.md" + default +}
