From owner-svn-ports-head@freebsd.org Tue May 24 02:56:58 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 370F4B482CD; Tue, 24 May 2016 02:56:58 +0000 (UTC) (envelope-from pi@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 12B5C184A; Tue, 24 May 2016 02:56:58 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u4O2uv7J095007; Tue, 24 May 2016 02:56:57 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u4O2uufu095002; Tue, 24 May 2016 02:56:56 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201605240256.u4O2uufu095002@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Tue, 24 May 2016 02:56:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r415759 - in head/x11-fonts: . firacode 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, 24 May 2016 02:56:58 -0000 Author: pi Date: Tue May 24 02:56:56 2016 New Revision: 415759 URL: https://svnweb.freebsd.org/changeset/ports/415759 Log: New port: x11-fonts/firacode Fira Code is a version of Mozilla's Fira Mono font with additional ligatures. It is an extension of the Fira Mono font containing a set of ligatures for common programming multi-character combinations in languages like erlang, elixir, haskell, ocaml, clojure, scala etc where these symbols crop up frequently. This is just a font rendering feature: underlying code remains ASCII-compatible. This helps to read and understand code faster. For some frequent sequences like .. or //, ligatures allow us to correct spacing. WWW: https://github.com/tonsky/FiraCode PR: 209627 Submitted by: Dave Cottlehuber Added: head/x11-fonts/firacode/ head/x11-fonts/firacode/Makefile (contents, props changed) head/x11-fonts/firacode/distinfo (contents, props changed) head/x11-fonts/firacode/pkg-descr (contents, props changed) head/x11-fonts/firacode/pkg-plist (contents, props changed) Modified: head/x11-fonts/Makefile Modified: head/x11-fonts/Makefile ============================================================================== --- head/x11-fonts/Makefile Tue May 24 02:08:19 2016 (r415758) +++ head/x11-fonts/Makefile Tue May 24 02:56:56 2016 (r415759) @@ -42,6 +42,7 @@ SUBDIR += farsifonts SUBDIR += fifteen SUBDIR += fira + SUBDIR += firacode SUBDIR += fntsample SUBDIR += font-adobe-100dpi SUBDIR += font-adobe-75dpi Added: head/x11-fonts/firacode/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-fonts/firacode/Makefile Tue May 24 02:56:56 2016 (r415759) @@ -0,0 +1,26 @@ +# Created by: Dave Cottlehuber +# $FreeBSD$ + +PORTNAME= firacode +PORTVERSION= 1.102 +CATEGORIES= x11-fonts +MASTER_SITES= https://github.com/tonsky/FiraCode/releases/download/${PORTVERSION}/ +DISTNAME= FiraCode_${PORTVERSION} + +MAINTAINER= dch@skunkwerks.at +COMMENT= Monospaced font with programming ligatures derived from Fira + +LICENSE= OFL11 + +USES= fonts zip +USE_XORG= x11 +NO_ARCH= yes +NO_BUILD= yes +NO_WRKSUBDIR= yes + +do-install: + @${MKDIR} ${STAGEDIR}${FONTSDIR} + ${INSTALL_DATA} ${WRKSRC}/FiraCode_${PORTVERSION}/*.otf \ + ${STAGEDIR}${FONTSDIR} + +.include Added: head/x11-fonts/firacode/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-fonts/firacode/distinfo Tue May 24 02:56:56 2016 (r415759) @@ -0,0 +1,3 @@ +TIMESTAMP = 1463555079 +SHA256 (FiraCode_1.102.zip) = fe3dc4af0c7e44d715b6f9a1bfc1adb5fee76a533016c0a2b0c3b3da8efb996d +SIZE (FiraCode_1.102.zip) = 484946 Added: head/x11-fonts/firacode/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-fonts/firacode/pkg-descr Tue May 24 02:56:56 2016 (r415759) @@ -0,0 +1,12 @@ +Fira Code is a version of Mozilla's Fira Mono font with additional +ligatures. + +It is an extension of the Fira Mono font containing a set of ligatures +for common programming multi-character combinations in languages +like erlang, elixir, haskell, ocaml, clojure, scala etc where these +symbols crop up frequently. This is just a font rendering feature: +underlying code remains ASCII-compatible. This helps to read and +understand code faster. For some frequent sequences like .. or //, +ligatures allow us to correct spacing. + +WWW: https://github.com/tonsky/FiraCode Added: head/x11-fonts/firacode/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-fonts/firacode/pkg-plist Tue May 24 02:56:56 2016 (r415759) @@ -0,0 +1,5 @@ +%%FONTSDIR%%/FiraCode-Bold.otf +%%FONTSDIR%%/FiraCode-Light.otf +%%FONTSDIR%%/FiraCode-Medium.otf +%%FONTSDIR%%/FiraCode-Regular.otf +%%FONTSDIR%%/FiraCode-Retina.otf