All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/3] libtorrent: drop sigc dep & switch homepage
@ 2015-10-05  1:04 Gustavo Zacarias
  2015-10-05  1:04 ` [Buildroot] [PATCH 2/3] rtorrent: " Gustavo Zacarias
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Gustavo Zacarias @ 2015-10-05  1:04 UTC (permalink / raw)
  To: buildroot

libsigc isn't used/needed any longer so drop it.
And switch to the proper homepage rather than the tarball repository.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/libtorrent/Config.in     | 3 +--
 package/libtorrent/libtorrent.mk | 2 +-
 2 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/package/libtorrent/Config.in b/package/libtorrent/Config.in
index 02ed73a..48e6add 100644
--- a/package/libtorrent/Config.in
+++ b/package/libtorrent/Config.in
@@ -3,11 +3,10 @@ config BR2_PACKAGE_LIBTORRENT
 	depends on BR2_INSTALL_LIBSTDCPP
 	depends on BR2_TOOLCHAIN_HAS_THREADS
 	depends on BR2_ARCH_HAS_ATOMICS
-	select BR2_PACKAGE_LIBSIGC
 	help
 	  BitTorrent library written in C++ for *nix
 
-	  http://rtorrent.net/downloads/
+	  https://github.com/rakshasa/libtorrent
 
 comment "libtorrent needs a toolchain w/ C++, threads"
 	depends on BR2_ARCH_HAS_ATOMICS
diff --git a/package/libtorrent/libtorrent.mk b/package/libtorrent/libtorrent.mk
index 9690acb..633b86a 100644
--- a/package/libtorrent/libtorrent.mk
+++ b/package/libtorrent/libtorrent.mk
@@ -6,7 +6,7 @@
 
 LIBTORRENT_VERSION = 0.13.6
 LIBTORRENT_SITE = http://rtorrent.net/downloads
-LIBTORRENT_DEPENDENCIES = host-pkgconf libsigc \
+LIBTORRENT_DEPENDENCIES = host-pkgconf \
 	$(if $(BR2_PACKAGE_OPENSSL),openssl) \
 	$(if $(BR2_PACKAGE_ZLIB),zlib)
 LIBTORRENT_CONF_OPTS = --enable-aligned \
-- 
2.4.9

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [Buildroot] [PATCH 2/3] rtorrent: drop sigc dep & switch homepage
  2015-10-05  1:04 [Buildroot] [PATCH 1/3] libtorrent: drop sigc dep & switch homepage Gustavo Zacarias
@ 2015-10-05  1:04 ` Gustavo Zacarias
  2015-10-05  1:04 ` [Buildroot] [PATCH 3/3] libtorrent: zlib is mandatory Gustavo Zacarias
  2015-10-05  6:29 ` [Buildroot] [PATCH 1/3] libtorrent: drop sigc dep & switch homepage Peter Korsgaard
  2 siblings, 0 replies; 4+ messages in thread
From: Gustavo Zacarias @ 2015-10-05  1:04 UTC (permalink / raw)
  To: buildroot

libsigc isn't used/needed any longer so drop it.
And switch to the proper homepage rather than the tarball repository.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/rtorrent/Config.in   | 3 +--
 package/rtorrent/rtorrent.mk | 2 +-
 2 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/package/rtorrent/Config.in b/package/rtorrent/Config.in
index 77ab595..0583152 100644
--- a/package/rtorrent/Config.in
+++ b/package/rtorrent/Config.in
@@ -6,14 +6,13 @@ config BR2_PACKAGE_RTORRENT
 	depends on BR2_USE_MMU # fork()
 	depends on BR2_ARCH_HAS_ATOMICS # libtorrent
 	select BR2_PACKAGE_LIBCURL
-	select BR2_PACKAGE_LIBSIGC
 	select BR2_PACKAGE_LIBTORRENT
 	select BR2_PACKAGE_NCURSES
 	select BR2_PACKAGE_OPENSSL
 	help
 	  BitTorrent Client using libtorrent
 
-	  http://rtorrent.net/downloads/
+	  https://github.com/rakshasa/rtorrent
 
 comment "rtorrent needs a toolchain w/ C++, threads, wchar"
 	depends on BR2_USE_MMU
diff --git a/package/rtorrent/rtorrent.mk b/package/rtorrent/rtorrent.mk
index bedf404..edde02e 100644
--- a/package/rtorrent/rtorrent.mk
+++ b/package/rtorrent/rtorrent.mk
@@ -6,7 +6,7 @@
 
 RTORRENT_VERSION = 0.9.6
 RTORRENT_SITE = http://rtorrent.net/downloads
