summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Seifert <soap@gentoo.org>2022-07-02 15:42:40 +0200
committerDavid Seifert <soap@gentoo.org>2022-07-02 15:42:40 +0200
commit159d73173c1a50bf0be5e1488fdbe6c978c36a99 (patch)
tree2f7bee8c42d9aadaedc9d8a79e3356adf4bdd111 /net-p2p/rtorrent
parentnet-p2p/rtorrent: drop inactive proxied maintainer (diff)
downloadgentoo-159d73173c1a50bf0be5e1488fdbe6c978c36a99.tar.gz
gentoo-159d73173c1a50bf0be5e1488fdbe6c978c36a99.tar.bz2
gentoo-159d73173c1a50bf0be5e1488fdbe6c978c36a99.zip
net-p2p/rtorrent: drop 0.9.7, 0.9.7-r1
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'net-p2p/rtorrent')
-rw-r--r--net-p2p/rtorrent/files/rtorrent-0.9.7-execinfo-configure.patch23
-rw-r--r--net-p2p/rtorrent/files/rtorrent-0.9.7-tinfo.patch31
2 files changed, 0 insertions, 54 deletions
diff --git a/net-p2p/rtorrent/files/rtorrent-0.9.7-execinfo-configure.patch b/net-p2p/rtorrent/files/rtorrent-0.9.7-execinfo-configure.patch
deleted file mode 100644
index 2c7ce5222b80..000000000000
--- a/net-p2p/rtorrent/files/rtorrent-0.9.7-execinfo-configure.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-From f84670dd6394729158569a7a5366a00a7d1dccb2 Mon Sep 17 00:00:00 2001
-From: Stephen Shkardoon <ss23@ss23.geek.nz>
-Date: Mon, 25 Jun 2018 20:14:43 +1200
-Subject: [PATCH] Use AC_COMPILE instead of AC_RUN to check for execinfo.h
-
-This way enables cross compiling, since we don't need to run anything during the configure script.
----
- scripts/common.m4 | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/scripts/common.m4 b/scripts/common.m4
-index 9885b037..b1b815b1 100644
---- a/scripts/common.m4
-+++ b/scripts/common.m4
-@@ -153,7 +153,7 @@ dnl Need to fix this so that it uses the stuff defined by the system.
- AC_DEFUN([TORRENT_CHECK_EXECINFO], [
- AC_MSG_CHECKING(for execinfo.h)
-
-- AC_RUN_IFELSE([AC_LANG_SOURCE([
-+ AC_COMPILE_IFELSE([AC_LANG_SOURCE([
- #include <execinfo.h>
- int main() { backtrace((void**)0, 0); backtrace_symbols((char**)0, 0); return 0;}
- ])],
diff --git a/net-p2p/rtorrent/files/rtorrent-0.9.7-tinfo.patch b/net-p2p/rtorrent/files/rtorrent-0.9.7-tinfo.patch
deleted file mode 100644
index 8bb009eb676d..000000000000
--- a/net-p2p/rtorrent/files/rtorrent-0.9.7-tinfo.patch
+++ /dev/null
@@ -1,31 +0,0 @@
---- a/configure.ac 2018-06-06 23:25:24.000000000 -0500
-+++ b/configure.ac 2018-06-18 15:19:52.398995740 -0500
-@@ -32,17 +32,23 @@
- TORRENT_WITHOUT_STATFS
-
- AX_PTHREAD([], AC_MSG_ERROR([requires pthread]))
--AX_WITH_CURSES
--
--if test "x$ax_cv_ncursesw" != xyes && test "x$ax_cv_ncurses" != xyes; then
-- AC_MSG_ERROR([requires either NcursesW or Ncurses library])
--fi
-+PKG_CHECK_MODULES([CURSES],[ncursesw],[
-+ AC_DEFINE(HAVE_NCURSESW_CURSES_H, 1)
-+ ],
-+ [PKG_CHECK_MODULES([CURSES],[ncurses],[
-+ AC_DEFINE(HAVE_NCURSES_H, 1)
-+ ],
-+ [AX_WITH_CURSES()
-+ if test "x$ax_cv_ncursesw" != xyes && test "x$ax_cv_ncurses" != xyes; then
-+ AC_MSG_ERROR([requires either NcursesW or Ncurses library])
-+ fi])
-+ ])
-
- PKG_CHECK_MODULES([LIBCURL], [libcurl], , [LIBCURL_CHECK_CONFIG])
- PKG_CHECK_MODULES([CPPUNIT], [cppunit],, [no_cppunit="yes"])
- PKG_CHECK_MODULES([DEPENDENCIES], [libtorrent >= 0.13.7])
-
--LIBS="$PTHREAD_LIBS $CURSES_LIB $CPPUNIT_LIBS $LIBCURL $LIBCURL_LIBS $DEPENDENCIES_LIBS $LIBS"
-+LIBS="$PTHREAD_LIBS $CURSES_LIB $CURSES_LIBS $CPPUNIT_LIBS $LIBCURL $LIBCURL_LIBS $DEPENDENCIES_LIBS $LIBS"
- CFLAGS="$CFLAGS $PTHREAD_CFLAGS $CPPUNIT_CFLAGS $LIBCURL_CPPFLAGS $LIBCURL_CFLAGS $DEPENDENCIES_CFLAGS $CURSES_CFLAGS"
- CXXFLAGS="$CXXFLAGS $PTHREAD_CFLAGS $CPPUNIT_CFLAGS $LIBCURL_CPPFLAGS $LIBCURL_CFLAGS $DEPENDENCIES_CFLAGS $CURSES_CFLAGS"