Package: aspell-tr Version: 0.50.0-7 Architecture: all Maintainer: Stuart Raeburn Installed-Size: 1632 Depends: aspell (>= 0.60.3-3), dictionaries-common (>= 0.49.2) Priority: optional Section: text Filename: pool/main/a/aspell-tr/aspell-tr_0.50.0-7_all.deb Size: 587640 SHA256: 0e878bd647abcd267b48dccfebf815a35995324146d1be3880e25a51c19df9fe SHA1: 65cf88f27360e560a9cdadb0120e54d8159808fe MD5sum: 564763b1168c583242fb1b8f19e4773d Description: Turkish Dictionary for aspell Official Turkish dictionary for GNU Aspell. Package: libcrypt-idea-perl Version: 1.10.0-7 Architecture: amd64 Maintainer: Stuart Raeburn Installed-Size: 41 Depends: perl, perlapi-5.32.1, libc6 (>= 2.4) Homepage: https://metacpan.org/release/Crypt-IDEA Priority: optional Section: perl Filename: pool/main/libc/libcrypt-idea-perl/libcrypt-idea-perl_1.10.0-7_amd64.deb Size: 9972 SHA256: 6ed8218f3e32b1b099ad94ac9e67f3eac0d272d27af2f6405a0bbe46a01140b3 SHA1: 8bb515bd41851b3b91b94d6d2be0259cf1eb6724 MD5sum: d1c678fe8ec022af34753c185580da26 Description: Perl interface to IDEA block cipher This perl extension is an implementation of the IDEA block cipher algorithm. The module implements the Crypt::BlockCipher interface. Package: libhtml-parser-loncapa-perl Version: 3.72.0-7 Architecture: amd64 Maintainer: Stuart Raeburn Installed-Size: 207 Depends: perl, perlapi-5.32.1, libc6 (>= 2.4), libhtml-tagset-perl Replaces: libhtml-parser-perl Provides: libhtml-parser-perl Homepage: https://metacpan.org/release/HTML-Parser Priority: optional Section: perl Filename: pool/main/libh/libhtml-parser-loncapa-perl/libhtml-parser-loncapa-perl_3.72.0-7_amd64.deb Size: 93680 SHA256: 88777d679a40e93839a38311c6d6ab5221d9ed8970a01e62703fbccf2feb1565 SHA1: 8e4f8caa1f636a93eb0976271156bd0a4c0bf52c MD5sum: 9b35916f3504dbcb0c150f60ac77f913 Description: HTML parser class Objects of the HTML::Parser class will recognize markup and separate it from plain text (alias data content) in HTML documents. As different kinds of markup and text are recognized, the corresponding event handlers are invoked. . HTML::Parser is not a generic SGML parser. We have tried to make it able to deal with the HTML that is actually "out there", and it normally parses as closely as possible to the way the popular web browsers do it instead of strictly following one of the many HTML specifications from W3C. Where there is disagreement, there is often an option that you can enable to get the official behaviour. . The document to be parsed may be supplied in arbitrary chunks. This makes on-the-fly parsing as documents are received from the network possible. . This is a modified version of the CPAN module HTML::Parser for use with LON-CAPA. . Modified hparser.c for use with LON-CAPA. Change to lines 1263 -1278: . + if (p_state->strict_names) { + tag_name_first = attr_name_first = HCTYPE_NAME_FIRST; + tag_name_char = attr_name_char = HCTYPE_NAME_CHAR; + } + else { + attr_name_char = HCTYPE_NOT_SPACE_EQ_GT; + if (p_state->xml_mode) { + tag_name_first = HCTYPE_NOT_SPACE_SLASH_GT; + attr_name_first = HCTYPE_NOT_SPACE_SLASH_GT; + tag_name_char = attr_name_char; + } + else { + tag_name_first = tag_name_char = HCTYPE_NOT_SPACE_GT; + attr_name_first = HCTYPE_NOT_SPACE_GT; + } + } . - if (STRICT_NAMES(p_state)) { - tag_name_first = attr_name_first = HCTYPE_NAME_FIRST; Package: libjson-dwiw-perl Version: 0.47.0-7 Architecture: amd64 Maintainer: Stuart Raeburn Installed-Size: 163 Depends: perl, perlapi-5.32.1, libc6 (>= 2.14) Homepage: https://metacpan.org/release/JSON-DWIW Priority: optional Section: perl Filename: pool/main/libj/libjson-dwiw-perl/libjson-dwiw-perl_0.47.0-7_amd64.deb Size: 55048 SHA256: d926f52fb4be59042515a02281eb9ccccaadd0be65245ba40ec265877c2d0be1 SHA1: 2a809e6ba1c52cd4183984634df09f9c40393030 MD5sum: 143122f5015d0f961eeb66891e7b3367 Description: JSON converter that does what I want Other JSON modules require setting several parameters before calling the conversion methods to do what I want. JSON::DWIW does things by default that I think should be done when working with JSON in Perl. This module also encodes and decodes faster than JSON.pm and JSON::Syck in my benchmarks. . This means that any piece of data in Perl (assuming it's valid unicode) will get converted to something in JSON instead of throwing an exception. It also means that output will be strict JSON, while accepted input will be flexible, without having to set any options. Package: libmath-calculus-expression-loncapa-perl Version: 0.2.2.0-7 Architecture: all Maintainer: Stuart Raeburn Installed-Size: 53 Depends: perl:any Replaces: libmath-calculus-expression-perl Provides: libmath-calculus-expression-perl Homepage: https://metacpan.org/release/Math-Calculus-Expression Priority: optional Section: perl Filename: pool/main/libm/libmath-calculus-expression-loncapa-perl/libmath-calculus-expression-loncapa-perl_0.2.2.0-7_all.deb Size: 13844 SHA256: e8beff5d3257a37d87d5fdd7d432b53f0e1d46dc0097bd6419a6f7d93ffaaccc SHA1: 28a29323a897b550875c094b7967ff9f5693c6f1 MD5sum: 5f97d451b2026f32d906ce5ae136cf4d Description: Algebraic Calculus Tools Expression Class Math::Calculus::Expression can take an algebraic expression, parse it into a tree structure, simplify the tree, substitute variables and named constants for other variables or constants (which may be numeric), numerically evaluate the tree and turn the tree back into an output of the same form as the input. . It supports a wide range of expressions including the +, -, *, / and ^ (raise to power) operators, bracketed expressions to enable correct precedence and the functions ln, exp, sin, cos, tan, sec, cosec, cot, sinh, cosh, tanh, sech, cosech, coth, asin, acos, atan, asinh, acosh and atanh. . Modified from standard Math-Calculus-Expression-0.2.2, for use in LON-CAPA, by the addition of a math_calculus_expression() routine, which can be used with Safe::Hole to create a Math::Calculus::Expression object which can use all object methods inside the perl Safe space container. . sub math_calc_expression { return Math::Calculus::Expression->new(shift); } Package: libmath-random-loncapa-perl Version: 0.72.0-7 Architecture: amd64 Maintainer: Stuart Raeburn Installed-Size: 154 Depends: perl, perlapi-5.32.1, libc6 (>= 2.29) Homepage: https://metacpan.org/release/Math-Random Priority: optional Section: perl Filename: pool/main/libm/libmath-random-loncapa-perl/libmath-random-loncapa-perl_0.72.0-7_amd64.deb Size: 50048 SHA256: e4f2764f788545603ebe3f075519eeba2e2a5e8fcb197871b41fb8cc926c0256 SHA1: 9abfec6e910450d49689dd6af1e252b2d3d0508a MD5sum: 158c2f39326a715248a72688271c3131 Description: Random Number Generators Math::Random is a Perl port of the C version of randlib, which is a suite of routines for generating random deviates. See "RANDLIB" for more information. . This port supports all of the distributions from which the Fortran and C versions generate deviates. The major functionalities that are excluded are the multiple generators/splitting facility and antithetic random number generation. These facilities, along with some of the distributions which are included, are probably not of interest except to the very sophisticated user. If there is sufficient interest, the excluded facilities will be included in a future release. The code to perform the excluded facilities is available as randlib in Fortran and C source. . The version for use with LON-CAPA includes phrtsd_orig as an argument to Makefile.PL in the debian/rules file. This is used to ensure compatibility of randomization with distros running pre-0.68 versions of Math::Random that employ the original phrtsd routine. The original version, which is the same as the phrtsd routine in the original Fortran library, generates the same seed numbers for all permutations of the same characters. Package: libnumber-formateng-perl Version: 0.03.0-7 Architecture: all Maintainer: Stuart Raeburn Installed-Size: 31 Depends: perl:any, libtest-simple-perl Homepage: https://metacpan.org/release/Number-FormatEng Priority: optional Section: perl Filename: pool/main/libn/libnumber-formateng-perl/libnumber-formateng-perl_0.03.0-7_all.deb Size: 9756 SHA256: 1e4fa7e35ecf28e6c7a1f7ff2dd6fc99fd294a58fa76d123c4d655a908a01a24 SHA1: 47f3bb7374139365e46415bb65e7f12dfd61ea9b MD5sum: ec68aee6448de31d518a9145b01d6afc Description: Format a number using engineering notation Format a number for printing using engineering notation. Engineering notation is similar to scientific notation except that the power of ten must be a multiple of three. Alternately, the number can be formatted using an International System of Units (SI) prefix representing a factor of a thousand. Package: librtf-htmlconverter-perl Version: 0.05.0-7 Architecture: amd64 Maintainer: Stuart Raeburn Installed-Size: 140 Depends: perl, perlapi-5.32.1, libc6 (>= 2.14), liberror-perl, libimage-info-perl Homepage: https://metacpan.org/release/RTF-HTMLConverter Priority: optional Section: perl Filename: pool/main/libr/librtf-htmlconverter-perl/librtf-htmlconverter-perl_0.05.0-7_amd64.deb Size: 35032 SHA256: 09fd84b1c4a28c30676f6f0bdafe7da644eaf2f09ea936dd5c909dd5cf79c85a SHA1: 898dbdaa62323f91defa34125c91b941992040e1 MD5sum: b9b65bbe2595e7deea30ead7f4808cf6 Description: Converter from RTF format to HTML. RTF::HTMLConverter is a high-level RTF to HTML format converter. It is based on the low-level RTF parser module RTF::Lexer. Additionally, it requires the W3C's DOM implementation and it is known to work with either XML::DOM or XML::GDOME. Package: libsys-hostname-fqdn-perl Version: 0.12.0-7 Architecture: amd64 Maintainer: Stuart Raeburn Installed-Size: 45 Depends: perl, perlapi-5.32.1, libc6 (>= 2.4) Homepage: https://metacpan.org/release/Sys-Hostname-FQDN Priority: optional Section: perl Filename: pool/main/libs/libsys-hostname-fqdn-perl/libsys-hostname-fqdn-perl_0.12.0-7_amd64.deb Size: 9624 SHA256: 2fcd613aa5c6e655b60cb2a304375107e68ae790cdb20c7953e1bf348b10cc86 SHA1: f602cb19f0a4f1fcd87313b4ab882a0a635762d9 MD5sum: 3c4cf20ecddbedc16b74cca13636f02e Description: Get the short or long hostname Sys::Hostname::FQDN uses the host 'C' library to discover the (usually) short host name, then uses (perl) gethostbyname to extract the real hostname. . The results from gethostbyname are exported as gethostinfo and asciihostinfo as a convenience since they are available. Similarly, the 'C' library functions inet_ntoa and inet_aton are exported. Package: libtext-query-perl Version: 0.09.0-6 Architecture: all Maintainer: Stuart Raeburn Installed-Size: 96 Depends: perl:any Homepage: https://metacpan.org/release/Text-Query Priority: optional Section: perl Filename: pool/main/libt/libtext-query-perl/libtext-query-perl_0.09.0-6_all.deb Size: 34452 SHA256: a0b0f4a134bdebe640044e4278cc1658b2c1a4af66ca21909c1116ff2104d8a7 SHA1: ce92dd3acac4a46ec1a88d026df2716fd9b64380 MD5sum: 2a9c30c28b63971a9afc27a52259cb40 Description: Query processing framework Text::Query provides an object that matches a data source against a query expression. . Query expressions are compiled into an internal form when a new object is created or the prepare method is called; they are not recompiled on each match. . The class provided by this module uses four packages to process the query. The query parser parses the question and calls a query expression builder (internal form of the question). The optimizer is then called to reduce the complexity of the expression. The solver applies the expression on a data source. Package: libtie-ixhash-easy-perl Version: 0.01.0-7 Architecture: all Maintainer: Stuart Raeburn Installed-Size: 19 Depends: perl:any, libtie-ixhash-perl Homepage: https://metacpan.org/release/Tie-IxHash-Easy Priority: optional Section: perl Filename: pool/main/libt/libtie-ixhash-easy-perl/libtie-ixhash-easy-perl_0.01.0-7_all.deb Size: 4364 SHA256: 1cdea057e2ee2bdfd4b77e98129d69de4ad1dbabb6272e32fec525b856d7a832 SHA1: e51a22176bf5cf72a785eab5c0ea64b854b0bf22 MD5sum: 4225ce3cc647c8533ae2b7dc91e0b9df Description: Auto-tie internal hashes in a tied hash Tie::IxHash::Easy automatically ties any hash reference in the tied hash to the same class, making all of them behave like Tie::IxHash hashes. Package: libtree-perl Version: 1.16.0-7 Architecture: all Maintainer: Stuart Raeburn Installed-Size: 83 Depends: perl:any Homepage: https://metacpan.org/release/Tree Priority: optional Section: perl Filename: pool/main/libt/libtree-perl/libtree-perl_1.16.0-7_all.deb Size: 31208 SHA256: ce7257bf88fd3a8918bab4932cb0318a233e4d2f54039fc0f884410e84b5ec7f SHA1: 1501429e485dfa2546927ad13e768499e26331c7 MD5sum: 2838a66eb118b14fa0d3d898b4f85b1e Description: N-ary tree Perl module derived from Tree::Simple This is meant to be a full-featured N-ary tree representation with configurable error-handling and a simple events system that allows for transparent persistence to a variety of datastores. It is derived from Tree::Simple, but has a simpler interface and much, much more. Package: loncapa-prerequisites Version: 1.26-7 Architecture: all Maintainer: Stuart Raeburn Installed-Size: 11 Depends: apache2 (>= 2.2.12), libapache2-mod-perl2, perl, libwww-perl (>= 5.837), aspell, default-mysql-client, default-mysql-server, maxima, memcached, chrony, zip, unzip, psutils, a2ps, wget, mailutils, make, gnuplot-nox (>= 4.4), bison, flex, swig, groff, gcc, patch, ghostscript, imagemagick, ssh, whois, libgd-perl, libgd-barcode-perl, libgd-graph-perl, libgd-graph3d-perl, libgd-text-perl, perlmagick, libdbd-mysql-perl, libdbi-perl, libalgorithm-diff-perl, libauthen-krb5-perl, libauthen-pam-perl, libcrypt-des-perl, libcrypt-idea-perl, libcrypt-ssleay-perl, libevent-perl, liblocale-codes-perl, liberror-perl, libhtml-parser-loncapa-perl, libhtml-tree-perl, libio-socket-ssl-perl (>= 1.79), libio-stringy-perl, libmailtools-perl, libmath-cephes-perl, libmath-random-loncapa-perl, libnet-ph-perl, libnet-ssleay-perl (>= 1.50), libole-storage-lite-perl, libparse-recdescent-perl, libpod-pom-perl, libpostscript-simple-perl, libsafe-hole-perl, libspreadsheet-writeexcel-perl, libstring-crc32-perl, libstring-similarity-perl, libtext-aspell-perl, libtext-query-perl, libtimedate-perl, libmime-lite-perl, libmime-types-perl, libcache-memcached-perl, libexpect-perl, libio-pty-perl, libdate-manip-perl, texlive-base, texlive-latex-base, texlive-latex-recommended, texlive-latex-extra, texlive-fonts-recommended, lmodern, libdatetime-perl, libdatetime-locale-perl, libdatetime-timezone-perl, libauthen-captcha-perl, libxml-dom-perl, libfile-mmagic-perl, librtf-htmlconverter-perl, libimage-base-bundle-perl, liblatex-table-perl, libcam-pdf-perl, r-base-core, r-cran-phpserialize, libtie-ixhash-easy-perl, r-cran-alr3, r-cran-car, r-cran-hmisc, r-cran-leaps, r-cran-lmtest, r-cran-qanalyst, r-cran-quadprog, r-cran-suppdists, r-cran-zoo, libtree-perl, libterm-readkey-perl, libxml-libxml-perl (>= 1.98), libcaptcha-recaptcha-perl, aspell-en, aspell-de, aspell-es, aspell-fr, aspell-he, aspell-pt, aspell-tr, libdigest-sha-perl, bc, libaliased-perl, libjson-dwiw-perl, libenum-perl, libtry-tiny-perl, libcrypt-eksblowfish-perl, libnet-oauth-perl, libfile-slurp-perl, libmath-calculus-expression-loncapa-perl, libarchive-zip-perl, libnumber-formateng-perl, libsys-hostname-fqdn-perl, libtext-unidecode-perl, libfile-readbackwards-perl, libswitch-perl, libnet-cidr-perl Homepage: http://loncapa.org Priority: optional Section: web Filename: pool/main/l/loncapa-prerequisites/loncapa-prerequisites_1.26-7_all.deb Size: 3812 SHA256: bd418b6dc3fa2b9b48e6787906e4da38a6039463b0e2b66517eaf851a857cfc8 SHA1: 8b4d6e9dd29fa3349e3f05984c75b1e0a1c24c81 MD5sum: 418082a61b32fe22a5ccb0d03bd4b152 Description: Lists packages requires to run the LON-CAPA system. Installation with apt-get will install the dependencies required for LON-CAPA meta-package Package: r-cran-alr3 Version: 2.0.8-7 Architecture: all Maintainer: Stuart Raeburn Installed-Size: 1076 Depends: r-base-core (>= 4.0.4-1), r-cran-car, r-api-4.0 Homepage: https://cran.r-project.org/package=alr3 Priority: optional Section: gnu-r Filename: pool/main/r/r-cran-alr3/r-cran-alr3_2.0.8-7_all.deb Size: 561076 SHA256: 9b96c596751eb720723c141e1912edca2e203ab6c692fa854ac9c22be75a0ffd SHA1: 298512e2de0c40fe0d84bd46ab6cacb8353773b1 MD5sum: a54f48737a34c47d689743c4ffee5bb6 Description: This is a companion to Applied Linear Regression by S Weisberg. It includes all the data sets discussed in the book (except one), and several few functions that are tailored to the methods discussed in the book. Package: r-cran-phpserialize Version: 0.8-01-7 Architecture: all Maintainer: Stuart Raeburn Installed-Size: 67 Depends: r-base-core (>= 4.0.4-1), r-api-4.0 Homepage: https://cran.r-project.org/src/contrib/Archive/phpSerialize/ Priority: optional Section: gnu-r Filename: pool/main/r/r-cran-phpserialize/r-cran-phpserialize_0.8-01-7_all.deb Size: 25848 SHA256: f2e9edbfc1f2de971cbab90c99d88ffe027374798f04e848388d26b38c1551a2 SHA1: b70b63e5de7b83f196aee27f6b4bde20c2409493 MD5sum: 07f63ff7b82e4b07f4a9c728e7606a2b Description: Serializes R objects for import by PHP into an associative array. The package can be used to build interactive web pages with R. Package: r-cran-qanalyst Version: 0.6.4-7 Architecture: all Maintainer: Stuart Raeburn Installed-Size: 1152 Depends: r-base-core (>= 4.0.4-1), r-cran-alr3, r-cran-suppdists, r-cran-lattice, r-cran-mass, r-api-4.0, r-cran-car Homepage: https://cran.r-project.org/src/contrib/Archive/qAnalyst/ Priority: optional Section: gnu-r Filename: pool/main/r/r-cran-qanalyst/r-cran-qanalyst_0.6.4-7_all.deb Size: 747072 SHA256: 6105ef4e6d4319d4ad649e359525882767219bf992fa8443878b11f36c5278ec SHA1: 4a166b210c2bb3bcab0288976cf88895cdc252b5 MD5sum: b4102f2b4ef9a267b1be119aa2cf4757 Description: This is a companion to Applied Linear Regression by S Weisberg. It includes all the data sets discussed in the book (except one), and several few functions that are tailored to the methods discussed in the book. Package: r-cran-zoo Version: 1.8.12-7 Architecture: amd64 Maintainer: Stuart Raeburn Installed-Size: 1295 Depends: r-base-core (>= 4.0.4-1), r-cran-lattice (>= 0.20-27), r-api-4.0, libc6 (>= 2.14) Homepage: https://cran.r-project.org/package=zoo Priority: optional Section: gnu-r Filename: pool/main/r/r-cran-zoo/r-cran-zoo_1.8.12-7_amd64.deb Size: 984868 SHA256: c800a9583bef7e0899ff6f1f397cfd9430830fbb41ae8019f122f0bbbf03691e SHA1: 7837d52c528bc8def568a6b5689afca933efa7ca MD5sum: 2743f571d4d549a5828279c3d60ca6bf Description: GNU R package for totally ordered indexed observations This package contains an S4 class with methods for totally ordered indexed observations such as irregular time series.