-RTORRENT_DEPENDENCIES = host-pkgconf libcurl libsigc libtorrent ncurses
+RTORRENT_DEPENDENCIES = host-pkgconf libcurl libtorrent ncurses
 RTORRENT_AUTORECONF = YES
 RTORRENT_LICENSE = GPLv2
 RTORRENT_LICENSE_FILES = COPYING
-- 
2.4.9

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [Buildroot] [PATCH 3/3] libtorrent: zlib is mandatory
  2015-10-05  1:04 [Buildroot] [PATCH 1/3] libtorrent: drop sigc dep & switch homepage Gustavo Zacarias
  2015-10-05  1:04 ` [Buildroot] [PATCH 2/3] rtorrent: " Gustavo Zacarias
@ 2015-10-05  1:04 ` Gustavo Zacarias
  2015-10-05  6:29 ` [Buildroot] [PATCH 1/3] libtorrent: drop sigc dep & switch homepage Peter Korsgaard
  2 siblings, 0 replies; 4+ messages in thread
From: Gustavo Zacarias @ 2015-10-05  1:04 UTC (permalink / raw)
  To: buildroot

zlib isn't optional even though it seems like it, fixes build failure
such as:

log.cc:51:18: fatal error: zlib.h: No such file or directory

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/libtorrent/Config.in     | 1 +
 package/libtorrent/libtorrent.mk | 9 ++++-----
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/package/libtorrent/Config.in b/package/libtorrent/Config.in
index 48e6add..17a1f23 100644
--- a/package/libtorrent/Config.in
+++ b/package/libtorrent/Config.in
@@ -3,6 +3,7 @@ config BR2_PACKAGE_LIBTORRENT
 	depends on BR2_INSTALL_LIBSTDCPP
 	depends on BR2_TOOLCHAIN_HAS_THREADS
 	depends on BR2_ARCH_HAS_ATOMICS
+	select BR2_PACKAGE_ZLIB
 	help
 	  BitTorrent library written in C++ for *nix
 
diff --git a/package/libtorrent/libtorrent.mk b/package/libtorrent/libtorrent.mk
index 633b86a..ef1c75f 100644
--- a/package/libtorrent/libtorrent.mk
+++ b/package/libtorrent/libtorrent.mk
@@ -6,13 +6,12 @@
 
 LIBTORRENT_VERSION = 0.13.6
 LIBTORRENT_SITE = http://rtorrent.net/downloads
-LIBTORRENT_DEPENDENCIES = host-pkgconf \
-	$(if $(BR2_PACKAGE_OPENSSL),openssl) \
-	$(if $(BR2_PACKAGE_ZLIB),zlib)
+LIBTORRENT_DEPENDENCIES = host-pkgconf zlib \
+	$(if $(BR2_PACKAGE_OPENSSL),openssl)
 LIBTORRENT_CONF_OPTS = --enable-aligned \
 	--disable-instrumentation \
-	$(if $(BR2_PACKAGE_OPENSSL),--enable-openssl,--disable-openssl) \
-	$(if $(BR2_PACKAGE_ZLIB),--with-zlib=$(STAGING_DIR)/usr,--without-zlib)
+	--with-zlib=$(STAGING_DIR)/usr \
+	$(if $(BR2_PACKAGE_OPENSSL),--enable-openssl,--disable-openssl)
 LIBTORRENT_INSTALL_STAGING = YES
 LIBTORRENT_AUTORECONF = YES
 LIBTORRENT_LICENSE = GPLv2
-- 
2.4.9

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [Buildroot] [PATCH 1/3] libtorrent: drop sigc dep & switch homepage
  2015-10-05  1:04 [Buildroot] [PATCH 1/3] libtorrent: drop sigc dep & switch homepage Gustavo Zacarias
  2015-10-05  1:04 ` [Buildroot] [PATCH 2/3] rtorrent: " Gustavo Zacarias
  2015-10-05  1:04 ` [Buildroot] [PATCH 3/3] libtorrent: zlib is mandatory Gustavo Zacarias
@ 2015-10-05  6:29 ` Peter Korsgaard
  2 siblings, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2015-10-05  6:29 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 > libsigc isn't used/needed any longer so drop it.
 > And switch to the proper homepage rather than the tarball repository.

Committed all 3, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2015-10-05  6:29 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-10-05  1:04 [Buildroot] [PATCH 1/3] libtorrent: drop sigc dep & switch homepage Gustavo Zacarias
2015-10-05  1:04 ` [Buildroot] [PATCH 2/3] rtorrent: " Gustavo Zacarias
2015-10-05  1:04 ` [Buildroot] [PATCH 3/3] libtorrent: zlib is mandatory Gustavo Zacarias
2015-10-05  6:29 ` [Buildroot] [PATCH 1/3] libtorrent: drop sigc dep & switch homepage Peter Korsgaard

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.