svn commit: r551360 - in branches/2020Q4: devel/upnp devel/upnp/files multimedia/vlc net-p2p/amule net-p2p/amule-devel
Tobias C. Berner
tcberner at FreeBSD.org
Sun Oct 4 06:50:49 UTC 2020
Author: tcberner
Date: Sun Oct 4 06:50:47 2020
New Revision: 551360
URL: https://svnweb.freebsd.org/changeset/ports/551360
Log:
MFH: r551336
devel/upnp: update to 1.14.0
Update to newer release which contains a fix for CVE-2020-13848:
https://github.com/pupnp/pupnp/commit/c805c1de1141cb22f74c0d94dd5664bda37398e0
Security: CVE-2020-13848
Approved by: ports-secteam (joneum)
Added:
branches/2020Q4/devel/upnp/files/
- copied from r551336, head/devel/upnp/files/
Modified:
branches/2020Q4/devel/upnp/Makefile
branches/2020Q4/devel/upnp/distinfo
branches/2020Q4/devel/upnp/pkg-plist
branches/2020Q4/multimedia/vlc/Makefile
branches/2020Q4/net-p2p/amule-devel/Makefile
branches/2020Q4/net-p2p/amule/Makefile
Directory Properties:
branches/2020Q4/ (props changed)
Modified: branches/2020Q4/devel/upnp/Makefile
==============================================================================
--- branches/2020Q4/devel/upnp/Makefile Sun Oct 4 06:41:35 2020 (r551359)
+++ branches/2020Q4/devel/upnp/Makefile Sun Oct 4 06:50:47 2020 (r551360)
@@ -3,7 +3,7 @@
PORTNAME= upnp
DISTVERSIONPREFIX= release-
-DISTVERSION= 1.12.1
+DISTVERSION= 1.14.0
PORTEPOCH= 1
CATEGORIES= devel
@@ -68,7 +68,7 @@ UNSPECIFIED_SERVER_CONFIGURE_ENABLE= unspecified_serve
do-install-DOCS-on:
@${MKDIR} ${STAGEDIR}${DOCSDIR}
- ${INSTALL_MAN} ${WRKSRC}/upnp/doc/UPnP_Programming_Guide.pdf \
+ ${INSTALL_MAN} ${WRKSRC}/docs/UPnP_Programming_Guide.pdf \
${STAGEDIR}${DOCSDIR}
.include <bsd.port.mk>
Modified: branches/2020Q4/devel/upnp/distinfo
==============================================================================
--- branches/2020Q4/devel/upnp/distinfo Sun Oct 4 06:41:35 2020 (r551359)
+++ branches/2020Q4/devel/upnp/distinfo Sun Oct 4 06:50:47 2020 (r551360)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1586644035
-SHA256 (mrjimenez-pupnp-release-1.12.1_GH0.tar.gz) = b4fc8f8e78d5d3259f321aecab1bc9d9ef7b9cea816c4b4d850b264120773290
-SIZE (mrjimenez-pupnp-release-1.12.1_GH0.tar.gz) = 786818
+TIMESTAMP = 1601746007
+SHA256 (mrjimenez-pupnp-release-1.14.0_GH0.tar.gz) = 8f8ef5eb7c434984a32b2fd614262855652b402418d4c453b5204823de1aa2de
+SIZE (mrjimenez-pupnp-release-1.14.0_GH0.tar.gz) = 788668
Modified: branches/2020Q4/devel/upnp/pkg-plist
==============================================================================
--- branches/2020Q4/devel/upnp/pkg-plist Sun Oct 4 06:41:35 2020 (r551359)
+++ branches/2020Q4/devel/upnp/pkg-plist Sun Oct 4 06:50:47 2020 (r551360)
@@ -1,22 +1,19 @@
-include/upnp/ActionComplete.h
-include/upnp/ActionRequest.h
include/upnp/Callback.h
-include/upnp/Discovery.h
-include/upnp/Event.h
-include/upnp/EventSubscribe.h
-include/upnp/ExtraHeaders.h
-include/upnp/FileInfo.h
-include/upnp/StateVarComplete.h
-include/upnp/StateVarRequest.h
-include/upnp/SubscriptionRequest.h
-include/upnp/TemplateInclude.h
-include/upnp/TemplateSource.h
-include/upnp/TemplateUndef.h
+include/upnp/UpnpActionComplete.h
+include/upnp/UpnpActionRequest.h
+include/upnp/UpnpDiscovery.h
+include/upnp/UpnpEvent.h
+include/upnp/UpnpEventSubscribe.h
+include/upnp/UpnpExtraHeaders.h
+include/upnp/UpnpFileInfo.h
include/upnp/UpnpGlobal.h
include/upnp/UpnpInet.h
include/upnp/UpnpIntTypes.h
+include/upnp/UpnpStateVarComplete.h
+include/upnp/UpnpStateVarRequest.h
include/upnp/UpnpStdInt.h
include/upnp/UpnpString.h
+include/upnp/UpnpSubscriptionRequest.h
include/upnp/UpnpUniStd.h
include/upnp/ithread.h
include/upnp/ixml.h
@@ -32,7 +29,7 @@ lib/libixml.so.11
lib/libixml.so.11.0.0
lib/libupnp.a
lib/libupnp.so
-lib/libupnp.so.16
-lib/libupnp.so.16.0.1
+lib/libupnp.so.17
+lib/libupnp.so.17.0.0
libdata/pkgconfig/libupnp.pc
%%PORTDOCS%%%%DOCSDIR%%/UPnP_Programming_Guide.pdf
Modified: branches/2020Q4/multimedia/vlc/Makefile
==============================================================================
--- branches/2020Q4/multimedia/vlc/Makefile Sun Oct 4 06:41:35 2020 (r551359)
+++ branches/2020Q4/multimedia/vlc/Makefile Sun Oct 4 06:50:47 2020 (r551360)
@@ -3,7 +3,7 @@
PORTNAME= vlc
DISTVERSION= 3.0.11
-PORTREVISION= 4
+PORTREVISION= 5
PORTEPOCH= 4
CATEGORIES= multimedia audio net www
MASTER_SITES= http://download.videolan.org/pub/videolan/${PORTNAME}/${DISTVERSION:S/a$//}/ \
Modified: branches/2020Q4/net-p2p/amule-devel/Makefile
==============================================================================
--- branches/2020Q4/net-p2p/amule-devel/Makefile Sun Oct 4 06:41:35 2020 (r551359)
+++ branches/2020Q4/net-p2p/amule-devel/Makefile Sun Oct 4 06:50:47 2020 (r551360)
@@ -3,6 +3,7 @@
PORTNAME= amule
PORTVERSION= 11055
+PORTREVISION= 1
CATEGORIES= net-p2p
MASTER_SITES= http://amule.sourceforge.net/tarballs/
PKGNAMESUFFIX= -devel
Modified: branches/2020Q4/net-p2p/amule/Makefile
==============================================================================
--- branches/2020Q4/net-p2p/amule/Makefile Sun Oct 4 06:41:35 2020 (r551359)
+++ branches/2020Q4/net-p2p/amule/Makefile Sun Oct 4 06:50:47 2020 (r551360)
@@ -3,7 +3,7 @@
PORTNAME= amule
PORTVERSION= 2.3.2
-PORTREVISION= 10
+PORTREVISION= 11
CATEGORIES= net-p2p
MASTER_SITES= SF/${PORTNAME}/aMule/${PORTVERSION}
DISTNAME= aMule-${PORTVERSION}
More information about the svn-ports-all
mailing list