Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id E1CE684D45 for ; Sun, 5 Nov 2023 23:52:22 +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 FeU_RXrp4jm9 for ; Sun, 5 Nov 2023 23:52:21 +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 1AE4A84D44 for ; Sun, 5 Nov 2023 23:52:21 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 0F174FA2C; Sun, 5 Nov 2023 23:52:21 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1699228341187960" MIME-Version: 1.0 Date: Sun, 5 Nov 2023 23:52:21 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/biology/py-biopython To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20231105235221.0F174FA2C@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1699228341187960 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Sun Nov 5 23:52:20 UTC 2023 Modified Files: pkgsrc/biology/py-biopython: Makefile PLIST distinfo Log Message: py-biopython: update to 1.81. 12 February 2023: Biopython 1.81 =============================================== This release of Biopython supports Python 3.7, 3.8, 3.9, 3.10, 3.11. It has also been tested on PyPy3.7 v7.3.5. We intend to drop Python 3.7 support. The API documentation and the `Biopython Tutorial and Cookbook` have been updated to better annotate use and application of the ``Bio.PDB.internal_coords`` module. ``Bio.Phylo`` now supports ``Alignment`` and ``MultipleSeqAlignment`` objects as input. Several improvements and bug fixes to the snapgene parser contributes by Damien Goutte-Gattat. Additionally, a number of small bugs and typos have been fixed with additions to the test suite. 18 November 2022: Biopython 1.80 ================================ This release of Biopython supports Python 3.7, 3.8, 3.9, 3.10, 3.11. It has also been tested on PyPy3.7 v7.3.5. Functions ``read``, ``parse``, and ``write`` were added to ``Bio.Align`` to read and write ``Alignment`` objects. String formatting and printing output of ``Alignment`` objects from ``Bio.Align`` were changed to support these new functions. To obtain a string showing the aligned sequence with the appropriate gap characters (as previously shown when calling ``format`` on an alignment), use ``alignment[i]``, where ``alignment`` is an ``Alignment`` object and ``i`` is the index of the aligned sequence. Because dict retains the item order by default since Python3.6, all instances of ``collections.OrderedDict`` have been replaced by either standard ``dict`` or where appropriate by ``collections.defaultsdict``. Robert Miller has updated the ``Bio.PDB.internal_coords`` module to make better use of Numpy for lossless structure assembly from dihedral angles and related internal coordinates. In addition to speeding the assembly step by ~30%, this adds distance plot support (including re-generating structures from distance plot data), coordinate space transforms for superimposing residues and their environments, a per-chain all-atom array for Atom coordinates, and optional default values for all internal coordinates. The internal coordinates module continues to support extracting dihedral angle, bond angle and bond length (internal coordinates) data, reading/writing structure files of internal coordinates, and OpenSCAD output of structures for 3D CAD/3D printing work. The ``Bio.motifs.jaspar.db`` now returns ``tf_family`` and ``tf_class`` as a string array since the JASPAR 2018 release. The Local Composition Complexity functions from ``Bio.SeqUtils`` now uses base 4 log instead of 2 as stated in the original reference Konopka (2005), Sequence Complexity and Composition. https://doi.org/10.1038/npg.els.0005260 Append mode is now supported in ``Bio.bgzf`` (and a bug parsing blocked GZIP files with an internal empty block fixed). The experimental warning was dropped from ``Bio.phenotype`` (which was new in Biopython 1.67). Sequences now have a ``defined`` attribute that returns a boolean indicating if the underlying data is defined or not. The ``Bio.PDB`` module now includes a structural alignment module, using the combinatorial extension algorithm of Shindyalov and Bourne, commonly known as CEAlign. The module allows for two structures to be aligned based solely on their 3D conformation, ie. in a sequence-independent manner. The method is particularly powerful when the structures shared a very low degree of sequence similarity. The new module is available in ``Bio.PDB.CEAligner`` with an interface similar to other 3D superimposition modules. A new module ``Bio.PDB.qcprot`` implements the QCP superposition algorithm in pure Python, deprecating the existing C implementation. This leads to a slight performance improvement and to much better maintainability. The refactored ``qcprot.QCPSuperimposer`` class has small changes to its API, to better mirror that of ``Bio.PDB.Superimposer``. The ``Bio.PDB.PDBList`` module now allows downloading biological assemblies, for one or more entries of the wwPDB. In the ``Bio.Restriction`` module, each restriction enzyme now includes an `id` property giving the numerical identifier for the REBASE database identifier from which the enzyme object was created, and a `uri` property with a canonical `identifiers.org` link to the database, for use in linked-data representations. Add new ``gc_fraction`` function in ``SeqUtils`` and marks ``GC`` for future deprecation. Support for the old format (dating back to 2004) of the GN line in SwissProt files was dropped in ``Bio.SwissProt``. Additionally, a number of small bugs and typos have been fixed with additions to the test suite. To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 pkgsrc/biology/py-biopython/Makefile cvs rdiff -u -r1.2 -r1.3 pkgsrc/biology/py-biopython/PLIST cvs rdiff -u -r1.4 -r1.5 pkgsrc/biology/py-biopython/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1699228341187960 Content-Disposition: inline Content-Length: 13670 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/biology/py-biopython/Makefile diff -u pkgsrc/biology/py-biopython/Makefile:1.10 pkgsrc/biology/py-biopython/Makefile:1.11 --- pkgsrc/biology/py-biopython/Makefile:1.10 Tue Aug 1 23:20:38 2023 +++ pkgsrc/biology/py-biopython/Makefile Sun Nov 5 23:52:20 2023 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.10 2023/08/01 23:20:38 wiz Exp $ +# $NetBSD: Makefile,v 1.11 2023/11/05 23:52:20 wiz Exp $ -DISTNAME= biopython-1.79 +DISTNAME= biopython-1.81 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= biology MASTER_SITES= http://biopython.org/DIST/ @@ -10,17 +10,19 @@ HOMEPAGE= https://biopython.org/ COMMENT= Python libraries for computational molecular biology LICENSE= biopython +TOOL_DEPENDS+= ${PYPKGPREFIX}-wheel-[0-9]*:../../devel/py-wheel + +PYTHON_VERSIONS_INCOMPATIBLE= 27 38 + USE_TOOLS+= pax INSTALLATION_DIRS+= share/doc/biopython-${PYVERSSUFFIX} share/examples/biopython-${PYVERSSUFFIX} -PYTHON_VERSIONS_INCOMPATIBLE= 27 38 - post-install: ${INSTALL_DATA} ${WRKSRC}/README.rst ${DESTDIR}${PREFIX}/share/doc/biopython-${PYVERSSUFFIX} ${INSTALL_DATA} ${WRKSRC}/Doc/Tutorial.pdf ${DESTDIR}${PREFIX}/share/doc/biopython-${PYVERSSUFFIX} cd ${WRKSRC}/Doc/examples && ${PAX} -rw . ${DESTDIR}${PREFIX}/share/examples/biopython-${PYVERSSUFFIX} -.include "../../lang/python/egg.mk" +.include "../../lang/python/wheel.mk" .include "../../math/py-numpy/buildlink3.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/biology/py-biopython/PLIST diff -u pkgsrc/biology/py-biopython/PLIST:1.2 pkgsrc/biology/py-biopython/PLIST:1.3 --- pkgsrc/biology/py-biopython/PLIST:1.2 Thu Feb 17 10:44:49 2022 +++ pkgsrc/biology/py-biopython/PLIST Sun Nov 5 23:52:20 2023 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.2 2022/02/17 10:44:49 wiz Exp $ +@comment $NetBSD: PLIST,v 1.3 2023/11/05 23:52:20 wiz Exp $ ${PYSITELIB}/Bio/Affy/CelFile.py ${PYSITELIB}/Bio/Affy/CelFile.pyc ${PYSITELIB}/Bio/Affy/CelFile.pyo @@ -43,12 +43,71 @@ ${PYSITELIB}/Bio/Align/__init__.pyc ${PYSITELIB}/Bio/Align/__init__.pyo ${PYSITELIB}/Bio/Align/_aligners.c ${PYSITELIB}/Bio/Align/_aligners.so +${PYSITELIB}/Bio/Align/a2m.py +${PYSITELIB}/Bio/Align/a2m.pyc +${PYSITELIB}/Bio/Align/a2m.pyo +${PYSITELIB}/Bio/Align/bed.py +${PYSITELIB}/Bio/Align/bed.pyc +${PYSITELIB}/Bio/Align/bed.pyo +${PYSITELIB}/Bio/Align/bigbed.py +${PYSITELIB}/Bio/Align/bigbed.pyc +${PYSITELIB}/Bio/Align/bigbed.pyo +${PYSITELIB}/Bio/Align/bigmaf.py +${PYSITELIB}/Bio/Align/bigmaf.pyc +${PYSITELIB}/Bio/Align/bigmaf.pyo +${PYSITELIB}/Bio/Align/bigpsl.py +${PYSITELIB}/Bio/Align/bigpsl.pyc +${PYSITELIB}/Bio/Align/bigpsl.pyo +${PYSITELIB}/Bio/Align/clustal.py +${PYSITELIB}/Bio/Align/clustal.pyc +${PYSITELIB}/Bio/Align/clustal.pyo +${PYSITELIB}/Bio/Align/emboss.py +${PYSITELIB}/Bio/Align/emboss.pyc +${PYSITELIB}/Bio/Align/emboss.pyo +${PYSITELIB}/Bio/Align/exonerate.py +${PYSITELIB}/Bio/Align/exonerate.pyc +${PYSITELIB}/Bio/Align/exonerate.pyo +${PYSITELIB}/Bio/Align/fasta.py +${PYSITELIB}/Bio/Align/fasta.pyc +${PYSITELIB}/Bio/Align/fasta.pyo +${PYSITELIB}/Bio/Align/hhr.py +${PYSITELIB}/Bio/Align/hhr.pyc +${PYSITELIB}/Bio/Align/hhr.pyo +${PYSITELIB}/Bio/Align/interfaces.py +${PYSITELIB}/Bio/Align/interfaces.pyc +${PYSITELIB}/Bio/Align/interfaces.pyo +${PYSITELIB}/Bio/Align/maf.py +${PYSITELIB}/Bio/Align/maf.pyc +${PYSITELIB}/Bio/Align/maf.pyo +${PYSITELIB}/Bio/Align/mauve.py +${PYSITELIB}/Bio/Align/mauve.pyc +${PYSITELIB}/Bio/Align/mauve.pyo +${PYSITELIB}/Bio/Align/msf.py +${PYSITELIB}/Bio/Align/msf.pyc +${PYSITELIB}/Bio/Align/msf.pyo +${PYSITELIB}/Bio/Align/nexus.py +${PYSITELIB}/Bio/Align/nexus.pyc +${PYSITELIB}/Bio/Align/nexus.pyo +${PYSITELIB}/Bio/Align/phylip.py +${PYSITELIB}/Bio/Align/phylip.pyc +${PYSITELIB}/Bio/Align/phylip.pyo +${PYSITELIB}/Bio/Align/psl.py +${PYSITELIB}/Bio/Align/psl.pyc +${PYSITELIB}/Bio/Align/psl.pyo +${PYSITELIB}/Bio/Align/sam.py +${PYSITELIB}/Bio/Align/sam.pyc +${PYSITELIB}/Bio/Align/sam.pyo +${PYSITELIB}/Bio/Align/stockholm.py +${PYSITELIB}/Bio/Align/stockholm.pyc +${PYSITELIB}/Bio/Align/stockholm.pyo ${PYSITELIB}/Bio/Align/substitution_matrices/__init__.py ${PYSITELIB}/Bio/Align/substitution_matrices/__init__.pyc ${PYSITELIB}/Bio/Align/substitution_matrices/__init__.pyo ${PYSITELIB}/Bio/Align/substitution_matrices/data/BENNER22 ${PYSITELIB}/Bio/Align/substitution_matrices/data/BENNER6 ${PYSITELIB}/Bio/Align/substitution_matrices/data/BENNER74 +${PYSITELIB}/Bio/Align/substitution_matrices/data/BLASTN +${PYSITELIB}/Bio/Align/substitution_matrices/data/BLASTP ${PYSITELIB}/Bio/Align/substitution_matrices/data/BLOSUM45 ${PYSITELIB}/Bio/Align/substitution_matrices/data/BLOSUM50 ${PYSITELIB}/Bio/Align/substitution_matrices/data/BLOSUM62 @@ -64,6 +123,7 @@ ${PYSITELIB}/Bio/Align/substitution_matr ${PYSITELIB}/Bio/Align/substitution_matrices/data/LEVIN ${PYSITELIB}/Bio/Align/substitution_matrices/data/MCLACHLAN ${PYSITELIB}/Bio/Align/substitution_matrices/data/MDM78 +${PYSITELIB}/Bio/Align/substitution_matrices/data/MEGABLAST ${PYSITELIB}/Bio/Align/substitution_matrices/data/NUC.4.4 ${PYSITELIB}/Bio/Align/substitution_matrices/data/PAM250 ${PYSITELIB}/Bio/Align/substitution_matrices/data/PAM30 @@ -73,6 +133,9 @@ ${PYSITELIB}/Bio/Align/substitution_matr ${PYSITELIB}/Bio/Align/substitution_matrices/data/SCHNEIDER ${PYSITELIB}/Bio/Align/substitution_matrices/data/STR ${PYSITELIB}/Bio/Align/substitution_matrices/data/TRANS +${PYSITELIB}/Bio/Align/tabular.py +${PYSITELIB}/Bio/Align/tabular.pyc +${PYSITELIB}/Bio/Align/tabular.pyo ${PYSITELIB}/Bio/AlignIO/ClustalIO.py ${PYSITELIB}/Bio/AlignIO/ClustalIO.pyc ${PYSITELIB}/Bio/AlignIO/ClustalIO.pyo @@ -149,6 +212,9 @@ ${PYSITELIB}/Bio/Data/CodonTable.pyo ${PYSITELIB}/Bio/Data/IUPACData.py ${PYSITELIB}/Bio/Data/IUPACData.pyc ${PYSITELIB}/Bio/Data/IUPACData.pyo +${PYSITELIB}/Bio/Data/PDBData.py +${PYSITELIB}/Bio/Data/PDBData.pyc +${PYSITELIB}/Bio/Data/PDBData.pyo ${PYSITELIB}/Bio/Data/SCOPData.py ${PYSITELIB}/Bio/Data/SCOPData.pyc ${PYSITELIB}/Bio/Data/SCOPData.pyo @@ -167,6 +233,8 @@ ${PYSITELIB}/Bio/Emboss/PrimerSearch.pyo ${PYSITELIB}/Bio/Emboss/__init__.py ${PYSITELIB}/Bio/Emboss/__init__.pyc ${PYSITELIB}/Bio/Emboss/__init__.pyo +${PYSITELIB}/Bio/Entrez/DTDs/BITS-embedded-index2.ent +${PYSITELIB}/Bio/Entrez/DTDs/BITS-question-answer2.ent ${PYSITELIB}/Bio/Entrez/DTDs/Docsum_3_0.dtd ${PYSITELIB}/Bio/Entrez/DTDs/Docsum_3_0.mod.dtd ${PYSITELIB}/Bio/Entrez/DTDs/Docsum_3_1.dtd @@ -185,6 +253,38 @@ ${PYSITELIB}/Bio/Entrez/DTDs/HomoloGene. ${PYSITELIB}/Bio/Entrez/DTDs/HomoloGene.mod.dtd ${PYSITELIB}/Bio/Entrez/DTDs/INSD_INSDSeq.dtd ${PYSITELIB}/Bio/Entrez/DTDs/INSD_INSDSeq.mod.dtd +${PYSITELIB}/Bio/Entrez/DTDs/JATS-XHTMLtablesetup1-3.ent +${PYSITELIB}/Bio/Entrez/DTDs/JATS-ali-namespace1-3.ent +${PYSITELIB}/Bio/Entrez/DTDs/JATS-archivearticle1-3-mathml3.dtd +${PYSITELIB}/Bio/Entrez/DTDs/JATS-archivecustom-classes1-3.ent +${PYSITELIB}/Bio/Entrez/DTDs/JATS-archivecustom-mixes1-3.ent +${PYSITELIB}/Bio/Entrez/DTDs/JATS-archivecustom-models1-3.ent +${PYSITELIB}/Bio/Entrez/DTDs/JATS-archivecustom-modules1-3.ent +${PYSITELIB}/Bio/Entrez/DTDs/JATS-articlemeta1-3.ent +${PYSITELIB}/Bio/Entrez/DTDs/JATS-backmatter1-3.ent +${PYSITELIB}/Bio/Entrez/DTDs/JATS-chars1-3.ent +${PYSITELIB}/Bio/Entrez/DTDs/JATS-common-atts1-3.ent +${PYSITELIB}/Bio/Entrez/DTDs/JATS-common1-3.ent +${PYSITELIB}/Bio/Entrez/DTDs/JATS-default-classes1-3.ent +${PYSITELIB}/Bio/Entrez/DTDs/JATS-default-mixes1-3.ent +${PYSITELIB}/Bio/Entrez/DTDs/JATS-display1-3.ent +${PYSITELIB}/Bio/Entrez/DTDs/JATS-format1-3.ent +${PYSITELIB}/Bio/Entrez/DTDs/JATS-funding1-3.ent +${PYSITELIB}/Bio/Entrez/DTDs/JATS-journalmeta1-3.ent +${PYSITELIB}/Bio/Entrez/DTDs/JATS-link1-3.ent +${PYSITELIB}/Bio/Entrez/DTDs/JATS-list1-3.ent +${PYSITELIB}/Bio/Entrez/DTDs/JATS-math1-3.ent +${PYSITELIB}/Bio/Entrez/DTDs/JATS-mathml3-mathmlsetup1-3.ent +${PYSITELIB}/Bio/Entrez/DTDs/JATS-mathml3-modules1-3.ent +${PYSITELIB}/Bio/Entrez/DTDs/JATS-modules1-3.ent +${PYSITELIB}/Bio/Entrez/DTDs/JATS-nlmcitation1-3.ent +${PYSITELIB}/Bio/Entrez/DTDs/JATS-notat1-3.ent +${PYSITELIB}/Bio/Entrez/DTDs/JATS-para1-3.ent +${PYSITELIB}/Bio/Entrez/DTDs/JATS-phrase1-3.ent +${PYSITELIB}/Bio/Entrez/DTDs/JATS-references1-3.ent +${PYSITELIB}/Bio/Entrez/DTDs/JATS-related-object1-3.ent +${PYSITELIB}/Bio/Entrez/DTDs/JATS-section1-3.ent +${PYSITELIB}/Bio/Entrez/DTDs/JATS-xmlspecchars1-3.ent ${PYSITELIB}/Bio/Entrez/DTDs/MMDB.dtd ${PYSITELIB}/Bio/Entrez/DTDs/MMDB.mod.dtd ${PYSITELIB}/Bio/Entrez/DTDs/MMDB_Chemical_graph.dtd @@ -330,9 +430,12 @@ ${PYSITELIB}/Bio/Entrez/DTDs/eSpell.dtd ${PYSITELIB}/Bio/Entrez/DTDs/eSummary_041029.dtd ${PYSITELIB}/Bio/Entrez/DTDs/egquery.dtd ${PYSITELIB}/Bio/Entrez/DTDs/einfo.dtd +${PYSITELIB}/Bio/Entrez/DTDs/elink.dtd ${PYSITELIB}/Bio/Entrez/DTDs/elink_020122.dtd +${PYSITELIB}/Bio/Entrez/DTDs/epost.dtd ${PYSITELIB}/Bio/Entrez/DTDs/esearch.dtd ${PYSITELIB}/Bio/Entrez/DTDs/esummary-v1.dtd +${PYSITELIB}/Bio/Entrez/DTDs/esummary_gene.dtd ${PYSITELIB}/Bio/Entrez/DTDs/format.ent ${PYSITELIB}/Bio/Entrez/DTDs/htmltable.dtd ${PYSITELIB}/Bio/Entrez/DTDs/isoamsa.ent @@ -414,6 +517,8 @@ ${PYSITELIB}/Bio/Entrez/DTDs/pubmed_1901 ${PYSITELIB}/Bio/Entrez/DTDs/references.ent ${PYSITELIB}/Bio/Entrez/DTDs/section.ent ${PYSITELIB}/Bio/Entrez/DTDs/taxon.dtd +${PYSITELIB}/Bio/Entrez/DTDs/xhtml-inlstyle-1.mod +${PYSITELIB}/Bio/Entrez/DTDs/xhtml-table-1.mod ${PYSITELIB}/Bio/Entrez/DTDs/xmlspecchars.ent ${PYSITELIB}/Bio/Entrez/Parser.py ${PYSITELIB}/Bio/Entrez/Parser.pyc @@ -696,6 +801,11 @@ ${PYSITELIB}/Bio/PDB/Superimposer.pyo ${PYSITELIB}/Bio/PDB/__init__.py ${PYSITELIB}/Bio/PDB/__init__.pyc ${PYSITELIB}/Bio/PDB/__init__.pyo +${PYSITELIB}/Bio/PDB/ccealign.so +${PYSITELIB}/Bio/PDB/ccealignmodule.c +${PYSITELIB}/Bio/PDB/cealign.py +${PYSITELIB}/Bio/PDB/cealign.pyc +${PYSITELIB}/Bio/PDB/cealign.pyo ${PYSITELIB}/Bio/PDB/ic_data.py ${PYSITELIB}/Bio/PDB/ic_data.pyc ${PYSITELIB}/Bio/PDB/ic_data.pyo @@ -722,6 +832,9 @@ ${PYSITELIB}/Bio/PDB/mmtf/mmtfio.pyo ${PYSITELIB}/Bio/PDB/parse_pdb_header.py ${PYSITELIB}/Bio/PDB/parse_pdb_header.pyc ${PYSITELIB}/Bio/PDB/parse_pdb_header.pyo +${PYSITELIB}/Bio/PDB/qcprot.py +${PYSITELIB}/Bio/PDB/qcprot.pyc +${PYSITELIB}/Bio/PDB/qcprot.pyo ${PYSITELIB}/Bio/PDB/vectors.py ${PYSITELIB}/Bio/PDB/vectors.pyc ${PYSITELIB}/Bio/PDB/vectors.pyo @@ -1099,15 +1212,6 @@ ${PYSITELIB}/Bio/Sequencing/Phd.pyo ${PYSITELIB}/Bio/Sequencing/__init__.py ${PYSITELIB}/Bio/Sequencing/__init__.pyc ${PYSITELIB}/Bio/Sequencing/__init__.pyo -${PYSITELIB}/Bio/SubsMat/FreqTable.py -${PYSITELIB}/Bio/SubsMat/FreqTable.pyc -${PYSITELIB}/Bio/SubsMat/FreqTable.pyo -${PYSITELIB}/Bio/SubsMat/MatrixInfo.py -${PYSITELIB}/Bio/SubsMat/MatrixInfo.pyc -${PYSITELIB}/Bio/SubsMat/MatrixInfo.pyo -${PYSITELIB}/Bio/SubsMat/__init__.py -${PYSITELIB}/Bio/SubsMat/__init__.pyc -${PYSITELIB}/Bio/SubsMat/__init__.pyo ${PYSITELIB}/Bio/SwissProt/KeyWList.py ${PYSITELIB}/Bio/SwissProt/KeyWList.pyc ${PYSITELIB}/Bio/SwissProt/KeyWList.pyo @@ -1147,9 +1251,6 @@ ${PYSITELIB}/Bio/bgzf.pyo ${PYSITELIB}/Bio/codonalign/__init__.py ${PYSITELIB}/Bio/codonalign/__init__.pyc ${PYSITELIB}/Bio/codonalign/__init__.pyo -${PYSITELIB}/Bio/codonalign/chisq.py -${PYSITELIB}/Bio/codonalign/chisq.pyc -${PYSITELIB}/Bio/codonalign/chisq.pyo ${PYSITELIB}/Bio/codonalign/codonalignment.py ${PYSITELIB}/Bio/codonalign/codonalignment.pyc ${PYSITELIB}/Bio/codonalign/codonalignment.pyo @@ -1235,11 +1336,12 @@ ${PYSITELIB}/BioSQL/Loader.pyo ${PYSITELIB}/BioSQL/__init__.py ${PYSITELIB}/BioSQL/__init__.pyc ${PYSITELIB}/BioSQL/__init__.pyo -${PYSITELIB}/${EGG_INFODIR}/PKG-INFO -${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt -${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt -${PYSITELIB}/${EGG_INFODIR}/requires.txt -${PYSITELIB}/${EGG_INFODIR}/top_level.txt +${PYSITELIB}/${WHEEL_INFODIR}/LICENSE +${PYSITELIB}/${WHEEL_INFODIR}/LICENSE.rst +${PYSITELIB}/${WHEEL_INFODIR}/METADATA +${PYSITELIB}/${WHEEL_INFODIR}/RECORD +${PYSITELIB}/${WHEEL_INFODIR}/WHEEL +${PYSITELIB}/${WHEEL_INFODIR}/top_level.txt share/doc/biopython-${PYVERSSUFFIX}/README.rst share/doc/biopython-${PYVERSSUFFIX}/Tutorial.pdf share/examples/biopython-${PYVERSSUFFIX}/ACT_example.py @@ -1252,7 +1354,6 @@ share/examples/biopython-${PYVERSSUFFIX} share/examples/biopython-${PYVERSSUFFIX}/ec_5.4.2.2.txt share/examples/biopython-${PYVERSSUFFIX}/fasta_dictionary.py share/examples/biopython-${PYVERSSUFFIX}/fasta_iterator.py -share/examples/biopython-${PYVERSSUFFIX}/getgene.py share/examples/biopython-${PYVERSSUFFIX}/ls_orchid.fasta share/examples/biopython-${PYVERSSUFFIX}/ls_orchid.gbk share/examples/biopython-${PYVERSSUFFIX}/ls_orchid.gbk.bgz Index: pkgsrc/biology/py-biopython/distinfo diff -u pkgsrc/biology/py-biopython/distinfo:1.4 pkgsrc/biology/py-biopython/distinfo:1.5 --- pkgsrc/biology/py-biopython/distinfo:1.4 Thu Feb 17 10:44:49 2022 +++ pkgsrc/biology/py-biopython/distinfo Sun Nov 5 23:52:20 2023 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.4 2022/02/17 10:44:49 wiz Exp $ +$NetBSD: distinfo,v 1.5 2023/11/05 23:52:20 wiz Exp $ -BLAKE2s (biopython-1.79.tar.gz) = ec26a4018cb514124d11a3c1beed6c995738b2016f044e2e3ca9691fe01dc44a -SHA512 (biopython-1.79.tar.gz) = 81e2718f4015bb038637b4d1181e6bea48018fec1e769c5f0ab75442a769336899191f1222e82e1b9569c1fac470500d7582420e5cbe9bce0056b41751adeaaa -Size (biopython-1.79.tar.gz) = 16738730 bytes +BLAKE2s (biopython-1.81.tar.gz) = dbd9c3cab115b2b20dd320fd20e2c686681cbef4381d758b291b5643e9ba86ef +SHA512 (biopython-1.81.tar.gz) = 1595fad6631bfb6cf4e1a92ed72e6093e2a0c24f3c0bd4182267ec9742fb03dff16099eedde139598aa6b5b8380bbac9e48246cb9ab8b44109333d60adfd00ed +Size (biopython-1.81.tar.gz) = 19324875 bytes --_----------=_1699228341187960--