diff options
author | Carlos Eduardo <carana2099@gmail.com> | 2022-02-15 19:43:50 -0300 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2022-02-16 00:47:01 +0100 |
commit | 61dd78cff8e708b6affe733d01cf7fde6b1054b4 (patch) | |
tree | 2193d24dbe16f44009bba60210f451e5e3b38116 /net-news/snownews | |
parent | net-news/snownews: add 1.9 (diff) | |
download | gentoo-61dd78cff8e708b6affe733d01cf7fde6b1054b4.tar.gz gentoo-61dd78cff8e708b6affe733d01cf7fde6b1054b4.tar.bz2 gentoo-61dd78cff8e708b6affe733d01cf7fde6b1054b4.zip |
net-news/snownews: drop 1.6.10-r1
Closes: https://github.com/gentoo/gentoo/pull/24139
Closes: https://bugs.gentoo.org/725224
Closes: https://bugs.gentoo.org/725250
Closes: https://bugs.gentoo.org/731690
Closes: https://bugs.gentoo.org/716716
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Carlos Eduardo <carana2099@gmail.com>
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'net-news/snownews')
-rw-r--r-- | net-news/snownews/Manifest | 1 | ||||
-rw-r--r-- | net-news/snownews/snownews-1.6.10-r1.ebuild | 50 |
2 files changed, 0 insertions, 51 deletions
diff --git a/net-news/snownews/Manifest b/net-news/snownews/Manifest index aa6e9c4e5050..9efa8c2cb418 100644 --- a/net-news/snownews/Manifest +++ b/net-news/snownews/Manifest @@ -1,2 +1 @@ -DIST snownews-1.6.10.tar.gz 189715 BLAKE2B 0456faa526b21d06c5a7fe70f52cffbb3c7d977afcc4a5bc80179fd928b9c00d0674d44a64342a469a1cbccd3a1e0264ecadc1065f5a85965d9ef76fc3d3d896 SHA512 df90c3c55da8d11b2936075aab86f66f54f9a6ace0cbe0db54d0e6177ae71e28ab3c700d79b521d55859bb94ef7ecc89e3eb69f215eb9f7286d30cc4e2bec078 DIST snownews-1.9.tar.gz 149935 BLAKE2B 331c94964a617871df8ab0ed7c8b36acea9386e7cb5057232dc5e93d148f04b56e64af96b9a212469115592d4509cba641bf183e927bddc9e12baff9f3936f20 SHA512 f833dbb41b5c0215c034b8388d787398360fac0ec9670f8f31b76c3ee2ffd974b4c6ebebc30aebb539b9904f513628124b393f4f473a92d4969f483caeca8596 diff --git a/net-news/snownews/snownews-1.6.10-r1.ebuild b/net-news/snownews/snownews-1.6.10-r1.ebuild deleted file mode 100644 index 78957b1ac1c2..000000000000 --- a/net-news/snownews/snownews-1.6.10-r1.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -inherit autotools toolchain-funcs - -DESCRIPTION="Command-line RSS feed reader" -HOMEPAGE="https://github.com/kouya/snownews" -SRC_URI="https://github.com/kouya/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux" -IUSE="" - -COMMON_DEPEND=" - >=dev-libs/libxml2-2.5.6 - sys-libs/ncurses:=[unicode(+)] -" -RDEPEND=" - ${COMMON_DEPEND} - dev-perl/XML-LibXML - dev-perl/libwww-perl -" - -DEPEND=" - ${COMMON_DEPEND} -" -BDEPEND="virtual/pkgconfig" - -src_prepare() { - default - tc-export PKG_CONFIG - local libs=$(${PKG_CONFIG} --libs ncursesw) - sed -i "s|-lncursesw\?|${libs}|" configure Config.mk.in || die - sed -i 's|$(INSTALL) -s snownews|$(INSTALL) snownews|' Makefile || die -} - -src_configure() { - tc-export PKG_CONFIG - # perl script, not autotools based - ./configure --prefix="${D}${EPREFIX}/usr" || die -} - -src_compile() { - emake \ - CC="$(tc-getCC)" \ - EXTRA_CFLAGS="${CFLAGS}" \ - EXTRA_LDFLAGS="${LDFLAGS}" -} |