Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id 572121A9239 for ; Mon, 18 Apr 2022 03:23:27 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 5E71384EAF; Mon, 18 Apr 2022 03:23:26 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 99DB984E5A for ; Mon, 18 Apr 2022 03:23:25 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id 17ZlG5-u-47b for ; Mon, 18 Apr 2022 03:23:24 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id AD93984CE9 for ; Mon, 18 Apr 2022 03:23:24 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id A70F5FB19; Mon, 18 Apr 2022 03:23:24 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1650252204184640" MIME-Version: 1.0 Date: Mon, 18 Apr 2022 03:23:24 +0000 From: "Mark Davies" Subject: CVS commit: pkgsrc/print To: pkgsrc-changes@NetBSD.org Reply-To: markd@netbsd.org X-Mailer: log_accum Message-Id: <20220418032324.A70F5FB19@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1650252204184640 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: markd Date: Mon Apr 18 03:23:24 UTC 2022 Modified Files: pkgsrc/print: Makefile Added Files: pkgsrc/print/tex-morefloats: DESCR Makefile PLIST distinfo pkgsrc/print/tex-morefloats-doc: DESCR Makefile PLIST distinfo Log Message: tex-morefloats{,-doc}: Add version 1.0h LaTeX can, by default, only cope with 18 outstanding floats; any more, and you get the error "too many unprocessed floats". This package releases the limit; TeX itself imposes limits (which are independent of the help offered by e-TeX). However, if your floats can't be placed anywhere, extending the number of floats merely delays the arrival of the inevitable error message. To generate a diff of this commit: cvs rdiff -u -r1.839 -r1.840 pkgsrc/print/Makefile cvs rdiff -u -r0 -r1.1 pkgsrc/print/tex-morefloats/DESCR \ pkgsrc/print/tex-morefloats/Makefile pkgsrc/print/tex-morefloats/PLIST \ pkgsrc/print/tex-morefloats/distinfo cvs rdiff -u -r0 -r1.1 pkgsrc/print/tex-morefloats-doc/DESCR \ pkgsrc/print/tex-morefloats-doc/Makefile \ pkgsrc/print/tex-morefloats-doc/PLIST \ pkgsrc/print/tex-morefloats-doc/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1650252204184640 Content-Disposition: inline Content-Length: 4777 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/print/Makefile diff -u pkgsrc/print/Makefile:1.839 pkgsrc/print/Makefile:1.840 --- pkgsrc/print/Makefile:1.839 Mon Apr 18 03:20:55 2022 +++ pkgsrc/print/Makefile Mon Apr 18 03:23:24 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.839 2022/04/18 03:20:55 markd Exp $ +# $NetBSD: Makefile,v 1.840 2022/04/18 03:23:24 markd Exp $ # COMMENT= Desktop publishing @@ -1132,6 +1132,8 @@ SUBDIR+= tex-mltex SUBDIR+= tex-mltex-doc SUBDIR+= tex-moderncv SUBDIR+= tex-moderncv-doc +SUBDIR+= tex-morefloats +SUBDIR+= tex-morefloats-doc SUBDIR+= tex-moreverb SUBDIR+= tex-moreverb-doc SUBDIR+= tex-mparhack Added files: Index: pkgsrc/print/tex-morefloats/DESCR diff -u /dev/null pkgsrc/print/tex-morefloats/DESCR:1.1 --- /dev/null Mon Apr 18 03:23:24 2022 +++ pkgsrc/print/tex-morefloats/DESCR Mon Apr 18 03:23:24 2022 @@ -0,0 +1,7 @@ +LaTeX can, by default, only cope with 18 outstanding floats; +any more, and you get the error "too many unprocessed floats". +This package releases the limit; TeX itself imposes limits +(which are independent of the help offered by e-TeX). However, +if your floats can't be placed anywhere, extending the number +of floats merely delays the arrival of the inevitable error +message. Index: pkgsrc/print/tex-morefloats/Makefile diff -u /dev/null pkgsrc/print/tex-morefloats/Makefile:1.1 --- /dev/null Mon Apr 18 03:23:24 2022 +++ pkgsrc/print/tex-morefloats/Makefile Mon Apr 18 03:23:24 2022 @@ -0,0 +1,13 @@ +# $NetBSD: Makefile,v 1.1 2022/04/18 03:23:24 markd Exp $ + +DISTNAME= morefloats +PKGNAME= tex-${DISTNAME}-1.0h +TEXLIVE_REV= 37927 + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= https://ctan.org/pkg/morefloats +COMMENT= Increase the number of simultaneous LaTeX floats +LICENSE= lppl-1.3c + +.include "../../print/texlive/package.mk" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/print/tex-morefloats/PLIST diff -u /dev/null pkgsrc/print/tex-morefloats/PLIST:1.1 --- /dev/null Mon Apr 18 03:23:24 2022 +++ pkgsrc/print/tex-morefloats/PLIST Mon Apr 18 03:23:24 2022 @@ -0,0 +1,2 @@ +@comment $NetBSD: PLIST,v 1.1 2022/04/18 03:23:24 markd Exp $ +share/texmf-dist/tex/latex/morefloats/morefloats.sty Index: pkgsrc/print/tex-morefloats/distinfo diff -u /dev/null pkgsrc/print/tex-morefloats/distinfo:1.1 --- /dev/null Mon Apr 18 03:23:24 2022 +++ pkgsrc/print/tex-morefloats/distinfo Mon Apr 18 03:23:24 2022 @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1 2022/04/18 03:23:24 markd Exp $ + +BLAKE2s (morefloats.r37927.tar.xz) = b4796d821d62c41688b814c61ad592686b3d71e9f7230053d61eee963f8ac4a2 +SHA512 (morefloats.r37927.tar.xz) = 28fd471aa854852cc2a48597dda19cadda3c92c589d0419b8d36e044f9c04e406037f162e1d02c1f4b20a6288efe4a689fe4e03aafbfc6b06cf14019f7e880f0 +Size (morefloats.r37927.tar.xz) = 4456 bytes Index: pkgsrc/print/tex-morefloats-doc/DESCR diff -u /dev/null pkgsrc/print/tex-morefloats-doc/DESCR:1.1 --- /dev/null Mon Apr 18 03:23:24 2022 +++ pkgsrc/print/tex-morefloats-doc/DESCR Mon Apr 18 03:23:24 2022 @@ -0,0 +1 @@ +Documentation for tex-morefloats. Index: pkgsrc/print/tex-morefloats-doc/Makefile diff -u /dev/null pkgsrc/print/tex-morefloats-doc/Makefile:1.1 --- /dev/null Mon Apr 18 03:23:24 2022 +++ pkgsrc/print/tex-morefloats-doc/Makefile Mon Apr 18 03:23:24 2022 @@ -0,0 +1,13 @@ +# $NetBSD: Makefile,v 1.1 2022/04/18 03:23:24 markd Exp $ + +DISTNAME= morefloats.doc +PKGNAME= tex-${DISTNAME:S/./-/}-1.0h +TEXLIVE_REV= 37927 + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= https://ctan.org/pkg/morefloats +COMMENT= Documentation for tex-morefloats +LICENSE= lppl-1.3c + +.include "../../print/texlive/package.mk" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/print/tex-morefloats-doc/PLIST diff -u /dev/null pkgsrc/print/tex-morefloats-doc/PLIST:1.1 --- /dev/null Mon Apr 18 03:23:24 2022 +++ pkgsrc/print/tex-morefloats-doc/PLIST Mon Apr 18 03:23:24 2022 @@ -0,0 +1,5 @@ +@comment $NetBSD: PLIST,v 1.1 2022/04/18 03:23:24 markd Exp $ +share/texmf-dist/doc/latex/morefloats/README +share/texmf-dist/doc/latex/morefloats/morefloats-example.pdf +share/texmf-dist/doc/latex/morefloats/morefloats-example.tex +share/texmf-dist/doc/latex/morefloats/morefloats.pdf Index: pkgsrc/print/tex-morefloats-doc/distinfo diff -u /dev/null pkgsrc/print/tex-morefloats-doc/distinfo:1.1 --- /dev/null Mon Apr 18 03:23:24 2022 +++ pkgsrc/print/tex-morefloats-doc/distinfo Mon Apr 18 03:23:24 2022 @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1 2022/04/18 03:23:24 markd Exp $ + +BLAKE2s (morefloats.doc.r37927.tar.xz) = 285bc39d9476ac1010c81be492ff294785d95e7e8a54e7716fbb64c59b15a516 +SHA512 (morefloats.doc.r37927.tar.xz) = f542aecb6d3868559cee66a7c153dc80cb6aacebae40c0cd0dd120c4230cd358b4d2787286cb3e7bdfb5565949861a35af65ca616369585b8f28462a2b1dbcf6 +Size (morefloats.doc.r37927.tar.xz) = 555528 bytes --_----------=_1650252204184640--