Update podcastdl to 0.3.3. From Rodrigo Osorio in PR pkg/51077.

Tue April 19 2016.
Summary for 0.3.3 podcastdl release
	Fix a mistake recovering the URL from the rss when the GUID is not a permalink

Tue June 13 2015.
Summary for 0.3.2 podcastdl release
	Fix a bug caused by changes in the url control by curl
This commit is contained in:
bsiegert 2020-01-02 20:09:29 +00:00
parent 3a95209907
commit 88fb73e82c
3 changed files with 10 additions and 27 deletions

View file

@ -1,15 +1,14 @@
# $NetBSD: Makefile,v 1.16 2019/08/22 12:23:41 ryoon Exp $
# $NetBSD: Makefile,v 1.17 2020/01/02 20:09:29 bsiegert Exp $
#
DISTNAME= podcastdl-0.3.0
PKGREVISION= 15
DISTNAME= podcastdl-0.3.3
CATEGORIES= net
MASTER_SITES= http://files.bebik.net/podcastdl/
EXTRACT_SUFX= .tgz
MASTER_SITES= http://files.bebik.net/podcastdl/ \
http://rodrigo.osorio.free.fr/freebsd/distfiles/
MAINTAINER= ryoon@NetBSD.org
HOMEPAGE= http://www.bebik.net/doku.php?id=software:podcastdl
COMMENT= Podcastdl is a CLI podcast client
COMMENT= CLI podcast client
LICENSE= isc
USE_CMAKE= yes

View file

@ -1,7 +1,6 @@
$NetBSD: distinfo,v 1.3 2015/11/04 00:35:28 agc Exp $
$NetBSD: distinfo,v 1.4 2020/01/02 20:09:29 bsiegert Exp $
SHA1 (podcastdl-0.3.0.tgz) = 09cc6ac495943e5dc3e717d712ad8020b8a2e12b
RMD160 (podcastdl-0.3.0.tgz) = 912862019ac47c1e20699a1a92b5a5862019f6e1
SHA512 (podcastdl-0.3.0.tgz) = bbd56017bb3ce92d6cbf576d86a2b58eb65a64b37ece91e2f9d8c80e3b5f4245e60ccc586fab2052856780027af144963e420cde846b38cd901b243383f54a74
Size (podcastdl-0.3.0.tgz) = 5482 bytes
SHA1 (patch-src_CMakeLists.txt) = b0faf7b4311dac18165b3de1ee2f6836a8b6c0e3
SHA1 (podcastdl-0.3.3.tar.gz) = 93555540170f1f03a66ffbead0ef3a72461312ec
RMD160 (podcastdl-0.3.3.tar.gz) = 0aa96c2cc0b3277beb09a2d7d2f038e0883d6b44
SHA512 (podcastdl-0.3.3.tar.gz) = 54dd3ae98896f1fb77c21114e733d2759d5bfe771e65e0b6f34040a18b497a30ea78abdbb25835e18db3d0a86a14e7aab116a70144b65d5b8e8744fd25dbfa3a
Size (podcastdl-0.3.3.tar.gz) = 5580 bytes

View file

@ -1,15 +0,0 @@
$NetBSD: patch-src_CMakeLists.txt,v 1.1 2012/12/20 10:02:41 ryoon Exp $
* Fix build on Solaris
--- src/CMakeLists.txt.orig 2012-08-14 12:05:09.000000000 +0000
+++ src/CMakeLists.txt
@@ -4,7 +4,7 @@ add_definitions( -DPODCASTDL_VERSION_STR
add_executable(podcastdl podcastdl.c podcast.c util.c)
-target_link_libraries(podcastdl mrss)
+target_link_libraries(podcastdl mrss curl)
install(TARGETS podcastdl DESTINATION bin)