help
Recipe name Version Description Layer
multipath-tools 0.4.9+gitrX Tools to Manage Multipathed Devices with the device-mapper meta-virtualization
nativesdk-libtool 2.4.2 Generic library support script openembedded-core
net-async-http-perl 0.40 This object class implements an asynchronous HTTP user agent. It sends requests to servers, returning Future instances to yield responses when they are received. The object supports multiple concurrent connections to servers, and allows multiple requests in the pipeline to any one connection. Normally, only one such object will be needed per program to support any number of requests. meta-cpan
netbase 5.2 Basic TCP/IP networking support openembedded-core
ntp 4.2.6p5 Network Time Protocol daemon and utilities meta-networking
openvswitch 2.0.0 OpenvSwitch meta-virtualization
openvswitch 1.10.0 OpenvSwitch meta-virtualization
opkg-collateral 1.0 Constructs the main configuration file for opkg openembedded-core
package-stash-xs-perl 0.28 This is a backend for Package::Stash, which provides the functionality in a way that's less buggy and much faster. It will be used by default if it's installed, and should be preferred in all environments with a compiler. meta-cpan
patch 2.7.1 Tool for applying a patch file openembedded-core
patch 2.5.9 Tool for applying a patch file openembedded-core
path-class-perl 0.35 "Path::Class\" is a module for manipulation of file and directory specifications (strings describing their locations, like '/home/ken/foo.txt' or 'C:\\Windows\\Foo.txt') in a cross-platform manner. It supports pretty much every platform Perl runs on, including Unix, Windows, Mac, VMS, Epoc, Cygwin, OS/2, and NetWare. meta-cpan
pax-utils 0.7 Security-focused ELF files checking tool openembedded-core
pointercal 0.0 Touchscreen calibration data openembedded-core
pointercal-xinput 0.0 Touchscreen calibration data from xinput-calibrator openembedded-core
postgresql 9.2.4 PostgreSQL is a powerful, open source relational database system. meta-oe
protobuf 2.4.1 Protocol Buffers - structured data serialisation mechanism meta-oe
protobuf 2.4.1 protobuf meta-virtualization
psmisc 22.21 Utilities for managing processes on your system openembedded-core
psplash 0.1+gitX Userspace framebuffer boot logo based on usplash openembedded-core
pure-ftpd 1.0.36 FTP Server with a strong focus on software security meta-networking
python-matplotlib 1.1.0 matplotlib is a python 2D plotting library which produces publication quality figures in a variety of hardcopy formats meta-oe
python-scons 2.3.0 Software Construction tool (make/autotools replacement) openembedded-core
python-scons-native 2.3.0 Software Construction tool (make/autotools replacement) openembedded-core
python-twisted 13.2.0 Twisted is an event-driven networking framework written in Python and licensed under the LGPL. Twisted supports TCP, UDP, SSL/TLS, multicast, Unix sockets, a large number of protocols (including HTTP, NNTP, IMAP, SSH, IRC, FTP, and others), and much more. meta-oe
python-zopeinterface 4.1.1 Interface definitions for Zope products meta-oe
qt5-opengles2-test 1.0.2+gitrX Qt5 OpenGL ES 2.0 Test Application meta-luneos-backports-2-8
read-edid 2.0.0 read-edid elucidates various very useful informations from a conforming PnP monitor meta-oe
rpi-mkimage git RaspberryPi tool to produce kernel.img meta-raspberrypi
rxvt-unicode 9.19 rxvt terminal clone supporting unicode openembedded-core
scalar-list-utils-perl 1.42 "List::Util\" contains a selection of subroutines that people have expressed would be nice to have in the perl core, but the usage would not really be high enough to warrant the use of a keyword, and the size so small such that being individual extensions would be wasteful. meta-cpan
sgml-common 0.6.3 Base utilities for working with SGML and XML openembedded-core
sgml-common-native 0.6.3 Base utilities for working with SGML and XML openembedded-core
socket-perl 2.020 This module provides a variety of constants, structure manipulators and other functions related to socket-based networking. The values and functions provided are useful when used in conjunction with Perl core functions such as socket(), setsockopt() and bind(). It also provides several other support functions, mostly for dealing with conversions of network addresses between human-readable and native binary forms, and for hostname resolver operations. meta-cpan
starman-perl 0.4014 Starman is a PSGI perl web server that has unique features such as: meta-cpan
talloc 2.0.1 Hierarchical, reference counted memory pool system with destructors meta-oe
template-toolkit-perl 2.26 This documentation describes the Template module which is the direct Perl interface into the Template Toolkit. It covers the use of the module and gives a brief summary of configuration options and template directives. Please see Template::Manual for the complete reference manual which goes into much greater depth about the features and use of the Template Toolkit. The Template::Tutorial is also available as an introductory guide to using the Template Toolkit. meta-cpan
test-base-perl 0.88 Testing is usually the ugly part of Perl module authoring. Perl gives you a standard way to run tests with Test::Harness, and basic testing primitives with Test::More. After that you are pretty much on your own to develop a testing framework and philosophy. Test::More encourages you to make your own framework by subclassing Test::Builder, but that is not trivial. meta-cpan
test-differences-perl 0.63 When the code you're testing returns multiple lines, records or data structures and they're just plain wrong, an equivalent to the Unix \"diff\" utility may be just what's needed. Here's output from an example test script that checks two text documents and then two (trivial) data structures: meta-cpan
test-fatal-perl 0.014 Test::Fatal is an alternative to the popular Test::Exception. It does much less, but should allow greater flexibility in testing exception-throwing code with about the same amount of typing. meta-cpan
test-most-perl 0.34 Test::Most exists to reduce boilerplate and to make your testing life easier. We provide \"one stop shopping\" for most commonly used testing modules. In fact, we often require the latest versions so that you get bug fixes through Test::Most and don't have to keep upgrading these modules separately. meta-cpan
test-nowarnings-perl 1.04 In general, your tests shouldn't produce warnings. This modules causes any warnings to be captured and stored. It automatically adds an extra test that will run when your script ends to check that there were no warnings. If there were any warings, the test will give a \"not ok\" and diagnostics of where, when and what the warning was, including a stack trace of what was going on when the it occurred. meta-cpan
test-number-delta-perl 1.06 At some point or another, most programmers find they need to compare floating-point numbers for equality. The typical idiom is to test if the absolute value of the difference of the numbers is within a desired tolerance, usually called epsilon. This module provides such a function for use with Test::More. Usage is similar to other test functions described in Test::More. Semantically, the \"delta_within\" function replaces this kind of construct: meta-cpan
test-refcount-perl 0.08 The Perl garbage collector uses simple reference counting during the normal execution of a program. This means that cycles or unweakened references in other parts of code can keep an object around for longer than intended. To help avoid this problem, the reference count of a new object from its class constructor ought to be 1. This way, the caller can know the object will be properly DESTROYed when it drops all of its references to it. meta-cpan
texinfo 5.2 Documentation system for on-line information and printed output openembedded-core
time 1.7 Tool that measures CPU resources openembedded-core
tslib 1.1 An abstraction layer for touchscreen panel events openembedded-core
tsmd 1.0.0+gitrX Touchscreen management daemon - manages the touchscreen of the palm pre machine meta-palm
u-boot-glsdk 2013.01.01+gitX Universal Boot Loader for embedded devices meta-ti
uhd 3.7.1 Universal Hardware Driver for Ettus Research products. meta-sdr