help
Recipe name Version Description Layer
crash 7.1.8 kernel debugging utility, allowing gdb like syntax meta-debian-extra
crypt-cbc-perl 2.33 This module is a Perl-only implementation of the cryptographic cipher block chaining mode (CBC). In combination with a block cipher such as DES or IDEA, you can encrypt and decrypt messages of arbitrarily long length. The encrypted messages are compatible with the encryption format used by the OpenSSL package. meta-cpan
crypt-ripemd160-perl 0.06 The Crypt::RIPEMD160 module allows you to use the RIPEMD160 Message Digest algorithm from within Perl programs. The module is based on the implementation from Antoon Bosselaers from Katholieke Universiteit Leuven. A new RIPEMD160 context object is created with the new operation. Multiple simultaneous digest contexts can be maintained, if desired. The context is updated with the add operation which adds the strings contained in the *LIST* parameter. Note, however, that \"add('foo', 'bar')\", \"add('foo')\" followed by \"add('bar')\" and \"add('foobar')\" should all give the same result. The final message digest value is returned by the digest operation as a 20-byte binary string. This operation delivers the result of add operations since the last new or reset operation. Note that the digest operation is effectively a destructive, read-once operation. Once it has been performed, the context must be reset before being used to calculate another digest value. Several convenience functions are also provided. The addfile operation takes an open file-handle and reads it until end-of file in 8192 byte blocks adding the contents to the context. The file-handle can either be specified by name or passed as a type-glob reference, as shown in the examples below. The hexdigest operation calls digest and returns the result as a printable string of hexdecimal digits. This is exactly the same operation as performed by the unpack operation in the examples below. The hash operation can act as either a static member function (ie you invoke it on the RIPEMD160 class as in the synopsis above) or as a normal virtual function. In both cases it performs the complete RIPEMD160 cycle (reset, add, digest) on the supplied scalar value. This is convenient for handling small quantities of data. When invoked on the class a temporary context is created. When invoked through an already created context object, this context is used. The latter form is slightly more efficient. The hexhash operation is analogous to hexdigest. meta-cpan
ctapi-common 1.1-11 Common files and packaging infrastructure for CT-API modules meta-oe
curaengine 15.06.03 CuraEngine is a powerful, fast and robust engine for processing 3D models into 3D printing instructions. meta-maker
curaengine 15.04.02 CuraEngine is a powerful, fast and robust engine for processing 3D models into 3D printing instructions. meta-maker
dancer2-plugin-auth-yarbac-perl 0.009 YARBAC is a role based user authentication and authorisation framework for Dancer2 apps. Designed with security and a medium to large user base in mind. This framework was heavily inspired by the excellent Dancer::Plugin::Auth::Extensible framework which I'd highly recommend. YARBAC was designed to support secure password checking, enforced password hashing, multiple authentication realms and the ability to create your own backend provider. YARBAC was also designed to to be as flexible and as feature rich as possible in the hope that I'll never have to write RBAC code for Dancer again. :) While similar to Extensible in some ways, this framework has some significantly different approaches. These differences were born out of my own experiences writing RBAC code for various Dancer apps and finding myself always having to extend existing modules or starting from scratch or worse still, copy/paste my old code then reworking it. The major difference with YARBAC is that it tries to be a complete solution to the problem. However in order to be a little more flexible and feature rich in some areas it is also a little more opinionated in others. The main area of opinion in YARBAC is how it achieves role-based access control. YARBAC is structed with users, roles, groups and permissions. A user can have many roles but it might be a good idea in larger enviornments to only allow a user to have one role and then assign that role have many groups. Think of a role as being a role-group. Then there are groups which have many permissions. A user can have one or more roles, a role can have one or more groups and groups can have one or more permissions. This means when deciding if a user is authorised we could require they be logged in, or have a specifc role, or specific group, or a specific group with a specific permission and so on. To put it another way, this design moves the access control down to the role-group relationship thus allowing one to quickly and easily see, assign or revoke permissions to a user even when dealing with a fairly complex authorisation environment. meta-cpan
data-dump-perl 1.23 This module provide a few functions that traverse their argument and produces a string as its result. The string contains Perl code that, when \"eval\"ed, produces a deep copy of the original arguments. meta-cpan
dev86 0.16.19 This is a cross development C compiler, assembler and linker environment for the production of 8086 executables (Optionally MSDOS COM) meta-virtualization
diffstat 1.60 Tool to produce a statistics based on a diff openembedded-core
digest-md5-perl 2.54 The \"Digest::MD5\" module allows you to use the RSA Data Security Inc. MD5 Message Digest algorithm from within Perl programs. The algorithm takes as input a message of arbitrary length and produces as output a 128-bit \"fingerprint\" or \"message digest\" of the input. meta-cpan
digest-md6-perl 0.11 The \"Digest::MD6\" module allows you to use the MD6 Message Digest algorithm from within Perl programs. The algorithm takes as input a message of arbitrary length and produces as output a \"fingerprint\" or \"message digest\" of the input. meta-cpan
digest-sha-perl 5.95 Digest::SHA is written in C for speed. If your platform lacks a C compiler, you can install the functionally equivalent (but much slower) Digest::SHA::PurePerl module. meta-cpan
directfb 1.7.7 Graphics abstraction library for the Linux Framebuffer Device openembedded-core
dmapi 2.2.12 Library functions to get attribute bits meta-filesystems
dnrd 2.20.3 A caching, forwarding DNS proxy server meta-networking
dracut 043+giteab03540cd695d940062af5b55c02e8829aaa526 Initramfs generator using udev meta-initramfs
dri2proto 2.8 DRI2: Direct Rendering Infrastructure 2 headers openembedded-core
dri2proto 1.99.3+gitX DRI2: Direct Rendering Infrastructure 2 headers openembedded-core
dri3proto 1.0 Direct Rendering Infrastructure 3 Extension openembedded-core
epeg git Epeg is a small library for handling thumbnails meta-oe
eval-closure-perl 0.13 String eval is often used for dynamic code generation. For instance, \"Moose\" uses it heavily, to generate inlined versions of accessors and constructors, which speeds code up at runtime by a significant amount. String eval is not without its issues however - it's difficult to control the scope it's used in (which determines which variables are in scope inside the eval), and it's easy to miss compilation errors, since eval catches them and sticks them in $@ instead. meta-cpan
eventlog 0.2.13 Replacement syslog API meta-oe
expect 5.45 tool for automating interactive applications according to a script openembedded-core
extutils-cbuilder-perl 0.280224 This module can build the C portions of Perl modules by invoking the appropriate compilers and linkers in a cross-platform manner. It was motivated by the \"Module::Build\" project, but may be useful for other purposes as well. However, it is *not* intended as a general cross-platform interface to all your C building needs. That would have been a much more ambitious goal! meta-cpan
extutils-parsexs-perl 3.30 \"ExtUtils::ParseXS\" will compile XS code into C code by embedding the constructs necessary to let C functions manipulate Perl values and creates the glue necessary to let Perl access those functions. The compiler uses typemaps to determine how to map C function parameters and variables to Perl values. meta-cpan
fetchmail 6.3.26 Fetchmail retrieves mail from remote mail servers and forwards it via SMTP meta-networking
ffmpeg 2.8.6 Open source audio and video processing tools and librairies meta-kodi
file-find-rule-perl-perl 1.15 I write a lot of things that muck with Perl files. And it always annoyed me that finding \"perl files\" requires a moderately complex File::Find::Rule pattern. meta-cpan
file-which-perl 1.19 File::Which finds the full or relative paths to executable programs on the system. This is normally the function of \"which\" utility. \"which\" is typically implemented as either a program or a built in shell command. On some platforms, such as Microsoft Windows it is not provided as part of the core operating system. This module provides a consistent API to this functionality regardless of the underlying platform. meta-cpan
fingerterm 1.0.2 A terminal emulator for Harmattan (Nokia N9/N950) with a custom virtual keyboard and usability-enhancing features such as URL grabber, pan gestures and customizable shortcut menu. Designed especially to be used with screen and irssi. meta-oe
fio 2.2.6 Filesystem and hardware benchmark and stress tool meta-oe
firmware-atheros 1.0 Firmware files for Digi's platforms, such as Atheros bluetooth. meta-digi-arm
firmware-imx 5.3 Freescale IMX firmware meta-fsl-arm
florence 0.5.1 Florence is a virtual keyboard (also called on-screen-keyboard), which allows the user to input text through a touchscreen. meta-gnome
florence 0.5.4 Florence is a virtual keyboard (also called on-screen-keyboard), which allows the user to input text through a touchscreen. meta-toradex-demos
freetype 2.6 Freetype font rendering library openembedded-core
freetype 2.4.6 Freetype font rendering library meta-wpe
fsl-image-mfgtool-initramfs 1.0 Small image to be used with Manufacturing Tool (mfg-tool) in a production environment. meta-fsl-arm
ganglia 3.6.0 Ganglia is a scalable distributed monitoring system for high-performance computing systems such as clusters and Grids. meta-linaro
gettext 0.19.4 Utilities and libraries for producing multi-lingual messages openembedded-core
gettext 0.16.1 Utilities and libraries for producing multi-lingual messages openembedded-core
gflags 2.2.0 The gflags package contains a C++ library that implements commandline flags processing. It includes built-in support for standard types such as string and the ability to define flags in the source file in which they are used meta-gnss-sdr
ghostscript 9.16 The GPL Ghostscript PostScript/PDF interpreter openembedded-core
gnu-efi 3.0.3 Libraries for producing EFI binaries openembedded-core
gnulib git The GNU portability library meta-oe
golang 1.6.3 Go programming language compiler meta-golang
golang 1.7.1 Go programming language compiler meta-golang
golang 1.5.4 Go programming language compiler meta-golang
golang-cross-canadian-i586 1.7.1 Go programming language compiler meta-golang