84f2203288
https://mail-index.netbsd.org/pkgsrc-changes/2020/01/18/msg205146.html In the above commit, the homepage URLs were migrated from http to https, assuming that SourceForge would use the same host names for both http and https connections. This assumption was wrong. Their documentation at https://sourceforge.net/p/forge/documentation/Custom%20VHOSTs/ states that the https URLs use the domain sourceforge.io instead. To make the homepages from the above commit reachable again, pkglint has been extended to check for reachable homepages. This check is only enabled when the --network command line option is given. Each of the homepages that referred to https://$project.sourceforge.net before was migrated to https://$project.sourceforge.io (27), and if that was not reachable, to the fallback URL http://$project.sourceforge.net (163).
21 lines
598 B
Makefile
21 lines
598 B
Makefile
# $NetBSD: Makefile,v 1.16 2020/01/26 05:26:13 rillig Exp $
|
|
|
|
DISTNAME= pyid3lib-0.5.1
|
|
PKGNAME= ${PYPKGPREFIX}-id3lib-0.5.1
|
|
PKGREVISION= 2
|
|
CATEGORIES= audio
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=pyid3lib/}
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://pyid3lib.sourceforge.net/
|
|
COMMENT= Python module for editing ID3v2 tags of MP3 audio files
|
|
LICENSE= gnu-lgpl-v2.1
|
|
|
|
USE_LANGUAGES= c c++
|
|
|
|
PYTHON_VERSIONS_ACCEPTED= 27 # not yet ported as of 0.5.1
|
|
|
|
.include "../../lang/python/distutils.mk"
|
|
.include "../../audio/id3lib/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|