=Ver: 2.0 ##---------------------------------------- =Pkg: aspell-pt 0.50 15.suse13.2.lc i586 =Sum: Portuguese dictionaries for Aspell +Des: Provides the word list/dictionaries for the following: European Portuguese, Brazilian Portuguese -Des: ##---------------------------------------- =Pkg: LONCAPA-prerequisites 1 23.1.suse13.2.lc i586 =Sum: Stub rpm to set up LONCAPA dependencies +Des: LONCAPA-prerequisites configures a system to run LON-CAPA. -Des: ##---------------------------------------- =Pkg: LONCAPA-prerequisites 1 25.suse13.2.lc i586 =Sum: Stub rpm to set up LONCAPA dependencies +Des: LONCAPA-prerequisites configures a system to run LON-CAPA. -Des: ##---------------------------------------- =Pkg: perl-Authen-Krb5 1.4 1.0.suse13.2.lc i586 =Sum: Authen-Krb5 - Perl extension for Kerberos 5 +Des: Authen::Krb5 is an object oriented interface to the Kerberos 5 API. Both the implementation and documentation are nowhere near complete, and may require previous experience with Kerberos 5 programming. Most of the functions here are documented in detail in the Kerberos 5 API documentation. -Des: ##---------------------------------------- =Pkg: perl-Authen-PAM 0.16 1.0.suse13.2.lc i586 =Sum: Authen-PAM - Perl interface to PAM library +Des: The *Authen::PAM* module provides a Perl interface to the *PAM* library. The only difference with the standard PAM interface is that instead of passing a pam_conv struct which has an additional context parameter appdata_ptr, you must only give an address to a conversation function written in Perl (see below). If you want to pass a NULL pointer as a value of the $user in pam_start use undef or the two-argument version. Both in the two and the three-argument versions of pam_start a default conversation function is used (Authen::PAM::pam_default_conv). The $flags argument is optional for all functions which use it except for pam_setcred. The $pam_status argument is also optional for pam_end function. Both of these arguments will be set to 0 if not given. The names of some constants from the PAM library have changed over the time. You can use any of the known names for a given constant although it is advisable to use the latest one. When this module supports some of the additional features of the PAM library (e.g. pam_fail_delay) then the corresponding HAVE_PAM_XXX constant will have a value 1 otherwise it will return 0. For compatibility with older PAM libraries I have added the constant HAVE_PAM_ENV_FUNCTIONS which is true if your PAM library has the functions for handling environment variables (pam_putenv, pam_getenv, pam_getenvlist). -Des: ##---------------------------------------- =Pkg: perl-Crypt-Eksblowfish 0.009 1.0.suse13.2.lc i586 =Sum: Crypt-Eksblowfish - Perl module +Des: None. -Des: ##---------------------------------------- =Pkg: perl-Crypt-IDEA 1.10 1.0.suse13.2.lc i586 =Sum: Crypt-IDEA - Perl module +Des: None. -Des: ##---------------------------------------- =Pkg: perl-Digest-SHA 5.96 1.0.suse13.2.lc i586 =Sum: Digest-SHA - Perl extension for SHA-1/224/256/384/512 +Des: Digest::SHA is written in C for speed. If your platform lacks a C compiler, you can install the functionally equivalent (but much slower) the Digest::SHA::PurePerl manpage module. The programming interface is easy to use: it's the same one found in CPAN's the Digest manpage module. So, if your applications currently use the Digest::MD5 manpage and you'd prefer the stronger security of SHA, it's a simple matter to convert them. The interface provides two ways to calculate digests: all-at-once, or in stages. To illustrate, the following short program computes the SHA-256 digest of "hello world" using each approach: use Digest::SHA qw(sha256_hex); $data = "hello world"; @frags = split(//, $data); $digest1 = sha256_hex($data); $state = Digest::SHA->new(256); for (@frags) { $state->add($_) } $digest2 = $state->hexdigest; print $digest1 eq $digest2 ? "whew!\n" : "oops!\n"; To calculate the digest of an n-bit message where *n* is not a multiple of 8, use the *add_bits()* method. For example, consider the 446-bit message consisting of the bit-string "110" repeated 148 times, followed by "11". Here's how to display its SHA-1 digest: use Digest::SHA; $bits = "110" x 148 . "11"; $sha = Digest::SHA->new(1)->add_bits($bits); print $sha->hexdigest, "\n"; Note that for larger bit-strings, it's more efficient to use the two-argument version *add_bits($data, $nbits)*, where *$data* is in the customary packed binary format used for Perl strings. The module also lets you save intermediate SHA states to a string. The *getstate()* method generates portable, human-readable text describing the current state of computation. You can subsequently restore that state with *putstate()* to resume where the calculation left off. To see what a state description looks like, just run the following: use Digest::SHA; print Digest::SHA->new->add("Shaw" x 1962)->getstate; As an added convenience, the Digest::SHA module offers routines to calculate keyed hashes using the HMAC-SHA-1/224/256/384/512 algorithms. These services exist in functional form only, and mimic the style and behavior of the *sha()*, *sha_hex()*, and *sha_base64()* functions. use Digest::SHA qw(hmac_sha256_hex); print hmac_sha256_hex("Hi There", chr(0x0b) x 32), "\n"; -Des: ##---------------------------------------- =Pkg: perl-HTML-Parser_loncapa 3.71 1.0.suse13.2.lc i586 =Sum: HTML-Parser - HTML parser class +Des: 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. If event driven parsing does not feel right for your application, you might want to use `HTML::PullParser'. This is an `HTML::Parser' subclass that allows a more conventional program structure. -Des: ##---------------------------------------- =Pkg: perl-Math-Cephes 0.5304 1.0.suse13.2.lc i586 =Sum: Math-Cephes - Perl interface to the math cephes library +Des: None. -Des: ##---------------------------------------- =Pkg: perl-Math-Pari 2.010808 1.1 i586 =Sum: Perl interface to PARI +Des: This package is a Perl interface to famous library PARI for numerical/scientific/number-theoretic calculations. It allows use of most PARI functions as Perl functions, and (almost) seamless merging of PARI and Perl data. -Des: ##---------------------------------------- =Pkg: perl-Math-Random 0.71 1.0.suse13.2.lc i586 =Sum: Math-Random - Random Number Generators +Des: Math::Random is a Perl port of the C version of randlib, which is a suite of routines for generating random deviates. See the section on "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. -Des: ##---------------------------------------- =Pkg: perl-RTF-HTMLConverter 0.05 1.0.suse13.2.lc i586 =Sum: RTF-HTMLConverter - Converter from RTF format to HTML. +Des: 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. -Des: ##---------------------------------------- =Pkg: perl-Safe-Hole 0.13 1.0.suse13.2.lc i586 =Sum: Safe-Hole - Perl module +Des: None. -Des: ##---------------------------------------- =Pkg: perl-String-CRC32 1.5 1.0.suse13.2.lc i586 =Sum: String-CRC32 - Perl module +Des: None. -Des: ##---------------------------------------- =Pkg: perl-String-Similarity 1.04 1.0.suse13.2.lc i586 =Sum: String-Similarity - calculate the similarity of two strings +Des: =over 4 -Des: ##---------------------------------------- =Pkg: perl-Text-Aspell 0.09 1.0.suse13.2.lc i586 =Sum: Text-Aspell - Perl interface to the GNU Aspell library +Des: This module provides a Perl interface to the GNU Aspell library. This module is to meet the need of looking up many words, one at a time, in a single session, such as spell-checking a document in memory. The GNU C interface is described at: http://aspell.net/man-html/Through-the-C-API.html#Through-the-C-API It's worth looking over the way config and speller (manager) objects are created when using the Aspell C API as some of that is hidden in the Text::Aspell module. For example, with Text::Aspell you do not have to explicitly create a speller object. The speller (manager) object is created automatically the first time you call suggest() or check(). Note also that once the speller object is created some (all?) config options cannot be changed. For example, setting configuration options such as "lang" are what determine what dictionary Aspell will use. Once the speller object is created that dictionary will be used. I.e. setting "lang" after the speller object is created will have no effect. -Des: ##---------------------------------------- =Pkg: R-alr3 2.0.5 0.suse13.2.lc i586 =Sum: Methods and data to accompany Applied Linear Regression 3rd edition +Des: This library is a companion to the textbook S. Weisberg (2005), "Applied Linear Regression," 3rd edition, Wiley. 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. -Des: ##---------------------------------------- =Pkg: R-car 2.0.20 0.suse13.2.lc i586 =Sum: Companion to Applied Regression +Des: R package: This package accompanies J. Fox, An R and S-PLUS Companion to Applied Regression, Sage, 2002. The package contains mostly functions for applied regression, linear models, and generalized linear models, with an emphasis on regression diagnostics, particularly graphical diagnostic methods. There are also some utility functions. With some exceptions, I have tried not to duplicate capabilities in the basic distribution of R, nor in widely used packages. Where relevant, the functions in car are consistent with na.action = na.omit or na.exclude. -Des: ##---------------------------------------- =Pkg: R-Formula 1.1.1 0.suse13.2.lc i586 =Sum: Infrastructure for extended formulas with multiple parts on the right-hand side and/or multiple responses on the left-hand side +Des: R package: Infrastructure for extended formulas with multiple parts on the right-hand side and/or multiple responses on the left-hand side -Des: ##---------------------------------------- =Pkg: R-Hmisc 3.14.4 0.suse13.2.lc i586 =Sum: Library of functions for data analysis, variable clustering and various utilities +Des: R package: The Hmisc library contains many functions useful for data analysis, high-level graphics, utility operations, functions for computing sample size and power, importing datasets, imputing missing values, advanced table making, variable clustering, character string manipulation, conversion of S objects to LaTeX code, and recoding variables. -Des: ##---------------------------------------- =Pkg: R-latticeExtra 0.6.26 0.suse13.2.lc i586 =Sum: Extra graphical utilities based on lattice +Des: R package: Extra graphical utilities based on lattice -Des: ##---------------------------------------- =Pkg: R-leaps 2.9 0.suse13.2.lc i586 =Sum: Regression subset selection including exhaustive search +Des: R package: Regression subset selection including exhaustive search -Des: ##---------------------------------------- =Pkg: R-lmtest 0.9.33 0.suse13.2.lc i586 =Sum: Testing Linear Regression Models +Des: R package: A collection of tests, data sets and examples for diagnostic checking in linear regression models. -Des: ##---------------------------------------- =Pkg: R-phpSerialize 0.8.1 0.suse13.2.lc i586 =Sum: Serializes R objects for import by PHP into an associative array. +Des: R package: Serializes R objects for import by PHP into an associative array. Can be used to build interactive web pages with R. -Des: ##---------------------------------------- =Pkg: R-qAnalyst 0.6.4 0.suse13.2.lc i586 =Sum: Control Charts, Capability and Distribution Identification +Des: R package: Control charts for variables and attributes according to Douglas C. Montgomery Introduction to Statistical Quality Control book, Capability analysis for normal and non - normal distributions and Distributions Identification -Des: ##---------------------------------------- =Pkg: R-quadprog 1.5.5 0.suse13.2.lc i586 =Sum: Functions to solve Quadratic Programming Problems. +Des: R package: Library of routines and documentation for solving quadratic programming problems. -Des: ##---------------------------------------- =Pkg: R-RColorBrewer 1.0.5 0.suse13.2.lc i586 =Sum: The packages provides palettes for drawing nice maps shaded according to a variable +Des: R package: The packages provides palettes for drawing nice maps shaded according to a variable -Des: ##---------------------------------------- =Pkg: R-SuppDists 1.1.9.1 0.suse13.2.lc i586 =Sum: Ten Supplementary distributions and two Random Number Generators +Des: R package: Ten distributions supplementing those built into R. Inverse Gauss, Kruskal-Wallis, Kendall's Tau, Friedman's chi squared, Spearman's rho, maximum F ratio, the Pearson product moment correlation coefficiant, Johnson distributions, normal scores and generalized hypergeometric distributions. In addition two random number generators of George Marsaglia are included. -Des: ##---------------------------------------- =Pkg: R-zoo 1.7.11 0.suse13.2.lc i586 =Sum: Z's ordered observations +Des: R package: An S3 class with methods for totally ordered indexed observations. It is particularly aimed at irregular time series of numeric vectors/matrices and factors. zoo's key design goals are independence of a particular index/date/time class and consistency with ts and base R by providing methods to extend standard generics. -Des: ##---------------------------------------- =Pkg: perl-Authen-Captcha 1.024 1.0.suse13.2.lc noarch =Sum: Authen-Captcha - Perl extension for creating captcha's to verify the human element in transactions. +Des: use Authen::Captcha; my $captcha = Authen::Captcha->new(); $captcha->data_folder('/some/folder'); $captcha->output_folder('/some/http/folder'); my $captcha = Authen::Captcha->new( data_folder => '/some/folder', output_folder => '/some/http/folder', ); my $token = $captcha->generate_code($number_of_characters); my $results = $captcha->check_code($code,$token); -Des: ##---------------------------------------- =Pkg: perl-Cache-Memcached 1.30 1.0.suse13.2.lc noarch =Sum: Cache-Memcached - client library for memcached (memory cache daemon) +Des: This is the Perl API for memcached, a distributed memory cache daemon. More information is available at: http://www.danga.com/memcached/ -Des: ##---------------------------------------- =Pkg: perl-CAM-PDF 1.60 1.0.suse13.2.lc noarch =Sum: CAM-PDF - Perl module +Des: None. -Des: ##---------------------------------------- =Pkg: perl-Captcha-reCAPTCHA 0.97 1.0.suse13.2.lc noarch =Sum: Captcha-reCAPTCHA - A Perl implementation of the reCAPTCHA API +Des: reCAPTCHA is a hybrid mechanical turk and captcha that allows visitors who complete the captcha to assist in the digitization of books. From http://recaptcha.net/learnmore.html: reCAPTCHA improves the process of digitizing books by sending words that cannot be read by computers to the Web in the form of CAPTCHAs for humans to decipher. More specifically, each word that cannot be read correctly by OCR is placed on an image and used as a CAPTCHA. This is possible because most OCR programs alert you when a word cannot be read correctly. This Perl implementation is modelled on the PHP interface that can be found here: http://recaptcha.net/plugins/php/ To use reCAPTCHA you need to register your site here: https://www.google.com/recaptcha/admin/create -Des: ##---------------------------------------- =Pkg: perl-Class-Loader 2.03 1.0.suse13.2.lc noarch =Sum: Class-Loader - Load modules and create objects on demand. +Des: Certain applications like to defer the decision to use a particular module till runtime. This is possible in perl, and is a useful trick in situations where the type of data is not known at compile time and the application doesn't wish to pre-compile modules to handle all types of data it can work with. Loading modules at runtime can also provide flexible interfaces for perl modules. Modules can let the programmer decide what modules will be used by it instead of hard-coding their names. Class::Loader is an inheritable class that provides a method, _load(), to load a module from disk and construct an object by calling its constructor. It also provides a way to map modules names and associated metadata with symbolic names that can be used in place of module names at _load(). -Des: ##---------------------------------------- =Pkg: perl-Class-Mix 0.005 1.0.suse13.2.lc noarch =Sum: Class-Mix - Perl module +Des: None. -Des: ##---------------------------------------- =Pkg: perl-Crypt-Random 1.25 1.0.suse13.2.lc noarch =Sum: Crypt-Random - Cryptographically Secure, True Random Number Generator. +Des: Crypt::Random is an interface module to the /dev/random device found on most modern unix systems. It also interfaces with egd, a user space entropy gathering daemon, available for systems where /dev/random (or similar) devices are not available. When Math::Pari is installed, Crypt::Random can generate random integers of arbritary size of a given bitsize or in a specified interval. -Des: ##---------------------------------------- =Pkg: perl-enum 1.11 1.0.suse13.2.lc noarch =Sum: enum - C style enumerated types and bitmask flags in Perl +Des: This module is used to define a set of constants with ordered numeric values, similar to the `enum' type in the C programming language. You can also define bitmask constants, where the value assigned to each constant has exactly one bit set (eg 1, 2, 4, 8, etc). What are enumerations good for? Typical uses would be for giving mnemonic names to indexes of arrays. Such arrays might be a list of months, days, or a return value index from a function such as localtime(): use enum qw( :Months_=0 Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec :Days_=0 Sun Mon Tue Wed Thu Fri Sat :LC_=0 Sec Min Hour MDay Mon Year WDay YDay Isdst ); if ((localtime)[LC_Mon] == Months_Jan) { print "It's January!\n"; } if ((localtime)[LC_WDay] == Days_Fri) { print "It's Friday!\n"; } This not only reads easier, but can also be typo-checked at compile time when run under use strict. That is, if you misspell Days_Fri as Days_Fry, you'll generate a compile error. -Des: ##---------------------------------------- =Pkg: perl-HTML-Tiny 1.05 1.0.suse13.2.lc noarch =Sum: HTML-Tiny - Lightweight, dependency free HTML/XML generation +Des: `HTML::Tiny' is a simple, dependency free module for generating HTML (and XML). It concentrates on generating syntactically correct XHTML using a simple Perl notation. In addition to the HTML generation functions utility functions are provided to =over =item * encode and decode URL encoded strings =item * entity encode HTML =item * build query strings =item * JSON encode data structures =back -Des: ##---------------------------------------- =Pkg: perl-Net-PH 2.21 1.0.suse13.2.lc noarch =Sum: Net-PH - CCSO Nameserver Client class +Des: `Net::PH' is a class implementing a simple Nameserver/PH client in Perl as described in the CCSO Nameserver -- Server-Client Protocol. Like other modules in the Net:: family the `Net::PH' object inherits methods from `Net::Cmd'. -Des: ##---------------------------------------- =Pkg: perl-OLE-Storage_Lite 0.19 1.0.suse13.2.lc noarch =Sum: OLE-Storage_Lite - Read and write OLE storage files. +Des: OLE::Storage_Lite allows you to read and write an OLE structured file. OLE::Storage_Lite::PPS is a class representing PPS. OLE::Storage_Lite::PPS::Root, OLE::Storage_Lite::PPS::File and OLE::Storage_Lite::PPS::Dir are subclasses of OLE::Storage_Lite::PPS. -Des: ##---------------------------------------- =Pkg: perl-Spreadsheet-WriteExcel 2.40 1.0.suse13.2.lc noarch =Sum: Spreadsheet-WriteExcel - Write to a cross platform Excel binary file +Des: The Spreadsheet::WriteExcel Perl module can be used to create a cross-platform Excel binary file. Multiple worksheets can be added to a workbook and formatting can be applied to cells. Text, numbers, formulas, hyperlinks, images and charts can be written to the cells. The file produced by this module is compatible with Excel 97, 2000, 2002, 2003 and 2007. The module will work on the majority of Windows, UNIX and Mac platforms. Generated files are also compatible with the Linux/UNIX spreadsheet applications Gnumeric and OpenOffice.org. This module cannot be used to write to an existing Excel file (See the MODIFYING AND REWRITING EXCEL FILES entry elsewhere in this document). Note: This module is in maintenance only mode and in future will only be updated with bug fixes. The newer, more feature rich and API compatible the Excel::Writer::XLSX manpage module is recommended instead. See, the Migrating to Excel::Writer::XLSX entry elsewhere in this document. -Des: ##---------------------------------------- =Pkg: perl-String-Random 0.26 1.0.suse13.2.lc noarch =Sum: String-Random - Perl module +Des: None. -Des: ##---------------------------------------- =Pkg: perl-Text-PDF 0.29 1.0.suse13.2.lc noarch =Sum: Text-PDF - PDF Manipulation and generation +Des: This module allows interaction with existing PDF files directly. It includes various tools including: pdfbklt - make booklets out of existing PDF files pdfrevert - remove edits from a PDF file pdfstamp - stamp text on each page of a PDF file various example programs are also included -Des: ##---------------------------------------- =Pkg: perl-Text-Query 0.09 1.0.suse13.2.lc noarch =Sum: Text-Query - Query processing framework +Des: This module 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. The following parsers are provided: =over 4 =item Text::Query::ParseAdvanced =item Text::Query::ParseSimple =back The following builders are provided: =over 4 =item Text::Query::BuildAdvancedString =item Text::Query::BuildSimpleString =back The following solver is provided: =over 4 =item Text::Query::SolveSimpleString =item Text::Query::SolveAdvancedString =back -Des: ##---------------------------------------- =Pkg: perl-Tie-IxHash-Easy 0.01 1.0.suse13.2.lc noarch =Sum: Tie-IxHash-Easy - Auto-tie()s internal hashes in a tied hash +Des: This module automatically ties any hash reference in the tied hash to the same class, making all of them behave like Tie::IxHash hashes. -Des: ##---------------------------------------- =Pkg: perl-Tree 1.05 1.0.suse13.2.lc noarch =Sum: Tree - Perl module +Des: None. -Des: ##---------------------------------------- =Pkg: texlive-acrotex 6.05 1.0.suse13.2.lc noarch =Sum: The AcroTeX eDucation Bundle used for PDF forms +Des: Acrotex package to support PDF forms which students can use to complete LON-CAPA homework problems offline -Des: