From owner-svn-ports-head@freebsd.org Tue Jun 14 09:28:32 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D5409AF2D74; Tue, 14 Jun 2016 09:28:32 +0000 (UTC) (envelope-from araujo@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 968DD2714; Tue, 14 Jun 2016 09:28:32 +0000 (UTC) (envelope-from araujo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u5E9SVqW057632; Tue, 14 Jun 2016 09:28:31 GMT (envelope-from araujo@FreeBSD.org) Received: (from araujo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u5E9SVoh057629; Tue, 14 Jun 2016 09:28:31 GMT (envelope-from araujo@FreeBSD.org) Message-Id: <201606140928.u5E9SVoh057629@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: araujo set sender to araujo@FreeBSD.org using -f From: Marcelo Araujo Date: Tue, 14 Jun 2016 09:28:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r416883 - in head/www/youtube_dl: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Jun 2016 09:28:32 -0000 Author: araujo Date: Tue Jun 14 09:28:31 2016 New Revision: 416883 URL: https://svnweb.freebsd.org/changeset/ports/416883 Log: Update to 2016.06.12. Modified: head/www/youtube_dl/Makefile head/www/youtube_dl/distinfo head/www/youtube_dl/files/patch-Makefile Modified: head/www/youtube_dl/Makefile ============================================================================== --- head/www/youtube_dl/Makefile Tue Jun 14 09:05:02 2016 (r416882) +++ head/www/youtube_dl/Makefile Tue Jun 14 09:28:31 2016 (r416883) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= youtube_dl -PORTVERSION= 2016.05.21.2 +PORTVERSION= 2016.06.12 CATEGORIES= www MASTER_SITES= https://yt-dl.org/downloads/${PORTVERSION}/ DISTNAME= youtube-dl-${PORTVERSION} Modified: head/www/youtube_dl/distinfo ============================================================================== --- head/www/youtube_dl/distinfo Tue Jun 14 09:05:02 2016 (r416882) +++ head/www/youtube_dl/distinfo Tue Jun 14 09:28:31 2016 (r416883) @@ -1,3 +1,3 @@ -TIMESTAMP = 1464323637 -SHA256 (youtube-dl-2016.05.21.2.tar.gz) = 66f94fc97012c4c7a6338dc4df6ec62af66dcfc144c5e8c8cd8b5519756f1a98 -SIZE (youtube-dl-2016.05.21.2.tar.gz) = 2156460 +TIMESTAMP = 1465939922 +SHA256 (youtube-dl-2016.06.12.tar.gz) = da22f40f0a837eaf92ac2f3088eb2b64cabd14a03b5c003645ac0b1ef94f6528 +SIZE (youtube-dl-2016.06.12.tar.gz) = 2200023 Modified: head/www/youtube_dl/files/patch-Makefile ============================================================================== --- head/www/youtube_dl/files/patch-Makefile Tue Jun 14 09:05:02 2016 (r416882) +++ head/www/youtube_dl/files/patch-Makefile Tue Jun 14 09:28:31 2016 (r416883) @@ -1,16 +1,15 @@ ---- Makefile.orig 2016-04-28 22:59:03 UTC +--- Makefile.orig 2016-06-14 21:37:21 UTC +++ Makefile -@@ -11,8 +11,7 @@ MANDIR ?= $(PREFIX)/man - SHAREDIR ?= $(PREFIX)/share +@@ -12,7 +12,7 @@ SHAREDIR ?= $(PREFIX)/share PYTHON ?= /usr/bin/env python --# set SYSCONFDIR to /etc if PREFIX=/usr or PREFIX=/usr/local + # set SYSCONFDIR to /etc if PREFIX=/usr or PREFIX=/usr/local -SYSCONFDIR != if [ $(PREFIX) = /usr -o $(PREFIX) = /usr/local ]; then echo /etc; else echo $(PREFIX)/etc; fi +SYSCONFDIR ?= $(PREFIX)/etc install: youtube-dl youtube-dl.1 youtube-dl.bash-completion youtube-dl.zsh youtube-dl.fish install -d $(DESTDIR)$(BINDIR) -@@ -20,11 +19,11 @@ install: youtube-dl youtube-dl.1 youtube +@@ -20,11 +20,11 @@ install: youtube-dl youtube-dl.1 youtube install -d $(DESTDIR)$(MANDIR)/man1 install -m 644 youtube-dl.1 $(DESTDIR)$(MANDIR)/man1 install -d $(DESTDIR)$(SYSCONFDIR)/bash_completion.d @@ -25,12 +24,12 @@ codetest: flake8 . -@@ -68,11 +67,6 @@ supportedsites: +@@ -68,11 +68,6 @@ supportedsites: README.txt: README.md pandoc -f markdown -t plain README.md -o README.txt -youtube-dl.1: README.md -- $(PYTHON) devscripts/prepare_manpage.py >youtube-dl.1.temp.md +- $(PYTHON) devscripts/prepare_manpage.py youtube-dl.1.temp.md - pandoc -s -f markdown -t man youtube-dl.1.temp.md -o youtube-dl.1 - rm -f youtube-dl.1.temp.md -