From owner-svn-ports-head@freebsd.org Tue Nov 15 07:43:12 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 78CD1C422E5; Tue, 15 Nov 2016 07:43:12 +0000 (UTC) (envelope-from knu@iDaemons.org) Received: from mail.musha.org (v055125.ppp.asahi-net.or.jp [124.155.55.125]) by mx1.freebsd.org (Postfix) with ESMTP id 3CF20179D; Tue, 15 Nov 2016 07:43:11 +0000 (UTC) (envelope-from knu@iDaemons.org) Received: by mail.musha.org (Postfix, from userid 58) id 3tHzdT1hPzzn4Mh; Tue, 15 Nov 2016 16:33:17 +0900 (JST) X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on daemon.musha.org X-Spam-Level: X-Spam-Status: No, score=-3.8 required=13.0 tests=AWL,BAYES_00, CONTENT_TYPE_PRESENT,FAKEDWORD_ONE,FAKEDWORD_VERTICALLINE,ONLY1HOPDIRECT, RP_MATCHES_RCVD,SPF_HELO_FAIL,SPF_SOFTFAIL autolearn=no autolearn_force=no version=3.4.1 Received: from daemon.musha.org (daemon.local.idaemons.org [192.168.11.11]) by mail.musha.org (Postfix) with ESMTP id 3tHzdS196Zzn4Mf; Tue, 15 Nov 2016 16:33:16 +0900 (JST) Date: Tue, 15 Nov 2016 16:33:16 +0900 Message-ID: <86eg2durib.knu@iDaemons.org> From: "Akinori MUSHA" To: Baptiste Daroussin Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r424685 - head/textproc/peco In-Reply-To: <20161112230004.2e62bb3abn32c6va@ivaldir.etoilebsd.net> References: <201610261012.u9QACXWF066795@repo.freebsd.org> <20161112230004.2e62bb3abn32c6va@ivaldir.etoilebsd.net> Organization: Associated I. Daemons X-PGP-Public-Key: finger knu@FreeBSD.org X-PGP-Fingerprint: 081D 099C 1705 861D 4B70 B04A 920B EFC7 9FD9 E1EE MIME-Version: 1.0 (generated by SEMI-EPG 1.14.7 - "Harue") Content-Type: multipart/signed; boundary="pgp-sign-Multipart_Tue_Nov_15_16:33:00_2016-1"; micalg=pgp-sha1; protocol="application/pgp-signature" Content-Transfer-Encoding: 7bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 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, 15 Nov 2016 07:43:12 -0000 --pgp-sign-Multipart_Tue_Nov_15_16:33:00_2016-1 Content-Type: text/plain; charset=US-ASCII Thanks for pointing it out. Does r426148 fix the problem? On Sun, 13 Nov 2016 08:00:04 +0900, Baptiste Daroussin wrote: > On Wed, Oct 26, 2016 at 10:12:33AM +0000, Akinori MUSHA wrote: > > Author: knu > > Date: Wed Oct 26 10:12:33 2016 > > New Revision: 424685 > > URL: https://svnweb.freebsd.org/changeset/ports/424685 > > > > Log: > > Update to 0.4.4. > > > > Peco started to use glide to fix dependencies, so depending on other > > ports no longer works. We need to have our own distfile and put it in > > the local-distfiles directory. > > > > Modified: > > head/textproc/peco/Makefile > > head/textproc/peco/distinfo > > > > Modified: head/textproc/peco/Makefile > > ============================================================================== > > --- head/textproc/peco/Makefile Wed Oct 26 09:31:59 2016 (r424684) > > +++ head/textproc/peco/Makefile Wed Oct 26 10:12:33 2016 (r424685) > > @@ -2,29 +2,44 @@ > > # $FreeBSD$ > > > > PORTNAME= peco > > -PORTVERSION= 0.3.5 > > +PORTVERSION= 0.4.4 > > DISTVERSIONPREFIX= v > > CATEGORIES= textproc > > +MASTER_SITES= LOCAL/knu > > > > MAINTAINER= knu@FreeBSD.org > > COMMENT= Simplistic interactive filtering tool > > > > LICENSE= MIT > > > > -BUILD_DEPENDS= ${LOCALBASE}/${GO_LIBDIR}/github.com/jessevdk/go-flags.a:devel/go-flags \ > > - ${LOCALBASE}/${GO_LIBDIR}/github.com/mattn/go-runewidth.a:devel/go-runewidth \ > > - ${LOCALBASE}/${GO_LIBDIR}/github.com/nsf/termbox-go.a:devel/go-termbox \ > > - ${LOCALBASE}/${GO_LIBDIR}/github.com/google/btree.a:devel/go-btree > > - > > USES= go > > -USE_GITHUB= yes > > > > -WRKSRC_SUBDIR= cmd/peco > > -GO_PKGNAME= github.com/${PORTNAME}/${PORTNAME}/cmd/peco > > +WRKSRC_SUBDIR= ${GO_PKG_SUBDIR} > > +WRKSRC_GITDIR= ${WRKSRC:S|/${WRKSRC_SUBDIR}$$||} > > +GO_PKG_GITURL= https://github.com/${PORTNAME}/${PORTNAME} > > +GO_PKG_SUBDIR= cmd/peco > > +GO_PKGNAME= ${GO_PKG_GITURL:S|^https://||}/${GO_PKG_SUBDIR} > > PLIST_FILES= bin/peco > > +UPLOAD_FILE= ${_DISTDIR:S|/$||}/${DISTFILES:[1]} > This syntax is bmake specific, fmake is still supported (freebsd 9) > > Please fix > > > Best regards, > Bapt -- Akinori MUSHA / https://akinori.org/ --pgp-sign-Multipart_Tue_Nov_15_16:33:00_2016-1 Content-Type: application/pgp-signature Content-Transfer-Encoding: 7bit Content-Description: OpenPGP Digital Signature -----BEGIN PGP SIGNATURE----- iEYEABECAAYFAlgquiwACgkQkgvvx5/Z4e4YkQCdFzuQt0flCsC7nD/OBkdUr6M3 +JkAoLjax5I1kYK2DZLgPDBSRGopJWI6 =S3Aa -----END PGP SIGNATURE----- --pgp-sign-Multipart_Tue_Nov_15_16:33:00_2016-1--