mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-05 12:38:09 -07:00
sys-apps/pick: remove old
This commit is contained in:
@@ -1,3 +1 @@
|
||||
DIST pick-1.8.0.tar.gz 101366 BLAKE2B 2399c59af9168ec79092aed3a731b20ed9da5e10fc287a01760545049b9e8dfcf3c5463d5b524526df570c594e4e4c3a1f2a2535a83237b67ef429e01ca79802 SHA512 ed8198dfefeafc1397cdc9f80f8b1b88e7fb813f044ae296b8e6ca2789c8790149d334fdf305bb0e57bb0d42262ad73c4f1e9201132ef059f6b1c289989c3c9f
|
||||
DIST pick-1.9.0.tar.gz 106379 BLAKE2B 9c25c980e83fe9b3ee00c8a05ccfbd55f1d051ee00025b5384dc2e59c67bea344ceb7c4582850986a7eb065b22831b4e2e6de2412f3f524be415217e72056b6b SHA512 78b799be40f6ba8c312edf7f970d6bd304c6fdf24531182c601ef04465806f5697ffa78015547b8908dd5df57d1c08798b5dc27146eef818425a476fdc247085
|
||||
DIST pick-2.0.0.tar.gz 107860 BLAKE2B 95fccada43a7295876cc1d198c77eb9f2479d75e4b420cbd20e576dbb30962b34fe82811ff9d13f110b317d4d0f31143e39e092796f66e38fb509a0594719228 SHA512 ac5783902895fd76b5e936faf811c40b46ceb136a2383c4e1fc714f5e59c77f41591694241d9a42807cd78aabfb4d3a237d41f04e1c941e5aac40fe9ddfa4545
|
||||
|
||||
@@ -1,24 +0,0 @@
|
||||
Use pkg-config to determine ncurses libs and cflags to use. Fixes when building
|
||||
against ncurses with libtinfo split out.
|
||||
|
||||
--- pick-1.8.0/configure.ac
|
||||
+++ pick-1.8.0/configure.ac
|
||||
@@ -5,13 +5,10 @@
|
||||
AC_PROG_CC
|
||||
AM_PROG_CC_C_O
|
||||
AC_CHECK_FUNCS([pledge reallocarray strtonum])
|
||||
-AC_SEARCH_LIBS([setupterm], [curses], [],
|
||||
- [
|
||||
- AC_SEARCH_LIBS([setupterm], [ncursesw],
|
||||
- [AC_DEFINE([HAVE_NCURSESW_H], [1], [Define if ncursesw is available])],
|
||||
- [AC_MSG_ERROR([unable to find setupterm function])]
|
||||
- )
|
||||
- ]
|
||||
-)
|
||||
+PKG_CHECK_MODULES([NCURSES], [ncursesw],
|
||||
+ [AC_DEFINE([HAVE_NCURSESW_H], [1], [Define if ncursesw is available])],
|
||||
+ [PKG_CHECK_MODULES([NCURSES], [ncurses])])
|
||||
+CFLAGS="$CFLAGS $NCURSES_CFLAGS"
|
||||
+LIBS="$LIBS $NCURSES_LIBS"
|
||||
AC_CONFIG_FILES([Makefile])
|
||||
AC_OUTPUT
|
||||
@@ -1,29 +0,0 @@
|
||||
# Copyright 1999-2017 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
inherit autotools
|
||||
|
||||
DESCRIPTION="a fuzzy search tool for the command-line"
|
||||
HOMEPAGE="https://github.com/calleerlandsson/pick"
|
||||
SRC_URI="https://github.com/calleerlandsson/pick/releases/download/v${PV}/${P}.tar.gz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND="sys-libs/ncurses:0="
|
||||
DEPEND="${RDEPEND}
|
||||
virtual/pkgconfig"
|
||||
|
||||
PATCHES=(
|
||||
"${FILESDIR}"/${P}-cflags.patch
|
||||
"${FILESDIR}"/${P}-tinfo.patch
|
||||
)
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
eautoreconf
|
||||
}
|
||||
@@ -1,28 +0,0 @@
|
||||
# Copyright 1999-2017 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
inherit autotools
|
||||
|
||||
DESCRIPTION="a fuzzy search tool for the command-line"
|
||||
HOMEPAGE="https://github.com/calleerlandsson/pick"
|
||||
SRC_URI="https://github.com/calleerlandsson/pick/releases/download/v${PV}/${P}.tar.gz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND="sys-libs/ncurses:0="
|
||||
DEPEND="${RDEPEND}
|
||||
virtual/pkgconfig"
|
||||
|
||||
PATCHES=(
|
||||
"${FILESDIR}"/${PN}-1.8.0-cflags.patch
|
||||
)
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
eautoreconf
|
||||
}
|
||||
Reference in New Issue
Block a user