mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-09 23:23:00 -04:00
net-client/telescope: add 0.7.1, drop 0.5.2
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in>
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
DIST telescope-0.5.2.tar.gz 270398 BLAKE2B e745eca6f259707036bed780956c57efad2320d66b40b13d644cff78a84d225d5dea58f19d2586d22b2ce43e193f37f47337ee229be09558bf16cd029515b8f4 SHA512 34e22fd2139c4e0ca04562d3f9542891a6cb743814cf8c1eae3c15e7ae65dd5bc9b609701788aa8b641ce30ce27ca602662ddad597093fa10966f0d588e85806
|
||||
DIST telescope-0.6.1.sha.sig 437 BLAKE2B 6ebfe552772f99c4ffba71db429ecbc12b3722154137965b93d250389c91a3ef00da4578b1987e0d9867ae4e0a8af64280192fa30cb1d45f01f0791d8741d6b5 SHA512 c963c43f8e17b6bb5e964f999d041e3cf6bdee14c2123b5e5041511cdef63f5e308c8b4d31c9eee32708d9a54c75cc43cb65b32b89f2f8b13918b54f216350db
|
||||
DIST telescope-0.6.1.tar.gz 277742 BLAKE2B 3a782084dbb2f56836fcb5f68158c4b767d3ca742d6d177aca00757485ee0854b56b7f561a3f2040382584087f0a5e7936e7c2daa959b5549f1fd678b4b22ba6 SHA512 aff74406c87ed59a3adec7e5d43ac99f4e8d18e761d7590197ab86b4b8fd50882bcc783f47e1da8eab2a0a632a8b78212b45b1ab314527fc7b96fb2cb16d78f0
|
||||
DIST telescope-0.7.1.sha.sig 731 BLAKE2B f70f261e517a3eb3a6c853e7fee373d83cdd2a02c715fe1a8badad41c48d5791af968ddaf53eaaa0b7d26ee0c2b6e8d40174a344c2e9ba3c957c1a0428c89138 SHA512 233749dc11a47c4b27703bf74a434be445b5de708297e6737d4d17a076d97b04819a02ee75c53fdf2266eeaf31b5dae39b72d87839d7855adf7c23efe639ec3f
|
||||
DIST telescope-0.7.1.tar.gz 282170 BLAKE2B bf0f0ed5299ce0e2d5bc1970de13ccaeb9180f6dae30d0771f7942acbf90be6f37d8c30fb710ca89c644c1257c4f2538d6080f55f8c0e0223370120c9bc478b9 SHA512 2c56bfc2bf107dc27ac569539a2db405dafe1de9604e13544c293d81667c4172d617dbacfd1403fad68950d73d4e2f1ca08204c6ac2bef17bd8591e53c38e808
|
||||
|
||||
@@ -1,27 +0,0 @@
|
||||
# Copyright 2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
DESCRIPTION="w3m-like browser for Gemini"
|
||||
HOMEPAGE="https://telescope.omarpolo.com"
|
||||
SRC_URI="https://github.com/omar-polo/${PN}/releases/download/${PV}/${P}.tar.gz"
|
||||
|
||||
LICENSE="!libbsd? ( BSD MIT ) ISC unicode"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
|
||||
IUSE="+libbsd"
|
||||
|
||||
DEPEND="
|
||||
dev-libs/imsg-compat
|
||||
dev-libs/libevent:=
|
||||
dev-libs/libretls
|
||||
sys-libs/ncurses:=
|
||||
libbsd? ( dev-libs/libbsd )
|
||||
"
|
||||
RDEPEND="${DEPEND}"
|
||||
BDEPEND="virtual/pkgconfig"
|
||||
|
||||
src_configure() {
|
||||
econf --with-libimsg $(use_with libbsd)
|
||||
}
|
||||
55
net-client/telescope/telescope-0.7.1.ebuild
Normal file
55
net-client/telescope/telescope-0.7.1.ebuild
Normal file
@@ -0,0 +1,55 @@
|
||||
# Copyright 2021-2022 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
VERIFY_SIG_METHOD="signify"
|
||||
inherit toolchain-funcs verify-sig
|
||||
|
||||
DESCRIPTION="w3m-like browser for Gemini"
|
||||
HOMEPAGE="https://telescope.omarpolo.com"
|
||||
SRC_URI="https://github.com/omar-polo/${PN}/releases/download/${PV}/${P}.tar.gz
|
||||
verify-sig? ( https://github.com/omar-polo/${PN}/releases/download/${PV}/SHA256.sig -> ${P}.sha.sig )"
|
||||
|
||||
LICENSE="!libbsd? ( BSD MIT ) ISC unicode"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="+libbsd"
|
||||
|
||||
DEPEND="
|
||||
dev-libs/imsg-compat
|
||||
dev-libs/libevent:=
|
||||
dev-libs/libretls:=
|
||||
sys-libs/ncurses:=
|
||||
libbsd? ( dev-libs/libbsd )
|
||||
"
|
||||
RDEPEND="${DEPEND}"
|
||||
BDEPEND="
|
||||
virtual/pkgconfig
|
||||
verify-sig? ( sec-keys/signify-keys-telescope:$(ver_cut 1-2) )
|
||||
"
|
||||
|
||||
VERIFY_SIG_OPENPGP_KEY_PATH="${BROOT}/usr/share/signify-keys/${PN}-$(ver_cut 1-2).pub"
|
||||
|
||||
src_unpack() {
|
||||
if use verify-sig; then
|
||||
# Too many levels of symbolic links
|
||||
cp "${DISTDIR}"/${P}.{sha.sig,tar.gz} "${WORKDIR}" || die
|
||||
cd "${WORKDIR}" || die
|
||||
verify-sig_verify_signed_checksums \
|
||||
${P}.sha.sig sha256 ${P}.tar.gz
|
||||
fi
|
||||
default
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
tc-export_build_env BUILD_CC
|
||||
local econf_args=(
|
||||
HOSTCC="${BUILD_CC}"
|
||||
HOSTCFLAGS="${BUILD_CFLAGS}"
|
||||
$(use_with libbsd)
|
||||
--with-libimsg
|
||||
)
|
||||
|
||||
econf "${econf_args[@]}"
|
||||
}
|
||||
Reference in New Issue
Block a user