Received: by mail.netbsd.org (Postfix, from userid 605) id 6369B84FCC; Tue, 13 Aug 2019 02:29:55 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id DDFB184FC2 for ; Tue, 13 Aug 2019 02:29:54 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id 95nRqNa4NiJO for ; Tue, 13 Aug 2019 02:29:54 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 4079084CE8 for ; Tue, 13 Aug 2019 02:29:54 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 324C9FBF4; Tue, 13 Aug 2019 02:29:54 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_156566339473210" MIME-Version: 1.0 Date: Tue, 13 Aug 2019 02:29:54 +0000 From: "Brook Milligan" Subject: CVS commit: pkgsrc To: pkgsrc-changes@NetBSD.org Reply-To: brook@netbsd.org X-Mailer: log_accum Message-Id: <20190813022954.324C9FBF4@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_156566339473210 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: brook Date: Tue Aug 13 02:29:54 UTC 2019 Modified Files: pkgsrc/doc: CHANGES-2019 pkgsrc/print: Makefile Added Files: pkgsrc/print/tex-outline: DESCR Makefile PLIST distinfo Log Message: tex-outline: initial commit The package defines an outline environment, which provides facilities similar to enumerate, but up to 6 levels deep. To generate a diff of this commit: cvs rdiff -u -r1.3411 -r1.3412 pkgsrc/doc/CHANGES-2019 cvs rdiff -u -r1.740 -r1.741 pkgsrc/print/Makefile cvs rdiff -u -r0 -r1.1 pkgsrc/print/tex-outline/DESCR \ pkgsrc/print/tex-outline/Makefile pkgsrc/print/tex-outline/PLIST \ pkgsrc/print/tex-outline/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_156566339473210 Content-Disposition: inline Content-Length: 3243 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/doc/CHANGES-2019 diff -u pkgsrc/doc/CHANGES-2019:1.3411 pkgsrc/doc/CHANGES-2019:1.3412 --- pkgsrc/doc/CHANGES-2019:1.3411 Tue Aug 13 02:27:23 2019 +++ pkgsrc/doc/CHANGES-2019 Tue Aug 13 02:29:53 2019 @@ -1,4 +1,4 @@ -$NetBSD: CHANGES-2019,v 1.3411 2019/08/13 02:27:23 brook Exp $ +$NetBSD: CHANGES-2019,v 1.3412 2019/08/13 02:29:53 brook Exp $ Changes to the packages collection and infrastructure in 2019: @@ -5619,3 +5619,4 @@ Changes to the packages collection and i Added print/tex-beamerposter-doc version 1.13 [brook 2019-08-13] Added print/tex-nfssext-cfr version 2019 [brook 2019-08-13] Added print/tex-nfssext-cfr-doc version 2019 [brook 2019-08-13] + Added print/tex-outline version 2019 [brook 2019-08-13] Index: pkgsrc/print/Makefile diff -u pkgsrc/print/Makefile:1.740 pkgsrc/print/Makefile:1.741 --- pkgsrc/print/Makefile:1.740 Tue Aug 13 02:27:23 2019 +++ pkgsrc/print/Makefile Tue Aug 13 02:29:53 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.740 2019/08/13 02:27:23 brook Exp $ +# $NetBSD: Makefile,v 1.741 2019/08/13 02:29:53 brook Exp $ # COMMENT= Desktop publishing @@ -1025,6 +1025,7 @@ SUBDIR+= tex-otibet SUBDIR+= tex-otibet-doc SUBDIR+= tex-oubraces SUBDIR+= tex-oubraces-doc +SUBDIR+= tex-outline SUBDIR+= tex-overpic SUBDIR+= tex-pagenote SUBDIR+= tex-pagenote-doc Added files: Index: pkgsrc/print/tex-outline/DESCR diff -u /dev/null pkgsrc/print/tex-outline/DESCR:1.1 --- /dev/null Tue Aug 13 02:29:54 2019 +++ pkgsrc/print/tex-outline/DESCR Tue Aug 13 02:29:53 2019 @@ -0,0 +1,2 @@ +The package defines an outline environment, which provides +facilities similar to enumerate, but up to 6 levels deep. Index: pkgsrc/print/tex-outline/Makefile diff -u /dev/null pkgsrc/print/tex-outline/Makefile:1.1 --- /dev/null Tue Aug 13 02:29:54 2019 +++ pkgsrc/print/tex-outline/Makefile Tue Aug 13 02:29:53 2019 @@ -0,0 +1,13 @@ +# $NetBSD: Makefile,v 1.1 2019/08/13 02:29:53 brook Exp $ + +DISTNAME= outline +PKGNAME= tex-${DISTNAME}-2019 +TEXLIVE_REV= 18360 + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= http://ctan.org/pkg/outline +COMMENT= List environment for making outlines +LICENSE= lppl-1.3c + +.include "../../print/texlive/package.mk" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/print/tex-outline/PLIST diff -u /dev/null pkgsrc/print/tex-outline/PLIST:1.1 --- /dev/null Tue Aug 13 02:29:54 2019 +++ pkgsrc/print/tex-outline/PLIST Tue Aug 13 02:29:53 2019 @@ -0,0 +1,2 @@ +@comment $NetBSD: PLIST,v 1.1 2019/08/13 02:29:53 brook Exp $ +share/texmf-dist/tex/latex/outline/outline.sty Index: pkgsrc/print/tex-outline/distinfo diff -u /dev/null pkgsrc/print/tex-outline/distinfo:1.1 --- /dev/null Tue Aug 13 02:29:54 2019 +++ pkgsrc/print/tex-outline/distinfo Tue Aug 13 02:29:53 2019 @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2019/08/13 02:29:53 brook Exp $ + +SHA1 (tex-outline-18360/outline.tar.xz) = b27441d08a312cc76a667741ef70c016c7a8b3a2 +RMD160 (tex-outline-18360/outline.tar.xz) = 9ff5dbdd522e2b7be753594a3ac2f37bdd20fcc9 +SHA512 (tex-outline-18360/outline.tar.xz) = ccfb49c4e035f0d246f00aae56efa9d6570ad3997c44e2bf70588ce67a0bc3fb7bccff19b65629fb27158b0156a9802d97ea1f8edf6f4494f644f40df5d97118 +Size (tex-outline-18360/outline.tar.xz) = 1528 bytes --_----------=_156566339473210--