From: Chulwoo Shin Date: Tue, 20 Dec 2016 03:11:57 +0000 (+0900) Subject: Merge remote-tracking branch 'origin/develop' X-Git-Tag: v20170316~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b283bcae19975137175a4d420f40710a63138136;hp=92f7d0e40e647acd568f817a87f068ef84995f7b;p=archive%2F20170607%2Ftools%2Ftic-core.git Merge remote-tracking branch 'origin/develop' Change-Id: I08838da397345ec0efdaeaf9e080ec9d0f2ca23f Signed-off-by: Chulwoo Shin --- diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5c89fcc --- /dev/null +++ b/.gitignore @@ -0,0 +1,9 @@ +*.py[oc] +*.swp +build/ +dist/ +tic.egg-info* +.project +.pydevproject +.settings +tic/__version__.py diff --git a/COPYING b/COPYING new file mode 100644 index 0000000..e69de29 diff --git a/README.md b/README.md new file mode 100644 index 0000000..63aff23 --- /dev/null +++ b/README.md @@ -0,0 +1,65 @@ +TIC-CORE +================ + +TIC means "Tizen the Image Creator" and it's used to generate the recipes or create images for Tizen. + +TIC support the following major functions: + * install-dependency analysis + * recipe creation + * file conversion between recipe to kickstart using kickstarter + * image creation using mic + +Resource +-------- + * REPO: https://download.tizen.org/tools/ + * DOCS: [TODO] + * CODE: https://review.tizen.org/gerrit/tools/tic-core + * BUGS: https://bugs.tizen.org/jira + * HELP: general@lists.tizen.org + +License +------- +[TODO] + +Installation +------------ + +Install the following python modules before installing tic-core + * Install lxml (http://lxml.de/index.html) + * Install flask (http://flask.pocoo.org/) + +Clones the tic-core source from git + * git clone ssh://review.tizen.org:29418/tools/tic-core + +Install tic-core module + * sudo python setup.py install + +Usage +----- + +You can use 'tic-core --help' or 'mic --help' to get the help message. +How to get help: +* For global options and the command list: + * $ tic-core -h | --help +* For each sub-command: + * $ tic-core --help + +tic-core provides several subcommands, including: +* tic-core start: + * the tic-core daemon server on system. port 59001 is used default + * $ tic-core start --port 59001 +* tic-core analyze: + * analyze install-dependency of packages + * $ tic-core analyze --repos {repo-url} +* tic-core export: + * export files (ks/recipes) + * $ tic-core export --format ks --recipes {recipes} --outdir /var/tmp + * $ tic-core export --format recipe --recipes {recipes} --outdir /var/tmp +* tic-core createimage: + * create an image for tizen + * $ tic-core createimage --recipe {recipe} --output /var/tmp + +Contacts +-------- +When you found a bug, you can file this bug in our official bug tracker: +https://bugs.tizen.org/jira \ No newline at end of file diff --git a/VERSION b/VERSION new file mode 100644 index 0000000..8a9ecc2 --- /dev/null +++ b/VERSION @@ -0,0 +1 @@ +0.0.1 \ No newline at end of file diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..98f4ed8 --- /dev/null +++ b/setup.py @@ -0,0 +1,57 @@ +#!/usr/bin/python +# Copyright (c) 2000 - 2016 Samsung Electronics Co., Ltd. All rights reserved. +# +# Contact: +# @author Chulwoo Shin +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# Contributors: +# - S-Core Co., Ltd + +import os, sys +from distutils.core import setup + +MOD_NAME = 'tic' + +version_path = 'VERSION' + +if not os.path.isfile(version_path): + print('No VERSION file in topdir, abort') + sys.exit(1) + +try: + # first line should be the version number + version = open(version_path).readline().strip() + if not version: + print('VERSION file is invalid, abort') + sys.exit(1) + + ver_file = open('%s/__version__.py' % MOD_NAME, 'w') + ver_file.write("VERSION = \"%s\"\n" % version) + ver_file.close() +except IOError: + print('WARNING: Cannot write version number file') + +setup(name=MOD_NAME, + version=version, + description='package dependency analyzer for image creation', + author='Chulwoo Shin', + author_email='cw1.shin@samsung.com', + url='https://', + scripts=['tools/tic-core'], + packages=['tic', + 'tic.parser', + 'tic.server', + 'tic.utils'] + ) diff --git a/test/__init__.py b/test/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/dependency_fixtures/base/repodata/79f630ff956a21776f70ff33e24821fa1823aec8b79f0513189a9960414b9622-primary.xml b/test/dependency_fixtures/base/repodata/79f630ff956a21776f70ff33e24821fa1823aec8b79f0513189a9960414b9622-primary.xml new file mode 100644 index 0000000..f42d8fe --- /dev/null +++ b/test/dependency_fixtures/base/repodata/79f630ff956a21776f70ff33e24821fa1823aec8b79f0513189a9960414b9622-primary.xml @@ -0,0 +1,15905 @@ + + + + acl + aarch64 + + 2a726e77bbabf4ceabe134c0e14a89890f8558091ad22d1e167d554373123ad0 + Commands for Manipulating POSIX Access Control Lists + getfacl and setfacl commands for retrieving and setting POSIX access +control lists. + + http://download.savannah.gnu.org/releases-noredirect/acl/ + + + acl-docs + aarch64 + + a543efcdf3d88dc82cf4d55d3946101071d7520406a650450f5387a6890e270d + Documentation for package acl + This package provides documentation for package acl. + + http://download.savannah.gnu.org/releases-noredirect/acl/ + + + asan-build-env + aarch64 + + 7b4227beda7e44f8dce37255b6e15af5902a628100e4e48c82720c6b33a5f166 + Asan build environment + Asan build environment + + http://gcc.gnu.org/ + + + asan-force-options + aarch64 + + 53f5a5704d066b5115f1ac9fee10959d427c44cabec0f514043a162019c92d14 + Scripts to enable automatic package sanitization + Scripts for ASan instrumentation + + http://gcc.gnu.org/ + + + asan-runtime-env + aarch64 + + 42ba687447469e011b17d7595037951312c8825bd1bf4649fd30d4995546ae76 + Asan runtime environment for target device + Asan runtime environment + + http://gcc.gnu.org/ + + + attr + aarch64 + + e8da5fc9ffcb84c38a13de59b086cbdba1800a8d173794a835539c077e8e3ce3 + Commands for Manipulating Extended Attributes + A set of tools for manipulating extended attributes on file system +objects, in particular getfattr(1) and setfattr(1). An attr(1) command +is also provided, which is largely compatible with the SGI IRIX tool of +the same name. + + http://download.savannah.gnu.org/releases-noredirect/attr/ + + + attr-docs + aarch64 + + c4c6b043ad13daab825355f0f789e81b96a9481aceac430c0639a617565f5276 + Documentation for package attr + This package provides documentation for package attr. + + http://download.savannah.gnu.org/releases-noredirect/attr/ + + + autoconf + noarch + + 9fbb20102fe236736e6f041236c3aff3986329ac32dab17300ed3325d65ae1a0 + A GNU Tool for Automatically Configuring Source Code + GNU Autoconf is a tool for configuring source code and makefiles. Using +autoconf, programmers can create portable and configurable packages, +because the person building the package is allowed to specify various +configuration options. + +You should install autoconf if you are developing software and would +like to create shell scripts to configure your source code packages. + +Note that the autoconf package is not required for the end user who may +be configuring software with an autoconf-generated script; autoconf is +only required for the generation of the scripts, not their use. + + http://www.gnu.org/software/autoconf + + + autoconf213 + noarch + + e6d52e34bbf0895d9d97fba69cedefae473c427ff2ee794cacb19a009b94d65c + A GNU Tool for Automatically Configuring Source Code + GNU Autoconf is a tool for configuring source code and makefiles. Using +autoconf, programmers can create portable and configurable packages, +because the person building the package is allowed to specify various +configuration options. + +You should install autoconf if you are developing software and would +like to create shell scripts to configure your source code packages. + +Note that the autoconf package is not required for the end user who may +be configuring software with an autoconf-generated script; autoconf is +only required for the generation of the scripts, not their use. + + + +Authors: +-------- + Ben Elliston <bje@cygnus.com> + David J MacKenzie <djm@catapult.va.pubnix.com> + + http://www.gnu.org/software/autoconf + + + automake + noarch + + dade1d82475ee3c4148b6b663f272c2facd39d32910aa70e2578b5658146af46 + A Program for Automatically Generating GNU-Style Makefile.in Files + Automake is a tool for automatically generating "Makefile.in" files +from "Makefile.am" files. "Makefile.am" is a series of "make" macro +definitions (with rules occasionally thrown in). The generated +"Makefile.in" files are compatible with the GNU Makefile standards. + + http://www.gnu.org/software/automake + + + bash + aarch64 + + f9454944151644ea9481e4de6cf4138baec2405b924483e084174f8c63e58214 + The GNU Bourne Again shell + The GNU Bourne Again shell (Bash) is a shell or command language +interpreter that is compatible with the Bourne shell (sh). Bash +incorporates useful features from the Korn shell (ksh) and the C shell +(csh). Most sh scripts can be run by bash without modification. + + http://www.gnu.org/software/bash + + + bc + aarch64 + + 16edf0a6aa6025aee3a6e0bc9efa4f2fdabdd85bf8702794c7bd63e2420c0a55 + GNU Command Line Calculator + bc is an interpreter that supports numbers of arbitrary precision and +the interactive execution of statements. The syntax has some +similarities to the C programming language. A standard math library is +available through command line options. When used, the math library is +read in before any other input files. bc then reads in all other files +from the command line, evaluating their contents. Then bc reads from +standard input (usually the keyboard). + +The dc program is also included. dc is a calculator that supports +reverse-polish notation and allows unlimited precision arithmetic. +Macros can also be defined. Normally, dc reads from standard input but +can also read in files specified on the command line. A calculator with +reverse-polish notation saves numbers to a stack. Arguments to +mathematical operations (operands) are "pushed" onto the stack until +the next operator is read in, which "pops" its arguments off the stack +and "pushes" its results back onto the stack. + + ftp://ftp.gnu.org/pub/gnu/bc + + + binutils + aarch64 + + 3ec91c60f5bbf04cbc2ec4b4b3adee5f570a1ccee162fc1c04d58d05ded0f097 + GNU Binutils + C compiler utilities: ar, as, gprof, ld, nm, objcopy, objdump, ranlib, +size, strings, and strip. These utilities are needed whenever you want +to compile a program or kernel. + + http://www.gnu.org/software/binutils/ + + + binutils-armv7l + aarch64 + + 90a863d4b9c5a2dd00d5cdaca4dc0101784d1653cb17981a3c53306cd09278f2 + GNU Binutils + C compiler utilities: ar, as, gprof, ld, nm, objcopy, objdump, ranlib, +size, strings, and strip. These utilities are needed whenever you want +to compile a program or kernel. + + http://www.gnu.org/software/binutils/ + + + binutils-devel + aarch64 + + 1b0cbae404707d6af1123b5286d4eeaa7c927662a685d7032014e1d1ba068c0a + GNU binutils (BFD development files) + This package includes header files and static libraries necessary to +build programs which use the GNU BFD library, which is part of +binutils. + + http://www.gnu.org/software/binutils/ + + + binutils-gold + aarch64 + + 353866fde6e38bc7bae5d785ec739f15ed62666c6111626a6f55b0f15d62e36d + The gold linker + gold is an ELF linker. It is intended to have complete support for ELF +and to run as fast as possible on modern systems. For normal use it is +a drop-in replacement for the older GNU linker. + + http://www.gnu.org/software/binutils/ + + + bison + aarch64 + + 03c9f410e0c387e02b10e8ec4e5a7576456659434aae1f6ce6079121cbe4b2b6 + The GNU Parser Generator + Bison is a parser generator similar to yacc(1). + + http://www.gnu.org/software/bison/bison.html + + + build + noarch + + d7441149c4cd10b5b67572b87a8e559a8b7b42f2769ae51a28826aabbff2cea2 + A Script to Build SUSE Linux RPMs + This package provides a script for building RPMs for SUSE Linux in a +chroot environment. + + + + + build-compare + noarch + + d69356d0553e72a9c85110c414ae79dd1912fff18c499fca1d890433be06525d + Build Result Compare Script + This package contains scripts to find out if the build result differs +to a former build. + + https://github.com/openSUSE/build-compare + + + build-mkbaselibs + noarch + + 19b31fd5f7be583fbd0b24464a243689f6775b75d672ba25ff01f90ea35f9500 + Tools to generate base lib packages + This package contains the parts which may be installed in the inner build system +for generating base lib packages. + + + + + build-mkdrpms + noarch + + 1ade3749e1cd20eefb219fafbc4932286da4e91b29a259fb516173c8869ead92 + Tools to generate delta rpms + This package contains the parts which may be installed in the inner build system +for generating delta rpm packages. + + + + + bzip2 + aarch64 + + a5bed689274a4021d0adf1c322963a9c5144afaeb864ab9a55209fc222dcf01b + A Program for Compressing Files + The bzip2 program is a very powerful program for compressing files. + + http://www.bzip.org/ + + + bzip2-devel + aarch64 + + d309c0e107c3a4496e1479730bf046210eecd46c590392b909f7436749bf4b22 + The bzip2 runtime library development files + The bzip2 runtime library development files. + + http://www.bzip.org/ + + + bzip2-docs + aarch64 + + 2ff62a6dd92fec07f772a25257b0ac36dc4ca6ebeb9795817ef391cba65de00e + Documentation for package bzip2 + This package provides documentation for package bzip2. + + http://www.bzip.org/ + + + ccache + aarch64 + + e5c42ada3208c351fb455a4e9a7d4284ad4262c33e88f84bff93ef6a4279eed5 + A Fast C/C++ Compiler Cache + ccache is a compiler cache. It speeds up recompilation by caching the result of +previous compilations and detecting when the same compilation is being done +again. Supported languages are C, C++, Objective-C and Objective-C++. + + http://ccache.samba.org/ + + + chrpath + aarch64 + + 5490e65bcfd36eb0b0542367af922519eb1cd37fc825d1c89b4f46d770ccbffa + Modify rpath of compiled programs + chrpath allows you to modify the dynamic library load path (rpath) of +compiled programs. Currently, only removing and modifying the rpath +is supported. + + http://www.tux.org/pub/X-Windows/ftp.hungry.com/chrpath/ + + + clang + aarch64 + + 14545648a40a3ee350a839e9f9c9d036a3befb706489c5d2cd9e101c552a88b3 + Clang 3.8.1 (C Language family frontend for LLVM) + A new front-end for the C family of languages is in development. + + + + + clang-devel + aarch64 + + c1334ef06c4ccd4455a9bed767e094fea6a39f90a9e6292e9efc93917f36c856 + Clang 3.8.1 Development Library + This package contains the clang (C language) frontend for LLVM. +(development files) + + + + + cmake + aarch64 + + 5d593e4e5cec617de6ecbdd5d3f06427a67a69c0d8f141b7bad916e9b13d7343 + Cross-platform make system + CMake is used to control the software compilation process using simple platform +and compiler independent configuration files. CMake generates native makefiles +and workspaces that can be used in the compiler environment of your choice. +CMake is quite sophisticated: it is possible to support complex environments +requiring system configuration, pre-processor generation, code generation, and +template instantiation. + + http://www.cmake.org + + + cmake-docs + aarch64 + + c36c53807553f78e19039e9a6192c3715129151440a6a8488647b624987db88b + Documentation for package cmake + This package provides documentation for package cmake. + + http://www.cmake.org + + + coreutils + aarch64 + + b40c58dbe524c159c16a7c93d48b970807a312675c7c0c6c6f2f4cb6b2aeba54 + The GNU core utilities: a set of tools commonly used in shell scripts + These are the GNU core utilities. This package is the combination of +the old GNU fileutils, sh-utils, and textutils packages. + + http://www.gnu.org/software/coreutils/ + + + coreutils-docs + aarch64 + + 1fcf782646bda8e0f11e71668261453a516f6250c03c49d1b82408a5422a8063 + Documentation for package coreutils + This package provides documentation for package coreutils. + + http://www.gnu.org/software/coreutils/ + + + coreutils-su + aarch64 + + afc70462725ccdc8ce08e1df3584a6d4a6f2d974686e39dd95a219b2e09db59c + su - run a command with substitute user and group ID + su - run a command with substitute user and group ID + + http://www.gnu.org/software/coreutils/ + + + cpio + aarch64 + + 8af31199f546244aaeaf36d5029387408778dc78692a4af0ce0f0fd0893e1c3f + A GNU archiving program + GNU cpio copies files into or out of a cpio or tar archive. Archives +are files which contain a collection of other files plus information +about them, such as their file name, owner, timestamps, and access +permissions. The archive can be another file on the disk, a magnetic +tape, or a pipe. GNU cpio supports the following archive formats: binary, +old ASCII, new ASCII, crc, HPUX binary, HPUX old ASCII, old tar and POSIX.1 +tar. By default, cpio creates binary format archives, so that they are +compatible with older cpio programs. When it is extracting files from +archives, cpio automatically recognizes which kind of archive it is reading +and can read archives created on machines with a different byte-order. + +Install cpio if you need a program to manage file archives. + + http://www.gnu.org/software/cpio/ + + + cpio-docs + aarch64 + + b9a5a35ad1134e0e096e5eb54f3b6935af14835fd9f099e469bd299e959ef288 + Documentation for package cpio + This package provides documentation for package cpio. + + http://www.gnu.org/software/cpio/ + + + cpp + aarch64 + + 79a634f24f97c231650d13dc3ac3a43d504555ad9abe04714888a1feae0a3f47 + The GCC Preprocessor + This Package contains just the preprocessor that is used by the X11 +packages. + + http://gcc.gnu.org/ + + + dash + aarch64 + + 2bf9be7779f8002a528602b7cd0f7599385faee9f6895aa5d0310f09d1520679 + Small and fast POSIX-compliant shell + DASH is a POSIX-compliant implementation of /bin/sh that aims to be as small as +possible. It does this without sacrificing speed where possible. In fact, it is +significantly faster than bash (the GNU Bourne-Again SHell) for most tasks. + + http://gondor.apana.org.au/~herbert/dash/ + + + dash-docs + aarch64 + + 78dabf4539cc303675be6462089a7b16efb2c25d174fea72863b6c0642acbdfe + Documentation for package dash + This package provides documentation for package dash. + + http://gondor.apana.org.au/~herbert/dash/ + + + db4 + aarch64 + + a7d282e2be8625ac95b104a19763df4ee8381d364cab2aa949a87552911b56de + Berkeley DB Database Library Version 4.8 + The Berkeley DB Database is a programmatic toolkit that provides +database support for applications. + +This package contains the necessary runtime libraries. + + http://www.sleepycat.com + + + db4-devel + aarch64 + + ff3f103d490172c30b41773a016824c2ce376f63ab49ead6d826c9fcb8fd3465 + Development Files and Libraries for the Berkeley DB library Version 4.8 + The Berkeley DB Database is a programmatic toolkit that provides +database support for applications. + +This package contains the header files and libraries. + + http://www.sleepycat.com + + + db4-doc + noarch + + c402e2f339f60533c19e7121177fdb81390f8040ae785f033a4ec7c65a1c640f + Documentation for Berkeley DB + The Berkeley DB Database is a programmatic toolkit that provides +database support for applications. + +This package contains the documentation. + + http://www.sleepycat.com + + + db4-utils + aarch64 + + 1b5cce576a72cb7bb59e414f90efaa61037bf5be88cc48ae7c2727907f64489f + Command Line tools for Managing Berkeley DB Databases + The Berkeley DB Database is a programmatic toolkit that provides +database support for applications. + +This package contains the command line tools for managing Berkeley DB +databases. + + http://www.sleepycat.com + + + diffutils + aarch64 + + f498277c8877e27b13738611e510a330719184e30d22c44a899fa1238089de9a + GNU diff Utilities + The GNU diff utilities find differences between files. diff is used to +make source code patches, for instance. + + http://www.gnu.org/software/diffutils/ + + + e2fsprogs + aarch64 + + abcc44f304d35bd8eca3f04554d213b4a86fe9743141ab949f5b84a0bca374b1 + Utilities for the Second Extended File System + Utilities needed to create and maintain ext2 and ext3 file systems +under Linux. Included in this package are: chattr, lsattr, mke2fs, +mklost+found, tune2fs, e2fsck, resize2fs, and badblocks. + + http://e2fsprogs.sourceforge.net + + + e2fsprogs-devel + aarch64 + + 839b49c5f8f05f8cada5dffe1312c7db502f531cd9c4e5496065c8d8f459e934 + Dummy development package + Dummy development package for backwards compatibility. + + http://e2fsprogs.sourceforge.net + + + e2fsprogs-docs + aarch64 + + b91c1dae3dde735bf6c249b221a00d0826881eb8b83cf27088a26cd06640458e + Documentation for package e2fsprogs + This package provides documentation for package e2fsprogs. + + http://e2fsprogs.sourceforge.net + + + ed + aarch64 + + 947143108142b4e15c311919793578d8cc87ae7374912bb824fbf2f589d0bad5 + Standard UNIX Line Editor + The standard, old Unix line editor. + + http://www.gnu.org/software/ed/ + + + elfutils + aarch64 + + 2731654d83364a0277a67756975efa2c96411b2e9af55200cffad05b01c7a638 + Higher-level library to access ELF + This package provides a higher-level library to access ELF files. This +is a part of elfutils package. + + http://elfutils.fedorahosted.org + + + expat + aarch64 + + b2ced0c86af5d8d750d50c0fd5356785b6714a1a6f43c95df9a1dcbab3a7a946 + XML Parser Toolkit + Expat is an XML 1.0 parser written in C. It aims to be fully +conformant. It is currently not a validating XML processor. The current +production version of expat can be downloaded from +ftp://ftp.jclark.com/pub/xml/expat.zip. The directory xmltok contains a +low-level library for tokenizing XML. The interface is documented in +xmltok/xmltok.h. The directory xmlparse contains an XML parser library +that is built on top of the xmltok library. The interface is documented +in xmlparse/xmlparse.h. The directory sample contains a simple example +program using this interface. The file sample/build.bat is a batch +file to build the example using Visual C++. The directory xmlwf +contains the xmlwf application, which uses the xmlparse library. The +arguments to xmlwf are one or more files to check for well-formedness. +An option -d dir can be specified. For each well-formed input file, the +corresponding canonical XML is written to dir/f, where f is the +filename (without any path) of the input file. A -x option causes +references to external general entities to be processed. A -s option +makes documents that are not stand-alone cause an error (a document is +considered stand-alone if it is intrinsically stand-alone because it +has no external subset and no references to parameter entities in the +internal subset or it is declared as stand-alone in the XML +declaration). + + http://expat.sourceforge.net/ + + + fdupes + aarch64 + + 2b6dcb2fbfdc4f6b6354965c688f578ab9bbc20e170c070f56c607aaa2d36b12 + Identifying or deleting duplicate files + FDUPES is a program for identifying or deleting duplicate files +residing within specified directories + + http://premium.caribe.net/~adrian2/fdupes.html + + + file + aarch64 + + 4fcf51502d1fbcc1b317ab01c710de4907244b9a7b7272531c3bef2cd6422404 + A Tool to Determine File Types + With the file command, you can obtain information on the file type of a +specified file. File type recognition is controlled by the file +/etc/magic, which contains the classification criteria. This command is +used by apsfilter to permit automatic printing of different file types. + + http://www.darwinsys.com/file/ + + + file-devel + aarch64 + + 4905f42a83c853300a15ec01b9ca7ad5399062f973210bb62e60d2ab2f418b2c + Include Files and Libraries mandatory for Development + This package contains all necessary include files and libraries needed +to develop applications that require the magic "file" interface. + + http://www.darwinsys.com/file/ + + + filesystem + aarch64 + + 469bd61a7f9616ad9072e08040cd8758f78399ae968cf21be817dd5dc180bd99 + The basic directory layout for a Linux system + The filesystem package is one of the basic packages that is installed +on a Linux system. Filesystem contains the basic directory layout +for a Linux operating system, including the correct permissions for +the directories. + + https://fedorahosted.org/filesystem + + + findutils + aarch64 + + 4d8d8d89f85bce4c602c0bcebced9388a3f196b8a9ea2d84f7216ab427fd11ec + The GNU versions of find utilities (find and xargs) + The findutils package contains programs which will help you locate +files on your system. The find utility searches through a hierarchy +of directories looking for files which match a certain set of criteria +(such as a file name pattern). The xargs utility builds and executes +command lines from standard input arguments (usually lists of file +names generated by the find command). + +You should install findutils because it includes tools that are very +useful for finding things on your system. + + http://www.gnu.org/software/findutils/ + + + findutils-docs + aarch64 + + 4e5a94487e51d706e0ef764111fdbcc69c875c26ea61ab5f820de635926f95ed + Documentation for package findutils + This package provides documentation for package findutils. + + http://www.gnu.org/software/findutils/ + + + findutils-locale + noarch + + 0ebe0de3663d4d11d7d47ac7560c38408ab8e4a257d54dc2f4e42870580d4f1f + Translations and Locale for package findutils + This package provides translations for package findutils. + + http://www.gnu.org/software/findutils/ + + + findutils-locate + aarch64 + + d72ad0b5c11f4f28e473febe49bf597e950bd6aae8501c2d207624b67f71d1fc + Tool for Locating Files (findutils subpackage) + This package contains the locate program which is part of the GNU +findutils software suite. + +You can find files fast using locate. On installing findutils-locate +an additional daily cron job will be added to the cron system. This +job will update the files database every night or shortly after +switching on the computer. + + http://www.gnu.org/software/findutils/ + + + flex + aarch64 + + 8dc94171912a031a0184f7ab151d7e2344265e4febc18bf99915e4462e4e31eb + Fast Lexical Analyzer Generator + FLEX is a tool for generating scanners: programs that recognize lexical +patterns in text. + + http://flex.sourceforge.net/ + + + gawk + aarch64 + + d6445367202fd2cc2b430f781a348c33694ac7f0cb1c15bed2e9b078563e6e58 + GNU awk + The gawk package contains the GNU version of awk, a text processing +utility. Awk interprets a special-purpose programming language to do +quick and easy text pattern matching and reformatting jobs. + +Install the gawk package if you need a text processing utility. Gawk is +considered to be a standard Linux tool for processing text. + + http://www.gnu.org/software/gawk/ + + + gcc + aarch64 + + b7511046b9d3049e057e616fd8f855e2cf35b663b9cc689cc3c533124db26602 + The GNU C Compiler and Support Files + Core package for the GNU Compiler Collection, including the C language +frontend. + + http://gcc.gnu.org/ + + + gcc-armv7l + aarch64 + + 22c9d4785e10575584a9ad4aebf4383be79f0af23eba45d05a75edb8ae35a782 + The GNU C Compiler and Support Files + Core package for the GNU Compiler Collection, including the C language +frontend. + + http://gcc.gnu.org/ + + + gcc-c++ + aarch64 + + 058d0f5e749b01de155984834feeb00f6c32401dc7d215f0f72f52285a83e69b + The GNU C++ Compiler + This package contains the GNU compiler for C++. + + http://gcc.gnu.org/ + + + gcc-plugin-devel + aarch64 + + 815885f42307c5981800e6a1dde5f65b1efd3f138e09a66f3558558c9cf9dd53 + GNU GCC Plugin development files + This package contains GCC Plugin development files needed for compiler +plugins build. + + http://gcc.gnu.org/ + + + gdbm + aarch64 + + 2e585b10ee61130bdd57f2318fcd02d1c3d25af06c0967a1a51f1e3b4322dbef + GNU Database Routines + A static and dynamic library for the GNU database routines. + + http://directory.fsf.org/GNU/gdbm.html + + + gdbm-devel + aarch64 + + 52e443d846aff05d323e278154e78ec56f18d9c6dc7275413bfb82a20dd75a51 + Include Files and Libraries mandatory for Development + This package contains all necessary include files and libraries needed +to develop applications that require these. + + http://directory.fsf.org/GNU/gdbm.html + + + gettext-docs + aarch64 + + 72fe8fc309648f0dc97ad91949423c7965067a1829325a482b35f70152399056 + Documentation for package gettext + This package provides documentation for package gettext. + + http://www.gnu.org/software/gettext/ + + + gettext-runtime + aarch64 + + 2ecfadc2b1b0487623afb9b6f50e21c40c19192fbd71ae387c66bc2ebc0fdb73 + Libraries for gettext + This package contains libraries used internationalization support. + + http://www.gnu.org/software/gettext/ + + + gettext-tools + aarch64 + + 742d306dd82e85a52d92c6374a45349495b638be2c3a1637f969326b0b6841f3 + Development files for gettext + This package contains all development related files necessary for +developing or compiling applications/libraries that needs +internationalization capability. You also need this package if you +want to add gettext support for your project. + + http://www.gnu.org/software/gettext/ + + + glibc + aarch64 + + ad178a82aa66c2c057f4c995446acdb76632300353695bb724a585aad1602a28 + Standard Shared Libraries (from the GNU C Library) + The GNU C Library provides the most important standard libraries used +by nearly all programs: the standard C library, the standard math +library, and the POSIX thread library. A system is not functional +without these libraries. + + http://www.gnu.org/software/libc/libc.html + + + glibc-devel + aarch64 + + 5b88c069425a3139c7c756ea5d5096b1b72048a171c9c6d369ee8103253f581b + Include Files and Libraries Mandatory for Development + These libraries are needed to develop programs which use the standard C +library. + + http://www.gnu.org/software/libc/libc.html + + + glibc-devel-static + aarch64 + + 2661e031f486defaa9a04460bc83daa1dc0ec28964b58ca67b1b1e8c65480332 + C library static libraries for -static linking + The glibc-devel-static package contains the C library static libraries +for -static linking. You don't need these, unless you link statically, +which is highly discouraged. + + http://www.gnu.org/software/libc/libc.html + + + glibc-devel-utils + aarch64 + + 1f87f462677fa5c72d5c3895c937ca9c2f90a7630b16a801cf035d677850fa7f + Development utilities from GNU C library + The glibc-devel-utils package contains various binaries which can be helpful during program +debugging. + +If you are unsure if you need this, don't install this package. + + http://www.gnu.org/software/libc/libc.html + + + glibc-docs + aarch64 + + a4afaca857714ae4d33bbd8d41f91478c6e0ddd9a3e6610e7149ceb3a0643262 + Documentation for package glibc + This package provides documentation for package glibc. + + http://www.gnu.org/software/libc/libc.html + + + glibc-extra + aarch64 + + a10573a7386c293567be433e035ad096c45b4d0ae0feb9ee18d95dc2c1b54456 + Extra binaries from GNU C Library + The glibc-extra package contains some extra binaries for glibc that +are not essential but recommend to use. + +makedb: A program to create a database for nss + + http://www.gnu.org/software/libc/libc.html + + + glibc-html + noarch + + 5d872e9e93b2486a99425731e22f8133dcc7c4675cdecfa2fd49ffa838096646 + HTML Documentation for the GNU C Library + This package contains the HTML documentation for the GNU C library. Due +to a lack of resources, this documentation is not complete and is +partially out of date. + + http://www.gnu.org/software/libc/libc.html + + + glibc-i18ndata + noarch + + b0bac725945a1a0eaf966aacec7726d493eea6abbec930565f48fdddbd809be9 + Database Sources for 'locale' + This package contains the data needed to build the locale data files to +use the internationalization features of the GNU libc. It is normally +not necessary to install this packages, the data files are already +created. + + http://www.gnu.org/software/libc/libc.html + + + glibc-info + noarch + + 343789e361098d25572dadb5038339c2fd51792d9df7df7b3e01966ec843567d + Info Files for the GNU C Library + This package contains the documentation for the GNU C library stored as +info files. Due to a lack of resources, this documentation is not +complete and is partially out of date. + + http://www.gnu.org/software/libc/libc.html + + + glibc-locale + aarch64 + + 57804954571a5a141cd1fb4e13377133f055526dec6774f6088dc737b1ffd4d6 + Locale Data for Localized Programs + Locale data for the internationalisation features of the GNU C library. + + http://www.gnu.org/software/libc/libc.html + + + glibc-profile + aarch64 + + 940dfa10dc56b45d4fb68e2dc3f32f3d0a2161e6b440ee242dd1a45e2c0012b9 + Libc Profiling and Debugging Versions + This package contains special versions of the GNU C library which are +necessary for profiling and debugging. + + http://www.gnu.org/software/libc/libc.html + + + gmp + aarch64 + + 6e2a472216bdc2d6945784d1195f4cb57c1ac813bdcac2b0c02bbc1efd86f0a2 + The GNU MP Library + A library for calculating huge numbers (integer and floating point). + + http://gmplib.org/ + + + gmp-devel + aarch64 + + 1c4b61127bc928af3dbad9a68f620667beaa90ac78aa11944e5482c6020b8d30 + Include Files and Libraries for Development with the GNU MP Library + These libraries are needed to develop programs which calculate with +huge numbers (integer and floating point). + + http://gmplib.org/ + + + gperf + aarch64 + + b24ed6212dc3b8c1a69aecc7eb36b6bac43236b10d47d22daecf464855feaa41 + A perfect hash function generator + GNU gperf is a perfect hash function generator. For a given list of strings, it +produces a hash function and hash table, in form of C or C++ code, for looking +up a value depending on the input string. The hash function is perfect, which +means that the hash table has no collisions, and the hash table lookup needs +a single string comparison only. + + http://www.gnu.org/software/gperf/ + + + grep + aarch64 + + 4e6047f7b85ca4dfdb37e8b2e9db172607f6d5c3d9c63a01f1829caed61ac0d7 + Print lines matching a pattern + The grep command searches one or more input files for lines +containing a match to a specified pattern. By default, grep prints +the matching lines. + + http://www.gnu.org/software/grep/ + + + grep-docs + aarch64 + + 5254c22cd67ecdbe398f6d8a2f20c73ff26db01e48b0cd455fba5eb6970fab73 + Documentation for package grep + This package provides documentation for package grep. + + http://www.gnu.org/software/grep/ + + + grep-locale + noarch + + 80bd8b6802350b5974a2177bd542428e3bcaa23701e7b4ca88a10af79c9b2692 + Translations and Locale for package grep + This package provides translations for package grep. + + http://www.gnu.org/software/grep/ + + + groff + aarch64 + + 352165d3b31a5260a8001a6ff4849ce8f97f977859e98914b45ffdb4dbbbc7a4 + A document formatting system + Groff is a document formatting system. Groff takes standard text and +formatting commands as input and produces formatted output. The +created documents can be shown on a display or printed on a printer. +Groff's formatting commands allow you to specify font type and size, +bold type, italic type, the number and size of columns on a page, and +more. + +Groff can also be used to format man pages. If you are going to use +groff with the X Window System, you will also need to install the +groff-gxditview package. + + http://groff.ffii.org + + + groff-perl + aarch64 + + f342dc50c440812bed2688464abebb8fd643b485c0af4c002997a2212c621535 + Parts of the groff formatting system that require Perl + The groff-perl package contains the parts of the groff text processor +package that require Perl. These include the afmtodit font processor +for creating PostScript font files, the grog utility that can be used +to automatically determine groff command-line options, and the +troff-to-ps print filter. + + http://groff.ffii.org + + + gzip + aarch64 + + 62c30545f7ff00b20f5bdf420f3340035f6d079a25a98bc9b6fba4e0e0e87a6d + The GNU data compression program + The gzip package contains the popular GNU gzip data compression +program. Gzipped files have a .gz extension. + +Gzip should be installed on your system, because it is a +very commonly used data compression program. + + http://www.gnu.org/software/gzip/ + + + gzip-docs + aarch64 + + a4caac7cd4f8aa5ab36dc59c16ca311a06d9afa63d9b92412eae91c426d3eae8 + Documentation for package gzip + This package provides documentation for package gzip. + + http://www.gnu.org/software/gzip/ + + + help2man + aarch64 + + 0444da9d447b40b992da606ae14ee77732efb1571046060717f251e9c6d3a998 + Create Simple Man Pages from --help Output + help2man is a script to create simple man pages from the --help and +--version output of programs. + +Since most GNU documentation is now in info format, this provides a way +to generate a placeholder man page pointing to that resource while +still providing some useful information. + + http://www.gnu.org/software/help2man/ + + + hostname + aarch64 + + 61e1b444612095705be7290d63c19310929870661e2a20f1d0ad3b1585bf5b38 + Utility to set/show the host name or domain name + This package provides commands which can be used to display the system's +DNS name, and to display or set its hostname or NIS domain name. + + http://packages.qa.debian.org/h/hostname.html + + + icecream + aarch64 + + b7988c4862b4cd63bf08e49ea6546a46abf00fe1e8099d741d9116fabdd2137c + For Distributed Compile in the Network + icecream is the next generation distcc. + + + + + info + aarch64 + + 6e768bc6c713f9b45dc62be1f6375c5890df2509ea5a7b55cd9d2f2ddce10612 + A Stand-Alone Terminal-Based Info Browser + Info is a terminal-based program for reading documentation of computer +programs in the Info format. The GNU Project distributes most of its +on-line manuals in the Info format, so you need a program called "Info +reader" to read the manuals. + + + +Authors: +-------- + Andreas Schwab <schwab@suse.de> + Brian Fox <bfox@gnu.org> + Charles Hannum <mycroft@gnu.org> + Daniel Hagerty <hag@gnu.org> + David J. MacKenzie <djm@gnu.org> + Eli Zaretskii <eliz@is.elta.co.il> + Jim Meyering <meyering@na-net.ornl.gov> + Karl Berry <karl@gnu.org> + Kaveh R. Ghazi <ghazi@caip.rutgers.edu> + Noah Friedman <friedman@prep.org> + Richard Stallman <rms@gnu.org> + Robert J. Chassell <bob@gnu.org> + Roland McGrath <roland@gnu.org> + + http://www.texinfo.org + + + intltool + noarch + + 90c1a7f2e2b6622348d048fb093fc447a3904cfa73752db7c9fba0f53f2a7498 + Internationalization Tool Collection + Some scripts to support translators working on GNOME and similar +programs. Data available in XML files (.oaf, .desktop, .sheet, and +more) can be extracted into PO files. After translation, the new +information is written back into the XML files. + + https://edge.launchpad.net/intltool/ + + + less + aarch64 + + 3e55761a6d1104423bf6f509186b6009d0256ec90acfa227de5dff622bd65cad + A text file browser similar to more, but better + The less utility is a text file browser that resembles more, but has +more capabilities. Less allows you to move backwards in the file as +well as forwards. Since less doesn't have to read the entire input file +before it starts, less starts up more quickly than text editors (for +example, vi). + +You should install less because it is a basic utility for viewing text +files, and you'll use it frequently. + + http://www.greenwoodsoftware.com/less/ + + + less-docs + aarch64 + + 5d9f7cf05a110d5b9c8e077396844701f4a5aa66fc19630e8a8ed6ddd235a277 + Documentation for package less + This package provides documentation for package less. + + http://www.greenwoodsoftware.com/less/ + + + libacl + aarch64 + + 04e31b91a98c351e8c9f9886cf42f687ded43784a085e49e2bc6a815aa0eea35 + A dynamic library for accessing POSIX Access Control Lists + This package contains the libacl.so dynamic library which contains the +POSIX 1003.1e draft standard 17 functions for manipulating access +control lists. + + http://download.savannah.gnu.org/releases-noredirect/acl/ + + + libacl-devel + aarch64 + + 3904299bbe868a65ac2cefd098d21d64ec3e0a2a3a53a38390404115a7af135a + Include Files and Libraries mandatory for Development + This package contains all necessary include files and libraries needed +to develop applications that require these. + + http://download.savannah.gnu.org/releases-noredirect/acl/ + + + libarchive + aarch64 + + ff581cc287af11d7b4f90eea67e2b6cb7c2a6888b1cba0dc375a13f73f00672f + A library for handling streaming archive formats + Libarchive is a programming library that can create and read several different +streaming archive formats, including most popular tar variants, several cpio +formats, and both BSD and GNU ar variants. It can also write shar archives and +read ISO9660 CDROM images and ZIP archives. + + http://code.google.com/p/libarchive/ + + + libarchive-devel + aarch64 + + 532e6fa113891a05af1b882df3e2cb27aa4ce6218418a35ab21b64653d693bc9 + Development files for libarchive + The libarchive-devel package contains libraries and header files for +developing applications that use libarchive. + + http://code.google.com/p/libarchive/ + + + libarchive-tools + aarch64 + + 551d18c1719cc4062857d6139344047aef2429cbba2fa55a6403e3cb97a25b4d + Tools based on libarchive + Tools based on libarchive. + + http://code.google.com/p/libarchive/ + + + libasan + aarch64 + + 382442962d3fd19757b6ae3bc72de6ed5268db9ea5d1509a4506e73693fc5148 + The GNU Compiler Address Sanitizer Runtime Library + The runtime library needed to run programs compiled with the +-fsanitize=address option of the GNU Compiler Collection (GCC). + + http://gcc.gnu.org/ + + + libasm + aarch64 + + 5e6ef408b4584dce5d946c80f297ee525deb88e939bf09b5db743b5252beb8c7 + A collection of utilities and DSOs to handle compiled objects + Elfutils is a collection of utilities, including ld (a linker), nm (for +listing symbols from object files), size (for listing the section sizes +of an object or archive file), strip (for discarding symbols), readline +(the see the raw ELF file structures), and elflint (to check for +well-formed ELF files). Also included are numerous helper libraries +which implement DWARF, ELF, and machine-specific ELF handling. + + http://elfutils.fedorahosted.org + + + libasm-devel + aarch64 + + 13ad62427ef2673f7e3958f79339b4522273d956f939545806d3b3de1b40e9b9 + A collection of utilities and DSOs to handle compiled objects + Elfutils is a collection of utilities, including ld (a linker), nm (for +listing symbols from object files), size (for listing the section sizes +of an object or archive file), strip (for discarding symbols), readline +(the see the raw ELF file structures), and elflint (to check for +well-formed ELF files). Also included are numerous helper libraries +which implement DWARF, ELF, and machine-specific ELF handling. + + http://elfutils.fedorahosted.org + + + libatomic + aarch64 + + 156c18e137d9e73f31a61a7e320fdb8f29f01c09b6901c5b543fe45b279f8230 + The GNU Compiler Atomic Operations Runtime Library + The runtime library for atomic operations of the GNU Compiler Collection (GCC). + + http://gcc.gnu.org/ + + + libattr + aarch64 + + 8b5552f9b51fd30746b75eb7b825bd84d9e4508cdcb6bfebd25db385bba97374 + A dynamic library for filesystem extended attribute support + This package contains the libattr.so dynamic library, which contains +the extended attribute library functions. + + http://download.savannah.gnu.org/releases-noredirect/attr/ + + + libattr-devel + aarch64 + + 9a610921372e0a558e9ea8aa55148c2d91f6a98416da4693a15a9f81761b1f5f + Include Files and Libraries mandatory for Development + This package contains the libraries and header files needed to develop +programs which make use of extended attributes. For Linux programs, the +documented system call API is the recommended interface, but an SGI +IRIX compatibility interface is also provided. + + http://download.savannah.gnu.org/releases-noredirect/attr/ + + + libattr-devel-static + aarch64 + + 74b2f3edafd55f1daf892291e18f8636b9386466b6ab5148a2404abb84489e90 + Include Files and Libraries mandatory for Development + This package contains the static library of libattr which is needed to develop +statically linked programs which make use of extended attributes. + + http://download.savannah.gnu.org/releases-noredirect/attr/ + + + libblkid + aarch64 + + 9f60caa2ca4d3a1b75491cfdd77b2b03b76a389ec7c293ca79232f9662eaf321 + Filesystem detection library + Library for filesystem detection. + + https://github.com/karelzak/util-linux + + + libblkid-devel + aarch64 + + b2492ccb7649b0a93101121eae14d7899be10774c6bb87c3412a20e1c5edd2a7 + Development files for the filesystem detection library + Files needed to develop applications using the library for filesystem +detection. + + https://github.com/karelzak/util-linux + + + libbz2 + aarch64 + + 8940dda958f0541505af8ce7262847077dd969d3e4734f12f14bec2d9b19413f + The bzip2 runtime library + The bzip2 runtime library + + http://www.bzip.org/ + + + libcap + aarch64 + + 6ed3bd2e367e9cf1f471bede1e44ccffff66bece135e5dbe254bc5e3a7eb166b + Library for Capabilities (linux-privs) Support + Capabilities are a measure to limit the omnipotence of the superuser. +Currently a program started by root or setuid root has the power to do +anything. Capabilities (Linux-Privs) provide a more fine-grained access +control. Without kernel patches, you can use this library to drop +capabilities within setuid binaries. If you use patches, this can be +done automatically by the kernel. + + https://sites.google.com/site/fullycapable/ + + + libcap-devel + aarch64 + + 5013f5668140ded02c4ea90049ba4251c6cbe0d156a5a7627792c93e2b433fa5 + Development files for libcap + Development files (Headers, libraries for static linking, etc) for +libcap. + +libcap is a library for getting and setting POSIX.1e (formerly POSIX 6) +draft 15 capabilities. + +Install libcap-devel if you want to develop or compile applications +using libcap. + + https://sites.google.com/site/fullycapable/ + + + libcap-tools + aarch64 + + 41693672ee570189c7f1583db8df869ec0af7f38a208b6fed7ee08c4b1267a77 + Libcap utility programs + This package contains utility programs handling capabilities via +libcap. + + https://sites.google.com/site/fullycapable/ + + + libcares + aarch64 + + 40d887d41a9bc0e5d12d2a8256fd1c9eb6cd5148cb3460537c53040b41dd8008 + Library for asynchronous name resolves + c-ares is a C library that performs DNS requests and name resolves +asynchronously. c-ares is a fork of the library named 'ares', written +by Greg Hudson at MIT. + + http://daniel.haxx.se/projects/c-ares + + + libcares-devel + aarch64 + + 4b66f5f8e1fdb56b5244088566fa73029c93a323279040fb9ea4cb1f204e3a2e + Library for asynchronous name resolves + c-ares is a C library that performs DNS requests and name resolves +asynchronously. c-ares is a fork of the library named 'ares', written +by Greg Hudson at MIT. + + http://daniel.haxx.se/projects/c-ares + + + libcom_err + aarch64 + + dd4a29507708ca4be2a667fb80bb03e339e573e24c4e404621fc7fb5236d6cb8 + E2fsprogs error reporting library + com_err is an error message display library. + + http://e2fsprogs.sourceforge.net + + + libcom_err-devel + aarch64 + + b4754df435238135dd51b725c048ba62f4d850487363107e5ff405fc3f581ae4 + Development files for libcom_err + Development files for the com_err error message display library. + + http://e2fsprogs.sourceforge.net + + + libdw + aarch64 + + 67415f8abaa05ba3dd188abf8f4ccff978100e8312e5090bcb02a32962efc714 + Library to access DWARF debugging information + This package provides a high-level library to access the DWARF debugging +information. This is a part of elfutils package. + + http://elfutils.fedorahosted.org + + + libdw-devel + aarch64 + + c9b5cce88e82e38eaf80c1cea9787e7c35ba9bd1541ac7974e819a9086163226 + Include Files and Libraries mandatory for Development + This package contains all necessary include files and libraries needed +to develop applications that require these. + + http://elfutils.fedorahosted.org + + + libebl + aarch64 + + 2f3b296375b8ae278c21b155cac1c1cbf088149555f1b94690d90f6a2e30e56c + A collection of utilities and DSOs to handle compiled objects + Elfutils is a collection of utilities, including ld (a linker), nm (for +listing symbols from object files), size (for listing the section sizes +of an object or archive file), strip (for discarding symbols), readline +(the see the raw ELF file structures), and elflint (to check for +well-formed ELF files). Also included are numerous helper libraries +which implement DWARF, ELF, and machine-specific ELF handling. + + http://elfutils.fedorahosted.org + + + libebl-devel + aarch64 + + 7780ddf96124deab6d6724ef691672cf2f679308d7870c0a982045cc464c149c + Include Files and Libraries mandatory for Development + This package contains all necessary include files and libraries needed +to develop applications that require these. + + http://elfutils.fedorahosted.org + + + libelf + aarch64 + + 92f8dc0fdb1ca19c42a5f19b306e87c603de50951ef1ac077efb61a8d4ec2ff1 + Library to read and write ELF files + This package provides a high-level library to read and write ELF files. +This is a part of elfutils package. + + http://elfutils.fedorahosted.org + + + libelf-devel + aarch64 + + b2e7e635e5505d349de03e805758cd81701eba67e7a348431fdcb6d2523410d1 + Include Files and Libraries mandatory for Development + This package contains all necessary include files and libraries needed +to develop applications that require these. + + http://elfutils.fedorahosted.org + + + libelf0 + aarch64 + + 48c9b0e4571fb2cf6c36e8b5a9fb5f1cabaf4c26b3ea3377e3b176b110b4d3f0 + An ELF Object File Access Library + The libelf package contains a library for accessing ELF object files. +Libelf allows you to access the internals of the ELF object file +format, so you can see the different sections of an ELF file. + + http://www.mr511.de/software/ + + + libelf0-devel + aarch64 + + 99567c95bb7415651a4bac837f10c101facaed8ca9c8fdbea806177164df856c + Include Files and Libraries mandatory for Development + This package contains all necessary include files and libraries needed +to develop applications that require these. + + http://www.mr511.de/software/ + + + libexpat + aarch64 + + 77f6ae7ebd70cf1912108ab10afb5c6d2cd473e3072e13cafbd53e2e1e46f595 + XML Parser Toolkit + Expat is an XML 1.0 parser written in C. It aims to be fully +conformant. It is currently not a validating XML processor. The current +production version of expat can be downloaded from +ftp://ftp.jclark.com/pub/xml/expat.zip. The directory xmltok contains a +low-level library for tokenizing XML. The interface is documented in +xmltok/xmltok.h. The directory xmlparse contains an XML parser library +that is built on top of the xmltok library. The interface is documented +in xmlparse/xmlparse.h. The directory sample contains a simple example +program using this interface. The file sample/build.bat is a batch +file to build the example using Visual C++. The directory xmlwf +contains the xmlwf application, which uses the xmlparse library. The +arguments to xmlwf are one or more files to check for well-formedness. +An option -d dir can be specified. For each well-formed input file, the +corresponding canonical XML is written to dir/f, where f is the +filename (without any path) of the input file. A -x option causes +references to external general entities to be processed. A -s option +makes documents that are not stand-alone cause an error (a document is +considered stand-alone if it is intrinsically stand-alone because it +has no external subset and no references to parameter entities in the +internal subset or it is declared as stand-alone in the XML +declaration). + + http://expat.sourceforge.net/ + + + libexpat-devel + aarch64 + + 146fcb4a24e6277cd7e9fab0fa5494eca07c6f42fa1b95c30c6acb696c2f7b38 + XML Parser Toolkit + Expat is an XML 1.0 parser written in C. It aims to be fully +conformant. It is currently not a validating XML processor. The current +production version of expat can be downloaded from +ftp://ftp.jclark.com/pub/xml/expat.zip. The directory xmltok contains a +low-level library for tokenizing XML. The interface is documented in +xmltok/xmltok.h. The directory xmlparse contains an XML parser library +that is built on top of the xmltok library. The interface is documented +in xmlparse/xmlparse.h. The directory sample contains a simple example +program using this interface. The file sample/build.bat is a batch +file to build the example using Visual C++. The directory xmlwf +contains the xmlwf application, which uses the xmlparse library. The +arguments to xmlwf are one or more files to check for well-formedness. +An option -d dir can be specified. For each well-formed input file, the +corresponding canonical XML is written to dir/f, where f is the +filename (without any path) of the input file. A -x option causes +references to external general entities to be processed. A -s option +makes documents that are not stand-alone cause an error (a document is +considered stand-alone if it is intrinsically stand-alone because it +has no external subset and no references to parameter entities in the +internal subset or it is declared as stand-alone in the XML +declaration). + + http://expat.sourceforge.net/ + + + libext2fs + aarch64 + + f4760c15c66a4d92030c10606a84ccb05b54eb522f9c930954ee4a0eb005260f + Ext2fs library + The basic Ext2fs shared library. + + http://e2fsprogs.sourceforge.net + + + libext2fs-devel + aarch64 + + e71d56887f689b9008684bec387ffc2c1f22a8e35b21c7a89750d7f9851cd2bd + Development files for libext2fs + Development files for libext2fs. + + http://e2fsprogs.sourceforge.net + + + libfdisk-devel + aarch64 + + a2a2da43065d881654a879b2640a25b9f27372473f1db78470587a49ef4f660d + Development files for the filesystem detection library + Files needed to develop applications using the library for filesystem +detection. + + https://github.com/karelzak/util-linux + + + libfdisk1 + aarch64 + + 802953a2c0e5e540c1d76bb8b1ee6c866fdbf24d294a51de9e34aee7e00ede87 + Filesystem detection library + Library for filesystem detection. + + https://github.com/karelzak/util-linux + + + libffi + aarch64 + + c5ffca74fcdff6deaeff3c469e8e3b1f28bc5d599e0d02faef32fc4c1af7e886 + A portable foreign function interface library + Compilers for high level languages generate code that follow certain +conventions. These conventions are necessary, in part, for separate +compilation to work. One such convention is the "calling convention". +The calling convention is a set of assumptions made by the compiler +about where function arguments will be found on entry to a function. A +calling convention also specifies where the return value for a function +is found. + +Some programs may not know at the time of compilation what arguments +are to be passed to a function. For instance, an interpreter may be +told at run-time about the number and types of arguments used to call a +given function. `Libffi' can be used in such programs to provide a +bridge from the interpreter program to compiled code. + +The `libffi' library provides a portable, high level programming +interface to various calling conventions. This allows a programmer to +call any function specified by a call interface description at run time. + +FFI stands for Foreign Function Interface. A foreign function +interface is the popular name for the interface that allows code +written in one language to call code written in another language. The +`libffi' library really only provides the lowest, machine dependent +layer of a fully featured foreign function interface. A layer must +exist above `libffi' that handles type conversions for values passed +between the two languages. + + http://sourceware.org/libffi + + + libffi-devel + aarch64 + + e8059278413b30fbbbdd497ff8b81d0958169f83aaaf560e060225bc61ed8475 + Development files for libffi + The libffi-devel package contains libraries and header files for +developing applications that use libffi. + + http://sourceware.org/libffi + + + libfreebl3 + aarch64 + + f59edf6762e97e5b23a099a7945555e15da91e003289dbf31fed00e56fecf0dc + Freebl library for the Network Security Services + Network Security Services (NSS) is a set of libraries designed to +support cross-platform development of security-enabled server +applications. Applications built with NSS can support SSL v2 and v3, +TLS, PKCS #5, PKCS #7, PKCS #11, PKCS #12, S/MIME, X.509 v3 +certificates, and other security standards. + +This package installs the freebl library from NSS. + + http://www.mozilla.org/projects/security/pki/nss/ + + + libgcc + aarch64 + + 7a63af3cc5642a7e2562d15a23b348e71f4affdce6ab1e8e42a0b307a35a343f + C compiler runtime library + Libgcc is needed for dynamically linked C programs. + + http://gcc.gnu.org/ + + + libgcrypt + aarch64 + + 166ed7a85f99be7cf7410ad1d8266357faaa17e2e471453e869442f85db112da + The GNU Crypto Library + Libgcrypt is a general purpose crypto library based on the code used in +GnuPG (alpha version). + + http://directory.fsf.org/wiki/Libgcrypt + + + libgcrypt-devel + aarch64 + + 1b4b5ab53121b5386a2237e4fc29fcd45403eafd6c238f045aa69080e13f4577 + The GNU Crypto Library + Libgcrypt is a general purpose crypto library based on the code used in +GnuPG (alpha version). + +This package contains needed files to compile and link against the +library. + + http://directory.fsf.org/wiki/Libgcrypt + + + libgmp + aarch64 + + 21132bb8b762375d914a0852f31ec859111b72b4ee905b7417d0680b2b378f8e + Shared library for the GNU MP Library + Shared library for the GNU MP Library. + + http://gmplib.org/ + + + libgmpxx + aarch64 + + 07dc289d8596cbb99fd23a405a71f90ff0a3c7cce96970350a72a1435bba4637 + C++ bindings for the GNU MP Library + C++ bindings for the GNU MP Library. + + http://gmplib.org/ + + + libgomp + aarch64 + + a0a61c4883e11bae0675466e61aedc2ce9e79702c64be30ed04a00ffad7dc685 + The GNU compiler collection OpenMP runtime library + This is the OpenMP runtime library needed by OpenMP enabled programs +that were built with the -fopenmp compiler option and by programs that +were auto-parallelized via the -ftree-parallelize-loops compiler +option. + + http://gcc.gnu.org/ + + + libgpg-error + aarch64 + + 9e862b416431895dee7e44a7d6598203cd623588796f3cb1a26c14e6af362f19 + Library That Defines Common Error Values for All GnuPG Components + This is a library that defines common error values for all GnuPG +components. Among these are GPG, GPGSM, GPGME, GPG-Agent, libgcrypt, +pinentry, SmartCard Daemon, and possibly more in the future. + + http://www.gnupg.org/ + + + libgpg-error-devel + aarch64 + + 85fb8ea7ebe1e7a30d895889072abf275ec7a96addf24b2d1b469da7e2a44403 + Development package for libgpg-error + Files needed for software development using libgpg-error. + + http://www.gnupg.org/ + + + libgpg-error-locale + noarch + + 6327c988a1731cee3a3999e128f0e0e063c63eb217d1e1831e510e4015eaf850 + Translations and Locale for package libgpg-error + This package provides translations for package libgpg-error. + + http://www.gnupg.org/ + + + libicecream-devel + aarch64 + + 267d41bb72c21939eba97b7665014872f54251db40e7f0a2c08688aa41c426cd + For Distributed Compile in the Network + icecream is the next generation distcc. + + + + + libidn + aarch64 + + 50e008d59678ee14476c0a26d6f4ed0d195691c7425de4d86fdfc9e345aa94df + Internationalized Domain Name support library + GNU Libidn is an implementation of the Stringprep, Punycode and +IDNA specifications defined by the IETF Internationalized Domain +Names (IDN) working group, used for internationalized domain +names. + + http://www.gnu.org/software/libidn/ + + + libidn-devel + aarch64 + + 2caa1142a3ea9b340803d1fc1484b8c464e67b419b684d70c669a01c4fcf1075 + Development files for the libidn library + This package includes header files and libraries necessary for +developing programs which use the GNU libidn library. + + http://www.gnu.org/software/libidn/ + + + libitm + aarch64 + + 7a38cf6fdd3a1823d270761333c18402a71f8e2baab94c13e29a3885cccbdbf7 + The GNU Compiler Transactional Memory Runtime Library + The runtime library needed to run programs compiled with the +-fgnu-tm option of the GNU Compiler Collection (GCC). + + http://gcc.gnu.org/ + + + libllvm + aarch64 + + 098a8f0133f0872f8b6f045be7c831d0aed68bef65ef0c6bad43c3160877895e + LLVM shared libraries + Shared libraries for the LLVM compiler infrastructure. + + + + + liblsan + aarch64 + + f88da0520384aebcd18e04641e50d6b62429cf0d1475320fb6ef86aebef3a313 + The GNU Compiler Leak Sanitizer Runtime Library + The runtime library needed to run programs compiled with the +-fsanitize=leak option of the GNU Compiler Collection (GCC). + + http://gcc.gnu.org/ + + + libltdl + aarch64 + + 05486bbf40e3afda68642a647bf2cb38b230be307c5e5e87b236af5842fe453b + Libtool Runtime Library + Library needed by programs that use the ltdl interface of GNU libtool. + + http://www.gnu.org/software/libtool/ + + + liblua + aarch64 + + 645b45acbb7b834e52c632f236b05750d0b0d129815992b60d4cd3a95a983b54 + Small Embeddable Language with Simple Procedural Syntax + Lua is a programming language originally designed for extending +applications, but also frequently used as a general-purpose, +stand-alone language. + +Lua combines simple procedural syntax (similar to Pascal) with powerful +data description constructs based on associative arrays and extensible +semantics. Lua is dynamically typed, interpreted from byte codes, and +has automatic memory management, making it ideal for configuration, +scripting, and rapid prototyping. Lua is implemented as a small library +of C functions, written in ANSI C, and the implementation goals are +simplicity, efficiency, portability, and low embedding cost. + + http://www.lua.org + + + liblzma + aarch64 + + d861b81920e6a3d1297c788b6493dbe1724f1fee048adc514af496143cefb3b1 + LZMA library + Library for encoding/decoding LZMA files. + + http://tukaani.org/lzma/ + + + libmagic + aarch64 + + 7356bbc3012e73f3c51bf5d3c16812a7ae83fb985388f1df19ec302bc0d2aea0 + Library with file's functionality + This library reads magic files and detects file types. Used by file command + + http://www.darwinsys.com/file/ + + + libmagic-data + aarch64 + + d534838cdfab7aa3531d626bdf58af16f56eb204e74fa0a0feb42584b1ce3fbc + The magic files for libmagic to use + This package contains the basic magic files that libmagic reads and uses +to estimate a file's type. + + http://www.darwinsys.com/file/ + + + libmount + aarch64 + + ce0d531b6d22558f144cc458d3dbc7ee8347c7033e191a149ac5b5cf78b4d94b + Device mount library + Library designed to be used in low-level utils like +mount(8) and /usr/sbin/mount.<type> helpers. + + https://github.com/karelzak/util-linux + + + libmount-devel + aarch64 + + 0180151c49e00445da17531f819045cc7e4f9efd44ab7212eb7d02b7e00972e6 + Development files for libmount + Files to develop applications using the libmount library. + + https://github.com/karelzak/util-linux + + + libncurses + aarch64 + + b0610996e80d5486a65884bfb59538591fb3f58bc5ae0b63a44ff975930ea1e5 + The New curses Libraries + The ncurses library is used by the most curses based terminal +applications for controling its output and input to the screen. + + http://invisible-island.net/ncurses/ncurses.html + + + libncurses6 + aarch64 + + a547e806bceca55eac63893518aa6215aaf535a99fab672f53a88b6ade5fd282 + The New curses Libraries + The ncurses library is used by the most curses based terminal +applications for controling its output and input to the screen. + + http://invisible-island.net/ncurses/ncurses.html + + + libopenssl + aarch64 + + 0fd4ccdae965c7d5e90b3fa57669400e5ba332c3d9b16c1811af640d0921669d + Secure Sockets Layer and crypto libraries + Secure Sockets Layer and crypto libraries. + + http://www.openssl.org/ + + + libopenssl-devel + aarch64 + + 7b9f3f1247f25ab338661395bd6792ccf81d6578bfdc551d1e97ca0f7d603e7e + Secure Sockets Layer and cryptography static libraries and headers + The OpenSSL Project is a collaborative effort to develop a robust, +commercial-grade, fully featured, and Open Source toolkit implementing the +Secure Sockets Layer (SSL v2/v3) and Transport Layer Security (TLS v1) +protocols as well as a full-strength general purpose cryptography library. +The project is managed by a worldwide community of volunteers that use the +Internet to communicate, plan, and develop the OpenSSL tookit and its related +documentation. + +OpenSSL is based on the excellent SSLeay library developed from Eric A. +Young and Tim J. Hudson. The OpenSSL toolkit is licensed under an +Apache-style licence, which basically means that you are free to get and +use it for commercial and non-commercial purposes. + +This package contains the the OpenSSL cryptography and SSL/TLS +static libraries and header files required when developing applications. + + http://www.openssl.org/ + + + libpcre + aarch64 + + ee56e8c0f7c76a197416f720b35affc97f748b5a698301f39ee25f0825f87993 + A library for Perl-compatible regular expressions + The PCRE library is a set of functions that implement regular +expression pattern matching using the same syntax and semantics +as Perl 5. + + ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/ + + + libpcrecpp + aarch64 + + bd678db14364d3b2def0623634b52c74fbc6381e540db6690088c2db426a6c77 + A library for Perl-compatible regular expressions + The PCRE library is a set of functions that implement regular +expression pattern matching using the same syntax and semantics +as Perl 5. + + ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/ + + + libpcreposix + aarch64 + + 69c897b15745491992906eba02cfee8f802f6b4d52983e9b4207c02272b8fc83 + A library for Perl-compatible regular expressions + The PCRE library is a set of functions that implement regular +expression pattern matching using the same syntax and semantics +as Perl 5. + + ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/ + + + libpopt + aarch64 + + 11c7299eb3fd1a0aba2a200c7bac709a6588c9980296026856fbead4a37149f2 + A C library for parsing command line parameters + Popt is a C library for parsing command line parameters. Popt was +heavily influenced by the getopt() and getopt_long() functions. It +improves on them by allowing more powerful argument expansion. Popt can +parse arbitrary argv[] style arrays and automatically set variables +based on command line arguments. Popt allows command line arguments to +be aliased via configuration files and includes utility functions for +parsing arbitrary strings into argv[] arrays using shell-like rules. + + http://www.rpm5.org/ + + + libpython + aarch64 + + a17848d594896d4441ae08abda5627546faa93922bfece8a62912a94f29ccd24 + Python Interpreter shared library + Python is an interpreted, object-oriented programming language, and is +often compared to Tcl, Perl, Scheme, or Java. You can find an overview +of Python in the documentation and tutorials included in the python-doc +(HTML) or python-doc-pdf (PDF) packages. + +This package contains libpython2.6 shared library for embedding in +other applications. + + http://www.python.org/ + + + libpython3_4m1_0 + aarch64 + + a6f122ffb5e9687c575cb53c919eecd017b56845a5c2d40d493ddb46ef2406a3 + Python Interpreter shared library + Python is an interpreted, object-oriented programming language, and is +often compared to Tcl, Perl, Scheme, or Java. You can find an overview +of Python in the documentation and tutorials included in the python-doc +(HTML) or python-doc-pdf (PDF) packages. + +This package contains libpython3.2 shared library for embedding in +other applications. + + http://www.python.org/ + + + libreadline + aarch64 + + 6824fcdd62e3979ab7ae46eeb71803d1a841a7d21131c084bfb0cabca1b7358d + The Readline Library + The readline library is used by the Bourne Again Shell (bash, the +standard command interpreter) for easy editing of command lines. This +includes history and search functionality. + + http://www.gnu.org/software/bash/bash.html + + + libsmack + aarch64 + + 0d2bd20a76100634c2bc751e40bf56a4cf7c0dfe7e8e7e3eacb5c13351e55ac7 + Library allows applications to work with Smack + Library allows applications to work with Smack. + + https://github.com/smack-team/smack + + + libsmartcols + aarch64 + + c46fc36d69d5867f5284c4d41fe4a7f87e907b1d532d088c2bdc7b69b057bacc + Library for printing data in various formats + This library allows to print data in tables, trees or +parsable formats, support colors, sorting etc. + + https://github.com/karelzak/util-linux + + + libsmartcols-devel + aarch64 + + 1b3a91e1efb8a52357f00b54f8dc526370be282552382bfa16fb5f1c0bf59857 + Development files for libsmartcols + Files to develop applications using the libsmartcols library. + + https://github.com/karelzak/util-linux + + + libsoftokn3 + aarch64 + + 3844e1e57379d95cb22e9ff6122ea65c35c45ed02f89522d29f7a0809f01d6ed + Network Security Services Softoken Module + Network Security Services (NSS) is a set of libraries designed to +support cross-platform development of security-enabled server +applications. Applications built with NSS can support SSL v2 and v3, +TLS, PKCS #5, PKCS #7, PKCS #11, PKCS #12, S/MIME, X.509 v3 +certificates, and other security standards. + +Network Security Services Softoken Cryptographic Module + + http://www.mozilla.org/projects/security/pki/nss/ + + + libsqlite + aarch64 + + 588a23df4bac34214d59b813c06c0f0395ab15dc46ca14f5503efc586d1f4fe0 + Shared libraries for the Embeddable SQL Database Engine + This package contains the shared libraries for the Embeddable SQL +Database Engine. + +SQLite is a C library that implements an embeddable SQL database +engine. Programs that link with the SQLite library can have SQL +database access without running a separate RDBMS process. + +SQLite is not a client library used to connect to a big database +server. SQLite is a server and the SQLite library reads and writes +directly to and from the database files on disk. + +SQLite can be used via the sqlite command line tool or via any +application that supports the Qt database plug-ins. + + http://www.sqlite.org/ + + + libstdc++ + aarch64 + + 240abf31a269cfb1a89edfd077f5fe7b14bd67d34db9a62ae8aeb0a3f3addd01 + The standard C++ shared library + The standard C++ library, needed for dynamically linked C++ programs. + + http://gcc.gnu.org/ + + + libstdc++-devel + aarch64 + + acaa3e8b30dc06548b0571aee3c33028e29e516cd44a5497265521071f1d605f + Include Files and Libraries mandatory for Development + This package contains all the headers and libraries of the standard C++ +library. It is needed for compiling C++ code. + + http://gcc.gnu.org/ + + + libtool + aarch64 + + 69da6068be6d3e1ffc235e4b76be1f9b51da2ef943595bb085889c71d7d6645f + A Tool to Build Shared Libraries + GNU libtool is a set of shell scripts to automatically configure UNIX +architectures to build shared libraries in a generic fashion. + + http://www.gnu.org/software/libtool/ + + + libtsan + aarch64 + + 1383b1fe75296538a0b12eee77ecabbc3da11557885d66b12406307369ebfbe6 + The GNU Compiler Thread Sanitizer Runtime Library + The runtime library needed to run programs compiled with the +-fsanitize=thread option of the GNU Compiler Collection (GCC). + + http://gcc.gnu.org/ + + + libubsan + aarch64 + + 9f3a7e72fe61d5fbc64b300c01fa67540c132f0791c86b593d96ae06c0c611ed + The GNU Compiler Undefined Sanitizer Runtime Library + The runtime library needed to run programs compiled with the +-fsanitize=undefined option of the GNU Compiler Collection (GCC). + + http://gcc.gnu.org/ + + + libunistring + aarch64 + + 66266b08815f73a6aa1abc43e770598e23f0e03b11b53595c73d34a95e863272 + GNU Unicode string library + This portable C library implements Unicode string types in three flavours: +(UTF-8, UTF-16, UTF-32), together with functions for character processing +(names, classifications, properties) and functions for string processing +(iteration, formatted output, width, word breaks, line breaks, normalization, +case folding and regular expressions). + + http://www.gnu.org/software/libunistring/ + + + libunistring-devel + aarch64 + + e76585bcf5afc2bcaf77a6555771baffa3a9641080862affbe4d5fabd84667dd + GNU Unicode string library - development files + Development files for programs using libunistring and documentation +for UniString library. + + http://www.gnu.org/software/libunistring/ + + + libuuid + aarch64 + + b63f048e6805d3eea6808d2738db905b8e9573a614f793ebab22f2d6edd31533 + Library to generate UUIDs + A library to generate universally unique IDs (UUIDs). + + https://github.com/karelzak/util-linux + + + libuuid-devel + aarch64 + + 9169d821c26e43ad1e4672c47b2cba1a222570c672cd594e66ef624b62491246 + Development files for libuuid1 + Files to develop applications using the library to generate universally +unique IDs (UUIDs). + + https://github.com/karelzak/util-linux + + + libxml2 + aarch64 + + 0d91f33cb7ff4caa6d2bc7aba70f31cb7bacea46fe76701dbbce4f003dfab9e0 + A Library to Manipulate XML Files + The XML C library was initially developed for the GNOME project. It is +now used by many programs to load and save extensible data structures +or manipulate any kind of XML files. + +This library implements a number of existing standards related to +markup languages, including the XML standard, name spaces in XML, XML +Base, RFC 2396, XPath, XPointer, HTML4, XInclude, SGML catalogs, and +XML catalogs. In most cases, libxml tries to implement the +specification in a rather strict way. To some extent, it provides +support for the following specifications, but does not claim to +implement them: DOM, FTP client, HTTP client, and SAX. + +The library also supports RelaxNG. Support for W3C XML Schemas is in +progress. + + http://xmlsoft.org + + + libxml2-devel + aarch64 + + a8743f46b42bea20a344abe1c493b4f4fe945b459cdbcc8543a5610a82ba1c7b + Include Files and Libraries mandatory for Development + This package contains all necessary include files and libraries needed +to develop applications that require these. + + http://xmlsoft.org + + + libxml2-tools + aarch64 + + f188d96265d6cf1d4756c31ee0884d8cd4dcd627a028b4b75924aecd357c2019 + Tools using libxml + This package contains xmllint, a very useful tool proving libxml's power. + + http://xmlsoft.org + + + libxslt + aarch64 + + 40a3acac1452dd9bb3c809713cb54a61162f226c13ca5eed70f62a6a3292a6fe + XSL Transformation Library + This C library allows you to transform XML files into other XML files +(or HTML, text, and more) using the standard XSLT stylesheet +transformation mechanism. + +It is based on libxml (version 2) for XML parsing, tree manipulation, +and XPath support. It is written in plain C, making as few assumptions +as possible and sticks closely to ANSI C/POSIX for easy embedding. +Although not primarily designed with performance in mind, libxslt seems +to be a relatively fast processor. It also includes full support for +the EXSLT set of extension functions as well as some common extensions +present in other XSLT engines. + + http://xmlsoft.org/XSLT/ + + + libxslt-devel + aarch64 + + 86735d5d5a564c8290723b2eb546c7ab0badce7cc5926506fbac4f0f90f9ebb9 + Include Files and Libraries mandatory for Development + This package contains all necessary include files and libraries needed +to develop applications that require these. + + http://xmlsoft.org/XSLT/ + + + libxslt-tools + aarch64 + + b6a12faf6a1f3b11b2b1a3a56e4e94e35a2f84087eb00bfaca2063dab88a6b3f + Extended Stylesheet Language (XSL) Transformation utilities + This package contains xsltproc, a command line interface to the XSLT engine. + + http://xmlsoft.org/XSLT/ + + + libzio + aarch64 + + 8beb34eeb15954f1c63c12bf6619bf1e9997a5a03cc71764bd38d1cd14c07523 + A Library for Accessing Compressed Text Files + Libzio provides a wrapper function for reading or writing gzip or bzip2 +files with FILE streams. + + + + + libzio-devel + aarch64 + + 64521cd7d0858d5ee0bea634b98f239f9859b7f72688c5cf1a30f30299c684c1 + Libzio development files + Libzio development files including zio.h, the manual page fzopen(3), +and static library. + + + + + linux-glibc-devel + noarch + + 7414d8086c6fb52d37c99938cceedca87ae769d88e8a538cbb44b056c074402f + Linux headers for userspace development + This package provides Linux kernel headers, the kernel API description +required for compilation of almost all programs. This is the userspace +interface; compiling external kernel modules requires +kernel-(flavor)-devel, or kernel-syms to pull in all kernel-*-devel, +packages, instead. + + http://www.kernel.org/ + + + llvm + aarch64 + + 08c45622f0c5372341fcb04ef1361fcabdba1dcc07e0154e4b4ef8fab70174a9 + PUT SUMMARY HERE + LLVM is a compiler infrastructure designed for compile-time, link-time, runtime, +and idle-time optimization of programs from arbitrary programming languages. +LLVM is written in C++ and has been developed since 2000 at the University of +Illinois and Apple. It currently supports compilation of C and C++ programs, +using front-ends derived from GCC 4.0.1. A new front-end for the C family of +languages is in development. The compiler infrastructure +includes mirror sets of programming tools as well as libraries with equivalent +functionality. + + + + + llvm-devel + aarch64 + + d0c754d31ad45ed135ccb2a4c3175e7e09352e55da5bc15f135611b0b80264ec + Libraries and Header Files for LLVM 3.8.1 + This package contains library and header files needed to develop +new native programs that use the LLVM infrastructure. + + + + + lsan-force-options + aarch64 + + 176df536a21b2cef4ef91d933882d559f456957e6a85f4f9eceea2ada42263fb + Scripts to enable automatic package sanitization + Scripts for LSan instrumentation + + http://gcc.gnu.org/ + + + lsan-runtime-env + aarch64 + + f72b304057b45fc66c544cefe80f7729e0b26316144cf1497d6ed3456d9010e0 + LSan runtime environment + LSan runtime environment + + http://gcc.gnu.org/ + + + lua + aarch64 + + 37336d875cd6861fcf2b8bf084d22116695698d4a2aeeb2fbe36b72301225b03 + Small Embeddable Language with Simple Procedural Syntax + Lua is a programming language originally designed for extending +applications, but also frequently used as a general-purpose, +stand-alone language. + +Lua combines simple procedural syntax (similar to Pascal) with powerful +data description constructs based on associative arrays and extensible +semantics. Lua is dynamically typed, interpreted from byte codes, and +has automatic memory management, making it ideal for configuration, +scripting, and rapid prototyping. Lua is implemented as a small library +of C functions, written in ANSI C, and the implementation goals are +simplicity, efficiency, portability, and low embedding cost. + + http://www.lua.org + + + lua-devel + aarch64 + + 9ffb9e251e760e31f2528e6bdd1f8539cd46f8b1b1427ecdfaff4f66bdf675cf + Development files for lua + Lua is a programming language originally designed for extending +applications, but also frequently used as a general-purpose, +stand-alone language. + +This package contains files needed for embedding lua into your +application. + + http://www.lua.org + + + lua-doc + noarch + + 4b05095602285a30c53b606923005821c843f643c8efb2b9c5f615f094fa0429 + Small Embeddable Language with Simple Procedural Syntax + Lua is a programming language originally designed for extending +applications, but also frequently used as a general-purpose, +stand-alone language. + +Lua combines simple procedural syntax (similar to Pascal) with powerful +data description constructs based on associative arrays and extensible +semantics. Lua is dynamically typed, interpreted from byte codes, and +has automatic memory management, making it ideal for configuration, +scripting, and rapid prototyping. Lua is implemented as a small library +of C functions, written in ANSI C, and the implementation goals are +simplicity, efficiency, portability, and low embedding cost. + + http://www.lua.org + + + lzo + aarch64 + + 2fa2fa3311cb8d8f53044ae6317b50c97314f369b15773149032e73a882ad7c3 + Data compression library with very fast (de)compression + LZO is a portable lossless data compression library written in ANSI C. +It offers pretty fast compression and very fast decompression. +Decompression requires no memory. In addition there are slower +compression levels achieving a quite competitive compression ratio +while still decompressing at this very high speed. + + http://www.oberhumer.com/opensource/lzo/ + + + lzo-devel + aarch64 + + 8f44ba8e0c14498a52763319e1f420f440ef957ccf21c220c3b14918911d7b2b + Development files for the lzo library + LZO is a portable lossless data compression library written in ANSI C. +It offers pretty fast compression and very fast decompression. +This package contains development files needed for lzo. + + http://www.oberhumer.com/opensource/lzo/ + + + lzo-minilzo + aarch64 + + 3f664c843920a307c4064ae47a4ad2235f0aa34b638b334b3ce65403e44b9954 + Mini version of lzo for apps which don't need the full version + A small (mini) version of lzo for embedding into applications which don't need +full blown lzo compression support. + + http://www.oberhumer.com/opensource/lzo/ + + + m4 + aarch64 + + 998afacbb90c0873d9020081552aefd5fba97d8a595fb2dd42d34a40afd51fe1 + GNU m4 + GNU m4 is an implementation of the traditional Unix macro processor. + + http://www.gnu.org/software/m4/ + + + make + aarch64 + + 8274f0c2d61e807d75b27fb695364ea0eaaaebc9a5c49469cfa0cfd28f9de9b0 + GNU make + The GNU make command with extensive documentation. + + http://www.gnu.org/software/make/make.html + + + makeinfo + aarch64 + + bb00f797240d4beeb66efb82482681a6c55ad9e95efa220d2a888b4d574e86bf + Translate Texinfo documents to info format + Makeinfo translates Texinfo source documentation to various other +formats, by default Info files suitable for reading online with Emacs +or standalone GNU Info. + + http://www.texinfo.org + + + minizip + aarch64 + + 127117579d3526620bb1a9e2d7feb1de2f3cb4d083e417b152b37bfc1ad1c0e1 + Manipulates files from a .zip archive + Minizip is a tool to manipulates files from a .zip archive. + + http://www.zlib.net/ + + + minizip-devel + aarch64 + + 7a61abdce01e90acd2638e1422a617c0fb39942f4544bf1df997b9341512bfcd + Development files for the minizip library + This package contains the libraries and header files needed for +developing applications which use minizip. + + http://www.zlib.net/ + + + ncurses-devel + aarch64 + + b716bb30e24e160122f391fbe0cae2c104ea3fd2bea7a35d50712f52b80de142 + Include Files and Libraries mandatory for Development + This package contains all necessary include files and libraries needed +to develop applications that require these. + + http://invisible-island.net/ncurses/ncurses.html + + + ncurses-docs + aarch64 + + 85135f1a4101b3ddbcd1d634f0c18b5cbc970e69201cb76f6898bd19daf1fd46 + Documentation for package ncurses + This package provides documentation for package ncurses. + + http://invisible-island.net/ncurses/ncurses.html + + + ncurses-utils + aarch64 + + bbb82bad44cd1e069aa940b65db8134b6aec58ab941d503c2cf9a112591ed160 + Tools using the new curses libraries + The ncurses based utilities are as follows: + +clear -- emits clear-screen for current terminal + +tabs -- set tabs on a terminal + +toe -- table of entries utility + +tput -- shell-script access to terminal capabilities. + +tset -- terminal-initialization utility + +reset -- terminal initialization utility + + http://invisible-island.net/ncurses/ncurses.html + + + net-tools + aarch64 + + c899aa8efbb0828e04de8a4932cd581ee9a453c5243d12f231e85d5f26ceaa80 + Basic networking tools + The net-tools package contains basic networking tools, +including ifconfig, netstat, route, and others. +Most of them are obsolete. For replacement check iproute package. + + http://sourceforge.net/projects/net-tools/ + + + net-tools-docs + aarch64 + + c346547df4c5706ff4c773347def40725d90e4eb6f57334ef800c6de34cd8fee + Documentation for package net-tools + This package provides documentation for package net-tools. + + http://sourceforge.net/projects/net-tools/ + + + nghttp2 + aarch64 + + 612c2f48591402b76b9d8c4e20ad8f514c7a99c6f326474c481508511085f409 + This is an experimental implementation of Hypertext Transfer Protocol version 2. + + + https://nghttp2.org/ + + + nghttp2-devel + aarch64 + + a452e207ec342beadf75034e2825b191e479b006b7ad338b72136f4837a989c6 + Development files for nghttp2 + The nghttp2-devel package contains libraries and header files for +developing applications that use nghttp2. + + https://nghttp2.org/ + + + ninja + aarch64 + + bd1b0abae8834635703980fc03ee7ec31113b8bb1a5dcde72f9ef144970cfc69 + Ninja build system + Ninja is a small build system with a focus on speed. +http://martine.github.com/ninja/ + +See the manual -- http://martine.github.com/ninja/manual.html or +doc/manual.asciidoc included in the distribution -- for background +and more details. + + http://martine.github.com/ninja/ + + + nspr + aarch64 + + 30f959525a7fa087425cba001ad9d49f3726f8a7179f040e2b6116f6159b4941 + Netscape Portable Runtime + NSPR provides platform independence for non-GUI operating system +facilities. These facilities include threads, thread synchronization, +normal file and network I/O, interval timing and calendar time, basic +memory management (malloc and free), and shared library linking. + + http://www.mozilla.org/projects/nspr/ + + + nspr-devel + aarch64 + + 48006029517d14b6202f4b6c7f1a9157fd55a31b4b8dd6d74602cf2b61c7b295 + Netscape Portable Runtime development files + NSPR provides platform independence for non-GUI operating system +facilities. These facilities include threads, thread synchronization, +normal file and network I/O, interval timing and calendar time, basic +memory management (malloc and free), and shared library linking. + + http://www.mozilla.org/projects/nspr/ + + + nss + aarch64 + + f59e9cf656f2578e0199f39c09d5c5514a83911eb1c4c7dc41922ef1f7ccc718 + Network Security Services + Network Security Services (NSS) is a set of libraries designed to +support cross-platform development of security-enabled server +applications. Applications built with NSS can support SSL v2 and v3, +TLS, PKCS #5, PKCS #7, PKCS #11, PKCS #12, S/MIME, X.509 v3 +certificates, and other security standards. + + http://www.mozilla.org/projects/security/pki/nss/ + + + nss-certs + aarch64 + + 0171f974c444f264f11abb723d0d06b26b45555f7cc752c10504708e6a05d9a6 + CA certificates for NSS + This package contains the integrated CA root certificates from the +Mozilla project. + + http://www.mozilla.org/projects/security/pki/nss/ + + + nss-devel + aarch64 + + 5b1fc4380b4589b2dcef47db7e5713d7f19cfac1202f267202f8e65769bde7ad + Network (Netscape) Security Services development files + Network Security Services (NSS) is a set of libraries designed to +support cross-platform development of security-enabled server +applications. Applications built with NSS can support SSL v2 and v3, +TLS, PKCS #5, PKCS #7, PKCS #11, PKCS #12, S/MIME, X.509 v3 +certificates, and other security standards. + + http://www.mozilla.org/projects/security/pki/nss/ + + + nss-sysinit + aarch64 + + 1cd0a5181c00d1eefe994571bae1fab3442fe67f3461e4c4c9c2693d0ea0c752 + System NSS Initialization + Default Operation System module that manages applications loading +NSS globally on the system. This module loads the system defined +PKCS #11 modules for NSS and chains with other NSS modules to load +any system or user configured modules. + + http://www.mozilla.org/projects/security/pki/nss/ + + + nss-tools + aarch64 + + 1fc77a4d1fe557569adae91e6331bfb034dca37fcb857f8ad0f784563916a3fa + Tools for developing, debugging, and managing applications that use NSS + The NSS Security Tools allow developers to test, debug, and manage +applications that use NSS. + + http://www.mozilla.org/projects/security/pki/nss/ + + + openssl + aarch64 + + 282c9cc60b0dcb3948aa4992bd4ddbd59bcb6c2f6987da640a1649c431aac856 + Secure Sockets Layer and cryptography libraries and tools + The OpenSSL Project is a collaborative effort to develop a robust, +commercial-grade, fully featured, and Open Source toolkit implementing the +Secure Sockets Layer (SSL v2/v3) and Transport Layer Security (TLS v1) +protocols as well as a full-strength general purpose cryptography library. +The project is managed by a worldwide community of volunteers that use the +Internet to communicate, plan, and develop the OpenSSL tookit and its related +documentation. + +OpenSSL is based on the excellent SSLeay library developed from Eric A. +Young and Tim J. Hudson. The OpenSSL toolkit is licensed under an +Apache-style licence, which basically means that you are free to get and +use it for commercial and non-commercial purposes. + +This package contains the base OpenSSL cryptography and SSL/TLS +libraries and tools. + + http://www.openssl.org/ + + + openssl-doc + noarch + + 73ce29c64b29040792763c9fecfb977b91bfc52eba9f5258000b7b738eb7473b + OpenSSL miscellaneous files + The OpenSSL Project is a collaborative effort to develop a robust, +commercial-grade, fully featured, and Open Source toolkit implementing the +Secure Sockets Layer (SSL v2/v3) and Transport Layer Security (TLS v1) +protocols as well as a full-strength general purpose cryptography library. +The project is managed by a worldwide community of volunteers that use the +Internet to communicate, plan, and develop the OpenSSL tookit and its related +documentation. + +OpenSSL is based on the excellent SSLeay library developed from Eric A. +Young and Tim J. Hudson. The OpenSSL toolkit is licensed under an +Apache-style licence, which basically means that you are free to get and +use it for commercial and non-commercial purposes. + +This package contains the the OpenSSL cryptography and SSL/TLS extra +documentation and POD files from which the man pages were produced. + + http://www.openssl.org/ + + + openssl-misc + aarch64 + + b571273864d965f9b8512da058b9911c5b18535b3dc6cffdc28be781acccb81e + Include Files and Libraries mandatory for Development + Additional data files and scripts for openssl. + + http://www.openssl.org/ + + + pam + aarch64 + + 8b0a4a55c2e03e0233546cc1c3fd41d315de8af26306813c78d32bf0a2e19113 + A Security Tool that Provides Authentication for Applications + PAM (Pluggable Authentication Modules) is a system security tool that +allows system administrators to set authentication policy without +having to recompile programs that handle authentication. + + http://www.linux-pam.org/ + + + pam-devel + aarch64 + + 39ca7be722f44e1481ae15a6a1a1884109e70c4f7397f1bc32e855d85ecfed32 + Files needed for developing PAM-aware applications and modules for PAM + PAM (Pluggable Authentication Modules) is a system security tool that +allows system administrators to set authentication policy without +having to recompile programs that handle authentication. This package +contains header files and static libraries used for building both +PAM-aware applications and modules for use with PAM. + + http://www.linux-pam.org/ + + + pam-docs + aarch64 + + 8a8ea6bec854bce92e99525a141f152de5cbc717451333c84cbcc0313176254d + Documentation for package pam + This package provides documentation for package pam. + + http://www.linux-pam.org/ + + + pam-locale + noarch + + e64c207e1c82ff453d3c293c7059842508f0680d8828c97f33cb295c6613ea1f + Translations and Locale for package pam + This package provides translations for package pam. + + http://www.linux-pam.org/ + + + pam-modules-extra + aarch64 + + 398d44a243f0cd15f12219ae8c04828468c3cfaee298703caf47d0d77e839bc2 + Extra modules provided by PAM not used in the base system + PAM (Pluggable Authentication Modules) is a system security tool that +allows system administrators to set authentication policy without +having to recompile programs that handle authentication. This package +contains extra modules for use by programs that are not used in the +default Tizen install. + + http://www.linux-pam.org/ + + + patch + aarch64 + + 951464e2b92ce719bb9590c00db72a86cabcfb44ff463d90a2cc71f0bf4fb1b6 + The GNU patch command, for modifying/upgrading files + The patch program applies diff files to originals. The diff command +is used to compare an original to a changed file. Diff lists the +changes made to the file. A person who has the original file can then +use the patch command with the diff file to add the changes to their +original file (patching the file). + +Patch should be installed because it is a common way of upgrading +applications. + + http://www.gnu.org/software/patch/patch.html + + + patchelf + aarch64 + + 5992d20ef8d827743f0feaac150cdabf9d3b30118732ac3d182e29aecee1ba49 + A utility for patching ELF binaries + PatchELF is a simple utility for modifing existing ELF executables and +libraries. It can change the dynamic loader ("ELF interpreter") of +executables and change the RPATH of executables and libraries. + + http://nixos.org/patchelf.html + + + pcre-devel + aarch64 + + 3cda8f5843e425830ae716d349278bad0e94f9f00fc2609c5eb686d5378daeeb + A library for Perl-compatible regular expressions + The PCRE library is a set of functions that implement regular +expression pattern matching using the same syntax and semantics +as Perl 5. + + ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/ + + + pcre-devel-static + aarch64 + + adfddee52982139c39b230ce14dd9137c00893261ab07ad8697e64025417cc54 + A library for Perl-compatible regular expressions + The PCRE library is a set of functions that implement regular +expression pattern matching using the same syntax and semantics +as Perl 5. +This package contains static versions of the PCRE libraries. + + ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/ + + + pcre-doc + noarch + + d5d4c6a2e9722df42495a37be416e5d8b5521eabe4370c0fc452a45b7d41b145 + A library for Perl-compatible regular expressions + The PCRE library is a set of functions that implement regular +expression pattern matching using the same syntax and semantics +as Perl 5. + + ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/ + + + pcre-tools + aarch64 + + f76605907dc6e226e0fccbf01d319b0740204ecda1fe7d058632e98e4cda22d0 + A library for Perl-compatible regular expressions + The PCRE library is a set of functions that implement regular +expression pattern matching using the same syntax and semantics +as Perl 5. + + ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/ + + + perl + aarch64 + + f9cd62aa0569f4d25c02a37213335187f248fc1d12de3b5373e07b574ccee81c + The Perl interpreter + perl - Practical Extraction and Report Language + +Perl is optimized for scanning arbitrary text files, extracting +information from those text files, and printing reports based on that +information. It is also good for many system management tasks. Perl is +intended to be practical (easy to use, efficient, and complete) rather +than beautiful (tiny, elegant, and minimal). + +Some of the modules available on CPAN can be found in the "perl" +series. + + http://www.perl.org/ + + + perl-Devel-Symdump + aarch64 + + 461747bfd1e5df1d4aa7b5708c55998eb7e6ff36d51ad93300d4d681cf5708e2 + Dump symbol names or the symbol table + Devel-Symdump module for perl +This little package serves to access the symbol table of perl. + + http://cpan.org/modules/by-module/Devel/ + + + perl-HTML-Parser + aarch64 + + bec6ac8257294cb55f7da7da9658cc2be1773829cee24dafa9f03c47150c1f0a + Perl module for parsing HTML + The HTML-Parser module for perl to parse and extract information from +HTML documents, including the HTML::Entities, HTML::HeadParser, +HTML::LinkExtor, HTML::PullParser, and HTML::TokeParser modules. + + http://search.cpan.org/dist/HTML-Parser/ + + + perl-HTML-Parser-docs + aarch64 + + f9e2a0b4bc805432cdb9983ab120bcab04a7a87578fa551a9e3a9da0e697ad0b + Documentation for package perl-HTML-Parser + This package provides documentation for package perl-HTML-Parser. + + http://search.cpan.org/dist/HTML-Parser/ + + + perl-HTML-Tagset + noarch + + fc41b1d7975ccf93a089ecf1b2b2de9473a06f600eac32c6d4abd5763baed3bd + HTML::Tagset - data tables useful in parsing HTML + This module contains several data tables useful in various kinds of +HTML parsing operations, such as tag and entity names. + + http://search.cpan.org/dist/HTML-Tagset/ + + + perl-Pod-Coverage + noarch + + 7c8c044ee173e84a893f2c467081389a0f9b69e2943865adc6e2658c3f4aa477 + Checks if the documentation of a module is comprehensive + Developers hate writing documentation. They'd hate it even more if their +computer tattled on them, but maybe they'll be even more thankful in the +long run. Even if not, _perlmodstyle_ tells you to, so you must obey. + +This module provides a mechanism for determining if the pod for a given +module is comprehensive. + +It expects to find either a '=head(n>1)' or an '=item' block documenting a +subroutine. + +Consider: # an imaginary Foo.pm package Foo; + + =item foo + + The foo sub + + = cut + + sub foo {} + sub bar {} + + 1; + __END__ + +In this example 'Foo::foo' is covered, but 'Foo::bar' is not, so the 'Foo' +package is only 50% (0.5) covered + + http://search.cpan.org/dist/Pod-Coverage/ + + + perl-Test-Pod + noarch + + 8093890b4645c97a6d2735c50586f8f9d4fb4873229a36e46ab183331b0c8c0d + check for POD errors in files + Check POD files for errors or warnings in a test file, using 'Pod::Simple' +to do the heavy lifting. + + http://search.cpan.org/dist/Test-Pod/ + + + perl-Test-Pod-Coverage + noarch + + 8ae2d5c249d45744a048689f28a7b9109deddc45e4b2270679ec64338ef316a6 + Test::Pod::Coverage Perl module + Test::Pod::Coverage Perl module + + http://search.cpan.org/dist/Test-Pod-Coverage/ + + + perl-TimeDate + noarch + + 02ab7650340c353902a630d88e63f2d11b22ad9a2722b47ad563c048fc8af07b + A Perl module for time and date manipulation + This module includes a number of smaller modules suited for +manipulation of time and date strings with Perl. In particular, the +Date::Format and Date::Parse modules can display and read times and +dates in various formats, providing a more reliable interface to +textual representations of points in time. + + http://search.cpan.org/dist/TimeDate/ + + + perl-URI + noarch + + 88bbb6268bf7862ec2a6112be0168939e9f4e970432e4d5aa8a5e87440ba7a69 + A Perl module implementing URI parsing and manipulation + This module implements the URI class. Objects of this class represent +"Uniform Resource Identifier references" as specified in RFC 2396 (and +updated by RFC 2732). + + http://search.cpan.org/dist/URI/ + + + perl-XML-Parser + aarch64 + + 0a21b90479889eb09f0aca368c6906520d325582ecffe514e5781d733321f5f8 + A perl module for parsing XML documents + This module provides ways to parse XML documents. It is built on top of + XML::Parser::Expat, which is a lower level interface to James Clark's expat + library. Each call to one of the parsing methods creates a new instance of + XML::Parser::Expat which is then used to parse the document. Expat options may + be provided when the XML::Parser object is created. These options are then + passed on to the Expat object on each parse call. They can also be given as + extra arguments to the parse methods, in which case they override options + given at XML::Parser creation time. + +The behavior of the parser is controlled either by "Style" and/or "Handlers" + options, or by "setHandlers" method. These all provide mechanisms for + XML::Parser to set the handlers needed by XML::Parser::Expat. If neither + Style nor Handlers are specified, then parsing just checks the document + for being well-formed. + +When underlying handlers get called, they receive as their first parameter + the Expat object, not the Parser object. + +You will find examples in +/usr/share/doc/packages/perl-XML-Parser/samples. For documentation +read the XML::Parser and XML::Parser::Expat man pages. + + http://www.cpan.org/modules/by-module/XML/ + + + perl-doc + noarch + + 543f6de0267bffcc9601ea989a67900ba68bf2b9a1dc82854137d14b4fab0169 + Perl Documentation + Perl man pages and pod files. + + http://www.perl.org/ + + + perl-gettext + aarch64 + + 0a3474dfbcd03690bd418d83cd8ffc746fa30f978f74ac1dcc22a6508d3f2934 + Message handling functions + The gettext module permits access from perl to the gettext() family of +functions for retrieving message strings from databases constructed to +internationalize software. + +gettext(), dgettext(), and dcgettext() attempt to retrieve a string +matching their 'msgid' parameter within the context of the current locale. +dcgettext() takes the message's category and the text domain as parameters +while dcgettext() defaults to the LC_MESSAGES category and gettext() +defaults to LC_MESSAGES and uses the current text domain. If the string is +not found in the database, then 'msgid' is returned. + +textdomain() sets the current text domain and returns the previously active +domain. + +_bindtextdomain(domain, dirname)_ instructs the retrieval functions to look +for the databases belonging to domain 'domain' in the directory 'dirname' + + http://search.cpan.org/dist/gettext/ + + + perl-libwww-perl + noarch + + be2cf6047ede49670c4bf23857fbab9afaa399ab1f7f5f78353b1bf77bb76e1e + A Perl interface to the World-Wide Web + The libwww-perl collection is a set of Perl modules which provides a +simple and consistent application programming interface to the +World-Wide Web. The main focus of the library is to provide classes +and functions that allow you to write WWW clients. The library also +contain modules that are of more general use and even classes that +help you implement simple HTTP servers. + + http://search.cpan.org/dist/libwww-perl/ + + + pkg-config + aarch64 + + 83445cb1fb3b225423184157106b597096936e2ae09696c3039484b4008e276d + A library management system + The pkg-config program is used to retrieve information about installed +libraries in the system. It is typically used to compile and link +against one or more libraries. + + http://pkgconfig.freedesktop.org/ + + + pkg-config-docs + aarch64 + + d1be296854430371d8f46c9fc5d5ae4df3e6045a8737eccc80befce314c0d7e5 + Documentation for package pkg-config + This package provides documentation for package pkg-config. + + http://pkgconfig.freedesktop.org/ + + + popt-devel + aarch64 + + 1e32bfd381be1ad9dbf5f2723c9b9ef80182d6845908df836efaa9286b474a73 + Development files for the popt library + The popt-devel package includes header files and libraries necessary +for developing programs which use the popt C library. It contains the +API documentation of the popt library, too. + + http://www.rpm5.org/ + + + popt-locale + noarch + + 67640fd218539c473d5bef5a1ce5d082d60c26ef27e9f2a2d56a92cf3dcd8c7e + Translations and Locale for package popt + This package provides translations for package popt. + + http://www.rpm5.org/ + + + procps-ng + aarch64 + + 39dc1eb4fa1eea5f65ec9be9e2234cb47946942898b68b493c8677d8ac3a02bb + System and process monitoring utilities + The procps package contains a set of system utilities that provide +system information. Procps includes ps, free, skill, pkill, pgrep, +snice, tload, top, uptime, vmstat, w, watch and pwdx. The ps command +displays a snapshot of running processes. The top command provides +a repetitive update of the statuses of running processes. The free +command displays the amounts of free and used memory on your +system. The skill command sends a terminate command (or another +specified signal) to a specified set of processes. The snice +command is used to change the scheduling priority of specified +processes. The tload command prints a graph of the current system +load average to a specified tty. The uptime command displays the +current time, how long the system has been running, how many users +are logged on, and system load averages for the past one, five, +and fifteen minutes. The w command displays a list of the users +who are currently logged on and what they are running. The watch +program watches a running program. The vmstat command displays +virtual memory statistics about processes, memory, paging, block +I/O, traps, and CPU activity. The pwdx command reports the current +working directory of a process or processes. + + https://sourceforge.net/projects/procps-ng/ + + + procps-ng-devel + aarch64 + + 0373ab9617657054a994e78417eda47dac5913b1363bf4098f72e165398fdf32 + System and process monitoring utilities + System and process monitoring utilities development headers + + https://sourceforge.net/projects/procps-ng/ + + + procps-ng-docs + aarch64 + + c2de32c7811ebcc78b5cea037716c8041699ff140bdb87083ad04e05784953fe + Documentation for package procps-ng + This package provides documentation for package procps-ng. + + https://sourceforge.net/projects/procps-ng/ + + + python + aarch64 + + 1a783e32125226bbd4a15307f10f6f5cc1669ab31591534c0af12882a5ff92c9 + Python Interpreter + Python is an interpreted, object-oriented programming language, and is +often compared to Tcl, Perl, Scheme, or Java. You can find an overview +of Python in the documentation and tutorials included in the python-doc +(HTML) or python-doc-pdf (PDF) packages. + +If you want to install third party modules using distutils, you need to +install python-devel package. + + http://www.python.org/ + + + python-accel-aarch64 + aarch64 + + f4a2551595dcd6e5087701ac4d36f7c5ebea79798431dd693663ccacb67969c6 + Binaries for python acceleration + This package is used in qemu-accel to accelerate python. + + + + + python-accel-x86_64-aarch64 + aarch64 + + 8fa5db2be123d11406053a4cb4ecd2dab6225b37096c09de814caad23aee58b6 + Binaries for python acceleration + This package is used in qemu-accel to accelerate python. + + + + + python-curses + aarch64 + + 7f07a4dadcb0c2e3209eda917fe8fec020f3ca6390ad1b9be05c2a935d044b21 + Python Interface to the (N)Curses Library + An easy to use interface to the (n)curses CUI library. CUI stands for +Console User Interface. + + http://www.python.org/ + + + python-devel + aarch64 + + 2a8827312e93429b07f3ed183a00ccc8662fbd23dd23dc84924638daa2e8d280 + Include Files and Libraries Mandatory for Building Python Modules + The Python programming language's interpreter can be extended with +dynamically loaded extensions and can be embedded in other programs. + +This package contains header files, a static library, and development +tools for building Python modules, extending the Python interpreter or +embedding Python in applications. + + http://www.python.org/ + + + python-libxml2 + aarch64 + + fd307924be029dbb715028882c5f35b5e851e7f7b6d2eb2525717d97a3af277b + Python Bindings for libxml2 + The libxml2-python package contains a module that permits applications +written in the Python programming language to use the interface +supplied by the libxml2 library to manipulate XML files. + +This library allows manipulation of XML files. It includes support for +reading, modifying, and writing XML and HTML files. There is DTD +support that includes parsing and validation even with complex DTDs, +either at parse time or later once the document has been modified. + + http://xmlsoft.org + + + python-lxml + aarch64 + + b789f6ae52782472a68f3453da410ace748ea8dbb4687c7b5087010c9046af39 + Powerful and Pythonic XML processing library + lxml is a Pythonic, mature binding for the libxml2 and libxslt libraries. It +provides safe and convenient access to these libraries using the ElementTree +API. It extends the ElementTree API significantly to offer support for XPath, +RelaxNG, XML Schema, XSLT, C14N and much more. + + http://lxml.de/ + + + python-magic + noarch + + eb8d7263c902e61dbb203a96a8e37935aab261f2637917e6ec758c00a563148a + Python module to use libmagic + This package contains the python binding that require the magic "file" +interface. + + http://www.darwinsys.com/file/ + + + python-markdown + noarch + + 5ca5cc4eb328a206f8219b6ebe305fe809e0232516d24e988496cf10afc8a5b3 + Markdown implementation in Python + This is a Python implementation of John Gruber's Markdown. It is +almost completely compliant with the reference implementation, though +there are a few known issues. + + http://www.freewisdom.org/projects/python-markdown/ + + + python-pygments + noarch + + c6754604b0f34db87f9920fd6aed32c7f68d2b097458f134fc753727187c00cd + A syntax highlighting engine written in Python + Pygments is a syntax highlighting engine written in Python. That means, it +will take source code (or other markup) in a supported language and output +a processed version (in different formats) containing syntax highlighting +markup. + + http://pygments.org/ + + + python-rpm + aarch64 + + ee017e4c59e3a04669eaa3452f7c410f1f15d11d7e3a1ccab64740ff74c22494 + Python Bindings for Manipulating RPM Packages + The python-rpm package contains a module that permits applications +written in the Python programming language to use the interface +supplied by RPM Package Manager libraries. + +This package should be installed if you want to develop Python programs +that will manipulate RPM packages and databases. + + http://www.rpm.org + + + python-setuptools + noarch + + ae7dd4c891b4f890e083a8932973c86a1c701a76e5afc2cc9a4acca2ede4b9e1 + Easily build and distribute Python packages + Setuptools is a collection of enhancements to the Python distutils that allow +you to more easily build and distribute Python packages, especially ones that +have dependencies on other packages. + +This package contains the runtime components of setuptools, necessary to +execute the software that requires pkg_resources.py. + + http://pypi.python.org/pypi/setuptools + + + python-setuptools-devel + noarch + + 583c01a1149227d83522379bfcabd4a6249789e10758ede9a5c64a918b7bbc7e + Download, install, upgrade, and uninstall Python packages + setuptools is a collection of enhancements to the Python distutils that allow +you to more easily build and distribute Python packages, especially ones that +have dependencies on other packages. + +This package contains the components necessary to build and install software +requiring setuptools. + + http://pypi.python.org/pypi/setuptools + + + python-xml + aarch64 + + 637bdd6422ac6b7947c1a56e504d0e23f8d7ba579985f8bd23ec1958352bb578 + A Python XML Interface + The expat module is a Python interface to the expat XML parser. Since +Python2.x, it is part of the core Python distribution. + + http://www.python.org/ + + + python3 + aarch64 + + 21f73866106a1842d1831a08fbe36a36f7c2a1aacde67246781955e8da904437 + Python 3 Interpreter + Python 3 is modern interpreted, object-oriented programming language, +often compared to Tcl, Perl, Scheme, or Java. You can find an overview +of Python in the documentation and tutorials included in the python-doc +(HTML) or python-doc-pdf (PDF) packages. + +If you want to install third party modules using distutils, you need to +install python-devel package. + + http://www.python.org/ + + + python3-base + aarch64 + + 59c3bd10d7dcd6020c8306b788087d1aae990571ed056de37d8cf2153f205a7f + Python 3 Interpreter + Python is an interpreted, object-oriented programming language, and is +often compared to Tcl, Perl, Scheme, or Java. You can find an overview +of Python in the documentation and tutorials included in the python-doc +(HTML) or python-doc-pdf (PDF) packages. + +If you want to install third party modules using distutils, you need to +install python-devel package. + + http://www.python.org/ + + + python3-curses + aarch64 + + 6ff867a9c16ee884a1846231bc22b58e626b0495304f838d4176c17addcf7f2b + Python Interface to the (N)Curses Library + An easy to use interface to the (n)curses CUI library. CUI stands for +Console User Interface. + + http://www.python.org/ + + + python3-devel + aarch64 + + 172cf69efa57341ae6641905f30e2532ae9751468f0ae9c71a32d6b5df5619ac + Include Files and Libraries Mandatory for Building Python Modules + The Python programming language's interpreter can be extended with +dynamically loaded extensions and can be embedded in other programs. + +This package contains header files, a static library, and development +tools for building Python modules, extending the Python interpreter or +embedding Python in applications. + +This also includes the Python distutils, which were in the Python +package up to version 2.2.2. + + http://www.python.org/ + + + python3-dummy + aarch64 + + c2cca4107040bab8f542c0f9ce4c055f1363887300d56568355a79b0fcc8604c + dummy package + dummy package + + http://www.python.org/ + + + python3-idle + aarch64 + + 15ed864dc80a3d6a303dbc841dc8e42686ffda35af904c8455ff236ad73d0872 + An Integrated Development Environment for Python + IDLE is a Tkinter based integrated development environment for Python. +It features a multi-window text editor with multiple undo, Python +colorizing, and many other things, as well as a Python shell window and +a debugger. + + http://www.python.org/ + + + python3-testsuite + aarch64 + + c5c653160d89cd0784f4620215ce051a4fa8cc3755c4e29526ea909dfb4988c2 + Unit tests for Python and its standard library + Unit tests that are useful for verifying integrity and functionality +of the installed Python interpreter and standard library. +They are a documented part of stdlib, as a module 'test'. + + http://www.python.org/ + + + python3-tools + aarch64 + + f05af52b3a022ed435b83c9cceb8c9c86dfe671e70b6dfb5c7326c0260935989 + Python Utility and Demonstration Scripts + A number of scripts that are useful for building, testing or extending Python, +and a set of demonstration programs. + + http://www.python.org/ + + + qemu-accel-aarch64 + aarch64 + + 3c87cea160b0e8776c20d1f481b25ed0a0146afe430e22a080d2e6ff188ea3df + Native binaries for speeding up cross compile + This package is used in aarch64 architecture builds using qemu to speed up builds +with native binaries. +This should not be installed on systems, it is just intended for qemu environments. + + + + + qemu-accel-x86_64-aarch64 + aarch64 + + b42a2bfddc6da11e02fd222dad8cea2bb56caf398bf212983d0bab466eb8af2b + Native binaries for speeding up cross compile + This package is used in aarch64 architecture builds using qemu to speed up builds +with native binaries. +This should not be installed on systems, it is just intended for qemu environments. + + + + + qemu-linux-user-cross + aarch64 + + 7e36fce82d1cce98cb650f25fe5b1b1fcc3543eb9a126b5c15d4e9ed06256c31 + Universal CPU emulator + QEMU is an extremely well-performing CPU emulator that allows you to +choose between simulating an entire system and running userspace +binaries for different architectures under your native operating +system. It currently emulates x86, ARM, PowerPC and SPARC CPUs as well +as PC and PowerMac systems. + +This sub-package contains statically linked binaries for running linux-user +emulations. This can be used together with the OBS build script to +run cross-architecture builds. + + http://www.qemu.org/ + + + qemu-linux-user-x86_64-cross + aarch64 + + 923ab9773d30c044cd8c92a14754193939325e77f2ff9e484320f1720d92ea8e + Universal CPU emulator + QEMU is an extremely well-performing CPU emulator that allows you to +choose between simulating an entire system and running userspace +binaries for different architectures under your native operating +system. It currently emulates x86, ARM, PowerPC and SPARC CPUs as well +as PC and PowerMac systems. + +This sub-package contains statically linked binaries for running linux-user +emulations. This can be used together with the OBS build script to +run cross-architecture builds. + + http://www.qemu.org/ + + + readline-devel + aarch64 + + 302fc48865c9cf5465e18081a615dc0d3bcc6fd63c9a2c8a4bff3c1352d3e6eb + Include Files and Libraries mandatory for Development + This package contains all necessary include files and libraries needed +to develop applications that require these. + + http://www.gnu.org/software/bash/bash.html + + + rpm + aarch64 + + d62c1f2f28ee29918e91b3bb13bf3665bbbcac4923d81a35c80e7dd7261af042 + The Package Manager + RPM Package Manager is the main tool for managing the software packages +of Tizen. + +RPM can be used to install and remove software packages. With rpm, it +is easy to update packages. RPM keeps track of all these manipulations +in a central database. This way it is possible to get an overview of +all installed packages. RPM also supports database queries. + + http://www.rpm.org + + + rpm-build + aarch64 + + a50f80bd6999cab84a02fa50baa91008c1f0efed07af312ff9ef59aa80d7e89b + Tools and Scripts to create rpm packages + If you want to build a rpm, you need this package. It provides rpmbuild +and requires some packages that are usually required + + http://www.rpm.org + + + rpm-devel + aarch64 + + deb455b62f61996b14d3543cb079fba73c6ad8d1d7f01669831c253a80d7b5cf + Include Files and Libraries mandatory for Development + This package contains the RPM C library and header files. These +development files will simplify the process of writing programs which +manipulate RPM packages and databases and are intended to make it +easier to create graphical package managers or any other tools that +need an intimate knowledge of RPM packages in order to function. + + http://www.rpm.org + + + rpm-docs + aarch64 + + b0c52f7f884fdedda5be9f19c24cdfc6c68ce25acf8bfce302cf875a1fb05289 + Documentation for package rpm + This package provides documentation for package rpm. + + http://www.rpm.org + + + rpm-locale + noarch + + f3b7930149f68c31f213a945a84dfce4dbe7b387dcf80ca1c386fd6ea578d8d8 + Translations and Locale for package rpm + This package provides translations for package rpm. + + http://www.rpm.org + + + rpm-security-plugin + aarch64 + + 6bb42bd3f882e2888335ac2b90fe3114dce5388ac55668c35eb358d8f44fbd01 + MSM security plugin for rpm + This package contains the MSM security plugin for rpm that performs +security-related functionality. + + http://www.rpm.org + + + rpmlint + noarch + + b5a6d3f746459db6e7c6ab16ec706eca4b9e3d20da4ab1106c6a2100fa88e6c8 + Rpm correctness checker + Rpmlint is a tool to check common errors on rpm packages. Binary and +source packages can be checked. + + http://rpmlint.zarb.org/ + + + rpmlint-mini + aarch64 + + 88bf8fe33321dfe5d4929a1faa6a87f9a919bbf406487d6ff0a535b3794bb20f + Rpm correctness checker + Rpmlint is a tool to check common errors on rpm packages. Binary and +source packages can be checked. + + http://rpmlint.zarb.org/ + + + rpmlint-tizen + noarch + + 8f6cc45e01c8e2cba10ef9b79f193314e35b7cce8369b8f685d931dbaf8d9be8 + Rpm correctness checker - Tizen Trunk configuration + Rpmlint is a tool to check common errors on rpm packages. This package +provides the configuration specific for SUSE Factory. + + http://rpmlint.zarb.org/ + + + rpmlint-tizen-strict + noarch + + 38117bf0054dbad49b4cb9a30590c465824892427150addf7f73ef7e290cddb4 + Confict only applying to openSUSE:Factory itself + Forbid invalid licenses + + http://rpmlint.zarb.org/ + + + sanitizer-devel + noarch + + adedf23f3c45a331d08b18cd9a6aad4e6068bbd5ff0fa6cd18e891a3e80f8ed4 + Sanitizer platform-independent tools + The package contatins platform-independent tools for sanitization: +- asan_symbolize.py: script for offline symbolization of asan logs + + http://gcc.gnu.org/ + + + sanitizer-sources + noarch + + a0c8bab2d28c3962c5e0a79e6b2d1b4eef6770da510b3f8021299549572ee130 + Sanitizer family tools sources + Sanitizer family tools sources for external tools. + + http://gcc.gnu.org/ + + + sed + aarch64 + + 76ddedb2a77c96d138da334e0e7d69c38b0c6f86a52dbc11f5d9ebd5a01049ed + A Stream-Oriented Non-Interactive Text Editor + Sed takes text input, performs one or more operations on it, and +outputs the modified text. Sed is typically used for extracting parts +of a file using pattern matching or for substituting multiple +occurrences of a string within a file. + + http://www.gnu.org/directory/sed.html + + + sed-docs + aarch64 + + 6f85b96a997f70b2feb18e03d80d2ac2cfda0405af909c4111e147a029ae8622 + Documentation for package sed + This package provides documentation for package sed. + + http://www.gnu.org/directory/sed.html + + + setup + noarch + + 6f47d85766fdf7dc8d2421ef00675a2fcf9bb1305cd1a982c081afca92b92580 + A set of system configuration and setup files + The setup package contains a set of important system configuration and +setup files, such as passwd, group, and profile. + + https://fedorahosted.org/setup/ + + + setup-docs + noarch + + 2d58bbe88f068cf0b534b6e56ab4145062954f5cd5818dc8018349d166721eb5 + Documentation for package setup + This package provides documentation for package setup. + + https://fedorahosted.org/setup/ + + + setup-misc + noarch + + 7660872333b19f3650e43bed0a27fe7e35e9a520b673b08dfd3280a0f83ce16b + Misc. basic tools and scripts + Misc. basic tools and scripts. + + https://fedorahosted.org/setup/ + + + shadow-utils + aarch64 + + 4c2eb94a8c201165622f28083f4322a2917f8f1492b15359c847f402c2a43964 + Utilities for managing accounts and shadow password files + The shadow package includes the necessary programs for +converting UNIX password files to the shadow password format, plus +programs for managing user and group accounts. The pwconv command +converts passwords to the shadow password format. The pwunconv command +unconverts shadow passwords and generates an npasswd file (a standard +UNIX password file). The pwck command checks the integrity of password +and shadow files. The lastlog command prints out the last login times +for all users. The useradd, userdel, and usermod commands are used for +managing user accounts. The groupadd, groupdel, and groupmod commands +are used for managing group accounts. + + http://pkg-shadow.alioth.debian.org/ + + + shadow-utils-adm + aarch64 + + fc8da2495e54b3bed7a591ceb756e0819a9c7bb5401b11bb94cae232475279ae + Dev tool for developement + to supply user debugging tool for system + + http://pkg-shadow.alioth.debian.org/ + + + smack + aarch64 + + 0104b82c0e035ff30b7bd78ff9f6e95c63122821eb5b4efa9feab63d98d6f3ce + Selection of tools for developers working with Smack + Tools provided to load and unload rules from the kernel and query the policy + + https://github.com/smack-team/smack + + + smack-devel + aarch64 + + 286d45f26b5a21d7808c6acc3d4c013e73819c765b1f8d511c4fc3771a13c688 + Development headers and libs for libsmack + Standard header files for use when developing Smack enabled applications + + https://github.com/smack-team/smack + + + smack-docs + aarch64 + + 1fc859916000e46d84d581d1fa9d5126475c52c28b8b7b95232a19788a6aa2cd + Documentation for package smack + This package provides documentation for package smack. + + https://github.com/smack-team/smack + + + sqlite + aarch64 + + 30e3042123b6342e6ec312154b5f3d0ddbe477b62e3d86a7df9a96a222782420 + Embeddable SQL Database Engine + SQLite is a C library that implements an embeddable SQL database +engine. Programs that link with the SQLite library can have SQL +database access without running a separate RDBMS process. + +SQLite is not a client library used to connect to a big database +server. SQLite is a server and the SQLite library reads and writes +directly to and from the database files on disk. + +SQLite can be used via the sqlite command line tool or via any +application that supports the Qt database plug-ins. + + http://www.sqlite.org/ + + + sqlite-devel + aarch64 + + c19991af17c90b8039d9bb47d4810add0f9437e4e5860054801b7575a524e34d + Embeddable SQL Database Engine + SQLite is a C library that implements an embeddable SQL database +engine. Programs that link with the SQLite library can have SQL +database access without running a separate RDBMS process. + +SQLite is not a client library used to connect to a big database +server; SQLite is the server. The SQLite library reads and writes +directly to and from the database files on disk. + +SQLite can be used via the sqlite command-line tool or via any +application which supports the Qt database plug-ins. + + http://www.sqlite.org/ + + + sqlite-docs + aarch64 + + c075cde5b5d982401b1cebc193ce167f6bc15d9e024be01c50776f7b929fb6b9 + Documentation for package sqlite + This package provides documentation for package sqlite. + + http://www.sqlite.org/ + + + sudo + aarch64 + + 1d1aca072e15f54d21dda58fa2ddc8958ac43e7214944c66530f1e9f2e010e6b + Execute some commands as root + Sudo is a command that allows users to execute some commands as root. +The /etc/sudoers file (edited with 'visudo') specifies which users have +access to sudo and which commands they can run. Sudo logs all its +activities to syslogd, so the system administrator can keep an eye on +things. Sudo asks for the password for initializing a check period of a +given time N (where N is defined at installation and is set to 5 +minutes by default). + + http://www.sudo.ws/ + + + sudo-devel + aarch64 + + 9d530262f163f9c5191271f93df3424035207e548cf952b31694bbc1bd406a2f + Header files needed for sudo plugin development + These header files are needed for building of sudo plugins. + + http://www.sudo.ws/ + + + sudo-locale + noarch + + fde78c6e05e4d18566e00b8d92680e4c296923f97564d79cd1891f4063ca0a0e + Translations and Locale for package sudo + This package provides translations for package sudo. + + http://www.sudo.ws/ + + + sudo-rpm + aarch64 + + 0d20268dc98e8115d48c7db84191301f2c33515f01c95a5eb082fa06abc840b6 + Script making possible to run RPM as root from inside build + The package will add ALL ALL = (root) NOPASSWD: /usr/bin/rpm to sudoers and +makes possible to install packages from inside build. + + http://www.sudo.ws/ + + + tar + aarch64 + + fd46358a2aac4d058cbe059ba3c25f5581f1ff30f536bc2753ce4feba16c38c0 + GNU implementation of tar ((t)ape (ar)chiver) + This package normally also includes the program "rmt", which provides +remote tape drive control. Since there are compatible versions of 'rmt' +in either the 'star' package or the 'dump' package, we didn't put 'rmt' +into this package. If you are planning to use the remote tape features +provided by tar you have to also install the 'dump' or the 'star' +package. + + http://www.gnu.org/software/tar/ + + + tar-docs + aarch64 + + 2b1c1e4a68b18f51373c2ee6b21fe8254a64c576ce2c8109b0d3b7c70e74839e + Documentation for package tar + This package provides documentation for package tar. + + http://www.gnu.org/software/tar/ + + + terminfo + aarch64 + + 4737757597bdbb0a8a70ef767e501ee7e122fb7ecd62a5194698abefd28b4d33 + A terminal descriptions database + This is the terminfo reference database, maintained in the ncurses +package. This database is the official successor to the 4.4BSD termcap +file and contains information about any known terminal. The ncurses +library makes use of this database to use terminals correctly. If you +just use the Linux console, xterm, and VT100, you probably will not +need this database -- a minimal /usr/share/terminfo tree for these +terminals is already included in the terminfo-base package. + + http://invisible-island.net/ncurses/ncurses.html + + + terminfo-base + aarch64 + + 0878f323523d47b2909ba48b78315ab5500ceb04d047dbc26cf84a4358fd959c + A terminal descriptions database + This is the terminfo basic database, maintained in the ncurses package. +This database is the official successor to the 4.4BSD termcap file and +contains information about any known terminal. The ncurses library +makes use of this database to use terminals correctly. + + http://invisible-island.net/ncurses/ncurses.html + + + texinfo + aarch64 + + 38ca6a8585c4e6412798d6a3c073e4606de92dbe86adfb2cc0ba9b00ced5caa5 + Tools Needed to Create Documentation from Texinfo Sources + Texinfo is a documentation system that uses a single source file to +produce both online information and printed output. Using Texinfo, you +can create a printed document with the normal features of a book, +including chapters, sections, cross-references, and indices. From the +same Texinfo source file, you can create a menu-driven, online info +file with nodes, menus, cross-references, and indices using the included +makeinfo tool. + +Aggregated with texinfo in this package is texi2html and texi2roff. + + +Authors: +-------- + Andreas Schwab <schwab@suse.de> + Brian Fox <bfox@gnu.org> + Charles Hannum <mycroft@gnu.org> + Daniel Hagerty <hag@gnu.org> + David J. MacKenzie <djm@gnu.org> + Eli Zaretskii <eliz@is.elta.co.il> + Jim Meyering <meyering@na-net.ornl.gov> + Karl Berry <karl@gnu.org> + Kaveh R. Ghazi <ghazi@caip.rutgers.edu> + Noah Friedman <friedman@prep.org> + Richard Stallman <rms@gnu.org> + Robert J. Chassell <bob@gnu.org> + Roland McGrath <roland@gnu.org> + + http://www.texinfo.org + + + tzdata + aarch64 + + 4f04b8d6e7709e9376c8c242345e77c17293137c140ff94cfe3546eb7487123d + Timezone Descriptions + These are configuration files that describe available time zones. You +can select an appropriate time zone for your system with YaST. + + http://www.gnu.org/software/libc/libc.html + + + ubsan-build-env + aarch64 + + 112589ba5fc724bd1ff516b67418a4d93805f9203a561d88d5cc5c3369f84177 + UBSan build environment + UBSan build environment support files and scripts + + http://gcc.gnu.org/ + + + ubsan-force-options + aarch64 + + d375046ea70d52baef8224398cdf3e4f5aa77cafe2fc1ae9f01d52034b9f5477 + Scripts to enable automatic package sanitization + Scripts for UBSan instrumentation + + http://gcc.gnu.org/ + + + ubsan-runtime-env + aarch64 + + 4c615dbe48854778816d87bf263f21b9057972013d8e88dbd967f75bc13a3723 + UBSan runtime environment for target device + UBSan runtime environment + + http://gcc.gnu.org/ + + + unzip + aarch64 + + 75a298c61439605ebfec691fddca6ea1e2d7fab485df15973c895cb9c25d677e + A utility for unpacking zip files + The unzip utility is used to list, test, or extract files from a zip +archive. Zip archives are commonly found on MS-DOS systems. The zip +utility, included in the zip package, creates zip archives. Zip and +unzip are both compatible with archives created by PKWARE(R)'s PKZIP +for MS-DOS, but the programs' options and default behaviors do differ +in some respects. + +Install the unzip package if you need to list, test or extract files from +a zip archive. + + http://www.info-zip.org/pub/infozip/UnZip.html + + + update-alternatives + aarch64 + + 2592f3202b2c5b68dec3ac72383aa498fada0007b3fad81500dd61ca77a96fd4 + Maintain symbolic links determining default commands + update-alternatives creates, removes, maintains and displays +information about the symbolic links comprising the alternatives +system. It is possible for several programs fulfilling the same or +similar functions to be installed on a single system at the same time. +For example, many systems have several text editors installed at once. +This gives choice to the users of a system, allowing each to use a +different editor, if desired, but makes it difficult for a program to +make a good choice of editor to invoke if the user has not specified a +particular preference. + + http://ftp.de.debian.org/debian/pool/main/d/dpkg/ + + + uthash-devel + aarch64 + + ca6719072b7f89e71e393f393d999c97736f5cbe5bcd812e456d4be52feea6a9 + Development files for uthash + Development files for uthash. + + + + + util-linux + aarch64 + + e93aca1582e25d50f94e1ba0c42e11167b558bbdde4ce50eeb221d6a09d47957 + A collection of basic system utilities + This package contains a large variety of low-level system utilities +that are necessary for a Linux system to function. It contains the +mount program, the fdisk configuration tool, and more. + + https://github.com/karelzak/util-linux + + + util-linux-docs + aarch64 + + 40e7425e605e2b9b4392af81a6e6c57e9d97a39338582dd333edd3fc29af8db0 + Documentation for package util-linux + This package provides documentation for package util-linux. + + https://github.com/karelzak/util-linux + + + util-linux-locale + noarch + + 72ec758249d14c38a7990c267fe4c008a1141a69715b361231040994b7cf1828 + Translations and Locale for package util-linux + This package provides translations for package util-linux. + + https://github.com/karelzak/util-linux + + + util-linux-su + aarch64 + + 8b305e4770ac2827ed278479ce3f97beb478254c56b07c588cddc00feae79f2b + su - run a command with substitute user and group ID + su - run a command with substitute user and group ID + + https://github.com/karelzak/util-linux + + + uuidd + aarch64 + + d09561f05c08afc16d8a2fcfae6cc2cc1a778affb78d75dfdab2e8572aceaaa1 + Helper daemon to guarantee uniqueness of time-based UUIDs + The uuidd package contains a userspace daemon (uuidd) which guarantees +uniqueness of time-based UUID generation even at very high rates on +SMP systems. + + https://github.com/karelzak/util-linux + + + vim + aarch64 + + 2d8ab38b6d65aa33dfba813e1f43584c753d8248791d0c56c88b5d098a6532f3 + Vi IMproved + Vim (Vi IMproved) is an almost compatible version of the UNIX editor +vi. Almost every possible command can be performed using only ASCII +characters. Only the 'Q' command is missing (you do not need it). Many +new features have been added: multilevel undo, command line history, +file name completion, block operations, and editing of binary data. + +Vi is available for the AMIGA, MS-DOS, Windows NT, and various versions +of UNIX. + +Package vim contains the normal version of vim. To get the full runtime +environment install additionally vim-data. + + http://www.vim.org/ + + + vim-base + aarch64 + + 7f1b97c1091d96fb37850f201b1d4c86625654d6985b2a3b56a47c309e703353 + Vi IMproved + Vim (Vi IMproved) is an almost compatible version of the UNIX editor +vi. Almost every possible command can be performed using only ASCII +characters. Only the 'Q' command is missing (you do not need it). Many +new features have been added: multilevel undo, command line history, +file name completion, block operations, and editing of binary data. + +Vi is available for the AMIGA, MS-DOS, Windows NT, and various versions +of UNIX. + +For SUSE Linux, Vim is used as /usr/bin/vi. + +Package vim-base contains the common files needed for all different vim +versions. You still need to select at least one of the vim, +vim-enhanced or gvim packages. For full runtime support you might also +want to install the vim-data package. + + http://www.vim.org/ + + + vim-data + noarch + + 9e6b955c48a6c9841eb27d9492fb8bc5c6fce47878a58585aad726634e252b71 + Vi IMproved + Vim (Vi IMproved) is an almost compatible version of the UNIX editor +vi. Almost every possible command can be performed using only ASCII +characters. Only the 'Q' command is missing (you do not need it). Many +new features have been added: multilevel undo, command line history, +file name completion, block operations, and editing of binary data. + +Vi is available for the AMIGA, MS-DOS, Windows NT, and various versions +of UNIX. + +Package vim-data contains the runtime files. + + http://www.vim.org/ + + + vim-docs + aarch64 + + 72c3e5690e6dfd300bcd09a16525feb20336ca01efaaf703c9df8003fe475708 + Documentation for package vim + This package provides documentation for package vim. + + http://www.vim.org/ + + + vim-enhanced + aarch64 + + 515dbb07d589bfd9e6b64e049b716e677df739b325c6e8b70f2b496fd9b17bd9 + A version of the VIM editor which includes recent enhancements + The vim-enhanced package contains a version of VIM with extra, recently +introduced features like Ruby, Perl and TCL interpreters, but it has no +graphical user interface. Please use gvim instead, if you need a gui +too. + +Install the vim-enhanced package if you'd like to use a version of the +VIM editor which includes recently added enhancements like interpreters +for the Python and Perl scripting languages. You'll also need to +install the base package 'vim', for online help, etc. If you need the +graphical features of vim, you might want to install package gvim too. + + http://www.vim.org/ + + + which + aarch64 + + 915b31751a22828e6ae9d0a4c6de7714f2f1062bf5f61f8736e07e853e00e708 + Displays where a particular program in your path is located + The which command shows the full pathname of a specified program, if +the specified program is in your PATH. + + http://www.xs4all.nl/~carlo17/which/ + + + which-docs + aarch64 + + 1bcd1aef5f6242884d1bd930078e17aaa368d6bc8cf84ed2d2f4e67f34afc4f8 + Documentation for package which + This package provides documentation for package which. + + http://www.xs4all.nl/~carlo17/which/ + + + xz + aarch64 + + 383f958269769a4b4155a1f475f19e64873a37a1519801c26e7db0b877a31e28 + A Program for Compressing Files + The xz command is a very powerful program for compressing files. + +* Average compression ratio of LZMA is about 30% better than that of + gzip, and 15% better than that of bzip2. + +* Decompression speed is only little slower than that of gzip, being + two to five times faster than bzip2. + +* In fast mode, compresses faster than bzip2 with a comparable + compression ratio. + +* Achieving the best compression ratios takes four to even twelve + times longer than with bzip2. However. this doesn't affect + decompressing speed. + +* Very similar command line interface to what gzip and bzip2 have. + + http://tukaani.org/lzma/ + + + xz-devel + aarch64 + + 2420ef52b15dcab717298bb66128e82a50b3e933261335ec0d95293d0aea4f5f + Development package for the LZMA library + This package contains the header files and libraries needed for +compiling programs using the LZMA library. + + http://tukaani.org/lzma/ + + + xz-docs + aarch64 + + 752d4ebe394e6960b3a5ccba773d24ceae06fc943cb60e1321f1bb95a1b82ec9 + Documentation for package xz + This package provides documentation for package xz. + + http://tukaani.org/lzma/ + + + xz-locale + noarch + + 4e85e20e221b41f66b2ae4875359d18d233f8dada9c7e5e3cc22440bbcd2bf22 + Translations and Locale for package xz + This package provides translations for package xz. + + http://tukaani.org/lzma/ + + + zip + aarch64 + + a5b95e716b7908cb68e49522ed9c98634bdf0109723ce7e9aa30d4b57f88ae1e + File compression program + Zip is a compression and file packaging utility. It is compatible with +PKZIP(tm) 2.04g (Phil Katz ZIP) for MS-DOS systems. + + http://www.info-zip.org/ + + + zip-docs + aarch64 + + 2b91306b8c8c4a9db804cf659daece5db878236e988ece187643adc2c679e6e7 + Documentation for package zip + This package provides documentation for package zip. + + http://www.info-zip.org/ + + + zlib + aarch64 + + 36590d678b8c1331214fc1f165d113c1158032e98b33676d89215813947719da + Data Compression Library + ftp://ds.internic.net/rfc/rfc1950.txt (zlib format), rfc1951.txt +(deflate format) and rfc1952.txt (gzip format). These documents are +also available in other formats from +ftp://ftp.uu.net/graphics/png/documents/zlib/zdoc-index.html. + + http://www.zlib.net/ + + + zlib-devel + aarch64 + + eeae9014de6a1376fd372e12403843ab6dd7cfd7adc8dd75756fe087ef68832f + Include Files and Libraries mandatory for Development + This package contains all necessary include files and libraries needed +to develop applications that require the provided includes and +libraries. + + http://www.zlib.net/ + + + zlib-devel-static + aarch64 + + cfce267ae5172c620a2e369ac0a6e848438e3ef62ba426fcd951c51283301359 + Include Files and Libraries mandatory for Development + This package contains all necessary include files and libraries needed +to develop applications that require the provided includes and +libraries. + + http://www.zlib.net/ + + \ No newline at end of file diff --git a/test/dependency_fixtures/base/repodata/79f630ff956a21776f70ff33e24821fa1823aec8b79f0513189a9960414b9622-primary.xml.gz b/test/dependency_fixtures/base/repodata/79f630ff956a21776f70ff33e24821fa1823aec8b79f0513189a9960414b9622-primary.xml.gz new file mode 100644 index 0000000..f07c11f Binary files /dev/null and b/test/dependency_fixtures/base/repodata/79f630ff956a21776f70ff33e24821fa1823aec8b79f0513189a9960414b9622-primary.xml.gz differ diff --git a/test/dependency_fixtures/base/repodata/repomd.xml b/test/dependency_fixtures/base/repodata/repomd.xml new file mode 100644 index 0000000..0ff85be --- /dev/null +++ b/test/dependency_fixtures/base/repodata/repomd.xml @@ -0,0 +1,63 @@ + + + 1480670821 + + 79f630ff956a21776f70ff33e24821fa1823aec8b79f0513189a9960414b9622 + a5cc73dcc6a34a01e23a0bd07d758d3b13a188cf9a3a6c2df3189fcbac0dc62b + + 1480670821 + 110999 + 777093 + + + f4166ffcf4fd899846dd17c29fbf5e89e8f40a778efebc705ee64e26be3e1464 + 7032cbe5b93d1380145b6e06b59d329bf462e674e89f67125d79338f6cbb5883 + + 1480670821 + 216629 + 2302827 + + + 00e67811e24a13fa3d30fbeefe2040232a915b42a4d38f74a6cff05daf80efcb + 896b9708b5c7d1df03ceb9c9812f2a5e9c01eb7abf044bef079214a74a8b2da0 + + 1480670821 + 34796 + 213399 + + + 271f3c91db5ec959c40e2f8996ca45965fdb82d8916823c0d8948fe3b62357a3 + 7afd149ba67edaab7b8dbe7bbadfebe818a86847b84bf455bb2811471efb37cd + + 1480670821 + 198416 + 813056 + 10 + + + 7b834e94d31b5a5c8825c9ff814a1f86b14badfb529a1176e8bd16544ac98393 + 892639a87ee252965a6b4f78e108adf0ce5478102f700f425d8b45df88e3d269 + + 1480670821 + 239629 + 954368 + 10 + + + ef14d62a92bf76bf2564ec9556103f65ecd26cfabe883da74168e7a0eda0911e + 5c3ddb74250ba91f25a7b7e4bb315bd6aa6379d8e1e956861e87c63678c1ff61 + + 1480670821 + 51237 + 193536 + 10 + + + 8a906a33e7376683fda99c7990a6100bf718ce1f94cbb6deffa8f4504697383f + c7d2d967cbfb4d9a93d547fc55201901cf70d3d05840fb2c672762fc78ff619f + + 1480670821 + 1934 + 5745 + + diff --git a/test/dependency_fixtures/mobile/repodata/2f5df56b9d899d2d42a4b26c11e34d89080bfab0538c4447a654953952a64551-primary.xml b/test/dependency_fixtures/mobile/repodata/2f5df56b9d899d2d42a4b26c11e34d89080bfab0538c4447a654953952a64551-primary.xml new file mode 100644 index 0000000..dd6aea4 --- /dev/null +++ b/test/dependency_fixtures/mobile/repodata/2f5df56b9d899d2d42a4b26c11e34d89080bfab0538c4447a654953952a64551-primary.xml @@ -0,0 +1,62451 @@ + + + + SDL2 + aarch64 + + 61e7273d65335b49938afb3df04dfc02957e3ec68e5aa951bc1712b87543a98d + Simple DirectMedia Layer + This is the Simple DirectMedia Layer, a generic API that provides low +level access to audio, keyboard, mouse, and display framebuffer across +multiple platforms. + + http://www.libsdl.org/ + + + SDL2-devel + aarch64 + + f8ffe53847adc8fae65aaab3b354b7aed57b8da47e662936f96d504526ef3ea0 + Libraries, includes and more to develop SDL applications. + This is the Simple DirectMedia Layer, a generic API that provides low +level access to audio, keyboard, mouse, and display framebuffer across +multiple platforms. + +This is the libraries, include files and other resources you can use +to develop SDL applications. + + http://www.libsdl.org/ + + + Vulkan-LoaderAndValidationLayers + aarch64 + + d4b09743ce8c5439aefe39d4df00184da8f4e26f40bdf52220e4715a272b242c + Khronos Vulkan Loader + Khronos Vulkan Loader and Tools + + + + + Vulkan-LoaderAndValidationLayers-devel + aarch64 + + 5cf51209e0ac326c870df22488a05f7b058603a65808170bf9872e5c9576c629 + Khronos Vulkan Loader + Khronos Vulkan Loader + + + + + account-common + aarch64 + + bf44c5337540e8050093af8c48fb624866944e8301d53704ad995168574e95d6 + Account common library + Account common libraryXB-Public-Package: no + + + + + account-common-devel + aarch64 + + dc372051bde79723d85247eb0a64062697c8137739a67dd8e88a1f2169701f35 + Development files for account-common + Development files for account-common + + + + + account-manager + aarch64 + + 6b77441dd18b074be121a00731254077ab32d43153e392f7da01ac20ee4d0280 + Account Manager + Account Daemon: no + + + + + account-parser + aarch64 + + 4abb547c192703bc87d374452cc7fb46894cc86743f1d050931ef95015f7e4cb + Account Parser Library + account parser C library of package manager to install account application. + + + + + alarm-server + aarch64 + + 17064c493a6712acec40b0a474da9dda49c32c9db29549f1e68fb09c6ad3c924 + Alarm server + Alarm Server, manages alarms + + + + + alsa-ucm-data-max98090 + noarch + + 90d3ab67e9a1854eba9d89f6943770fcf04f845b000cacd994583cb0ee30682f + ALSA UCM data pkg for MAXIM MAX98090 codec + ALSA UCM data for max98090 + + + + + alsa-ucm-data-wm5110 + noarch + + 15497d9b9043cc82e35a24714018811498c5f6516d46fb7b79b3f39a3f749a25 + ALSA UCM data pkg for WM5110 codec + ALSA UCM data for wm5110 + + + + + alsa-utils + aarch64 + + cc3f235aa43b017fa95ab3d2a857befac23cfaf73abd62930acb92e0d7b82d8f + Advanced Linux Sound Architecture (ALSA) utilities + This package contains command line utilities for the Advanced Linux Sound +Architecture (ALSA). + + http://www.alsa-project.org/ + + + alure + aarch64 + + 88a65177137fae5cddc8d03f1ec1a6bdf52e4dc3c961105478df0e827871f886 + File-loading and utility functions for OpenAL + ALURE is a utility library to help manage common tasks with OpenAL applications + + http://kcat.strangesoft.net/alure.html + + + alure-devel + aarch64 + + a3df5248993646361fd6590a707e26cbd0d0473fe85d34c579bc41bb00e33263 + Development files for alure + ALURE is a utility library to help manage common tasks with OpenAL applications + + http://kcat.strangesoft.net/alure.html + + + amd + aarch64 + + d1ca7f7049efe2ad516727ba1006a431ae6e6484506a3ff00e5c74cfb3e93803 + Application Management Daemon + Application management daemon + + + + + anthy + aarch64 + + aa1d3a8ec1d5cfbcb7c5dacce2ab41e6a28ac0ecea3dab3d514321b63ebb3e70 + A Japanese character input system library.(with dictionary) + A Japanese character input system library. + + http://www.sourceforge.jp/projects/anthy/ + + + anthy-devel + aarch64 + + 1d8a1e23d57b95e83609d4b631baa38e1b9e09eb0a6e863003b643b5aac99fc1 + Include Files and Libraries mandatory for Development + This package contains all necessary include files and libraries needed +to develop applications that require these. + + http://www.sourceforge.jp/projects/anthy/ + + + app-core-common + aarch64 + + e2bb7f4484f88d7006f3283b0190dbfa92cea53fba9014e4adb0f145c8025348 + App basics common + Application basics common + + + + + app-core-common-devel + aarch64 + + 21b7564456230afacdc12372935087861344bfc3cb718c8ce12e14d6bd505c66 + App basics common (devel) + Application basics common (devel) + + + + + app-core-efl + aarch64 + + 89c88662b9280cab57338e6bc712f44453edb2126d36ea55aeb6d88a49c03ccc + App basic EFL + Application basic EFL + + + + + app-core-efl-devel + aarch64 + + 2320a6ad418f887d4d0401127108b926d54fe5827246336a2a4ccae3315d9b91 + App basic EFL (devel) + Application basic EFL (devel) + + + + + app-installers + aarch64 + + 4a89568cdbe172ff0253786ec9be8c196e9caab4c5332b67eb98ab65df5b9dee + Application installers + This is a meta package that installs the common application +installers of Tizen. + + + + + app-installers-devel + aarch64 + + c9485824d48974d71c9a65cba6a35c3ba8f8e23ce8be3c2bff96879ab42fefc3 + App-installers development files + This package contains header files of app-installers common library + + + + + app-installers-tests + aarch64 + + a8b76a9b7f519c8926edae21ac0ebcaafa41dde63446093d709a8accefb8c624 + Unit tests for app-installers + Unit tests for al modules of app-installers + + + + + app-svc + aarch64 + + 4dff136a357e808b99270077841bb6065201fedf35365eeeef59816d3acbe4c4 + Application Service + Application Service + + + + + app-svc-devel + aarch64 + + fa69f29509b224ee9c207f2e7fe4bc803da0299f3a6701cfe2b0a3ce0e776a9d + App svc + This package contains all necessary include files and libraries needed +to develop applications that require app-svc. + + + + + app2sd + aarch64 + + e636a8e34fe9a9f8ed15628b8f87a83ac37b3851e0fde2f8c272f653734f1fe3 + Application installation on external memory + Tizen application installation on external memory + + + + + app2sd-devel + aarch64 + + b12a63028ef7b9ea074072ea307e0e24b046bc3529f231d2e029f83b72f720a4 + Application install on external memory (devel) + Tizen application installation on external memory (devel) + + + + + app2sd-test + aarch64 + + 8d2f173ebfc7ccf8a6e2cedb7d66d33ab39792e76648411091583e2bde7580c4 + Application install on external memory (test) + Tizen application installation on external memory (test) + + + + + appcore-agent + aarch64 + + b04dfc2498b705be8877fdc5282ace82379e9f81b0e4aa5d133c0bffed292230 + Service Application basic + Service Application basic + + + + + appcore-agent-devel + aarch64 + + 92f7e99a4c3a5b0f4668c5428d1f5c2eb03c69ddc9551570ca89f979d0e71b5c + Application Core Agent + appcore agent (developement files) + + + + + appcore-watch + aarch64 + + ca0f1b40aded76af76df3c2abc979a703e5048157a3406d6fb566edef332f858 + Watch Application + Watch application + + + + + appcore-watch-devel + aarch64 + + 772d8e126bfd5f7a7f7cd923b8444a9b9fe527a61ca1604940ecb09c22c6217e + appcore watch + appcore watch (developement files) + + + + + appcore-widget + aarch64 + + 8f39224f5294b88ac2ab25c6b91192efbd89d686c81f0dc9654e1b6645a7eb2a + Widget Application + Widget application + + + + + argos_watchdog + aarch64 + + 00b5cfb246465e71d81db935f9a61dd94fb393794c14dbc681b85cdb015e6159 + ARGOS library to detect application malfunctions + ARGOS library to detect application malfunctions + + + + + argos_watchdog-devel + aarch64 + + 86509f042cd51ce611cc166581c3b329628997bd5562d313dc5a658a846adda5 + ARGOS library to detect application malfunctions (Development) + ARGOS library to detect application malfunctions (devel) + + + + + arm64-tm2-linux-kernel + aarch64 + + 49e91b8c5f9b530704b1b6860e0e452abc4d4030b41d6effcab54de8acbdceba + Tizen kernel for tm2 + This package contains the Linux kernel for Tizen (mobile profile, arch arm64, target board tm2) + + https://www.kernel.org + + + arm64-tm2-linux-kernel-devel + aarch64 + + 446e5c13a276223a602054077ddd22cbf3086dac8e413f8470bcdc57465a7efb + Linux support kernel map and etc for other packages + This package provides kernel map and etc information. + + https://www.kernel.org + + + arm64-tm2-linux-kernel-headers + aarch64 + + 1614b24e35ef4460c4be8d9fe4f3bba11bcbb0501f543bf7a96eaaca9965045c + Linux support headers for userspace development + This package provides userspaces headers from the Linux kernel. These +headers are used by the installed headers for GNU glibc and other system + libraries. + + https://www.kernel.org + + + arm64-tm2-linux-kernel-modules + aarch64 + + 9332890fbae0fbb6083786ab107de8ae52f3b88ddbd16c7b0273dd629a3eb329 + Kernel modules for tm2 + Kernel-modules includes the loadable kernel modules(.ko files) for tm2 + + https://www.kernel.org + + + asciidoc + noarch + + d60aac20b764d13036e53aae13d93852e592953fbb9b9cbd19ce5bf15a0d755f + Text-Based Document Generation + AsciiDoc is a text document format for writing short documents, +articles, books, and UNIX man pages. AsciiDoc files can be translated +to HTML and DocBook markups using the asciidoc command. + + http://www.methods.co.nz/asciidoc/ + + + askuser + aarch64 + + 575e78d37b2db43d30f19e36b9fff9611fafe18198cb85720343a7ba646d378b + Agent service for Cynara 'ask user' policy + Daemon allowing user to grant or deny acces for given application and privilege + + + + + askuser-notification + aarch64 + + f9522d3dd9a1cd16b3832c90149dc274e0c7a0381e2a7e23781375e10e61a6f8 + User daemon which shows popup with privilege request + User daemon which shows popup with privilege request + + + + + askuser-plugins + aarch64 + + 696c1ffe00197806d55c9b63de570b3700dfbd50b527f72c10085bd3c8c0e6f0 + Askuser cynara plugins + Askuser plugin library with cynara service and client side plugins + + + + + askuser-test + aarch64 + + 6c8eeadfcda763bb673444ac83124bc978eaab91a8c19293e6161f4946c64f2c + Tool for testing askuser packages and unit tests for askuser + Tool for testing askuser packages and unit tests for askuser + + + + + aspell + aarch64 + + 271ce4d5880f8cdc04bb08d803790de8f78721f645c0e2adb86b9e2db3a0f9ea + A Free and Open Source Spell Checker + GNU Aspell is a spell checker designed to eventually replace Ispell. It +can be used as a library or as an independent spell checker. + +Its main feature is that it does a much better job of coming up with +possible suggestions than just about any other spell checker available +for the English language, including Ispell and Microsoft Word. It also +has many other technical enhancements over Ispell, such as using shared +memory for dictionaries and intelligently handling personal +dictionaries when more than one Aspell process is open at once. + + http://aspell.net/ + + + aspell-devel + aarch64 + + 588a2222afa5d679877997f70a42a1cc68bb3b207b70bc8c2a0b319171728110 + Include Files and Libraries Mandatory for Development with aspell + This package contains all necessary include files and libraries needed +to develop applications that require aspell. + + http://aspell.net/ + + + aspell-docs + aarch64 + + 4f2542820fc281a55aba67558680ef8ced2fb41b9967ce5d48536a6d6c8ec7ba + Documentation for package aspell + This package provides documentation for package aspell. + + http://aspell.net/ + + + aspell-ispell + aarch64 + + 4aee0be8b18952f83ea9ef8c56c05efb5d4154a9dfe6330b40eac1a89f69ffd5 + GNU Aspell - Ispell compatibility + GNU Aspell is a spell checker designed to eventually replace Ispell. It +can be used as a library or as an independent spell checker. + +This package contains an ispell script for compatibility reasons so that +programs that expect the "ispell" command will work correctly. + + http://aspell.net/ + + + aspell-spell + aarch64 + + e4ea6a21c9bba6b54147e2cd471e7f1b716efa4907f1a306ff3153ee40f0c82d + GNU Aspell - Spell compatibility + GNU Aspell is a spell checker designed to eventually replace Ispell. It +can be used as a library or as an independent spell checker. + +This package contains a spell script for compatibility reasons so that programs +that expect the "spell" command will work correctly. + + http://aspell.net/ + + + at-spi2-atk-devel + aarch64 + + 8228cd851cd6765cd62fa49aaedfe99e91d85d3b84f37cf6886efb14bd0d7f03 + Assistive Technology Service Provider Interface - Developent files + AT-SPI is a general interface for applications to make use of the +accessibility toolkit. This version is based on dbus. + + http://www.gnome.org/ + + + at-spi2-core + aarch64 + + ebbd9621c1a7661ffc80845046e0b6d7197ea91cd3bca48f5f5b2086d4c28e07 + Assistive Technology Service Provider Interface - D-Bus based implementation + AT-SPI is a general interface for applications to make use of the +accessibility toolkit. This version is based on dbus. + +This package contains the AT-SPI registry daemon. It provides a +mechanism for all assistive technologies to discover and interact +with applications running on the desktop. + + http://www.gnome.org/ + + + at-spi2-core-devel + aarch64 + + 6c685e7b5549e326d32cfb1e32e6ef16397d52451108ee9ea500137e1337e884 + Include Files and Libraries mandatory for Development + This package contains all necessary include files and libraries needed +to develop applications that require these. + + http://www.gnome.org/ + + + atk-devel + aarch64 + + 9fa564b7aeb6c4b7823eb571725c6d905e8404551d850a737eb15416895c2045 + Include Files and Libraries mandatory for Development + This package contains all necessary include files and libraries needed +to develop applications that require these. + + http://www.gtk.org/ + + + attach-panel + aarch64 + + 1370479e8ab8ad3a8df2b0a4a6de90ed588ea8a730a846a29433e98e03b9f077 + Attach Panel + Description: Attach Panel + + + + + attach-panel-camera + aarch64 + + 0bbfd9200f34f9e80d48fcc689f2c5aa74b6ab60683845c1d62856bcde48a7c2 + camera UX + Description: attach-panel-camera UG + + + + + attach-panel-devel + aarch64 + + 7cda51eceee9249ef6b79d08a5dcb8e02b0835797423e9610da7f89b4c90d83f + Attach panel library (devel) + Development files needed to build software that needs Attach panel. + + + + + attach-panel-document + aarch64 + + 6d5240ccc88a7f87fa4d1e1abc14178a3513e8788d0cb7be5f51d35ceb1f8021 + attach-panel-document UX + Description: attach-panel-document UG + + + + + attach-panel-gallery + aarch64 + + 7be3a61d386a0dda0a6703d40a9bb54adad53f1f630e00364649f9df393a1650 + attach-panel-gallery UX + Description: attach-panel-gallery UG + + + + + attach-panel-voicerecorder + aarch64 + + 23f1e5cc6726c06a50e604c2b67a347b7d5f1f2693c6cd08243cb291ca352379 + voicerecorder UX + Description: attach-panel-voicerecorder UG + + + + + audio-config-sc-TM1-sc7730 + noarch + + 942e67f5237452f9d13719243966745960189df5f42b10b406c8762e7d528fec + audio configuration files for TM1-sc7730 + audio configuration files for TM1-sc7730 + + + + + audio-config-sc-kiran3G-sc7727 + noarch + + 29ce7f345705fd39fdd23eeac2d1d0885956bd109e45b06424acd26f7b7359fa + audio configuration files for kiran-3G-sc7727 + audio configuration files for kiran-3G-sc7727 + + + + + audio-hal-emul + aarch64 + + 3cc8206ea24e2bbb7b957c6b924efeb26d35a543c03fe85074cea59279ee62cf + TIZEN Audio HAL for Emulator + TIZEN Audio HAL for Emulator + + http://tizen.org + + + audio-hal-sc7727 + aarch64 + + 3aa8a3bf872e2e62038ee215a4e81f769ecd9586766441649dd8d2c26ec8cea9 + TIZEN Audio HAL for SC7727 + TIZEN Audio HAL for SC7727 + + http://tizen.org + + + audio-hal-wm1831 + aarch64 + + 31eecbdd7a09ad40d444bdc3c80c32a5abbf6f312d1a2cc97ad067c7d2a4c063 + TIZEN Audio HAL for WM1831 + TIZEN Audio HAL for WM1831 + + http://tizen.org + + + audio-hal-wm5110 + aarch64 + + 27dada10992856878bdd05ac500a3a49009a5f602a326e77c84be0319e8b02de + TIZEN Audio HAL for WM5110 + TIZEN Audio HAL for WM5110 + + http://tizen.org + + + audio-session-manager + aarch64 + + 45a9960becaf8d4f13198edbd42e6637526bc53c61aa0e3534061dfbbbddcc6b + Audio Session Manager + Audio Session Manager package. + + + + + audio-session-manager-devel + aarch64 + + 600ae9d4eaf655d0b5bade62dc52d181a792b651b899a7ec05546876af35aa95 + Audio Session Manager package (devel) + Audio Session Manager package (devel) package. +This package contains all necessary include files and libraries needed +to develop applications that require audio-session-manager. + + + + + audio-session-manager-sdk-devel + aarch64 + + 55f40f9a3a5d58b153b660707b01dc208ef15a1d53b85e443d584eb6e613086f + Audio Session Manager development package for sdk release + Audio Session Manager development package for sdk release package. +This package contains all necessary include files and libraries needed +to develop applications that require audio-session-manager. + +SDK Release. + + + + + augeas + aarch64 + + b768dd5067648311981ee2d9e7e2e27c7e3d7d0b1046e14d9c366403900606ad + A library for changing configuration files + A library for programmatically editing configuration files. Augeas +parses configuration files into a tree structure, which it exposes +through its public API. Changes made through the API are written back +to the initially read files. + +The transformation works very hard to preserve comments and formatting +details. It is controlled by ``lens'' definitions that describe the +file format and the transformation into a tree. + + http://augeas.net/ + + + augeas-devel + aarch64 + + 4014baa8e5a32e5b86f55820ac4d0ad0ce97c814e117794e7e718bb9f73987d9 + A library for changing configuration files + A library for programmatically editing configuration files. Augeas +parses configuration files into a tree structure, which it exposes +through its public API. Changes made through the API are written back +to the initially read files. + +The transformation works very hard to preserve comments and formatting +details. It is controlled by ``lens'' definitions that describe the +file format and the transformation into a tree. + + http://augeas.net/ + + + augeas-docs + aarch64 + + 9eda79561e0ab7c363e7d9e5adfa36aa8924596e9cd3e38ec80871641122dd5e + Documentation for package augeas + This package provides documentation for package augeas. + + http://augeas.net/ + + + augeas-lense-tests + aarch64 + + ec698c00473e340179ce315980970e3d720810e7e40a06685a0026a2904325d3 + Set of tests for official Augeas lenses + Set of tests for official Augeas lenses. These can be used when +modifying the official lenses, or when creating new ones. + + http://augeas.net/ + + + augeas-lenses + aarch64 + + 1dd431c7bc167375b47eba5541193cee5bacadf4e482bb86ea00ed27a96db893 + Official set of lenses for use by libaugeas + Augeas parses configuration files described in lenses into a tree +structure, which it exposes through its public API. Lenses are the +building blocks of the file <-> tree transformation. The transformation +is controlled by ``lens'' definitions that describe the file format and +mapping of its contents into a tree. This package includes the official +set of lenses. + + http://augeas.net/ + + + aul + aarch64 + + ea1fa26bcb8d26f138a554a95841dd044ef78da574808291cf62323daa93cfc0 + App utility library + Application utility library + + + + + aul-devel + aarch64 + + dd884325225364b837dd916294ac4141e3cc4e14052fdf2ae2b8a2bc0de47f3e + App utility library (devel) + Application utility library (devel) + + + + + aul-test + aarch64 + + cfb89e40f67cfb606ee4792f38ce861254fa369ff60e991cb2c88d00e93e4160 + App utility test tools + Application utility library (test tools) + + + + + auth-fw + aarch64 + + af69f985c9d6dc5f839b4fa64bae906f95e1f1a8b63c7f33b83e59c4f5737b2d + Authentication framework + Authentication framework which is consist of client library and server daemon + + + + + auth-fw-cmd + aarch64 + + cebdc50bf7546a58515795d37ab8e02133e492842d739563e5d411ee37f72dba + Authentication framework utils + Authentication framework utils + + + + + badge + aarch64 + + c0b36f3cb13dd4db93481836f58c934bd49f0f4cde9cc4d23788107692b9241e + Badge library + Client/Server library for updating badge information + + + + + badge-devel + aarch64 + + b8c85ac97aa8d471c9194e0ef309226495a2922aeb1ac6ab18a68540b44b6d60 + Badge library (devel) + Development files needed to build software that needs to system a system badge. + + + + + bluetooth-agent + aarch64 + + 65666fd97f56ea8dd03c43cc65f0158cbc0db0e0be917d5aab39e08825c07ea9 + Bluetooth agent packages that support various external profiles + Bluetooth agent packages that support various external profiles + + + + + bluetooth-firmware-bcm + aarch64 + + fc58b46ae816410c37e3ed6b85c1c35589a68f38d39ebb5ac8231407e43ccd1e + firmware and tools for bluetooth + firmware and tools for bluetooth + + + + + bluetooth-firmware-bcm-artik + aarch64 + + 37fdd9a8543215bf6fa32a39533542203c66bc7712c80c844e2e4e6dce6b1645 + bcm firmware and tools for artik + bcm firmware and tools for artik + + + + + bluetooth-firmware-bcm-exynos3250 + aarch64 + + 5402cf5574a9e41dffe55b7fc3908abaee3e7a6983c52a7b6b94d4cf499920a4 + bcm firmware and tools for exynos3250 + bcm firmware and tools for exynos3250 + + + + + bluetooth-firmware-sprd-TM1 + aarch64 + + bca358cd333a6346d5ca2369d5c2604255405ef54060be5199a1d62f0b644947 + TM1 firmware and tools for bluetooth + firmware and tools for bluetooth for TM1 + + + + + bluetooth-frwk + aarch64 + + d9aac6e8496e7e699eb0c1760fcf9395796c23d11f253a8d1e689d5beef8c8f3 + Bluetooth framework for BlueZ and Obexd. This package is Bluetooth framework based on BlueZ and Obexd stack. + Bluetooth framework for BlueZ and Obexd. This package is Bluetooth framework based on BlueZ and Obexd stack. + This package contains API set for BT GAP, BT SDP, and BT RFCOMM. + + + + + bluetooth-frwk-core + aarch64 + + 3c5e5693129c6a0cb5823d8d5f89850f2384c6c24d14dc5dc323ff8b5577c708 + Bluetooth Core daemon + This package is Bluetooth core daemon to manage activation / deactivation. + + + + + bluetooth-frwk-devel + aarch64 + + da242328a9aa78752eb3a77ddda191e1214d25106a13f057618a848cf206122e + Bluetooth framework for BlueZ and Obexd + This package is development files for Bluetooth framework based on BlueZ and Obexd stack. +This package contains API set for BT GAP, BT SDP, and BT RFCOMM. + + + + + bluetooth-frwk-httpproxy + aarch64 + + 3a634caf75f206b6123e81a7677ec05a775d73cf6450c51d2571c79a787325af + Bluetooth HTTP Proxy Service daemon + This package is Bluetooth HTTP Proxy Service daemon + + + + + bluetooth-frwk-service + aarch64 + + 40a600174c9f5fb89c3de86da729f21211a43843180b5ce1be7cd555df3e87e6 + Bluetooth Service daemon + This package is Bluetooth Service daemon to manage BT services. + + + + + bluetooth-frwk-test + aarch64 + + f349aa703f8fc16073a882946ff2095941d2c5654e49abc92589d58cc82ec599 + Bluetooth test application + This package is Bluetooth test application. + + + + + bluetooth-share + aarch64 + + 89e58438ceb3d14074985f4c291b16b38bffd8e4a045f3692a2bc1221266a0ae + Bluetooth file share Agent + Bluetooth File Share Agent + + + + + bluetooth-tools + aarch64 + + df78de7799fd136d62cfbb21fd9d27ca9baba5615e76520f1873aa08d7c77089 + Bluetooth-tools + Tools fo bluetooth run/stop and set address + + + + + bluetooth-tools-no-firmware + aarch64 + + 6a354c60aaedaba00c4dc09e76a9fb18e34c4eef60eb37015f0c090f2da1bd29 + On/Off Bluetooth adapter + On/Off bluetooth device + + + + + bluez + aarch64 + + 098947c353945be3a8df7b4f9376ad52f9f199bbf9dcd54d7d604497aedab71f + Bluetooth Stack for Linux + The Bluetooth stack for Linux. + + http://www.bluez.org/ + + + bluez-devel + aarch64 + + 9275223564eb9709433fdb4cfffd534f7e711f9b2bc484262f1594db665b0dc7 + Files needed for BlueZ development + Files needed to develop applications for the BlueZ Bluetooth protocol +stack. + + http://www.bluez.org/ + + + bluez-docs + aarch64 + + dd727d31123b1517b30181ab45b2727497394f0787fc125e0edfe18427b5635d + Documentation for package bluez + This package provides documentation for package bluez. + + http://www.bluez.org/ + + + bluez-test + aarch64 + + b309a94483d081560f5ff18b3712f4ac9260f1df4b32588a5ad59a1001819dd9 + Tools for testing of various Bluetooth-functions + Contains a few tools for testing various bluetooth functions. The +BLUETOOTH trademarks are owned by Bluetooth SIG, Inc., U.S.A. + + http://www.bluez.org/ + + + bmap-tools + noarch + + a394d8ce14a72827198704707cc12fae2e2114652fbaa646f53949e3401fbd5e + Tools to generate block map (AKA bmap) and flash images using bmap + Bmap-tools - tools to generate block map (AKA bmap) and flash images using +bmap. Bmaptool is a generic tool for creating the block map (bmap) for a file, +and copying files using the block map. The idea is that large file containing +unused blocks, like raw system image files, can be copied or flashed a lot +faster with bmaptool than with traditional tools like "dd" or "cp". + + http://www.tizen.org + + + boost + aarch64 + + a077838fd8a2903aede56b75d612895712a831bb59b57f080591e7ab7962903b + Boost C++ Libraries + Boost provides free peer-reviewed portable C++ source libraries. The +emphasis is on libraries that work well with the C++ Standard Library. +One goal is to establish "existing practice" and provide reference +implementations so that the Boost libraries are suitable for eventual +standardization. Some of the libraries have already been proposed for +inclusion in the C++ Standards Committee's upcoming C++ Standard +Library Technical Report. + +Although Boost was begun by members of the C++ Standards Committee +Library Working Group, membership has expanded to include nearly two +thousand members of the C++ community at large. + +This package is mainly needed for updating from a prior version, the +dynamic libraries are found in their respective package. For development +using Boost, you also need the boost-devel package. For documentation, +see the boost-doc package. + + http://www.boost.org + + + boost-atomic + aarch64 + + c7ef366bac5b769e825fdd418c3540b7d012789f94afcf0eca0fb838450504a1 + Run-Time component of boost atomic library + Run-Time support for Boost.Atomic, a library that provides atomic data types +and operations on these data types, as well as memory ordering constraints +required for coordinating multiple threads through atomic variables. + + http://www.boost.org + + + boost-chrono + aarch64 + + 1bbbe362c70cf11f31aed81d2b71ad48c40e26e5b05a71d51c3fda33e51d1964 + The Boost::Chrono runtime library + This package contains the Boost::Chrono runtime library. + + http://www.boost.org + + + boost-container + aarch64 + + dc07466963a8f4d89d425cb835a55b59a0d6572bf16b268fa496b83e587832da + Boost::Container Runtime libraries + This package contains the Boost Container runtime libraries. + + http://www.boost.org + + + boost-date-time + aarch64 + + 88ff97bd32bfe3719ae7c4190f13d436ab8384c7c90399aac4f4eb5803be994d + Boost::Date.Time Runtime libraries + This package contains the Boost Date.Time runtime libraries. + + http://www.boost.org + + + boost-devel + aarch64 + + 145e55f69d72a4ebc3a8f348a6bd91605ff69e3c573127898a720a35ac277ac6 + Development package for Boost C++ + This package contains all that is needed to develop/compile +applications that use the Boost C++ libraries. For documentation see +the documentation packages (html, man or pdf). + + http://www.boost.org + + + boost-doc-html + noarch + + 9ba705f6c94026e2408817ec427490eb896cadbeab0888c7114b05a6ea1ee667 + HTML documentation for the Boost C++ Libraries + This package contains the documentation of the boost dynamic libraries +in HTML format. + + http://www.boost.org + + + boost-filesystem + aarch64 + + f8ce6220a3b81d045f33d94e8af7ff1b054dd0676c87cabb5e7a04d832926f97 + Boost::Filesystem Runtime Libraries + This package contains the Boost::Filesystem libraries. + + http://www.boost.org + + + boost-graph + aarch64 + + 6c85fcdd916e0d48388cd4bec8b437699065b3a1dcbc27a0684f4f5a391bd069 + Boost::Graph Runtime Libraries + This package contains the Boost::Graph Runtime libraries. + + http://www.boost.org + + + boost-iostreams + aarch64 + + ee20bd7f1b1b13ae35b079730f977aae321de5bcf8dade48f59a11c5ebc00343 + Boost::IOStreams Runtime Libraries + This package contains the Boost::IOStreams Runtime libraries. + + http://www.boost.org + + + boost-jam + aarch64 + + 47876148a2a105369936e5f4553ee62621dbf562f9a5ec45c765e9f9acd2aff6 + An Enhanced Make Replacement + Boost Jam is a build tool based on FTJam, which in turn is based on +Perforce Jam. It contains significant improvements made to facilitate +its use in the Boost Build System, but should be backward compatible +with Perforce Jam. + + http://www.boost.org/ + + + boost-license + noarch + + 6d18ebf714d6f12bf6cfde824e0d5ce08553e3bdc67b13886257c0c9927b5e21 + Boost License + This package contains the license boost is provided under. + + http://www.boost.org + + + boost-locale + aarch64 + + df8dce0bb4c020698eb4e1f1a6640ac3d6bd6f5910f9375a4578e0771664f2be + The Boost::Locale runtime library + This package contains the Boost::Locale runtime library. + + http://www.boost.org + + + boost-log + aarch64 + + 028cf9b30748e05e2a36a5c95cdd9d87089ff71a4762055261c328a3e54675b5 + Run-Time component of boost logging library + Boost.Log library aims to make logging significantly easier for the +application developer. It provides a wide range of out-of-the-box +tools along with public interfaces for extending the library. + + http://www.boost.org + + + boost-math + aarch64 + + a25d4665c95d3fb6af323d5cd2e3c6483bbbcd3a54fe75a2e4bdf9ce72e592fd + Boost::Math Runtime Libraries + This package contains the Boost::Math Runtime libraries. + + http://www.boost.org + + + boost-program-options + aarch64 + + 675c3bd13eb9af5413a1880282f74722010a2848318844f30da6d81f2c7840c7 + Boost::ProgramOptions Runtime libraries + This package contains the Boost::ProgramOptions Runtime libraries. + + http://www.boost.org + + + boost-python + aarch64 + + 29b28f398f217f50606c38bb38949f3b2b9d099aacaf675cfaca658732bbe708 + Boost::Python Runtime Libraries + This package contains the Boost::Python Runtime libraries. + + http://www.boost.org + + + boost-random + aarch64 + + b936f052f42d8c1af875325389a3d32bdc36fb0b0277d315f1edfdaa5c3289ea + The Boost::Random runtime library + This package contains the Boost::Random runtime library. + + http://www.boost.org + + + boost-regex + aarch64 + + 870a0e02a447720ffb6dbd00d05ff6f2497fdaaf8f684cea12e27182e461acb2 + The Boost::Regex runtime library + This package contains the Boost::Regex runtime library. + + http://www.boost.org + + + boost-serialization + aarch64 + + d768ede685b307ff5f8160c6c8089312d7ba692be1464e96a757ea5b7367bc32 + Boost::Serialization Runtime Libraries + This package contains the Boost::Serialization Runtime libraries. + + http://www.boost.org + + + boost-signals + aarch64 + + 2d3528160de5381b1b2411eab18035b1a38473ab1a9ec99d81872d8e1513aaca + Boost::Signals Runtime Libraries + This package contains the Boost::Signals Runtime libraries. + + http://www.boost.org + + + boost-system + aarch64 + + c634938bb36e563949922b1c959b5fefa4826ab842a5a6ce7afbfce25dbae710 + Boost::System Runtime Libraries + This package contains the Boost::System runtime libraries. + + http://www.boost.org + + + boost-test + aarch64 + + a10802fc7ff69a7bbbb4a3dfe96c3da21b9efb06ab0366ed5634615ad931b766 + Boost::Test Runtime Libraries + This package contains the Boost::Test runtime libraries. + + http://www.boost.org + + + boost-thread + aarch64 + + 87c4db8c8c25830c8bebb40bc8429b6866a2d4c1473047aa36f17da01c7f23e4 + Boost::Thread Runtime Libraries + This package contains the Boost::Thread runtime libraries. + + http://www.boost.org + + + boost-timer + aarch64 + + dbcf0c95bb495d9f7ac6dbfee3d7392d4a8ebc2b2cd05ee353de399efd9c470f + The Boost::Timer runtime library + This package contains the Boost::Timer runtime library. + + http://www.boost.org + + + boost-wave + aarch64 + + 89ffe1103ab95c7b8a909695904f48b45a2c4ffbf4c3a17547afcbfd23af7421 + Boost::Wave Runtime Libraries + This package contains the Boost::Wave runtime libraries. + + http://www.boost.org + + + boot-animation + aarch64 + + 98e849598da3c9f2998ca336d8bab8f3a3d1d1eee24999d1bc5c4567a26de9a8 + Boot animation + Shows an animation and plays a sound when the device is booted or shutdown. + + http://slp-source.sec.samsung.net + + + boot-animation-docs + aarch64 + + bd48f4da7306242cd5ba74635ddab407dd7cf6c5470fcd91a859e316e9231de4 + Documentation for package boot-animation + This package provides documentation for package boot-animation. + + http://slp-source.sec.samsung.net + + + browser-provider + aarch64 + + ab6863e2cd1926a8aa3f486821a1e719bea71d4f25b7897ac8414c64e43fd722 + sync in background. + Description: sync in background + + + + + browser-provider-devel + aarch64 + + beffb38a8750305da8a03ebf54d67beb2a05dff94d7757c5fb5a02848d67b5d3 + browser-provider + Description: sync in background (developement files) + + + + + brp-trim-desktopfiles + noarch + + 618d0e5aacb5af8d419cba37b5d6e6becc4e49b88a2b36a6596225f507ef62c9 + Trim translations from .deskop files + Trim translations from all .deskop files found in build root + + + + + btrfs-progs + aarch64 + + be01d2618064a81d1b977553fe7a7f01a4e13465387856bdd5ff8dcdbf1fdcb0 + Utilities for the Btrfs filesystem + Utilities needed to create and maintain btrfs file systems under Linux. + + http://btrfs.wiki.kernel.org/index.php/Main_Page + + + btrfs-progs-docs + aarch64 + + a64fae10a89d100ce07ec73b308b1c3c08ad84170fa6e910f30d004349344be8 + Documentation for package btrfs-progs + This package provides documentation for package btrfs-progs. + + http://btrfs.wiki.kernel.org/index.php/Main_Page + + + bundle + aarch64 + + d10098206d2c7ef7c0ba3a5dc6c2efc7c6828e18dc705bcc35616eb32d452373 + String key-val dictionary ADT + Simple string key-val dictionary ADT + + + + + bundle-devel + aarch64 + + 5fb8161d4a3b6e0656b1955cb5d28cbdaef9af37fa9bb10f10da8aec411774a8 + String key-val dictionary ADT (devel) + Simple string key-val dictionary ADT (devel) + + + + + buxton2 + aarch64 + + 57484942265b6fdf167503a509b7470e16dd995e032ab168b3bc609931283734 + A security-enabled configuration system + Buxton is a security-enabled configuration management system. It +features a layered approach to configuration storage, with each +layer containing key-value pairs. Mandatory Access Control (MAC) is +implemented at the key-value level. Cynara is used as default for MAC. + +Buxton provides a C library (libbuxton) for client applications to +use. Internally, buxton uses a daemon (buxtond) for processing +client requests and enforcing MAC. Also, a CLI (buxtonctl) is +provided for interactive use and for use in shell scripts. + + + + + buxton2-devel + aarch64 + + 1d79cabb8c3692aaab821c6063ef398415d2174601a659bfd7fb867ba39b3987 + A security-enabled configuration system - development files + Buxton is a security-enabled configuration management system. It +features a layered approach to configuration storage, with each +layer containing key-value pairs. Mandatory Access Control (MAC) is +implemented at the key-value level. Cynara is used as default for MAC. + +Buxton provides a C library (libbuxton) for client applications to +use. Internally, buxton uses a daemon (buxtond) for processing +client requests and enforcing MAC. Also, a CLI (buxtonctl) is +provided for interactive use and for use in shell scripts. + +This package provides development files for Buxton. + + + + + ca-certificates + noarch + + bed7a996c6828c040265a4422a00d049fde491870fb3426d7f52515e7393fdba + System wide CA certificates resource + Utilities for system wide CA certificate installation + + + + + ca-certificates-devel + noarch + + 40414d9cd7fadd2881765ce8eb0931d4fb657508e4f89a61c9273873c09db147 + Devel package of ca-certificates which contains RPM macros + ca-certificates devel package which contains RPM macros +for ca-bundle and ssl certs directory + + + + + ca-certificates-tizen + aarch64 + + 3bff471d91cd8146740a9eef7afe030bb0d96bd1030e8812fc8e777682a26794 + Tizen-specific CA certificate installation + Used for the installation of Tizen-specific CA certificates. + + http://www.tizen.org + + + ca-certificates-tizen-devel + aarch64 + + 52056d50b2bf1afd523bd01abf3f1ea4a3a2e06875d48511d50e2f59cf5ea448 + Devel package of ca-certificates-tizen which contains RPM macros + ca-certificates-tizen devel package which contains RPM macros for runtime revoked certs fingerprint + + http://www.tizen.org + + + cairo-devel + aarch64 + + e3a6583a90a8ef659fdc8f2ed7662c7e3986ae09c96222a69ec682b24f53c3f4 + Development environment for cairo + This package contains all files necessary to build binaries using +cairo. + + http://cairographics.org/ + + + calendar-service + aarch64 + + 167f4c2f4d305d9e991e7821040f3d6d56f75200dde5cab18cf6ce0fdfd4703f + DB library for calendar + Calendar Service for using Calendar DB + + + + + calendar-service-devel + aarch64 + + 6f93dde83c7d2f0fa69b26250008c516a5f92d24f9612cf12423472e6baeea6a + DB library for calendar + Calendar Service for using Calendar DB(development Kit) + + + + + call-manager + aarch64 + + 1b142205f5aa2dfecccbdf32cb6aa4bbeb8a5fa6fbeb8f195a22343ad01c40c0 + Call Manager + Call Manager Daemon + + + + + capi-appfw-alarm + aarch64 + + aacedbed84ba3f45b49f6cc3fa95d4f2b96a5b68b00852fc2808d19978b44dd5 + An Alarm library in SLP C API + An Alarm library in C API package. + + + + + capi-appfw-alarm-devel + aarch64 + + 34e75a04e4ca9e9f1d235f3730708b67b296fb3ee74cb120602d3a775926790d + An Alarm library in SLP C API (Development) + An Alarm library in C API (Development) package. + + + + + capi-appfw-app-manager + aarch64 + + 5590cb16c6ec25ecd439c6562c3ccc61476f60fe43fbdd4ad546591165316623 + Application Manager API + The Application Manager API provides functions to get information about running applications. + + + + + capi-appfw-app-manager-devel + aarch64 + + 2886c08015406f3cd82805bf54f4ebcfc0895c1ebe1cc93546a90b82867bb5a3 + Application Manager API (Development) + The Application Manager API provides functions to get information about running applications. (DEV) + + + + + capi-appfw-application + aarch64 + + 9080945dd4c8946375c143518e6106a234778f418fd5007be86f4cf9da4006ec + An Application library in SLP C API + An Application library in SLP C API package. + + + + + capi-appfw-application-devel + aarch64 + + e634cea80f111cfe37b2a480a348ac715fd8b6bfd7d026c23813d090308342fd + An Application library in SLP C API (Development) + An Application library in SLP C API (Development) package. + + + + + capi-appfw-package-manager + aarch64 + + 0f6f3887639fd4cac00400418a5e422b93664e128088c095aea6c724fed526d2 + Package Manager API + The Package Manager API provides functions to install, uninstall the package, +and also privides event listening function. + + + + + capi-appfw-package-manager-devel + aarch64 + + 5578f1b1de74610b4346ad8117bc81e6c896b2be12310be6557667f8e2498220 + Package Manager API (Development) + The Package Manager API provides functions to install, uninstall the package, +and also privides event listening function. (DEV) + + + + + capi-appfw-package-manager-test + aarch64 + + 9c886ccae2707ccb177f73f2d1d1861202af3f964a3411ef355660eeb33dda9c + Package Manager API (Test Tool) + This package includes test tool for package manager apis. + + + + + capi-appfw-service-application-devel + aarch64 + + 6f2a086a51aaa34eef11d42f8a880159dbcad1eeb231610c324dc3edff4440ce + service appliation + Service Application basic (developement files) + + + + + capi-appfw-watch-application-devel + aarch64 + + 51d8860fdd937fae7f2245ec6cd090c9a455e11e5e08b0f83099802c5de6de69 + watch appliation + watch application (developement files) + + + + + capi-appfw-widget-application-devel + aarch64 + + 262bb310bd5cd750c7669509663e17224dd6c6725220e92a0502f246db9fa61c + Widget application + widget application (development files) + + + + + capi-base-common + aarch64 + + 1421fe43abc75fe294bd76aa8c03eaf57e102106bcf2347d37599d5d594d584d + Common header files of Tizen Native API + Common header files of Tizen Native API + + + + + capi-base-common-devel + aarch64 + + f4fa2336281d3324bb547d5925042edfd739898c7821346e9323658968d4ec6c + Common header files of Tizen Native API (Development) + Common header files of Tizen Native API + + + + + capi-base-utils + aarch64 + + fd92f0a82335333baa6d6efcfe090e1278265fe083e90929279d7348ce46e18b + Base Utils + The base utils library for internationalization and localization + + + + + capi-base-utils-devel + aarch64 + + f90b4dde631231f2e87888c9fc6527995e474d04a60ba3c0eb71f44f681e9bba + The Base Utils Library (Development) + The base utils library for internationalization and localization (Development) + + + + + capi-base-utils-devel-support-deprecated + aarch64 + + 0d10be8aa59a6954d7e91f1df02bd7a3087d6b30cb1b3f30dda371d486530f9b + The Base Utils Library (Development) + The base utils library for internationalization and localization (Development) +with support of deprecated APIs for mobile/common/common-iot profiles in +Tizen 3. + + + + + capi-content-media-content + aarch64 + + d5505d901fb75d66cca973570f4ea910a2f5d49e064a67e944664092cc19a3b7 + A Media content library in Tizen Native API + A Media content library in Tizen Native API. + + + + + capi-content-media-content-devel + aarch64 + + 5dfef2bab7e759c82c2fc2df714c17c21292989543c1ccd69b398b9b0b403bf2 + A Media content library in Tizen Native API (Development) + A Media content library in Tizen Native API. (Development file included) +This package contains all necessary include files and libraries needed +to develop applications that require capi-content-media-content. + + + + + capi-content-mime-type + aarch64 + + 52b6b0af5e693204057fa239296326cf2c8b4848e5979b99946dbed45777b413 + A MIME type library in Tizen C API + + + + + + capi-content-mime-type-devel + aarch64 + + 5341d76b1c9d2f565483589bf435c7a12ccddecdaf6976346bb0cebf8428e2b0 + A MIME type library in Tizen C API (Development) + + + + + + capi-geofence-manager + aarch64 + + d3b979ffb18af8601cb49eb6f46698fde33613d0d00d41f84b6fd4b0c6f4e6ac + A Geofence Manager library in Tizen Native API + A Geofence Manager library in Tizen Native API + + + + + capi-geofence-manager-devel + aarch64 + + 8f98c1a753b7064a9d3923d69ecd3050efe85654b0ddfcd7df62ed048e4c4435 + A Geofence Manager library in Tizen Native API (Development) + A Geofence Manager library in Tizen Native API (Development) + + + + + capi-geofence-manager-plugin-devel + aarch64 + + 15abadb69e69aeef52648cf8b064a342c6d246c7aadfc6a220bca086efee8164 + Geofence Manager Plug-in (Development) + This provides interfaces for Geofence Manager plugin. + + + + + capi-location-manager + aarch64 + + b92408ac93c5eabba31b09cf9e3280c704f356929936f478fd1437e914c64344 + A Location Manager library in Tizen Native API + A Location Manager library in Tizen Native API + + + + + capi-location-manager-devel + aarch64 + + 6b8e6e2a0012f3f48d14f7d0d882eb71110e872690e8bf12896b23add9463f41 + A Location Manager library in Tizen Native API (Development) + A Location Manager library in Tizen Native API (Development) + + + + + capi-location-manager-test + aarch64 + + dbb3e8f0a3e413e7a4c8c9c7f9302a4832789b2c84b81be07431e21acd4fdccd + Test application of Location Manager + Test application of Location Manager + + + + + capi-maps-service + aarch64 + + 0643d65f71177ea5b016ea7d9dbc4febe653d42fdcb0c31fb81097fbb593df50 + Tizen Maps Service API + This provides the Tizen Map Service API to access and handle the map data. + + + + + capi-maps-service-devel + aarch64 + + e6e9a6e5b656b1adf8f316857aef1a9c74aa2ec7c0855ae0a2b7183891e5700f + Tizen Maps Service Library (Development) + This provides the Tizen Maps Service Library to access and handle the map data. (Development) + + + + + capi-maps-service-plugin-devel + aarch64 + + 1ef77b7a6127f2df8355ed4565ed7e394f3ce19a7490016b0bbd8a01b797fb15 + Tizen Maps Library for the Maps Service Plug-in (Development) + This provides the Tizen Map Service APIs to access and handle map data for the Maps Service Plug-in. (Development) + + + + + capi-media-audio-io + aarch64 + + e66ec6bac67b5640b8684fb22eba4daba9ed80179d7aa9c9c4775e42582d44a5 + An Audio Input & Audio Output library in Tizen Native API + An Audio Input & Audio Output library in Tizen Native API + + + + + capi-media-audio-io-devel + aarch64 + + 354171a8babeb85a7227c82cf8a4bb55d8c628877d2cc7536e22dfa16a878740 + An Audio Input & Audio Output library in Tizen Native API (Development) + An Audio Input & Audio Output library in Tizen Native API (DEV) + + + + + capi-media-camera + aarch64 + + 753f9bdf26da212c280d61b815aec7c2841bdfe13db59c60314715da9d96d672 + A Camera API + A Camera library in Tizen Native API. + + + + + capi-media-camera-devel + aarch64 + + 1397efd2c2ba6dcea71fc49080496624fb4defb2e8d08bc10706aaff0225e415 + A Camera API (Development) + Development related files for a Camera library in Tizen Native API. + + + + + capi-media-codec + aarch64 + + e8114e81e851eca149e5a7742328b8eef804869308979121c2f28d78de2ceb83 + A Media Codec library in Tizen Native API + + + + + + capi-media-codec-devel + aarch64 + + 169e181189696a4826c25e64b993e295a662009a0df528b84fb3543d368e6a63 + A Media Player library in Tizen Native API (Development) + + + + + + capi-media-controller + aarch64 + + ce9468cf9f678b1777f742811a53c3037f5bc2100b31100eabae25a2803cc895 + A media controller library in Tizen Native API + This package provides a media controller library in Tizen Native API + + + + + capi-media-controller-devel + aarch64 + + 5419cd5b6ec5155a78ecea768f7a4995a2051d1c18f9a2faf9689262b14a2e73 + A media controller library in Tizen Native API (Development) + This package provides a media controller library in Tizen Native API(Development files included) + + + + + capi-media-image-util + aarch64 + + 4b61acee7f6646df4c8697966b97a6b54b07c9e2a521fc90d6e5c5191a39b4fa + A Image Utility library in Tizen Native API + A Image Utility library in Tizen Native API package + + + + + capi-media-image-util-devel + aarch64 + + 2d7e50be257492e9713f8370a098213c13639a68a120a7db14d9a161857d907e + A Image Utility library in Tizen Native API (Development) + A Image Utility library in Tizen Native API (Development) package + + + + + capi-media-image-util-tool + aarch64 + + 3bff78631cecf2f1ab215f449c6f639006c70a9eb848ab95a5cf47c1aa61d03a + Image Utility tools + Image Utility Library - Tools. + + + + + capi-media-metadata-editor + aarch64 + + fa04c4ac4aa5e73f4f2d8cdfa84a1eefec8f2a73abd9fe3098988852055dbe67 + A metadata editor library in Tizen Native API + A media metadata editor library in Tizen Native API. + + + + + capi-media-metadata-editor-devel + aarch64 + + 12188731d296165b8cb262294f5b56883b475d59039d6f64fe2475e911ca168e + A metadata editor library in Tizen Native API (Development) + A media metadata editor library in Tizen Native API. (Development files included) + + + + + capi-media-metadata-extractor + aarch64 + + 25dcd358b22841131248e8e7e408859724da493920e5a7ec3b0c2613c531119b + A media metadata extractor library in Tizen Native API + A media metadata extractor library in Tizen Native API. + + + + + capi-media-metadata-extractor-devel + aarch64 + + d0f1c1a054b2af4decd4ac2bc1b09f19207bb04d1e46eaf75ad73c42326dc988 + A media metadata extractor library in Tizen Native API (Development) + A media metadata extractor library in Tizen Native API. (Development files included) + + + + + capi-media-player + aarch64 + + e135436c1fba2429c34b505b376aa7fdd3c93baf667f08f36715d8432fd03b86 + A Media Player API + A Media Player library in Tizen Native API. + + + + + capi-media-player-devel + aarch64 + + 331ed3a36f2b42cbdd88317547bd7cfafbc93fe1ee64c9c752155e8bb0532644 + A Media Player library in Tizen Native API (Development) + This package contains all necessary include files and libraries needed +to develop applications that require capi-media-player. + + + + + capi-media-radio + aarch64 + + 9a2d935582ebeac893755fb9dbe1b41764ac614ea1b41d53220bfe88a1490094 + A Radio library in Tizen Native API + A Radio library in Tizen Native API. + + + + + capi-media-radio-devel + aarch64 + + ec5292c7ea71c81a8d2ebb7205c4e18854ab5ca7e75c0e67a0e5509edbe290d6 + A Radio library in Tizen Native API (Development) + A Radio library in Tizen Native API (Development). + + + + + capi-media-recorder + aarch64 + + c796d715bfc3477f452c1b15b3fda6b6fe47caa26554da9942761fb3a5edf122 + A Recorder API + A Recorder library in Tizen Native API + + + + + capi-media-recorder-devel + aarch64 + + 5df74ddcd244ef611b7c8ad06923bcfa59a304d683fa972de247a26ba8d716da + A Recorder API (Development) + Development related files for a Recorder library in Tizen Native API. + + + + + capi-media-screen-mirroring + aarch64 + + 318afb24e240f780199228db75f452cd6dacca03fbca864414abba5417cb8883 + A screen mirroring library in Tizen C API + + + + + + capi-media-screen-mirroring-devel + aarch64 + + b9982fa8e73031cc9bf6fe30c0c8b4c8da89fd344659aff692b1355c58e5ec0b + A Screen Mirroring library in Tizen C API (Development) + + + + + + capi-media-sound-manager + aarch64 + + f3d1e9aa4de3693f784bc0d74416b054c2715fcc9997fba6f31a0bdbaec5e1d7 + Sound Manager library + A Sound Manager library in Tizen C API + + + + + capi-media-sound-manager-devel + aarch64 + + 635f48273e58902e3edbc1de64d55e65e57ab5c65fb6c447683efe7740acdfbb + Sound Manager library (Development) + A Sound Manager library in Tizen C API (DEV) + +This package contains all necessary include files and libraries needed +to develop applications that require capi-media-sound-manager. + + + + + capi-media-streamer + aarch64 + + 5ea67a6f9518d017389b00807989228c6a73bd7629bbddae7d54fd98029ebeea + A Media Streamer API + A MediaStreamer library in Tizen Native API. + + http://source.tizen.org + + + capi-media-streamer-devel + aarch64 + + 9dc69c0f40947aecc1cb28a74fafb4f6326b5e57b34eadf486d07e576e218611 + Multimedia Streamer API (Development) + MediaStreamer Library in Tizen Native API (DEV). + + http://source.tizen.org + + + capi-media-streamrecorder + aarch64 + + 16f4eb102c833cd642f0991d16a1c16a043af191a1394eb217b3582b3b9294de + A Streamrecorder library in Tizen Native API + A StreamRecorder library in Tizen Native API to record live buffer sent by the application + + + + + capi-media-streamrecorder-devel + aarch64 + + c65fb4f020e9253372ef6192a51fe30884152e8c80ee5219f1ea821799cde996 + A StreamRecorder library in Tizen Native API (Development) + A MediaStreamRecorder library in Tizen Native API Development Package to record live buffer + + + + + capi-media-thumbnail-util + aarch64 + + 00f76421e80ffe6637118024d4b0e9895bfed5dbf755ad14d75bd5b7af976131 + A media thumbnail util library in Tizen Native API + A media thumbnail util library in Tizen Native API. + + + + + capi-media-thumbnail-util-devel + aarch64 + + 65d7e1911f3d3a28587311e9ddc990a4916093131cadd6f7874133ddcae56ef4 + A media thumbnail util library in Tizen Native API (Development) + A media thumbnail util library in Tizen Native API. (Development files included) + + + + + capi-media-tone-player + aarch64 + + 4dd7469a7ae18be4c72b2edd91deda7e68b08ba9e15c96a837ebe98b1f580174 + A tone player library in Tizen C API + A tone player library in Tizen C API. + + + + + capi-media-tone-player-devel + aarch64 + + 843c18d085c44e78c598717547232c5c683bad67e08f51eaa2954092e6020cf4 + A tone player library in Tizen C API (Development) + This package contains all necessary include files and libraries needed +to develop applications that require capi-media-tone-player. + + + + + capi-media-tool + aarch64 + + ca898279b96e7cf9476343aa3dba896e82308e22664eee99ee287d391b67192e + A Core API media tool library in Tizen Native API + A Core API media tool library in Tizen Native API + + + + + capi-media-tool-devel + aarch64 + + f5efb4abf668326c515f39ed1074f0ed8cbaf4ab7e9dfc5543e49a9909467162 + A Core API media tool library in Tizen Native API (Development) + This package contains all necessary include files and libraries needed +to develop applications that require capi-media-tool. + + + + + capi-media-video-util + aarch64 + + e3b5b980f4ab8794e974a99e51aa34a348fb5a2d33b5e4ba8b61f81d69233cca + A Video Utility library in Tizen Native API + A Video Utility library in Tizen Native API + + + + + capi-media-video-util-devel + aarch64 + + f3d71df5ba92ac2ab5530bbefbdb8f285fffe20bb1ab96280e81e638cf1b286a + A Video Utility library in Tizen Native API (Developement) + A Video Utility library in Tizen Native API (Developement) + + + + + capi-media-vision + aarch64 + + 478a838aff69bb8b67281823308ff862e33920906f36dce7c1c9b044d86f2743 + Media Vision library for Tizen Native API + Media Vision library for Tizen Native API. Includes barcode detecting, barcode generating, face and image modules. + + + + + capi-media-vision-devel + aarch64 + + 6737706a49cf828af4d68b8298f4ff9ee94b2cf585905c578695df86f52bca4c + Multimedia Vision Library (DEV) + Media Vision library for Tizen Native API (DEV). Includes barcode detecting, barcode generating, face and image modules. + + + + + capi-media-wav-player + aarch64 + + 8eb6614b9829a3194c2b49a250a0832af05f1ed8fb6f283706b66bfb0f140806 + A wav player library in Tizen C API + A wav player library in Tizen C API. + + + + + capi-media-wav-player-devel + aarch64 + + ab837c6a5f9ed0e209e9d14d53fd473cf80c42dfd162f595212926128aba2803 + A wav player library in Tizen C API (Development) + This package contains all necessary include files and libraries needed +to develop applications that require capi-media-wav-player. + + + + + capi-mediademuxer + aarch64 + + 2328a9756c34c51aac3d18035589003c317268ecf2475db14ea0160558a7ade5 + A Media Demuxer library in Tizen Native API + + + + + + capi-mediademuxer-devel + aarch64 + + 631a121da5f10d0b5843ee369ed5504302039b52b838efca19028ef7a33fb842 + Multimedia Framework Demuxer Library (DEV) + + + + + + capi-mediamuxer + aarch64 + + 3fb1c8d2e4954c0a4d106820bfa5c00aafd0fb8eada41f656d76717f033fe0fa + A Media Muxer library in Tizen Native API + + + + + + capi-mediamuxer-devel + aarch64 + + 6efb781ba805800277c7f3a1a1822da9c3a07c04b42c0a35ae38b35cd7385060 + Multimedia Framework Muxer Library (DEV) + + + + + + capi-messaging-email + aarch64 + + 0669be5a8df00fa897ebc06502728bbe064aef38b575339e0b4060227cb0bd8a + Email library in Tizen Native API + Email library in Tizen Native API. + + + + + capi-messaging-email-devel + aarch64 + + 432c7f0164c2313c9a5b95ce66d310466547eee73fac0623cd4fd6e2df6aca96 + Email library in Tizen Native API (Development) + This package contains all necessary include files and libraries needed +to develop applications that require capi-messaging-email. + + + + + capi-messaging-messages + aarch64 + + a2292724901e9ed72115d2e9384e0fe869b5fb088f99257e65c0f8504ead4d8e + A SMS/MMS library in Tizen Native API + + + + + + capi-messaging-messages-devel + aarch64 + + d185d28abbad08fc84172e896a4e68483088a05ef55c1c63ecb48d5998a45198 + A SMS/MMS library in Tizen Native API (Development) + + + + + + capi-network-bluetooth + aarch64 + + 3b6d8a19a089d732f86c22c6630c97c0a7ce723797001d415d87d16178788318 + Network Bluetooth Framework + Network Bluetooth Framework + + + + + capi-network-bluetooth-devel + aarch64 + + 5e4c2f8de79980e8a18835f84d625eca22049dba3b4e0cef4ab0038a107dcfe2 + Network Bluetooth Framework (DEV) + Network Bluetooth Framework. + +This package contains all necessary include files and libraries needed +to develop applications that require capi-network-bluetooth. + + + + + capi-network-bluetooth-test + aarch64 + + aa378d4c834cfb83c0e3d50bcb469a3044b767228984db96adc634457f70260c + Network Bluetooth Framework test application + This package is C-API test application. + + + + + capi-network-connection + aarch64 + + 10e42bb227e6b8513da9c2852a445ade568e907f524afa18a3ac160988daf8fb + Network Connection library in TIZEN C API + Network Connection library in Tizen C API + + + + + capi-network-connection-devel + aarch64 + + de0e4d42f13f18a0b2580b37d77cccc8abef3b73b303185b571c9999efc9e6e9 + Network Connection library in Tizen C API (Development) + Network Connection library in Tizen C API (Development) + + + + + capi-network-http + aarch64 + + 696e9d16b309a47caf598fe5697ec071227506146e4ffe5e0755f2344da2320b + Http Framework + Http framework library for CAPI + + + + + capi-network-http-devel + aarch64 + + d83802d93c2b5beda86b201315ba3020dcf1c3c06fc58b4018995c2fb8dac807 + Development package for Http framework library + Development package for Http framework library + + + + + capi-network-mtp + aarch64 + + 2c9231db2f5b97f6b8d7b320441021be22ed5167d224d517cf3158a5e0d58a55 + A MTP library in Native API + + + + + + capi-network-mtp-devel + aarch64 + + 6444536cb8cfbfcd1f4beedd154faf2754a334fbd7bfb74e68891b52e12f837b + A MTP library in Native API (Development) + + + + + + capi-network-nfc + aarch64 + + abdd889a409a60e25792d7d02ac9ecbf82f824ccebefc71a2e0c7194742fd8d8 + A NFC library in Native API + A library for Tizen NFC Native API. + + + + + capi-network-nfc-devel + aarch64 + + 113c21c0d5954170abdf505deb26412d1e80da49cdc233a962e5d231a2b6434a + A NFC library in Native API (Development) + This package contains the development files for capi-network-nfc. + + + + + capi-network-nsd + aarch64 + + ae6a870ee3e3a70cf2ad4e39c26b5ce10e40485010f404fefc9420296777c770 + A Network Service Discovery libraries in Native API + NSD library in Tizen C API This package provides both SSDP and +DNS-SD Tizen C API + + + + + capi-network-nsd-devel + aarch64 + + 5c294349e889eea9c54ac95f7739ecbe0d3dac568108f9f20425d47a46e138a7 + A NSD library in Native API (Development) + Netowrk Service Discovery library in Tizen C API development files + + + + + capi-network-nsd-tests + aarch64 + + d38ae71be409809da827c048adb3d190f81566e8f785178d25fca3806814094f + NSD - NSD test binaries + NSD tests for both DNS-SD and SSDP Tizen C API + + + + + capi-network-serial + aarch64 + + 5db7936ae4224edf9823f8187439cf82abaeda04fe5daa771935146d1d408b93 + Network Serial Framework + Network Serial Framework + + + + + capi-network-serial-devel + aarch64 + + e3eb339031d3d5129673380c8dee11ff11edb7dbc9192a016d70127377d879aa + Network Serial Framework (DEV) + Network Serial Framework (DEV). + + + + + capi-network-smartcard + aarch64 + + 6960893fd68a8bc73a94e5952baedd5c5703b7cb4c2793177d4ee20c29a6c6c5 + A Smartcard library in Native API + + + + + + capi-network-smartcard-devel + aarch64 + + 67b5e1ea694e6fc94d572e70a2dd557d84514fd6e2ff457abe53cd8d67f491f6 + A Smartcard library in Native API (Development) + + + + + + capi-network-softap + aarch64 + + ee8b6ebd401d631b2962a76de6560e467b97cd77b278afacaad3d5fd7ede727f + Softap Framework + Soft AP framework library for CAPI + + + + + capi-network-softap-devel + aarch64 + + 5b5b0875936a9033c4fb8bfe497c7b58defac743703acc08bd805d9995265151 + Development package for Soft AP framework library + Development package for Tethering framework library + + + + + capi-network-tethering + aarch64 + + 19b0bf5f43c09c5a3ef1bb532ae3c8035189faa29584d472bf6431dc69507bfe + Tethering Framework + Tethering framework library for CAPI + + + + + capi-network-tethering-devel + aarch64 + + 6dbb57f40a4ddfe83c898d4466954c9295fbd584bff424d587721ab818493f12 + Development package for Tethering framework library + Development package for Tethering framework library + + + + + capi-network-vpn-setting + aarch64 + + 0358422a6e93dd1d30b6937147a9c5a48e0ca3b5425e567ccfca95e5b3fdc93f + Default VPN Library + Library code for CAPI's to interact with the Default VPN functionality on TIZEN platform. + + + + + capi-network-vpn-setting-devel + aarch64 + + 7773e1e72c634bbc486987e30cf84ad0cd70886151e50b04ca0f435c9114dd52 + Default VPN Development Package + Development Library for Default VPN functionality on TIZEN platform. + + + + + capi-network-vpn-setting-test + aarch64 + + 52293bffe19312424401b754af34aa5e0826f7d24389c87cfe4079e5995a8ac0 + Default VPN Test Package + Test cases for Default VPN Functionality on TIZEN platform. + + + + + capi-network-wifi + aarch64 + + 68c32005219f1567a071b1320bb5dad6549637458aa8a644b1fe9100915886c6 + Network Wi-Fi library in TIZEN C API + Network Wi-Fi library in Tizen C API + + + + + capi-network-wifi-devel + aarch64 + + 7d40a83b4fdfca294e3bca2e3f04350427cc4132442de2af17c8f7a5808f3145 + Network Wi-Fi library in Tizen C API (Development) + Network Wi-Fi library in Tizen C API (Development) + + + + + capi-network-wifi-direct + aarch64 + + c491571803d79addb74400325d70b320c364d0ff28f32a01bc00aeba54efc6cc + Network WiFi-Direct Library + Network WiFi-Direct library in Tizen CAPI (Shared Library) + + + + + capi-network-wifi-direct-devel + aarch64 + + 0eea395e6878084fb4561e397f311d8811ea93c475e9e780feed680cf90ec6e7 + Network WiFi-Direct Library (Development) + Network WiFi-Direct library in Tizen CAPI (Shared Library) (Development) + + + + + capi-network-wifi-manager + aarch64 + + 5ff2e6f51390bc6f7ebe5606753b217f7cf151a416ca9bd369926677a407b21f + Network Wi-Fi library in TIZEN C API + Network Wi-Fi Manager library in Tizen C API + + + + + capi-network-wifi-manager-devel + aarch64 + + 6a3db39ba655b26d79f3e78c06c56b6e508e9738f9ce0bf10ac37311d134aef6 + Network Wi-Fi Manager library in Tizen C API (Development) + Network Wi-Fi Manager library in Tizen C API (Development) + + + + + capi-system-device + aarch64 + + 53618063ff87b684e999db56ce136c0bda701d3c28e58452ff7fa9b9631ce957 + A Device library in TIZEN C API + A Device library in TIZEN C API package. + + + + + capi-system-device-devel + aarch64 + + b9a67935e13862e6c62b7ac8149f48937f78119bd203afe9af17ed364445f6cd + A Device library in TIZEN C API (Development) + A Device library in TIZEN C API (Development) package. +This package contains all necessary include files and libraries needed +to develop applications that require capi-system-device. + + + + + capi-system-info + aarch64 + + 83170220615818aee2f6ff39deee834d5badcb2a4a107826c2a9441ffacc58e2 + A System Information library in Core API + + + + + + capi-system-info-devel + aarch64 + + afd77e6d3ae85ce05ad9b02b913a3e32848b0b9839e53043b06be183787f4faf + A System Information library in Core API (Development) + + + + + + capi-system-media-key + aarch64 + + 9eca0733bbf8cd173aaf7e7ce3fd81515face665a2a01b8b452269261db5e18e + A System Information library in SLP C API + A System Information library in SLP C API. + + + + + capi-system-media-key-devel + aarch64 + + a542d8e781a96a9bbe3d9a5ca2e1a7d61a89788cd3758f527f617158e8ca94e8 + A Media Key library in SLP C API (Development) + This package contains all necessary include files and libraries needed +to develop applications that require capi-system-media-key. + + + + + capi-system-runtime-info + aarch64 + + bd7cf13152e5a91259717cfcf7b5295c2815c19d9828b439f3fb329df30351b3 + A Runtime Information library in Core API + + + + + + capi-system-runtime-info-devel + aarch64 + + d79cea77e2ff8c43cbc7db890ad8af39c8f6fe540a2331fc606942886f57b167 + A Runtime Information library in Core API (Development) + This package contains all necessary include files and libraries needed +to develop applications that require capi-system-runtime-info. + + + + + capi-system-sensor + aarch64 + + 0082819244cfab330c0f4354ceb1784120a253a416e3f836a450cdf5f898879f + A Sensor library in TIZEN C API + A Sensor Library in TIZEN C API package. + + + + + capi-system-sensor-devel + aarch64 + + 075c1fc56598611c97e0d9558f4f06cc6c3c5d6f36a5d29472e04d0087e7a6d2 + A Sensor library in TIZEN C API (Development) + A Sensor library in TIZEN C API package (Development). +This package contains all necessary include files and libraries needed +to develop applications that require capi-system-sensor. + + + + + capi-system-system-settings + aarch64 + + 5b1dd94ad8d91e472f750ca66b59d98b3c8422eb26319f7199b879c613e8c310 + A System Settings library in Tizen Native API + System setting api for get,set configuration + + + + + capi-system-system-settings-devel + aarch64 + + 0910398ca54e4066848bb8b9fac61d58ab09337ea67f001299a2a9b1175e710c + A System Settings library in Tizen Native API (Development) + System setting api for get,set configuration + + + + + capi-system-usbhost + aarch64 + + e999ff4d58ed6f28e006ec57d57a41b94217d208a13483363b7f39620bed6e92 + RAW USB host API + Usb-host is a librarary for raw communication with USB devices. + + + + + capi-system-usbhost-devel + aarch64 + + 0a326febcc7b77745dbf8227f9cbbc6531e28a6fc34aca9e8454c24fb78e4757 + RAW USB host API + Development package for capi-system-usbhost. Contains headers and binaries required for +compilation of applications which use capi-system-usbhost. + + + + + capi-telephony + aarch64 + + 16d694d2f877dd69a7eaee7db98004cc7206b1f573bac86bf3f8838535c50580 + Telephony Core API + Telephony public API library + + + + + capi-telephony-devel + aarch64 + + 56c41ceb485a50b4ace526df0808542648695933d02a252faf21a4750ad002c7 + Telephony Core API + Telephony public API library (development library) + + + + + capi-ui-efl-util + aarch64 + + a04f5da1208d367931cc05fdceb6874bc8435cdff6843cf41540d348855e7369 + An EFL utility library in Tizen C API + An EFL utility library in SLP C API. + + + + + capi-ui-efl-util-devel + aarch64 + + 05abc02809aa1cce8f70ffb67ff93e38d070e36b6337dcd1f20d55a1f56d6a48 + An EFL utility library in Tizen C API (Development) + This package contains all necessary include files and libraries needed +to develop applications that require capi-ui-efl-util. + + + + + capi-ui-inputmethod + aarch64 + + 4b24bed288a2612c1d150e30442319ed5ce12acad75a2c6f6a4b7461cd7edfa7 + Input Method Library + Input Method Library + + + + + capi-ui-inputmethod-devel + aarch64 + + 323486117b5672f2a3c17d0e06928cc0c85113b923a24a907beead29c1e63e8d + Input Method Library (Development) + Input Method Library (Development) + + + + + capi-ui-inputmethod-manager + aarch64 + + 919300c7de5711ca10ba06070c6b432c5c0959a7a2546525246a155a0cdb9de6 + Input Method Manager Library + Input Method Manager Library + + + + + capi-ui-inputmethod-manager-devel + aarch64 + + 87fbdc7ff634b63e26d6b6785e8acfcf991fd6ab616ff0d880a612f72e218b61 + Input Method Manager Library (Development) + Input Method Manager Library (Development) + + + + + capi-vpnsvc + aarch64 + + 9c5ba8e2392be2aff83f71e59c699e7a8dacfd549643ad5234f90d3bce0b610a + VPN service library in TIZEN C API + capi-vpnsvc CAPI package + + N/A + + + capi-vpnsvc-devel + aarch64 + + 2655ea7b99a5f595e2dd5eb63aeb93a03334eb1c81a675dedc9729c4a8856379 + VPN service library in TIZEN C API (Development) + capi-vpnsvc CAPI devel package + + N/A + + + capi-web-favorites + aarch64 + + a0ae1f151cc178ded291b419425a655e603958b770b28025519bc0ffee6ffe7f + Internet bookmark and history API + API for Internet Bookmarks and History + + + + + capi-web-favorites-devel + aarch64 + + 9695d8897c11af331592c1be0f47904c89fa710fe9a11b505157f04cb8fdfbd5 + Internet Bookmark and History in Tizen Native API (Development) + Development package for favorites API. Favorites API provides teh framework for bookmarks and history + + + + + capi-web-url-download + aarch64 + + 04324473f252972e604801076083fc46346583691c9f7f4b0190d1393c99405c + CAPI for content download with web url + CAPI for the content download + + N/A + + + capi-web-url-download-devel + aarch64 + + a81f34f330b3c0bff1a0acd5bd21dccc72159db1bb4ef1d02dc0a7385f27d646 + url download + CAPI for content downloading with web url (developement files) + + N/A + + + cbhm + aarch64 + + 190bf299fda5d9a141f8e251c3ef30d8c117b28f4b5c3998d7e671f45b9e0db4 + Clipboard History Manager + Tizen Clipboard History Manager Service + + http://www.samsung.com/ + + + cbhm-devel + aarch64 + + d22a0aa555a0215c147469e42d29acad925f9297ebc6f8f51b5fdd5ded6eb2af + Library for Tizen Clipboard History Manager (Development) + Tizen Clipboard History Manager Service development kit + + http://www.samsung.com/ + + + cert-checker + aarch64 + + 991b9f529d5fc2490ef57e188ab70c2701d66821551c23256a8a9de0c7f55e15 + OCSP checking on application installation + Check OCSP validation at app install/uninstall time. + + + + + cert-checker-devel + aarch64 + + 6229e8b55ba5bc8eafe45f517edf752ad388b93045a6eb3063bad68f4e3e379e + Development files for cert-checker + cert-checker development files. + + + + + cert-checker-tests + aarch64 + + c44bbaf6da2afbdde4d3aa0867cc4cd625d998c113e54bf3bf0fe848eb4f34fe + Internal test for cert-checker + Internal test for cert-checker implementation. + + + + + cert-svc + aarch64 + + beff39c9af9fe13e818d2ad88e6dddf0cd3a66c58e936cf434d19fb3ccafa08a + Certification service + Certification service + + + + + cert-svc-devel + aarch64 + + 46f13b1501077bb6c94e90145ff59334268e2e31f763056259cb705fa4bc96e7 + Certification service (development files) + Certification service (development files) + + + + + cert-svc-ui + aarch64 + + aab808f13f49452bfeba1a9128aa6969f9e2585b5438be800ed325d7d6c2a22f + Certification service ui gadget + Certification service + + + + + check + aarch64 + + ba54c2457df48fc11296fac9e7fc6bab78e5e11d60ebf0d9d68ac19fe8525162 + Unit Test Framework for C + Check is a unit test framework for C. It features a simple interfacefor +defining unit tests, limitating the developer the less possible. Tests +are run in a separate address space, so Check cancatch both, assertion +failures and code errors that cause segmentationfaults or other +signals. The output of unit tests can be used within source code +editors and IDEs. + + http://check.sourceforge.net/ + + + check-devel + aarch64 + + fb97f485600fdf8b41f0c846cb14de47646f71696dddf59f74253b6e5aa2dd84 + Unit Test Framework for C + Check is a unit test framework for C. It features a simple interface +for defining unit tests, putting little in the way of the developer. +Tests are run in a separate address space, so Check can catch both +assertion failures and code errors that cause segmentation faults or +other signals. The output from unit tests can be used within source +code editors and IDEs. + + http://check.sourceforge.net/ + + + chromium-efl + aarch64 + + 3c9e88b9593805bd13dc65c5c7fba58585a46fa12d25ce0d1b0fd47656604dbe + Chromium EFL + Browser Engine based on Chromium EFL (Shared Library) + + + + + chromium-efl-devel + aarch64 + + d4773c47e6f48465d4781c1e3aa31e4e4eb6d23941c4208c56ec771c30bb22d3 + Chromium EFL + Browser Engine dev library based on Chromium EFL (development files) + + + + + com.samsung.dali-demo + aarch64 + + e81c86713bbfba424edde903669a0ba6b381169d28587dca9fc08b2139aaca44 + The OpenGLES Canvas Core Demo + The OpenGLES Canvas Core Demo is a collection of examples and demonstrations +of the capability of the toolkit. + + https://review.tizen.org/git/?p=platform/core/uifw/dali-demo.git;a=summary + + + connman + aarch64 + + 669ce2f41079a93d20d986db0d776fa4c36aa8eb96675a26f36ced1f80ed747d + Connection Manager + Connection Manager provides a daemon for managing Internet connections +within embedded devices running the Linux operating system. + + http://connman.net + + + connman-connman-vpnd + aarch64 + + d28acd71768df3b0022fe33e6a92951b1152fc3e4546afda5fed55183a080023 + VPN Support for Connman + Provides VPN support for Connman + + http://connman.net + + + connman-devel + aarch64 + + 84add5fda9c3a08ea8a3ba6235bb134d8828000a6fb2d79351ae7e05fd53711d + Development Files for connman + Header files and development files for connman. + + http://connman.net + + + connman-docs + aarch64 + + 12c4b46704c598bde5588a8693af1b06314db0a2aff2729cee1500dd5ca22270 + Documentation for package connman + This package provides documentation for package connman. + + http://connman.net + + + connman-plugin-openvpn + aarch64 + + 86bf5a7aea9b73a79893311cb073c788c96a966f8fc3a6cbf455b5b1559104ff + Openvpn Support for Connman + OpenVPN support for Connman. + + http://connman.net + + + connman-test + aarch64 + + 85bf94712d4c20255531e665577dcb44271a8b7a2f1399041620fcb8c2c0330b + Test Scripts for Connection Manager + Scripts for testing Connman and its functionality + + http://connman.net + + + contacts-service2 + aarch64 + + 95c5d5d98659407dff22116d59b0ddea3a6f1272f1b52e6f3a2c267bf58f99f1 + New Contacts service library + New Contact Serivce 2 Client Library + + + + + contacts-service2-devel + aarch64 + + c3ba3802ad5f8da117a031bc46849bfb0cf2af4642f9bdf6d6fe511930ea1a9c + New Contacts Service(devel) + New Contacts Service Library (devel) files + + + + + contacts-service2-test + aarch64 + + ae699a9b82c4e5dab780af842a00755c004b9ee0c6d37232f4bd2b5e4cf13d1a + New Contacts Service(test) + New Contacts Service Test Program + + + + + context + aarch64 + + ea8e68b45ea1381be5dfc8d98d92379b423c59f237583b3d06dff10b0774ce43 + Tizen Context Framework Native API + Tizen Context Framework Native API + + + + + context-common + aarch64 + + 9f5918181b784f88ed8f9732b35427522bed7d3eade5f07b6bdf98d6efe46959 + Context-Service Shared Library + Context-Service Shared Library + + + + + context-common-devel + aarch64 + + 93482c64d17a819ba1a9220551e006a2f785a21eaa946731c79276b8c2cc0b28 + Context-Service Shared Library (Development) + Context-Service Shared Library (DEV) + + + + + context-devel + aarch64 + + ea0984ad67e52ba6aa7fab8eaa82e732bf728ddf702fa70bdcf9b839033db4ef + Tizen Context Framework Native API (Development) + Tizen Context Framework Native API (Development) + + + + + context-provider + aarch64 + + 26c3e25c9cc6625f05eed04232714646f0102069fb25987435936ceb5f19bcc0 + Context Provider + Context Provider + + + + + context-provider-devel + aarch64 + + 35f7f5f24ef6b4baa54d98f1e842d6ebad5ac12be01e15f366faadaf685d53c5 + Context Provider Shared Header (Development) + Context Provider Shared Header (DEV) + + + + + context-service + aarch64 + + 92272d3dd04477bde5e3fbb4cfc99505c2fba4c43b4f27ebbfdf6fed517dc95e + Context-Service + Context-Service + + + + + context-test + aarch64 + + 4b506e55291915ebd22fc3bf000ecf9034defbd5272c1eff89e7e4ec2b81a556 + Tizen Context Framework Testsuite + Tizen Context Framework Testsuite + + + + + cordova-api + aarch64 + + 4a5c832e6e000b056fc1d5e838aa7f2f08ac33be8a0a5f7e7cc027d9e75d7823 + Cordova API using Tizen plugins + Cordova API using Tizen plugins. + + + + + coregl + aarch64 + + 0bc74841c09a72aa836495857090178ff2541f04a1e9af5c41205b8588eb8293 + CoreGL FastPath Optimization + CoreGL provides the following capabilities: +- Support for driver-independent optimization (FastPath) +- EGL/OpenGL ES debugging +- Performance logging + +Supported versions: +- EGL 1.4 +- OpenGL ES 2.0, 3.0, 3.1 + + http://www.tizen.org + + + coregl-devel + aarch64 + + 7208ffe9d2a68074b579e9fd05542100c870614db0d22359e6fcbea79f699c69 + Development files for EGL 1.4 and OpenGL ES 1.1 and 2.0 + This package contains the development libraries and header files needed by +packages that requires OpenGL ES 1.1 or 2.0 acceleration. + + http://www.tizen.org + + + crash-worker + aarch64 + + cb8a70aef9bcbbdbc020c684dc693387224d83235c4fa975247cd218788acec7 + Crash-manager + crash-manager + + + + + crosswalk-tizen + aarch64 + + 1ec55dbfbca1aba219d8eed1ddc6f8bb82d7a76bfeb2da837005260b5ca42b7f + Crosswalk Runtime and AppShell for Tizen + Crosswalk Runtime and AppShell for Tizen 3.0 and later + + https://www.tizen.org + + + cryptsetup + aarch64 + + e27e37adb2443160ca80c51e6b68901d817a81a9bfdae08cfa4ce84fd7e50a3b + The cryptsetup + setup cryptographic volumes for dm-crypt (including LUKS extension) + + http://code.google.com/p/cryptsetup/ + + + cryptsetup-devel + aarch64 + + 790fb197d3f90240de24c0c9dcd05fa3feab5961a4ca50f49cb41cca35db8232 + The cryptsetup development package + cryptsetup development package + + http://code.google.com/p/cryptsetup/ + + + cryptsetup-doc + aarch64 + + 55a95b352b85b3da4961332d82dce8f2693624b4f13f85497d95f32246dc1e65 + The cryptsetup doc package + doc package for cryptsetup + + http://code.google.com/p/cryptsetup/ + + + cryptsetup-locale + aarch64 + + d93328eb6abe4c64468b6530d920c8f3d9dd5b7f5b9a2c021ada17674f041fb2 + The cryptsetup locale package + locale package for cryptsetup + + http://code.google.com/p/cryptsetup/ + + + csr-framework + aarch64 + + f5562b7c21138f1ba18c749236d7a61ed1d9bc7221da06eabd3d7117de715746 + A general purpose content screening and reputation solution + General purpose content screening and reputation solution. Can scan +file contents and checking url to prevent malicious items. + + http://tizen.org + + + csr-framework-devel + aarch64 + + 5c6a930dde8626ffc84924db7aad1c7d1c7c54ca83902917d7981e36148474da + Development files for csr-framework + csr-framework development files including headers and pkgconfig file. + + http://tizen.org + + + csr-framework-engine-devel + aarch64 + + 2e4145465981a69afbeb3c253b2264232738119b49224392f3b6927fa4561c7a + Development files for csr-framework engine + csr-framework engine development files including headers and pkgconfig file. + + http://tizen.org + + + csr-framework-test + aarch64 + + eb246a5780acd935e604be4f81f17a38dbce5ab049e2d42506116b5a95c7b4e2 + test program for csr-framework + test program of csr-framework + + http://tizen.org + + + curl + aarch64 + + 80d959ea14a90614fea123d8437efec61574fb3e395efc0af32b4535a2f61748 + A utility for getting files from remote servers (FTP, HTTP, and others) + curl is a client to get documents/files from servers, using any of the +supported protocols. The command is designed to work without user +interaction or any kind of interactivity. + +curl offers a busload of useful tricks like proxy support, user +authentication, ftp upload, HTTP post, file transfer resume and more. + + http://curl.haxx.se/ + + + cyad + aarch64 + + 1dd62d4533a3a1efc644e4594499777821fad494735453a2d074461e88698e0b + Cynara's command-line tool + Command-line tool to manage Cynara's database + + + + + cynara + aarch64 + + 74000dc54b706b3e2427f43c08773aa27f83def6cdcf2e8beedf50b9e947c5ac + Cynara service with client libraries + service, client libraries (libcynara-client, libcynara-admin), +agent library, helper libraries (libcynara-session, libcynara-creds-common, libcynara-creds-dbus, +libcynara-creds-socket, libcynara-creds-self) and tests (cynara-tests) + + + + + cynara-db-migration + aarch64 + + 30e27cb1c3ea82e3503a887e7b28859c01764585bd627ae68c59f32cf4a05b30 + Migration tools for Cynara's database + Migration tools for Cynara's database + + + + + cynara-devel + aarch64 + + 73a25bc837d11d12a42a86712d4da7c6dc6684b11d654136e0f420a093a4e50b + Cynara development files + Cynara development files + + + + + cynara-tests + aarch64 + + 51865eb7749a935d14b456c0f9cc221e21bc2f61ba9ed14dfeb6008d4f2488e2 + Cynara - cynara test binaries + Cynara tests + + + + + d2d-conv-manager + aarch64 + + 52cb35f831d5b26535388e9cfddd5ee98d6cf74a43eb2da13d7c5a43aef27364 + D2D Convergence Manager + D2D Convergence Manager Service + + + + + d2d-conv-manager-devel + aarch64 + + 5f337891b45b4db581c888fbc0bc5965aeacaf2088c927bd3318fd1165fa137c + Client library (devel) + D2D Convergence Manager development kit. + + + + + d2d-conv-manager-lib + aarch64 + + 6269e28570cb4b9391f513966d3ce32a8d55a31e2f21329eb6991f114feecbc1 + Client library + D2D Convergence Manager client library for applications. + + + + + dali + aarch64 + + 5bf4ae4489ff4d38ac476ee391835168c92168d641e4aa511b00713833d32f96 + The OpenGLES Canvas Core Library + The OpenGLES Canvas Core Library provides a 3D scene graph + + https://review.tizen.org/git/?p=platform/core/uifw/dali-core.git;a=summary + + + dali-adaptor + aarch64 + + 89deae73326003a43b020aace24040989085c3a97e44c6f6119c6f45f7d1477b + The DALi Tizen Adaptor + The DALi Tizen Adaptor provides a Tizen specific implementation of the dali-core +platform abstraction and application shell + + https://review.tizen.org/git/?p=platform/core/uifw/dali-adaptor.git;a=summary + + + dali-adaptor-dali-video-player-plugin + aarch64 + + 7c7cb53874dd63feb4ebebaec8e9089f6dbccbe4b04e4e07db3a335d08573bf9 + Plugin to play a video file for Dali + VideoPlayer plugin to play a video file for Dali + + https://review.tizen.org/git/?p=platform/core/uifw/dali-adaptor.git;a=summary + + + dali-adaptor-devel + aarch64 + + e20c1461ad13904900a644cd60f3aa246ec314c2602243def20e222a5ea93fd6 + Development components for the DALi Tizen Adaptor + Development components for the DALi Tizen Adaptor - public headers and package configs + + https://review.tizen.org/git/?p=platform/core/uifw/dali-adaptor.git;a=summary + + + dali-adaptor-integration-devel + aarch64 + + fc9f7db23c498c3486131a9901ee6bfcd62c42f86f630309e3da08ddf840990a + Integration development package for the Adaptor + Integration development package for the Adaptor - headers for integrating with an adaptor library. + + https://review.tizen.org/git/?p=platform/core/uifw/dali-adaptor.git;a=summary + + + dali-devel + aarch64 + + a14a0880e3f859a3faff2584af474b3b70b5129a1f0c38b9067ae5120d874c50 + Development components for the OpenGLES Canvas Core Library + Development components for the OpenGLES Canvas Core Library - public headers and package config + + https://review.tizen.org/git/?p=platform/core/uifw/dali-core.git;a=summary + + + dali-integration-devel + aarch64 + + 3e5e3ce7e2115d569f5dae73301e4ba1d84f53ca1c386c486f1f24cb3ec12b17 + Integration development package for the OpenGLES Canvas + Integration development package for the OpenGLES Canvas - headers for integrating with an adaptor/platform abstraction library. + + https://review.tizen.org/git/?p=platform/core/uifw/dali-core.git;a=summary + + + dali-toolkit + aarch64 + + 2ae3f684a4cf1574b5560d25511e3455dfe5548411facf8b5a2aad3aef22336d + The OpenGLES Canvas Core Library Toolkit + The OpenGLES Canvas Core Library Toolkit - a set of controls that provide +user interface functionality. + + https://review.tizen.org/git/?p=platform/core/uifw/dali-toolkit.git;a=summary + + + dali-toolkit-devel + aarch64 + + 49aa1333fad7e2fcbd3170f206eed8b43fc7ad7ac99124ee37c6936154df5d86 + Application development package for the OpenGLES Canvas toolkit + Application development package for the OpenGLES Canvas toolkit - headers and package config + + https://review.tizen.org/git/?p=platform/core/uifw/dali-toolkit.git;a=summary + + + data-control + aarch64 + + b9bb7a8f96c991c532cd66e68de696410f5a1b50edd627c470dfcc51e3589397 + Data Control library + Data Control library + + + + + data-control-devel + aarch64 + + 74805a1040eedfd024a56c69b0c36243aaa153430f58a7a5df252669f2be7c17 + Data Control library (Development) + Data Control library (DEV) + + + + + data-provider-master + aarch64 + + 1e4792578aa431e85db94c976df0cec36e278918626515f4b9d6d0eedcb5136e + Master service provider for badge, shortcut, notification + + + + + + data-router + aarch64 + + b67bf4c4617d017f16342e688a08cd1a37805d1eaef03b1afbaf6799f65d8182 + Data Router + Working as a Router for USB communication +For USB serial communication, reads/writes usb node and routes them to Socket client application. + + + + + dbus + aarch64 + + 2b336ae87127bcb301c769c0b75886d7dc96491bd5c682a26c9fcb63876b3753 + D-Bus Message Bus System + D-Bus is a message bus system, a simple way for applications to talk to +one another. D-Bus supplies both a system daemon and a +per-user-login-session daemon. Also, the message bus is built on top of +a general one-to-one message passing framework, which can be used by +any two apps to communicate directly (without going through the message +bus daemon). +. +This package provides dbus-daemon. + + http://dbus.freedesktop.org/ + + + dbus-devel + aarch64 + + 698abb0b7a5bd59038d97cd9c8d1ed7fb0b322ac883d8396da870295e4153a89 + Developer package for D-Bus + D-Bus is a message bus system, a simple way for applications to talk to +one another. +. +This package provides development libraries. + + http://dbus.freedesktop.org/ + + + dbus-glib + aarch64 + + e2b52ce4595019fe8b3883e66db3c9eed5fda8375204f98b212a7f36f2107293 + GLib bindings for D-Bus + D-Bus add-on library to integrate the standard D-Bus library with +the GLib thread abstraction and main loop. + + http://www.freedesktop.org/software/dbus/ + + + dbus-glib-devel + aarch64 + + d0a52c682a442cc3cc7bef55fb1701930ce155d96299b254b0ec2c46422f4fcd + Libraries and headers for the D-Bus GLib bindings + Headers and static libraries for the D-Bus GLib bindings + + http://www.freedesktop.org/software/dbus/ + + + dbus-glib-docs + aarch64 + + 2a06f5ef6b409728dcadfb088b32a04808e20aa47336e227951959f6940cddd6 + Documentation for package dbus-glib + This package provides documentation for package dbus-glib. + + http://www.freedesktop.org/software/dbus/ + + + dbus-libs + aarch64 + + fbb0625e0a774210ef20a02962eeaba5af5a849ff14798e0686db53178572f97 + Library package for D-Bus + D-Bus is a message bus system, a simple way for applications to talk to +one another. +. +This package provides shared libraries. + + http://dbus.freedesktop.org/ + + + dbus-python + aarch64 + + 5aad0760f5c333f44c689225da042b6ee89c3c71eba6d341b0d3b978c7fd9d5b + Python bindings for D-Bus + D-Bus python bindings for use with python programs. + + http://www.freedesktop.org/wiki/Software/DBusBindings/ + + + dbus-python-devel + aarch64 + + 45600dddae7d92453dfdb1d5772275482ad76b6f1de45855b056539d0c9314fe + Python bindings for D-Bus + Developer files for Python bindings for D-Bus. + + http://www.freedesktop.org/wiki/Software/DBusBindings/ + + + dcm-service + aarch64 + + b6fbe2f7d9366f3ce02bb62d0b96e6b2ba3f9225b8a910c5b143a9a9c85e1d35 + A media DCM(Digital Contents Management) Service + This package provides a media DCM(Digital Contents Management) service + + + + + dcm-service-devel + aarch64 + + d689798e4a59256fc88ac2c1886600f87ad03be7fe0ef7053c4d228c140a4749 + A media DCM(Digital Contents Management) service(Development) + This package provides a media DCM(Digital Contents Management) service(Development files included) + + + + + debug-launchpad + aarch64 + + 4d04a1e5864994dd4ccde0989053607747a244f6bceb7cf1a94f450fde87b3db + Debug Launchpad + Debug launchpad + + + + + default-ac-domains + noarch + + 05e01a7e0689bb87cd568ef91eebb492a4ddecf7f37a1023ed1df946b2203584 + The definition of default ac domains + The package provides a definition for the default set of ac domains +with the corresponding Smack rules between them + + + + + default-fonts-fc-sdk + aarch64 + + 27dd4b590d6d97a917b0efb883a4da627d07a740774374163c9973eae441d380 + Font configuration package for SDK + Font configuration package for SDK +This package is maintained by SDK team + + + + + default-fonts-sdk + aarch64 + + b2d8c8423f8736b504a94f0fc639e55b7d1a5de8ec6cffa53dccf081f4e70ee6 + free fonts for Tizen SDK + free fonts for Tizen SDK +This package is maintained by SDK team + + + + + deltarpm + aarch64 + + c625577bd9eb341f4cc337a8cd0482952934e5ab6f7252d95658285f811e0531 + Tools to Create and Apply deltarpms + This package contains tools to create and apply deltarpms. A deltarpm +contains the difference between an old and a new version of an RPM, +which makes it possible to recreate the new RPM from the deltarpm and +the old one. You do not need to have a copy of the old RPM, because +deltarpms can also work with installed RPMs. + + ftp://ftp.suse.com/pub/projects/deltarpm + + + desktop-file-utils + aarch64 + + 4308b14dbf5814cf39b2f1ab6b6867dc1e0f56557ae5343403c5cd41a782138e + Utilities for Manipulating Desktop Files + This packages contains a couple of command line utilities for +working with desktop files. + +More information about desktop files can be found at: +http://freedesktop.org/wiki/Specifications/desktop-entry-spec + + http://www.freedesktop.org/wiki/Software/desktop-file-utils + + + device-manager-plugin-emul + aarch64 + + 6279e09d959c501e0359db2df0926f2e889265e8c40703e3558c849e11776921 + Device manager plugin for emulator + Emulator plugin for libdevice-node. + + + + + device-manager-plugin-exynos5433 + aarch64 + + 94410d38050e45d1ee73d091404c0d3782c3ce1160dac51b597a01745e38d64f + Device manager plugin exynos5433 + Device manager plugin exynos 5433 + + + + + device-manager-plugin-sc7730 + aarch64 + + 75e9f8e06326877fe07210a6f25ccd2e7335412cbf5fe2d5b55ea3b0e571f9d3 + Device manager plugin sc7730 + Device manager plugin sc7730 + + + + + device-mapper + aarch64 + + 599ad37496e2cc45235962cd46704f765ca33f325b289ede8946eeae2815fc0a + Device mapper utility + This package contains the supporting userspace utility, dmsetup, +for the kernel device-mapper. + + http://sources.redhat.com/dm + + + device-mapper-devel + aarch64 + + df0ee8c1a8e90052c3666d235c2a44874ce764bcd660f4a524f642d1a4764264 + Development libraries and headers for device-mapper + This package contains files needed to develop applications that use +the device-mapper libraries. + + http://sources.redhat.com/dm + + + device-policy-manager + aarch64 + + 015a8f8ab4fd9beaabc8ce60f3fb84f5dfc465a39766347da753b86b39b513ac + Tizen Device Policy Manager + The device-policy-manager package provides a daemon which is responsible for +managing device policies. + + + + + deviced + aarch64 + + 0c2123f62e90654f4a794c264e1db0f8264b099fb091baa0cde610192cc6388f + Deviced + deviced + + + + + deviced-tools + aarch64 + + 65cf157423d942bceefa8fa283a67ac86bae78afb102c315e063ee5ec12c7912 + Deviced tools + Deviced helper programs + + + + + dlogbackend-kmsg + aarch64 + + f6ab62ae87077839f1ceb78e3381f75005dad5afb67a23e8e2145af8ade21338 + kmsg backend selection for dlog + Change dlog backend to kmsg backend. Require kernel support (multiple kmsg) + + + + + dlogbackend-logger + aarch64 + + 96154bcc7689c52a0694a1b442506eef6e7ae002d1350b248d839540f8d3f0be + Android-logger backend selection for dlog + Change dlog backend to logger backend. Require kernel support (Android-logger) + + + + + dlogutil + aarch64 + + 73ba48f45cea10174ab631712b7570353843291fed335f1b79bf070a343cce09 + print log data to the screen + Utilities for print log data + + + + + dnsmasq + aarch64 + + 344a14916f18304e3e25c60b1f2d30000d754707481c097ec698b16ef8ca398c + dnsmasq, DNS forwarder. + Dnsmasq is a lightweight, easy to configure DNS forwarder and DHCP server. +It is designed to provide DNS and, optionally, DHCP, to a small network. +It can serve the names of local machines that are not in the global DNS. +The DHCP server integrates with the DNS server and allows machines with +DHCP-allocated addresses to appear in DNS with names configured either +in each host or in a central configuration file. Dnsmasq supports static +and dynamic DHCP leases and BOOTP for network booting of diskless machines. + + + + + docbook-xsl-stylesheets + noarch + + 0857d4d58a61f6b4ade3fe2728c6cdfb9da5155d2e0a3e6265f13b352eb4695a + XSL Stylesheets for DocBook 4 + These are the XSL stylesheets for DocBook XML and "Simplified" DocBook +DTDs. Use these stylesheets for documents based on DocBook 4 and +earlier; they are not aware of the namespace feature. + +The stylesheets transform DocBook documents into HTML, XHTML, Manpages, +XSL-FO (for PDF), and a few other formats. + +XSL is a standard W3C stylesheet language for both print and online +rendering. For more information about XSL, see the XSL page at the W3C: +http://www.w3.org/Style/XSL/ + + http://sourceforge.net/projects/docbook/ + + + docbook_4 + noarch + + 5dbcf65cc1cd7ffa5ac97a1ad44e0d6e9f94844b0d4bd7f69022606e6a0d7e91 + DocBook DTD Version 4.x + DocBook is a schema. It is particularly well-suited to books and papers +about computer hardware and software (though it is not limited to these +applications at all). This package has SGML- and XML-DTD versions +included. Some versions of DocBook contain also a RELAX NG and W3C +Schema. + + http://www.oasis-open.org/docbook/ + + + dos2unix + aarch64 + + 53b01dcac38d38c1b9093bb9ff7c4deab67d0b5a0887368237c1b7eb67be20a0 + Text converters to and from DOS/MAC to UNIX + Dos2unix is used to convert plain text from DOS (CR/LF) format. Mac2unix +converts plain text from MAC (CR) format to UNIX format (LF). + +Unix2dos converts plain text files from UNIX +format to DOS format and unix2dos converts from UNIX to MAC format. + + http://waterlan.home.xs4all.nl/dos2unix.html + + + dosfstools + aarch64 + + 2e055bb91da22f129a72933bf91eb3f5fd4bbc6b812780a649c371e328b29d77 + Utilities for Making and Checking MS-DOS FAT File Systems on Linux + The dosfstools package includes the mkdosfs and dosfsck utilities, +which respectively make and check MS-DOS FAT file systems on hard +drives or on floppies. + + http://www.daniel-baumann.ch/software/dosfstools/ + + + dosfstools-docs + aarch64 + + 5f93b2451c88d60ec346ad413a9f8280134e32add40757347b031cee3443c597 + Documentation for package dosfstools + This package provides documentation for package dosfstools. + + http://www.daniel-baumann.ch/software/dosfstools/ + + + download-fonts-service + aarch64 + + 6e9a556b4cab7194764be07d6337d61b9f9a8b3eaa11af0f256f9e54ee51cc16 + Master Download fonts service + Master Download fonts service. + + + + + download-provider + aarch64 + + c98f072d6e71a656339bff0d64b9935037892afec356b52b4189ce6af215abe0 + Download the contents in background + Description: Download the contents in background + + + + + download-provider-devel + aarch64 + + eeacc68c18268635017616834eabae24d59feaf74ac01b8a5c110c0764abd779 + download-provider + Description: Download the contents in background (development files) + + + + + doxygen + aarch64 + + a0f2f846d6ee94e672850de7dcae97d4a06adeaaac931b7252e4ad7d077f06a5 + Automated C, C++, and Java Documentation Generator + Doxygen is a documentation system for C, C++, Java, and IDL. It can +generate an online class browser (in HTML) and an offline reference +manual (in LaTeX) from a set of documented source files. The +documentation is extracted directly from the sources. Doxygen is +developed on a Linux platform, but it runs on most other UNIX flavors +as well. An executable for Windows 95/NT is also available. + + http://www.stack.nl/~dimitri/doxygen/ + + + doxygen-docs + aarch64 + + 66da3925c87eeb063cb6d314a1ea58216797da33fc869946476380b23d6f78db + Documentation for package doxygen + This package provides documentation for package doxygen. + + http://www.stack.nl/~dimitri/doxygen/ + + + dpm-testcases + aarch64 + + 0bf2dc1dc09272a3cebf90e3330ff5fbad39645e3fce42743c6c89dd6c8c3ad3 + Device Policy Manager test cases + Testcases for device policy manager and device policy client + + + + + drm-service-core-tizen + aarch64 + + 6836197070361881485faf2beeecb80b42f2be3f64be47ee2e64b59277aa50a2 + Tizen Application DRM library (Shared Object) + Description: Tizen Application DRM library (Shared Object) + + + + + drm-service-core-tizen-devel + aarch64 + + bf14dd23dc4c279a8369e5d426a6e3b51808b42b9339fb3576f161cbec68ac50 + Tizen Application DRM library (Shared Object) + Description: Tizen Application DRM library (Shared Object) + + + + + dummyasm + aarch64 + + e591376a71344edd1d2a0828bb8ee72ab230fad83e8e2e30bce419fdc9b23564 + FIDO Dummy ASM (Internal Dev) + This is a dummy ASM for testing FIDO client. + + + + + e-mod-tizen-devicemgr + aarch64 + + 1310be53de75d0c2b37ae101293a8756934dae998655012b23f15724075cba36 + The devicemgr for enlightenment modules + This package is a devicemgr for enlightenment. + + http://www.enlightenment.org + + + e-mod-tizen-effect + aarch64 + + 3078da27db6c9425aeda894ea654b600818b361548c305510fe22a9d2f6ad862 + The effect module for the enlightenment + This package provides various window effect(animation) +as one module of enlightenment. + + http://www.enlightenment.org + + + e-mod-tizen-eom + aarch64 + + 6c3a4473e63e306501fc8ad2f2e9db9523b6f0856d2ed9a0772bab4358b7765c + The Enlightenment eom Module for Tizen + This package is a the Enlightenment eom Module for Tizen. + + http://www.enlightenment.org + + + e-mod-tizen-gesture + aarch64 + + ecb6e64efa4c62da30b5cb46a91990ad7e00f108b3115aed33ac584b0cd48246 + The Enlightenment Gesture Module for Tizen + This package is a the Enlightenment Gesture Module for Tizen. + + http://www.enlightenment.org + + + e-mod-tizen-keyrouter + aarch64 + + f5f5aaec9281ebf29824e39074244c9d4382e372e52ff9774474e473bea96f67 + The Enlightenment Keyrouter Module for Tizen + This package is a the Enlightenment Keyrouter Module for Tizen. + + http://www.enlightenment.org + + + e-mod-tizen-processmgr + aarch64 + + 1f2bad70416cbc0674af922d1be77e65de9e56a8597a34d257e9deb1afaec70e + The enlightenment processmgr module for Tizen + This package is a processmgr module for enlightenment. + + + + + e-mod-tizen-qpmgr + aarch64 + + 2e06ef2ae6701f13783b7cc4409375e0ed50d380a7f46e283383e14fc4f6cac3 + The Enlightenment Quickpanel Manager + The Enlightenment Quickpanel Manager + + + + + e-mod-tizen-screen-reader + aarch64 + + 7524e16b2d727ec1bde622a5b3d8115981a8ce8e7b5bb86527b1f46bc9579cb9 + The screen-reader for enlightenment modules + This package is a screen-reader module for Tizen enlightenment. + + http://www.enlightenment.org + + + e-mod-tizen-wl-textinput + aarch64 + + a1c08b11b2970fd129039d783db0f7ee105df7a4b3be322aa25b932c2372db1f + The Enlightenment WM Wayland Text Input Module for Tizen + The Enlightenment WM Wayland Text Input Module for Tizen + + + + + e-mod-tizen-wm-policy + aarch64 + + 046e6bb3478fbdedf51dd6c8e62d8654d65c54216e8d84581d7a47cda880d7f2 + The Enlightenment WM Policy Module for Tizen + The Enlightenment WM Policy Module for Tizen + + + + + e-tizen-data + noarch + + becaccaed8f98ede9da9e1d9744ed83913d70efc60014194d618b5e198dd925e + Enlightenment data files + Data and configuration files for enlightenment + + + + + e-tizen-testcase + aarch64 + + 003902b7c069747ab4bce31f1b5e320a9e910560a7e0cfc895ddcb861833c043 + The test case runner for enlightenment + This package is a test case runner for enlightenment. + + http://www.enlightenment.org + + + ecore + aarch64 + + 9d2dc534a94459dae1a7a69d2db937247233b35c3f9f77ff0ea276ffb91dd996 + Enlightened Core X interface library + Ecore is the event/X abstraction layer that makes doing selections, +Xdnd, general X stuff, event loops, timeouts and idle handlers fast, +optimized, and convenient. + + http://enlightenment.org/ + + + ecore-devel + aarch64 + + 04469f90f416b37771a0e62657a3af26640dcbcea2ef5cebfabcd7447fdb6d5d + Development components for the ecore package + Development files for ecore + + http://enlightenment.org/ + + + ector + aarch64 + + 41a6b297b132a762ddd8116dc618f19a7197e1b897ac516ca3827595db4199e5 + vector graphics library + vector graphics library. + + http://enlightenment.org/ + + + ector-devel + aarch64 + + abcaf7ebb203ffb1100e744c3cc6dc82c7bfaceb7d0dc2553b86978bdcb5163e + Development components for the ector package + Development files for ector + + http://enlightenment.org/ + + + edbus + aarch64 + + 9b8a1c7aa31f16e490ab2f16899d4cfce6751f9108c88fe99b9002ab6050ce51 + EFL Wrapper for DBus + e_dbus provides a convenience wrapper for EFL applications using DBus. + + http://www.enlightenment.org/ + + + edbus-devel + aarch64 + + a09fd2f58fda170f309a39556eb221e35d661f87851b61ba75d4b9df2cf6a4b5 + Development components for the e_dbus package + Development files for e_dbus + + http://www.enlightenment.org/ + + + edje + aarch64 + + 1a8eadc548d7c998accb9ddee1230fb509395fadcd449e2b747fd429b824e106 + Complex Graphical Design/Layout Engine + Edje is a complex graphical design and layout engine. It provides a +mechanism for allowing configuration data to define visual elements in +terms of layout, behavior, and appearance. Edje allows for multiple +collections of layouts in one file, allowing a complete set of images, +animations, and controls to exist as a unified whole. + +Edje separates the arrangement, appearance, and behavior logic into +distinct independent entities. This allows visual objects to share +image data and configuration information without requiring them to do +so. This separation and simplistic event driven style of programming +can produce almost any look and feel one could want for basic visual +elements. Anything more complex is likely the domain of an application +or widget set that may use Edje as a conveneient way of being able to +configure parts of the display. + + http://enlightenment.org/ + + + edje-devel + aarch64 + + 5023c2bf362340bded855b842094ff49dd29b9eda13c21d285651aa24800ebc4 + Development components for the edje package + Development files for edje + + http://enlightenment.org/ + + + edje-tools + aarch64 + + 4e231a4a46119fde0214aea1bd1a4ac1c0810a741b165c4b8390c35643b3f9cc + Edje tools + The edje tools package include the compiler, decompiler, visualizer, code +generator and more. + + http://enlightenment.org/ + + + eet + aarch64 + + 8c870a7dbcdd925a0af5e4ff38d42d7e7740d2cc0df74b5c88c2d1b1ff17f11e + Library for speedy data storage, retrieval, and compression + Eet is a tiny library designed to write an arbitrary set of chunks of +data to a file and optionally compress each chunk (very much like a +zip file) and allow fast random-access reading of the file later +on. It does not do zip as a zip itself has more complexity than is +needed, and it was much simpler to implement this once here. + +It also can encode and decode data structures in memory, as well as +image data for saving to eet files or sending across the network to +other machines, or just writing to arbitrary files on the system. All +data is encoded in a platform independent way and can be written and +read by any architecture. + + http://enlightenment.org/ + + + eet-devel + aarch64 + + 0db14f03b1ea395fb00b93d1d8fdca55ea2de4d220a8b7d0433645e2e79ade60 + Development components for the eet package + Development files for eet + + http://enlightenment.org/ + + + eet-tools + aarch64 + + a98be3614a85f5a26e4b8c7134564178efe8c2d2b4c2639d2ef67471d450aee3 + Eet Tools + The eet tools package the eet binary utility. + + http://enlightenment.org/ + + + eeze + aarch64 + + f3d06107e940b036aede476d2ad85bf00c13981abfa62e38d5b9ce653b1a7f56 + Device convenience library + Eeze is a library for manipulating devices through udev with a simple +and fast api. It interfaces directly with libudev, avoiding such +middleman daemons as udisks/upower or hal, to immediately gather +device information the instant it becomes known to the system. This +can be used to determine such things as: + * If a cdrom has a disk inserted + * The temperature of a cpu core + * The remaining power left in a battery + * The current power consumption of various parts + * Monitor in realtime the status of peripheral devices + +Each of the above examples can be performed by using only a single +eeze function, as one of the primary focuses of the library is to +reduce the complexity of managing devices. + + http://enlightenment.org/ + + + eeze-devel + aarch64 + + 61e6837a568e085fdaab7410d0a419737b399d25dd28f8afc867d5ad292026d5 + Development components for the eeze package + Development files for eeze + + http://enlightenment.org/ + + + efl + aarch64 + + fe2ba07f5a979b038f0a5cdded376db32ac22be5b2455cd725705b39e680e2f2 + Enlightenment Foundation Libraries - set of libraries used (not only) by E17 + EFL is a library collection providing various functionality used (not only) by +Enlightenment, Terminology, Tizen and more. + + http://enlightenment.org/ + + + efl-config + aarch64 + + b0116f79c1acba28dda17fe89858b4bcafbfcb91f0760a5fea6bc01f59e9b81d + EFL Config daemon + EFL config daemon + + + + + efl-devel + aarch64 + + 7c8e51f5ed766a3f3a09ecfe1ad86990c80ec18426b0ee59e65fda80fe37fff5 + Developer files for EFL package + This package includes developer files common to all packages. + + http://enlightenment.org/ + + + efl-extension + aarch64 + + 5726271b64787a7b3ac2bf20b7419fbad6ffe2f492253bbe9002404951bcb245 + EFL extension library + EFL extension library + + http://www.tizen.org/ + + + efl-extension-devel + aarch64 + + fd1cf4adbc67053f20f56175176bf575c3b829a3798ff6a3d2aef9ea18ee446a + EFL extensiona library (devel) + EFL extension library providing small utility functions (devel) + + http://www.tizen.org/ + + + efl-misc + noarch + + 56450ac91b29f5b9f959045d2a214153d7ed03e9aa94d5558170acb447458f6d + Elementary config files + Elementary configuration files + + + + + efl-modules + aarch64 + + 231a2fbbcb857974ab1a9d8118c9fb0919fb27a1df42c39151f66099c54d39bc + The EFL Modules + The EFL Modules + + http://www.tizen.org + + + efl-theme-tizen-mobile + aarch64 + + 9928f7aba1455909a1733d3119049172e5bfc1d960233ae682172e047f0bdaa9 + EFL themes for Tizen Mobile + EFL themes for Tizen Mobile + + + + + efl-theme-tizen-mobile-devel + aarch64 + + 51e73677abe38fd2320bf9a6c80132c1a8cfb78b956a7dca806c3314b094d671 + Development package + Development package for Tizen Mobile theme + + + + + efreet + aarch64 + + 48dc34a41edbf0ec75ec65ed01316423ee117b75f56c486b82cda9c8ff8e98f5 + FreeDesktop.Org standards implementation + Efreet implements the FreeDesktop.Org application and MIME-handling +standards. + + http://enlightenment.org/ + + + efreet-devel + aarch64 + + b9e370094331b1f46219b96e586dc78b33641dc1b68f27c1538ccc692bf98fb6 + Development components for the efreet package + Development files for efreet + + http://enlightenment.org/ + + + eina + aarch64 + + 1521b9906e6b0819eb9676f78e75c12be80ea8a17169e7f5185a7183179fa5f6 + Data type library + Eina is a data type library. + + http://enlightenment.org/ + + + eina-devel + aarch64 + + 48f49490db2400227052b269178a0df5a8b06d60dfcb64c237180c194b424c02 + Development components for the eina package + Development files for eina. + + http://enlightenment.org/ + + + eina-tools + aarch64 + + a78783fe5e597ca7ab648487b45da38562bb852ac91b526cf5d7f317913b1e16 + Eina Tools + The eina tools package the eina binary utility. + + http://enlightenment.org/ + + + eio + aarch64 + + 529b0fb4e6ae0f687f6ebb1e700b05165dae102b8bf201bbe6199d95583b53da + Enlightenment Input/Output Library + Enlightenment Input/Output Library + + http://enlightenment.org/ + + + eio-devel + aarch64 + + 5915cbc283728e8a805450fcc49266cf650db5a237ab7b895ff66b4dc11dc951 + Development components for the eio package + Development files for eio + + http://enlightenment.org/ + + + eldbus + aarch64 + + 9f3255b0a6852cffc861a6f8822247eba02bae125318dfbdd57e7acb6be6b6e5 + D-Bus bindings for EFL + Eldbus allows connecting to both system and session buses acting as +both client and service roles. + +This is a replacement for old library "edbus". Its main purpose is to +fix some core bugs and completely encapsulating D-Bus without exposing +libdbus to end-user. One day libdbus may be completely removed as a +dependency. + + http://enlightenment.org/ + + + eldbus-devel + aarch64 + + 809a531172e204e776a58685c8b2043735b1d7886417ae728c21da95442cfac3 + Development components for the eldbus package + Development files for eldbus + + http://enlightenment.org/ + + + elementary + aarch64 + + 8efef4c6be670e54125e4c4bfe681bf6ec000200ac4aef634424c246669de342 + EFL toolkit for small touchscreens + Elementary is a widget set. It is a new-style of widget set much more canvas +object based than anything else. Why not ETK? Why not EWL? Well they both +tend to veer away from the core of Evas, Ecore and Edje a lot to build their +own worlds. Also I wanted something focused on embedded devices - +specifically small touchscreens. Unlike GTK+ and Qt, 75% of the "widget set" +is already embodied in a common core - Ecore, Edje, Evas etc. So this +fine-grained library splitting means all of this is shared, just a new +widget "personality" is on top. And that is... Elementary, my dear watson. +Elementary. + + http://trac.enlightenment.org/e/wiki/Elementary + + + elementary-devel + aarch64 + + 832c235f89ef317e354fd11fed4d8f64aec1549ec4465fe50970a03c84a4cf6c + Development files for elementary + Development components for the elementary package + + http://trac.enlightenment.org/e/wiki/Elementary + + + elementary-locale + noarch + + 251f5c6693e969202aea5814cdd2f34a2a72998d3ba2d91f1727da1676372ed3 + Translations and Locale for package elementary + This package provides translations for package elementary. + + http://trac.enlightenment.org/e/wiki/Elementary + + + elementary-theme + aarch64 + + ac3a5b5e9a9f25cdbc76b87e68d9dda265373b62dcd780a6578f508976652ae2 + Default theme for elementary + Default theme which provides various styles for elementary. + + http://trac.enlightenment.org/e/wiki/Elementary + + + elementary-tools + aarch64 + + f61c5e91251f24f14333bcdf9ba32b1dc8903f6d26a43d7248d43bf108ebae62 + EFL elementary configuration and test apps + EFL elementary configuration and test apps package + + http://trac.enlightenment.org/e/wiki/Elementary + + + elocation + aarch64 + + ca853cacb9731d4acc4a8d7f48c5c68a1866af283fcd9cc06935a3e0c3f22c23 + EFL location library + Elocation is meant as a convenience library to ease application developers +the usage of geo information in their apps. Adding a geo tag to a picture or +translating an address to a GPS position and show it on a map widget are just +some of the use cases. + + http://enlightenment.org/ + + + elocation-devel + aarch64 + + ff14162dac6fe62528fddb6c002b4f45fb6a78a722f924c06578e9a36bf31e54 + Development components for the elocation package + Development files for elocation + + http://enlightenment.org/ + + + elua + aarch64 + + 3736d6f0d40952409596796e167814762443a2bc37bfa2f9ac552285f786ddb4 + EFL lua binding library + The Elua library was created to ease integration of EFL Lua into other EFL +libraries or applications. Using the Elua library you can easily create a +Lua state that is fully set up for running EFL Lua bindings. + + http://enlightenment.org/ + + + elua-devel + aarch64 + + ac44b6f27d4209ad9e701a34e9f88ba6265df380cce4a7d304d9b1f0eb65a457 + Development components for the elua package + Development files for elua + + http://enlightenment.org/ + + + email-service + aarch64 + + 5267a7c6c11390df4995ea99a758a3e6bd541a96611aaff08c9d6e321e6375a6 + E-mail Framework Middleware package + E-mail Framework Middleware Library/Binary package + + + + + email-service-devel + aarch64 + + 930277db5a529ecf05d0938d441e7b39b93559c8e6c864da195948793f2454c4 + E-mail Framework Middleware Development package + E-mail Framework Middleware Development package + + + + + embryo + aarch64 + + 34f0e30e8e187810da9804eab5a96cf1ee90593a94d9fa128f2080778a7c195e + A small virtual machine engine (in a library) and bytecode compiler + Embryo is a tiny library designed as a virtual machine to interpret a +limited set of small compiled programs. + + http://enlightenment.org/ + + + embryo-devel + aarch64 + + 79f5d0516f90aad19c113f8227399751fefd3e709320b6756517c69370f8dd8d + Development components for the embryo package + Development files for embryo + + http://enlightenment.org/ + + + emile + aarch64 + + 7aa9d6117325df8b68007efda00f04e031c627c913e01f7c6511316ea13f9413 + EFL serialization, compression and crypto library + EFL serialization, compression and crypto library + + http://enlightenment.org/ + + + emile-devel + aarch64 + + d348613c3d08563b920804fd163ac511a63d32792a002e42cb3c476ef92f5989 + Development components for the emile package + Development files for emile. + + http://enlightenment.org/ + + + emotion + aarch64 + + 4013b962af094297524fcf757a1c6ffc922e9eed60646883540a0a8855321a53 + EFL Media Library + Emotion is a media library with support for different backends as plug-ins. + + http://enlightenment.org/ + + + emotion-devel + aarch64 + + b0d909f05a19b9494298c6cc4345aef7d6f7796bda7da3abc31aabd13039bd0f + Development components for the emotion package + Development files for emotion + + http://enlightenment.org/ + + + enlightenment + aarch64 + + 1ccf7116d6f3c84e10ffd10bd79871f2de64fe0672e8eba41b1da14e8977c840 + The Enlightenment wayland display server + Enlightenment is a window manager. + + http://www.enlightenment.org/ + + + enlightenment-devel + aarch64 + + 33124f6c22034d25632bbd0360c18cc4eecec6904488c722027a6289afdd3198 + Development components for the enlightenment package + Development files for enlightenment + + http://www.enlightenment.org/ + + + eo + aarch64 + + 47ce7ba70c9fec41b561e449abf3f935a3e90f5c3258c9e0b8b782c5c6007df3 + EFL generic object system library + The Eo generic object system. It was designed to be the base object +system for the EFL. + + http://enlightenment.org/ + + + eo-devel + aarch64 + + 86132b3742250c1ebee8ad1751a7771aff480a476600206e0ee04e35687cc2fa + Development components for the eo package + Development files for eo + + http://enlightenment.org/ + + + eolian + aarch64 + + c979e2920655925598b866834de3e09546706b572477c734f4fbbed82e5fd2cf + EO object parser and C code generator + Tool that parses Enlightenment's meta-data (.eo) filesg +and can then generate C code along with header files. + + http://enlightenment.org/ + + + eolian-devel + aarch64 + + b5ed88a671727d978a6b443316775274e96c7f5adada20a7e4832d19114376ae + Development components for the eolian package + Development files for eolian + + http://enlightenment.org/ + + + esd + aarch64 + + 55a2d8c9b019ab81eb2f5dfc809fda20cdabe65bb58e54a243dd19bf161d7249 + Event system daemon + Event System Daemon + + + + + esd-devel + aarch64 + + 7618e69951a9d8e42e89f389a3fbc687cb5734e31ab3be822a0c947481141ec2 + Event system daemon (devel) + Event system Daemon (devel) + + + + + ethumb + aarch64 + + 6389e91aa984995e963a6b9afe3114838368b4ab1d232b41f906c2fa9a75c64d + EFL thumbnail generator library + Enlightenment thumbnailing library + + http://enlightenment.org/ + + + ethumb-devel + aarch64 + + b129dd546af288ff1af017710d06f569c28a91080806cfb83f1ae236aea14fe0 + Development components for the ethumb package + Development files for emotion + + http://enlightenment.org/ + + + evas + aarch64 + + e3e3914a0dc8755c3621675269de46e484cea6d39b6f0a88ae944407dad5b29f + Multi-platform canvas library + Evas is a clean display canvas API for several target display systems +that can draw anti-aliased text, smooth super and sub-sampled scaled +images, alpha-blend objects much and more. + + http://enlightenment.org/ + + + evas-devel + aarch64 + + 8c010aa7c5609a9792164cf7053d1cab5a7bec3b03dfc4b8a89e4a4664a3271a + Development components for the evas package + Development files for evas + + http://enlightenment.org/ + + + eventsystem + aarch64 + + a3b4e6ad0a30b8b8ef0f6b299fd63a449400cef83fd4b1dd5080e7ff8bac8016 + Event system library + Event System Library + + + + + eventsystem-devel + aarch64 + + 3583e8c1292dfaca2f2cc5bff15ae9d88d7923246b1f1e84ab22a8ab87b4f408 + Event system library (devel) + Event system library (devel) + + + + + expect + aarch64 + + 7f5fcbeb9f6320197b1e0d2560130e1969263a80ef8b6e7127948f4aae1408fc + A Tool for Automating Interactive Programs + Expect is a tool primarily for automating interactive applications, +such as telnet, ftp, passwd, fsck, rlogin, tip, and more. Expect +really makes this stuff trivial. Expect is also useful for testing +these applications. It is described in many books, articles, papers, +and FAQs. There is an entire book on it available from O'Reilly. + + http://expect.nist.gov + + + expect-devel + aarch64 + + 73cc67ad183252fee93843add1d2949af031357988cfa24e132d9adcb2c94743 + Header Files and C API Documentation for expect + This package contains header files and documentation needed for linking +to expect from programs written in compiled languages like C, C++, etc. + +This package is not needed for developing scripts that run under the +/usr/bin/expect interpreter, or any other Tcl interpreter with the +expect package loaded. + + http://expect.nist.gov + + + fido-client + aarch64 + + 5d87eb2650cc8517d7e02f0efe8922e2c63341b2b0574cf0b2485c7b0dde881c + Tizen FIDO Client + Tizen FIDO Client provides FIDO UAF spec compliant APIs. + + + + + fido-client-devel + aarch64 + + e7f8e16b1a10f4a9a38113000d1809346e9e0d9f08d54837da7acb46e191c6e1 + Dev files for fido-client + Development files for fido-client + + + + + fontconfig + aarch64 + + ec9fea0e62a3a1d4c8fc64b10a5d72d139ae330fb4538b3ad0bcde3cfaaa02d3 + Font configuration and customization library + Fontconfig is designed to locate fonts within the +system and select them according to requirements specified by +applications. + + http://fontconfig.org + + + fontconfig-devel + aarch64 + + 190f4227c7be87e5742b381b328eb8152aa623d41a77a11b6cf73e1de47db1ef + Font configuration and customization library + The fontconfig-devel package includes the header files, +and developer docs for the fontconfig package. + +Install fontconfig-devel if you want to develop programs which +will use fontconfig. + + http://fontconfig.org + + + freealut + aarch64 + + 808f709ca96b1f2ba42522fb071cb90a3615c43ef7f8991230d0d3459d1d54f3 + OpenAL User Toolkit library + OpenAL User Toolkit library development package + + http://openal.org/ + + + freealut-devel + aarch64 + + 6cd2107edba37a310723d94b4a39926c115288fd304ba50b19b8060701090b02 + OpenAL User Toolkit library (devel) + OpenAL User Toolkit library development package (devel) + + http://openal.org/ + + + freetype2-devel + aarch64 + + fa4509416fc13a4fdab05af0b64c83075fc59b51bb65d961e857b545d08aee0c + FreeType development libraries and header files + The freetype-devel package includes the static libraries and header files +for the FreeType font rendering engine. + +Install freetype-devel if you want to develop programs which will use +FreeType. + + http://www.freetype.org + + + fribidi + aarch64 + + a68d6d82ae3c6607bf1aebef09bd0e021150c2cbc6ba42fd922ee6de82352eaa + Free Implementation of BiDi Algorithm + This library implements the algorithm as described in the "Unicode +Standard Annex #9, the Bidirectional Algorithm, +http://www.unicode.org/unicode/reports/tr9/". FriBidi is exhaustively +tested against the Bidi Reference Code and, to the best of the +developers' knowledge, does notcontain any conformance bugs. + +The API was inspired by the document "Bi-Di languages support - BiDi +API proposal" by Franck Portaneri, which he wrote as a proposal for +adding BiDi support to Mozilla. + + http://fribidi.org/ + + + fribidi-devel + aarch64 + + b0c30ab1b114422bde0439b7b059a4c7d8abe0a0da9b861bfe2f4cf0216b1c40 + Development Files for FriBiDi + This package provides headers and manual files for FriBiDi. + + http://fribidi.org/ + + + fsck-msdos + aarch64 + + bb0398755b128984dab0d3c43f24d1321030f53d45ced1a008b9f86fb0f4cfa1 + Fsck-msdos + Fsck-msdosfs tool + + + + + fuse + aarch64 + + aa63aa0c189033620b9b5af91797f64b27e8d20f97aca210a6b3afe90c759f0b + User space File System + With FUSE, a user space program can export a file system through the +kernel-default (Linux kernel). + +User space file systems which are implemented using FUSE are provided +by the following packages: + +- curlftpfs (mount FTP servers), + +- encfs (layered file encryption), + +- fuseiso (mount iso, img, bin, mdf and nrg CD-ROM images), + +- fusepod (mount iPods), + +- fusesmb (mount a fully browseable network neighborhood), + +- gphotofs (mount gphoto-supported cameras), + +- ntfs-3g (mount NTFS volumes read-write), + +- obexfs (mount of bluetooth devices), + +- sshfs (mount over ssh), + +- wdfs (mount of WebDAV shares) + +This package contains the mount binaries for fuse (might not be needed +by some FUSE filesystems like ntfs-3g) and the documentation for FUSE. + +After installing fuse-devel, administrators can compile and install +other user space file systems which can be found at +http://fuse.sourceforge.net/wiki + + http://fuse.sourceforge.net + + + fuse-devel + aarch64 + + e9f940aaac05d2b5978fd9945e28cf5bca8aa0bf7523dbe8edc21a3997db1ebe + Development package for FUSE (userspace filesystem) modules + This package contains all include files, libraries and configuration +files needed to develop programs that use the fuse (FUSE) library to +implement kernel-default (Linux) file systems in user space. + +With fuse-devel, administrators can compile and install other user +space file systems which can be found at +http://fuse.sourceforge.net/wiki + + http://fuse.sourceforge.net + + + fuse-docs + aarch64 + + f696efe1b34cfa51c557314f8e8c3405cf6d30bfc50ff909e6a6173b8feca65c + Documentation for package fuse + This package provides documentation for package fuse. + + http://fuse.sourceforge.net + + + gccmakedep + noarch + + 59875e9ff40f37aadf0dee3e40da14e2aefb41c1e32d2e780a616975ef08573a + Utility to list the resource database of an X application + The gccmakedep program calls 'gcc -M' to output makefile rules +describing the dependencies of each sourcefile, so that make knows +which object files must be recompiled when a dependency has changed. + + http://xorg.freedesktop.org/ + + + gconf-dbus + aarch64 + + a828f325929f8dddc79270726bb2bef45ebbb2554478189edc3e85b2af0e6466 + A process-transparent configuration system + GConf-dbus is a process-transparent configuration database API used to +store user preferences. It has pluggable backends and features to +support workgroup administration. + + http://www.gnome.org + + + gconf-dbus-devel + aarch64 + + f587da06debaf711029567ef64fbbf3594b9eed3b8dbf0c431cd80bfcbc50f9c + Headers and libraries for GConf development + GConf-dbus development package. Contains files needed for doing +development using GConf. + + http://www.gnome.org + + + gconf-dbus-utils + aarch64 + + 451597d8540f9a32f18c458111572a5569f8bd8fa567e1b8a36cb7abace5d299 + gconf-dbus system tools + GConf-dbus development package. Contains files needed for doing +development using GConf. + + http://www.gnome.org + + + gdb + aarch64 + + ce758d83a2a2e008120aab437fb738cbea913576ed789babf69c2ea3c3e50e0c + A GNU source-level debugger for C, C++, Java and other languages + GDB, the GNU debugger, allows you to debug programs written in C, C++, +Java, and other languages, by executing them in a controlled fashion +and printing their data. + + http://gnu.org/software/gdb/ + + + gdb-devel + aarch64 + + 9f6a742d6ad474685b15ce458fde805324ab652e0875524d236efcf0d68dabca + Development files for gdb + Development files for gdb. + + http://gnu.org/software/gdb/ + + + gdb-docs + aarch64 + + cff35bf677787599c50f860443a10b751221ab79736c1c1eb7165aafdf4f987f + Documentation for package gdb + This package provides documentation for package gdb. + + http://gnu.org/software/gdb/ + + + gdb-locale + noarch + + a9ad998bd94cdbb863cd927d610349e6b9fac7a7367d94bab16fd5095ecbb6a2 + Translations and Locale for package gdb + This package provides translations for package gdb. + + http://gnu.org/software/gdb/ + + + gdb-server + aarch64 + + da9d7248950bf96165215005a74b0f1316d67eb2f10ee5a64b4eb30c0bce0aba + A standalone server for GDB (the GNU source-level debugger) + GDB, the GNU debugger, allows you to debug programs written in C, C++, +Java, and other languages, by executing them in a controlled fashion +and printing their data. + +This package provides a program that allows you to run GDB on a different machine than the one which is running the program being debugged. + + http://gnu.org/software/gdb/ + + + geofence-server + aarch64 + + c1be738427999cb4b4c08a9066e3a221f9800a0a6cb1b237aab03659235f6302 + Geofence Server for Tizen + Geofence Server for Tizen + + + + + giflib + aarch64 + + e8f9a5afb7823e6f83be0fa0e3e06777e16d999377b62068335b213e41f41748 + Library for manipulating GIF format image files + The giflib package contains a shared library of functions for +loading and saving GIF format image files. It is API and ABI compatible +with libungif, the library which supported uncompressed GIFs while the +Unisys LZW patent was in effect. + +Install the giflib package if you need to write programs that use GIF files. +You should also install the giflib-utils package if you need some simple +utilities to manipulate GIFs. + + http://sourceforge.net/projects/giflib/ + + + giflib-devel + aarch64 + + d0cd708169342fe039001c9c5e7c97eff1f70df8605f9f1afbd581aede65e099 + Development tools for programs which will use the libungif library + This package contains the static libraries, header files and +documentation necessary for development of programs that will use the +giflib library to load and save GIF format image files. + +You should install this package if you need to develop programs which +will use giflib library functions. You'll also need to install the +giflib package. + + http://sourceforge.net/projects/giflib/ + + + giflib-utils + aarch64 + + 2d78c18cacfd4653c97df30f3275bce0bccc641bca208bf9c989ed5459ac93aa + Programs for manipulating GIF format image files + The giflib-utils package contains various programs for manipulating +GIF format image files. + +Install this package if you need to manipulate GIF format image files. +You'll also need to install the giflib package. + + http://sourceforge.net/projects/giflib/ + + + gio-branding-upstream + noarch + + 5c6281c0c313293427b9124e94454fd037e8850986bbfaad950cb53fb42fe5b9 + Upstream definitions of default settings and applications + This package provides upstream defaults for settings stored with +GSettings and applications used by the MIME system. + + http://www.gtk.org/ + + + girepository + aarch64 + + e207c69cd33d7ee8010351813af6db0edc5881f017d165bb0454265031266d5d + Base GObject Introspection Bindings + The goal of the project is to describe the APIs and collect them in +a uniform, machine readable format. + + http://live.gnome.org/GObjectIntrospection + + + git + aarch64 + + 99e77c967b94a5bbbd4b5c17556ce29f51d6e37c3d26575bf2eb33c0ba24a26b + Fast, scalable, distributed revision control system + Git is a fast, scalable, distributed revision control system with an +unusually rich command set that provides both high-level operations and +full access to internals. + +This package itself only provides the README of git but with the +packages it requires, it brings you a complete Git environment +including GTK and email interfaces and tools for importing source code +repositories from other revision control systems such as subversion, +CVS, and GNU arch. + + http://git-scm.com + + + git-arch + aarch64 + + a57c8952232e7d6d651becded0cdc5b06b67223eadeddfe0edc9c601af21f1df + Git tools for importing Arch repositories + Tools for importing GNU Arch repositories to the GIT version control +system. + + http://git-scm.com + + + git-core + aarch64 + + 8568d3bd2f7351192348eef95a29fa2dfb7ab21703d1723a41fb7850e40c4ed5 + Core git tools + Git is a fast, scalable, distributed revision control system with an +unusually rich command set that provides both high-level operations and +full access to internals. + +These are the core tools with minimal dependencies. + + http://git-scm.com + + + git-cvs + aarch64 + + b49d81ef75e67729e4401dd0a76defe543653cd27e3f3412e69c854a6e943a31 + Git tools for importing CVS repositories + Tools for importing CVS repositories to the Git version control system. + + http://git-scm.com + + + git-daemon + aarch64 + + a90abe990e060b844ebaac20f84fb730e5a24581e06a3ab9d8088dcc97d902b2 + Simple Server for Git Repositories + A really simple TCP git daemon. In the default configuration it allows +read only access to repositories in /srv/git/ that contain the +'git-daemon-export-ok' file. + + http://git-scm.com + + + git-email + aarch64 + + 41652e4e38ffcb5cb825b32a21f2f593102971b57c94b14920a4728f47b1426c + Git tools for sending email + Email interface for the GIT version control system. + + http://git-scm.com + + + git-gui + aarch64 + + cef9b52ce08bb2938197c12d5d65b0d3e42b0a7cc93f06506a6546a1ef924342 + Grapical tool for common git operations + A Tcl/Tk based graphical user interface to Git. git-gui focuses on +allowing users to make changes to their repository by making new +commits, amending existing ones, creating branches, performing local +merges, and fetching/pushing to remote repositories. + +Unlike gitk, git-gui focuses on commit generation and single file +annotation, and does not show project history. It does however supply +menu actions to start a gitk session from within git-gui. + + http://git-scm.com + + + git-svn + aarch64 + + 6a5efdcef5a862c5d92aba2313224cabb3fc2164cb8d2128e6ba4ee68ae2efa6 + Git tools for importing Subversion repositories + Tools for importing Subversion repositories to the Git version control +system. + + http://git-scm.com + + + gitk + aarch64 + + 4e5fcb97a913c074c91d2c0d63dc165236307f5c871087f30971549dd2e6c613 + Git revision tree visualiser + Grapical tool for visualization of revision trees of projects +maintained in the Git version control system. It name gitk indicates +that it's written using the Tk Widget set. + +A simple Tk based graphical interface for common Git operations is +found in the package git-gui. + + http://git-scm.com + + + glib-networking + aarch64 + + 9d2d50ea71aeed9c9ca116e41a01f4fc0ef05afa45497a12bb751238213bb7b0 + Network-related GIO modules for glib + This package contains network-related GIO modules for glib. + +Currently, there is only a proxy module based on libproxy. + + http://www.gnome.org + + + glib-networking-locale + noarch + + b03eacaebc9fa5865ffed1d8fea5e75c9feea114063e7f21392f82d9187f72dd + Translations and Locale for package glib-networking + This package provides translations for package glib-networking. + + http://www.gnome.org + + + glib2-devel + aarch64 + + f974274675bad02b7fca532a7e99fb9df2bf6da9832a94be64eb837f0e0e7dee + General-Purpose Utility Library -- Development Files + GLib is a general-purpose utility library, which provides many useful +data types, macros, type conversions, string utilities, file utilities, +a main loop abstraction, and so on. + +This package contains the development files for GLib. + + http://www.gtk.org/ + + + glib2-devel-static + aarch64 + + 0b5efac08e07fce7c507c9865082a358e980d12ce479222a837cc5cf8d30b9eb + General-Purpose Utility Library -- Static Libraries + GLib is a general-purpose utility library, which provides many useful +data types, macros, type conversions, string utilities, file utilities, +a main loop abstraction, and so on. + +This package contains static versions of the GLib libraries. + + http://www.gtk.org/ + + + glib2-locale + noarch + + 64c8617aa2c5e0bb8a7c5cdf91ff36fc23090a35a2049c73b88875e198834b89 + Translations and Locale for package glib2 + This package provides translations for package glib2. + + http://www.gtk.org/ + + + glib2-tools + aarch64 + + f0ce615be794b85d109dcb1019d05d7e6e85c5b24924a590f5e04b9ab9a47760 + General-Purpose Utility Library -- Tools + GLib is a general-purpose utility library, which provides many useful +data types, macros, type conversions, string utilities, file utilities, +a main loop abstraction, and so on. + + http://www.gtk.org/ + + + glslang + aarch64 + + da285e5390b777545971601f300d88dfc6e93b701119f451c379e301ece3af7e + Khronos reference front-end for GLSL and ESSL, and sample SPIR-V generator + Khronos reference front-end for GLSL and ESSL, and sample SPIR-V generator + + + + + gmime + aarch64 + + 2c87b230150223b9e610f63ce7cddb1799c4bf7c41416c5f67c947fa3fb4416a + MIME library + GMime is a set of utilities for parsing and creating messages using +the Multipurpose Internet Mail Extension (MIME) + + http://spruce.sourceforge.net/gmime/ + + + gmime-devel + aarch64 + + 46d97d9fe3f43427a163d891695dd87fea62db30ce22534c645699b6a4fa51c2 + GMime Development package + GMime Development package + + http://spruce.sourceforge.net/gmime/ + + + gmock + aarch64 + + 6ad1bd7361557d8079b00a5b72fe17f855f80c5fd1800a4f08c488efe3dcf6f9 + C++ mocking framework + Framework for writing and using C++ mock classes on a variety of platforms + + https://code.google.com/p/googlemock/ + + + gmock-devel + aarch64 + + 263cb10d01ff95dd99c7cff1f9290bd2c9600a0f518c60e5014f6e86bee1f94d + Development headers and libs for gmock + Standard header files for use when developing gmock based apps + + https://code.google.com/p/googlemock/ + + + gnutls + aarch64 + + 57dc600c89caeadc90b87ba6794d7f3dd78a2e3369f770ec1eb3056389b3a45b + The GNU Transport Layer Security Library + The GnuTLS project aims to develop a library that provides a secure +layer over a reliable transport layer. Currently the GnuTLS library +implements the proposed standards of the IETF's TLS working group. + + http://www.gnutls.org/ + + + gobject-introspection + aarch64 + + 79158bb6180b0a6f945da49d30f4ea5ccac40216c440eeb4f52debb158d39949 + GObject Introspection Tools + The goal of the project is to describe the APIs and collect them in +a uniform, machine readable format. + + http://live.gnome.org/GObjectIntrospection + + + gobject-introspection-devel + aarch64 + + 4fed259003a71147f3f5ce7d112796baced67a4e649b12bdd0bcf7f85989f815 + GObject Introspection Development Files + The goal of the project is to describe the APIs and collect them in +a uniform, machine readable format. + + http://live.gnome.org/GObjectIntrospection + + + gobject-introspection-docs + aarch64 + + 37bc3b2438f360953752032ab738dadb8ff0a89f181f9357ad45d661d9a3b527 + Documentation for package gobject-introspection + This package provides documentation for package gobject-introspection. + + http://live.gnome.org/GObjectIntrospection + + + gpg2 + aarch64 + + 8ccc1922927c49b1a5a167b405d6207b3f2c9291c3e5c70cd9effeab3a717204 + GnuPG 2 + GnuPG 2 is the successor of "GnuPG" or GPG. It provides: GPGSM, +gpg-agent, and a keybox library. + + http://www.gnupg.org/aegypten2/ + + + gpgme + aarch64 + + c7db816b627d0d2f6ec1aff126f1bb4b8c0667d54af39a31f2e9f3e23c3f9932 + A Library Designed to Give Applications Easy Access to GnuPG + GnuPG Made Easy (GPGME) is a library designed to make access to GnuPG +easier for applications. It provides a high-level Crypto API for +encryption, decryption, signing, signature verification, and key +management. Currently it uses GnuPG as its back-end, but the API is not +restricted to this engine. + +Because the direct use of GnuPG from an application can be a +complicated programming task, it is suggested that all software should +try to use GPGME instead. This way bug fixes or improvements can be +done at a central place and every application benefits from this. +Authors of MUAs should especially consider using GPGME. Creating a set +of standard widgets for common key selection tasks is even planned. + + http://www.gnupg.org/related_software/gpgme/ + + + gssdp + aarch64 + + 5f1be5f3e9c1967b9627b473b580c21ba793fcffbad39b0802a557e0dcab7cef + GSSDP implements resource discovery and announcement over SSDP + GSSDP implements resource discovery and announcement over SSDP and is part +of gUPnP. GUPnP is an object-oriented open source framework for creating +UPnP devices and control points, written in C using GObject and libsoup. +The GUPnP API is intended to be easy to use, efficient and flexible. GSSDP +implements resource discovery and announcement over SSDP. + + http://www.gupnp.org + + + gssdp-devel + aarch64 + + 63b4ea1820f076613d3621b948057c222b912f910ea3f50dae44cba5d2062a6a + Development package for gssdp + Development files for gssdp. + + http://www.gupnp.org + + + gst-libav + aarch64 + + 0d33ecbf645fa3f3b67e7e97bdc5155de8be9927e274f2579d6e870f57de684a + Libav plugin for GStreamer + This GStreamer plugin supports a large number of audio and video compression +formats through the use of the libav library. The plugin contains GStreamer +elements for decoding 90+ formats (AVI, MPEG, OGG, Matroska, ASF, ...), +demuxing 30+ formats and colorspace conversion. + + http://cgit.freedesktop.org/gstreamer/gst-libav + + + gst-omx + aarch64 + + 704cf5a1040a14be75057dac40adc94be293df5ee52b5d799e77b5c5ca264f72 + GStreamer plug-in that allows communication with OpenMAX IL components + gst-openmax is a GStreamer plug-in that allows communication with OpenMAX IL components. +Multiple OpenMAX IL implementations can be used. + + + + + gst-plugins-bad + aarch64 + + 9771fe135dc78ff1de70e47cdd7f3f787d70b261f3a5761aea67018529f92912 + GStreamer Streaming-Media Framework Plug-Ins + GStreamer is a streaming media framework based on graphs of filters +that operate on media data. Applications using this library can do +anything media-related,from real-time sound processing to playing +videos. Its plug-in-based architecture means that new data types or +processing capabilities can be added simply by installing new plug-ins. + + http://gstreamer.freedesktop.org/ + + + gst-plugins-bad-devel + aarch64 + + 64eec6ffb00226b2e80c4263d6468125a0dce52a7591f66048825489b5d61112 + GStreamer Streaming-Media Framework Plug-Ins + GStreamer is a streaming media framework based on graphs of filters +that operate on media data. Applications using this library can do +anything media-related,from real-time sound processing to playing +videos. Its plug-in-based architecture means that new data types or +processing capabilities can be added simply by installing new plug-ins. + + http://gstreamer.freedesktop.org/ + + + gst-plugins-bad-locale + noarch + + e64d74e54c4b5caecb21700e1abefeb7488b93594ebeb71914e0eb65c1573656 + Translations and Locale for package gst-plugins-bad + This package provides translations for package gst-plugins-bad. + + http://gstreamer.freedesktop.org/ + + + gst-plugins-base + aarch64 + + c38bcef739c647b6c9e8d8ae63601859c4c44ede56d5b2d377a057884b15be19 + GStreamer Streaming-Media Framework Plug-Ins + GStreamer is a streaming media framework based on graphs of filters +that operate on media data. Applications using this library can do +anything media-related, from real-time sound processing to playing +videos. Its plug-in-based architecture means that new data types or +processing capabilities can be added simply by installing new plug-ins. + + http://gstreamer.freedesktop.org/ + + + gst-plugins-base-devel + aarch64 + + 9926eb3da7f5596ab7ae867bba066f0ce7e16395949670b3a615480d25d811ad + Include files and Libraries + This package contains all necessary include files and libraries needed +to compile and link applications that use gstreamer-plugins-base. + + http://gstreamer.freedesktop.org/ + + + gst-plugins-base-locale + noarch + + 164fa40a2840e361f0a796dede0248fbc587a2325ba79008cf775dfd08669127 + Translations and Locale for package gst-plugins-base + This package provides translations for package gst-plugins-base. + + http://gstreamer.freedesktop.org/ + + + gst-plugins-camera-n4 + aarch64 + + 407de8d2062d911f1c220ea148f944d3bda98892140c562fe4850190a0843b78 + GStreamer codec plugins package for N4 + GStreamer codec plugins package for N4 + GStreamer is a streaming media framework, based on graphs of filters + which operate on media data. Multimedia Framework using this plugins + library can encode and decode video, audio, and speech.. + + + + + gst-plugins-good + aarch64 + + d1697da6466745db8e03667583a40192600eb9aca0c3825a2c75c839020b0b4b + GStreamer Streaming-Media Framework Plug-Ins + GStreamer is a streaming media framework based on graphs of filters +that operate on media data. Applications using this library can do +anything media-related, from real-time sound processing to playing +videos. Its plug-in-based architecture means that new data types or +processing capabilities can be added simply by installing new plug-ins. + + http://gstreamer.freedesktop.org/ + + + gst-plugins-good-locale + noarch + + 77d19081acd1359129b50e482cf9923c7f693b1e035cfb331088683f3c7fd929 + Translations and Locale for package gst-plugins-good + This package provides translations for package gst-plugins-good. + + http://gstreamer.freedesktop.org/ + + + gst-plugins-tizen + aarch64 + + 8927cf013d16395d293a029d3451b7dda10c34e748ec7aa8e355b0f21b8fbb33 + GStreamer tizen plugins (common) + GStreamer tizen plugins (common) + + http://gstreamer.freedesktop.org/ + + + gst-plugins-ugly + aarch64 + + 3ac1aa63427a2b90acd92c946e4ed941901069858410552b8b8872cb9618ca00 + GStreamer plugins from the "ugly" set + GStreamer is a streaming media framework, based on graphs of filters + which operate on media data. Applications using this library can do + anything from real-time sound processing to playing videos, and just + about anything else media-related. Its plugin-based architecture means + that new data types or processing capabilities can be added simply by + installing new plug-ins. + . + This packages contains plugins from the "ugly" set, a set of + good-quality plug-ins that might pose distribution problems. + + + + + gst-rtsp-server + aarch64 + + 621853d0c6241268d773c1cbeb965db7de64cee709a211014dacdce899d90e7f + Multimedia Framework Library + + + http://gstreamer.freedesktop.org/ + + + gst-rtsp-server-devel + aarch64 + + bcc2a9bdda0d37bca9dc1fcbba9cdde9eeb42a57c01bf87bc9c14ef28b2017ff + Multimedia Framework RTSP server library (DEV) + + + http://gstreamer.freedesktop.org/ + + + gstreamer + aarch64 + + 57d603b2718e698c12f6ae388c58795a1d3a1a74e31cb874817f5089092d8c06 + Streaming-Media Framework Runtime + GStreamer is a streaming-media framework, based on graphs of filters +which operate on media data. Applications using this library can do +anything from real-time sound processing to playing videos, and just +about anything else media-related. Its plug-in-based architecture +means that new data types or processing capabilities can be added by +installing new plug-ins. + + http://gstreamer.freedesktop.org/ + + + gstreamer-devel + aarch64 + + 09ad85093868ebae9bf042ec83caff44f1b4414bb5351af86ca1bdf79fd498c6 + Include Files and Libraries mandatory for Development + This package contains all necessary include files and libraries needed +to develop applications that require these. + + http://gstreamer.freedesktop.org/ + + + gstreamer-locale + noarch + + b2187f19de78a0f41d9067d3b67438d48cb73e41038cff092bd71e5bedda4c31 + Translations and Locale for package gstreamer + This package provides translations for package gstreamer. + + http://gstreamer.freedesktop.org/ + + + gstreamer-utils + aarch64 + + fb823cb696517a9d7c1076f88b881dc7874359429eb0aa150f801b59869e9e28 + Streaming-Media Framework Runtime + GStreamer is a streaming-media framework, based on graphs of filters +which operate on media data. Applications using this library can do +anything from real-time sound processing to playing videos, and just +about anything else media-related. Its plug-in-based architecture +means that new data types or processing capabilities can be added by +installing new plug-ins. + + http://gstreamer.freedesktop.org/ + + + gtest + aarch64 + + d2e30f12614a97f165bd2d92d1e175bf6ef670fc2ac60e816f480bc38d845cc7 + Google Test Framework + Libraries for Google's Test Framework for writing C++ Tests + + + + + gtest-devel + aarch64 + + d1665969a9833ac9b30273b4760fd6ae5ce912705efa35ef223af20102905c96 + Devel package for Google Test Framework + This is the development package containing the gtest library + + + + + gtk-doc + aarch64 + + 702281d53618005a2d2fc3f94cd4c7866c5adf3ae11c8dc047b456b389db3f1d + GTK+ DocBook Documentation Generator + Gtkdoc is a set of Perl scripts that generate API reference +documentation in DocBook format. It can extract documentation from +source code comments in a manner similar to Java-doc. It is used to +generate the documentation for GLib, Gtk+, and GNOME. + + http://www.gtk.org/gtk-doc/ + + + gum-utils + aarch64 + + 960ccf83543d739a030b329478b0f61ff43a30c635d1546cf8de747bc57382e5 + User management utility tool + User management utility tool files + + https://github.com/01org/gumd + + + gumd + aarch64 + + 68a8acdeb1dd900598d27fd3e02b2eccda24e38c1c162b19be4c203b3311a4a1 + User management daemon and client library + User management daemon and client library files + + https://github.com/01org/gumd + + + gumd-doc + aarch64 + + 7894cc265dfc34026a6b7ebc0daa9a4cbb860b4e6013a28b3b9c0577a11f5ae1 + Documentation files for gumd + Documentation files for gumd files + + https://github.com/01org/gumd + + + gupnp + aarch64 + + f248b950b28e3de78cb53480837746420c5a3158cf2026d466d805320481084d + GUPnP is an framework for creating UPnP devices & control points + GUPnP is an object-oriented open source framework for creating UPnP +devices and control points, written in C using GObject and libsoup. +The GUPnP API is intended to be easy to use, efficient and flexible. + + http://www.gupnp.org/ + + + gupnp-devel + aarch64 + + 6e743020c93b552917fef7c163d8c99c0dfd94f7ae2b8ad49c76cc61a7b0f3d3 + Development package for gupnp + Files for development with gupnp. + + http://www.gupnp.org/ + + + harfbuzz-devel + aarch64 + + 8b9b311fc3439eee4d5f35060f818820c9567fce950bd30e42f68cbb93fe7990 + An OpenType text shaping engine -- Development Files + HarfBuzz is an OpenType text shaping engine. + + http://www.freedesktop.org/wiki/Software/HarfBuzz + + + harfbuzz-tools + aarch64 + + 01a55bc0a94dbb696a365b0f0c52f6fce80951049d6102f84f4d76798aefbcdb + An OpenType text shaping engine -- Tools + HarfBuzz is an OpenType text shaping engine. + + http://www.freedesktop.org/wiki/Software/HarfBuzz + + + hash-signer + aarch64 + + 6878b22b58d6765222f0bf6ad4aa168bbf95d20702d304fd0c39ebbb09d5b003 + Commandline tool for Tizen Signing + hash-signer is command line signing tool for OBS/GBS. It generates signature +files in OBS/GBS build time. Refer to signature spec http://www.w3.org/TR/widgets-digsig. + + + + + heremaps-uc-launcher + aarch64 + + 3adecde07b2e626c8cb6cbb896277f1acfbcacce556499b36691381632bb5760 + HereMpas-UC Launcher deamon + This package is for launching the org.tizen.heremaps-uc application. + + + + + hwdata + noarch + + e3590af4d542905b4b6461c763a5cd44a7153fcb2c1aea5ce49bba9f3b795b82 + Hardware identification and configuration data + This package contains various platform specific configuration files. + + http://git.fedorahosted.org/git/hwdata.git + + + hwdata-ivi + noarch + + 35f424422e010b49bbb98b304b183d6ac1168e75807a6ad98e071ce53589faa9 + IVI platform specific configurations files + This package contains various IVI specific configuration files. + + http://git.fedorahosted.org/git/hwdata.git + + + hyphen-devel + aarch64 + + f43328d27036de93af155ab25a4ed8133dc0424d7ef184e593317b06bc5fe069 + Hyphenatione development libraries and header files + Hyphenatione development libraries and header file. + + http://hunspell.sourceforge.net + + + hyphen-tools + aarch64 + + 35a431779a8701b043d54fc44ae2d246413b452e6145b423810ff5a55e29e805 + Hyphenatione development tools + Hyphenatione development tools. + + http://hunspell.sourceforge.net + + + icu + aarch64 + + db724794aa87d9a5924fa605a90fd4e1f52e577b4f17f6c2ee4f54ffb3d69a8c + International Components for Unicode + Tools and utilities for developing with icu. + + http://www.icu-project.org/ + + + image-configurations + noarch + + a8ac19200b6ddbf8d78519d32360fb68a955b226f6caab2c1ca5cfba26ff3f9a + Create kickstart files for Tizen images + Create Configuration files to build Tizen images + + http://www.tizen.org + + + iniparser + aarch64 + + e91168839c16baf190cf13fcdd3a575157548d3ed940e4e7dd395184d9a9c212 + Stand-alone ini file parsing library + iniparser is a free stand-alone ini file parsing library. +It is written in portable ANSI C and should compile anywhere. +iniparser is distributed under an MIT license. + + http://ndevilla.free.fr/iniparser/ + + + iniparser-devel + aarch64 + + 9bec09ff561b64ec4038cf323ead455019fa66cc869a36fd52b7ba17da08344d + Development tools for stand-alone ini file parsing library + This package contains the header files and development documentation +for iniparser. If you like to develop programs using iniparser, you will need +to install iniparser-devel. + + http://ndevilla.free.fr/iniparser/ + + + iotcon + aarch64 + + f0b06ceaaeb2cc8090f25244204317074038977013933445b034252e61a580bc + Tizen IoT Connectivity + Tizen IoT Connectivity Service & Library(Client) based on Iotivity + + + + + iotcon-devel + aarch64 + + 878651f329658a1a7141e02dd16c994d94dbc640deb59b1a08bc661e428bddc3 + TizenIoT Connectivity(devel) + IoT Connectivity Manager development Kit + + + + + iotcon-test + aarch64 + + 773a021abb1362eb4ec0f85a29a6b2eac5be879c8a314956077f1277939c9062 + Tizen IoT Connectivity(test) + Tizen IoT Connectivity Test Programs + + + + + iotivity + aarch64 + + 17f3c3a1bb7e6e970e57a8b63dcf4c230f14c5b8e7fb8f7017c4d29424b596d9 + IoT Connectivity sponsored by the OCF + An open source reference implementation of the OIC standard specifications +IoTivity Base Libraries are included. + + https://www.iotivity.org/ + + + iotivity-devel + aarch64 + + 8dde96b59812db39db1e15f78e10edb1721ae54ee00c97869da290da1940f407 + Development files for iotivity + The iotivity-devel package contains libraries and header files for +developing applications that use iotivity. + + https://www.iotivity.org/ + + + iotivity-service + aarch64 + + 75363518f2bd9918ee0dbfd42b3282243252fc39c4c272c0c1dadb4418f06003 + Development files for iotivity + The iotivity-service package contains service libraries files for +developing applications that use iotivity-service. + + https://www.iotivity.org/ + + + iotivity-test + aarch64 + + 26624617aab5f1ecdbe54a38fe5229425de3876f0af42166fc86fcea7df5b2dc + Development files for iotivity + The iotivity-test package contains example files to show +how the iotivity works using iotivity-test + + https://www.iotivity.org/ + + + iproute2 + aarch64 + + c0c37b01dec74cb71c1c24f8c65d828b0b45565e18e91ebe61df5ab77d7a532d + collection of utilities for controlling TCP/IP networking and traffic control in Linux + The iproute package contains networking utilities (ip, rtmon, tc etc) +which are designed to use the advanced networking capabilities of the Linux +2.4.x and 2.6.x kernel. Ip controls IPv4 and IPv6 configuration, tc stands +for traffic control. Both prints detailed usage. rtmon monitors the routing. +table changes. + + https://www.kernel.org/pub/linux/utils/net/iproute2/ + + + iproute2-devel + aarch64 + + 409f4fa637c7869ac87b108995efd30272f871715b09dcec8e01853bd3d3d3b9 + development files for iproutes libnetlink + Header files, library and documentation for libnetlink. +A library for accessing the netlink service. + + https://www.kernel.org/pub/linux/utils/net/iproute2/ + + + iptables + aarch64 + + 7f03167dcea747ecc0a4d3f0ffcca4d1030c175e5af9d348b2fe5be59c05f645 + Tools for managing Linux kernel packet filtering capabilities + The iptables utility controls the network packet filtering code in the +Linux kernel. If you need to set up firewalls and/or IP masquerading, +you should install this package. + + http://www.netfilter.org + + + iptables-devel + aarch64 + + d2a3012fef0d05cf6f93be50518175cc924f5602ba0916e911c1ce9cda7051d5 + Development package for iptables + iptables development headers and libraries. + +The iptc interface is upstream marked as not public. The interface is not +stable and may change with every new version. It is therefore unsupported. + + http://www.netfilter.org + + + iptables-docs + aarch64 + + 7125e53b0214e2cdd6b423d38f67081738c7d2220c401505e06efef08614dfb4 + Documentation for package iptables + This package provides documentation for package iptables. + + http://www.netfilter.org + + + iputils + aarch64 + + 1114a902b69b7f4ee9c1b018c7912322324802d34945264f8dfe136fe5013e7c + IPv4 and IPv6 Networking Utilities + This package contains some small network tools for IPv4 and IPv6 like +rdisc, ping6, traceroute6, tracepath, and tracepath6. + + http://www.skbuff.net/iputils + + + ise-default + aarch64 + + aae35ae41c88862e47cc9a704e1c9d26b50188985b42a5234b3f90adcc25b6fd + Tizen keyboard + Description: Tizen keyboard + + + + + ise-default-profile_mobile + aarch64 + + bc59f9854c7da42dfea2f7b920c2a7e061557052e329bbd25bb29ee74532e4a6 + ise-default binaries and resources with mobile profile + Tizen keyboard (ise-default) binaries and resources with mobile options. +This is intended to support mobile profiles. + + + + + ise-engine-anthy + aarch64 + + 5beb8d27578be41971ef12d998959346917603e656dad5af7251f7c0fa870f06 + Anthy (Japanese) Input Method Engine for ISF + ISF is an input service framework for TIZEN. +ise-engine-anthy is ISF IMEngine module for Japanese input method base.It converts Hiragana text to Kana Kanji mixed text. + + http://sourceforge.jp/projects/scim-imengine/ + + + ise-engine-default + aarch64 + + 44a6eb83987aa15b327c5ebdf9f2fc2363f7f775a734b4294a278b15e94fa379 + Multilingual Keyboard ISE + Multilingual Keyboard Input Service Engine (ISE) is a keyboard input method (IM), and +it is based on Input Service Framework(ISF). + + + + + ise-engine-hangul + aarch64 + + 4658f0d191d22a06da1a633d36ccbdc35689566af40703f00e6e1961dd730fb0 + Hangul Input Method Engine for ISF + Hangul Input Method Engine enables isf to input Hangul (Korean) +characters from the keyboard using the plugin modules and the data files. + + + + + ise-engine-sunpinyin + aarch64 + + 847d29259a1c57e61659f202202fc962338935e561e5f7711abeb49b935c84cf + Chinese Pinyin ISE + Chinese Pinyin Engine ISE and it has been supported by Input Service Framework(ISF). + + + + + ise-engine-sunpinyin-devel + aarch64 + + 1a78e36d42b0f72dffe2744afee3f4761a9e27502935250f9536dcb9cb0c5829 + Chinese Pinyin ISE header files + This package contains Chinese Pinyin engine ISE header files and static libraries for Soft ISE development. + + + + + ise-engine-tables + aarch64 + + 107abde5b559685636832ffb85476a9065463db26ea1be9ba65f13fd6a32de07 + SCIM Generic Table IMEngine and its data files + This package includes Generic Table IMEngine for SCIM and many +data files for it. + + http://sourceforge.net/projects/scim + + + ise-engine-tables-additional + aarch64 + + b57d6059e349c8e6a50a514173a4ad883e62a90d57b9fc229619f11569c1dad0 + Data files for additional languages + This package includes table IM data files for additional languages, +such as Russian etc.. + + http://sourceforge.net/projects/scim + + + ise-engine-tables-zh + aarch64 + + 5d738955d0cb1caf9bf5d9fede0d3916f057b2fc0e03f3e7579e4f115d7a7c3a + Data files for Chinese + This package includes table IM data files for Chinese. + + http://sourceforge.net/projects/scim + + + isf + aarch64 + + e5df565886d86119ced9151ecc4564a4631d4e50e54127ef7b82b9a5d860df11 + Input Service Framework + Input Service Framewok (ISF) is an input method (IM) platform, and it has been derived from SCIM. + + + + + isf-config-mobile + noarch + + 036d6ff6a7520f2b26ec835e3119529fbde2ee863f6b9d7c74581271803c7677 + ISF config files for mobile profile + ISF configuration files for mobile profile + + + + + isf-devel + aarch64 + + ba0355864b3168f447d053d397705b2e9364d5bcc9d9efd43e2595480199b9a0 + ISF header files + This package contains ISF header files for ISE development. + + + + + iso-codes + noarch + + 03177d5901514cdcac870b4b9278925f3ee2bf828978433ef8f4febb21787d79 + ISO code lists and translations + This package provides the ISO 639 Language code list, the ISO 4217 +Currency code list, the ISO 3166 Territory code list, and ISO 3166-2 +sub-territory lists, and all their translations in gettext format. + + http://alioth.debian.org/projects/pkg-isocodes/ + + + iso-codes-devel + noarch + + 48817398e3393202dc360892626df314f26aad6fe1039151ad70bb684eb69ae2 + Files for development using iso-codes + This package contains the pkg-config files for development +when building programs that use iso-codes. + + http://alioth.debian.org/projects/pkg-isocodes/ + + + iso_ent + noarch + + 381589fd3f30599219adca22eb11cbb3afa0c778d14e4be6980c5cfc25099b6b + Character Entity Sets for ISO 8879:1986 + Character entity sets for ISO 8879:1986. + + + + + js + aarch64 + + 54d85f67331675abab01b5b3a50ae334ae3d9488d2aece91553733dac94e8151 + JavaScript interpreter + JavaScript is the Netscape-developed object scripting language used in millions +of web pages and server applications worldwide. Netscape's JavaScript is a +superset of the ECMA-262 Edition 3 (ECMAScript) standard scripting language, +with only mild differences from the published standard. + + http://www.mozilla.org/js/ + + + js-devel + aarch64 + + 0017bdcc73c5c3dbd61cdf80b3375139158fa59bf01811235ae3800b8d322cd7 + Header files, libraries and development documentation for js + This package contains the header files, static libraries and development +documentation for js. If you like to develop programs using js, +you will need to install js-devel. + + http://www.mozilla.org/js/ + + + json-glib-devel + aarch64 + + 3436bd6a03ab519a1f7ac052fffcf00af82964cba80654b7f7f0e4ec41e1f399 + Library for JavaScript Object Notation format - Development Files + JSON is a lightweight data-interchange format.It is easy for humans to +read and write. It is easy for machines to parse and generate. + +JSON-GLib provides a parser and a generator GObject classes and various +wrappers for the complex data types employed by JSON, such as arrays +and objects. + +JSON-GLib uses GLib native data types and the generic value container +GValue for ease of development. It also provides integration with the +GObject classes for direct serialization into, and deserialization from, +JSON data streams. + +This package contains development files needed to develop with the +json-glib library. + + http://live.gnome.org/JsonGlib + + + json-glib-locale + noarch + + 42c6277051c3c5d606ad95458bbad70e22e018fb93219b53f20593a3002e6348 + Translations and Locale for package json-glib + This package provides translations for package json-glib. + + http://live.gnome.org/JsonGlib + + + jsoncpp + aarch64 + + c1d492785290f68ac3f843c8961d2816ad31e2742ac735f203c95f96129cecb7 + JSON library implemented in C++ + jsoncpp is an implementation of a JSON (http://json.org) reader and writer in +C++. JSON (JavaScript Object Notation) is a lightweight data-interchange format. +It is easy for humans to read and write. It is easy for machines to parse and +generate. + + https://github.com/open-source-parsers/jsoncpp + + + jsoncpp-devel + aarch64 + + 5df3eb167353142af0265de122d964cf0bf510e450752e2eb2feb9ad97918784 + Development headers and library for jsoncpp + This package contains the development headers and library for jsoncpp. + + https://github.com/open-source-parsers/jsoncpp + + + jsoncpp-doc + noarch + + 5bcc8371c1ffa237883ddaba5be80f34c38e3af3a361ba7bf0bced257157b9d0 + Documentation for jsoncpp + This package contains the documentation for jsoncpp + + https://github.com/open-source-parsers/jsoncpp + + + jsontool + aarch64 + + a2fb3647a65402975a79053e6497ec5085b248dddaed6865c712579d3de5e35c + Tool for json file validation, merging, modification, filtering etc. + Tool for json file validation, merging, modification, filtering etc. + + + + + key-manager + aarch64 + + 5876f76bc5b8cd90f8327f7362e9bb686c16676c74aa43d5f161a53e98d5514a + Central Key Manager and utilities + Central Key Manager daemon could be used as secure storage +for certificate and private/public keys. It gives API for +application to sign and verify (DSA/RSA/ECDSA) signatures. + + + + + key-manager-pam-plugin + aarch64 + + 4f96fd05d67a633514eb2906b1ad3521db8f62eb43dbd9ede74d1d05a10acc6e + CKM login/password module to PAM + CKM login/password module to PAM. Used to monitor user login/logout +and password change events from PAM + + + + + key-manager-tests + aarch64 + + c4b4970be067bee5d34b5222d757a443fd938aa2daf326eed71e1324ea939994 + Internal test for key-manager + Internal test for key-manager implementation. + + + + + keyutils + aarch64 + + b6e3700557cbac105dfbf6bb79bc1e551e103d55be269400abbcaa8cfcdf3532 + Linux Key Management Utilities + Utilities to control the kernel key management facility and to provide +a mechanism by which the kernel can call back to user space to get a +key instantiated. + + http://people.redhat.com/~dhowells/keyutils/ + + + keyutils-devel + aarch64 + + a9ed3eef846c308fd491b69dd8438259b6963ebbe30c62a3c028f361bc0f61ca + Development package for building linux key management utilities + This package provides headers and libraries for building key utilities. + + http://people.redhat.com/~dhowells/keyutils/ + + + kickstarter + noarch + + 9b7a95326e360236b10765066fb2632b66efb3fb45713dbeaa2cee4f090473f7 + Create kickstart files for image creation + Create Configuration files(kickstart) to build images + + http://www.tizen.org + + + klay + aarch64 + + a8939a3df74a7e4704448e339d8028bec1bc3fa047ea899528bbde62010172ba + Tizen Klay static library and header files + The klay package provides a static library and header files +which can be used for many servers and clients + + + + + klay-test + aarch64 + + 374f49425ab531feacfc589e27507b43effe8cdce7e90164819f5d05cc0bf557 + Klay test + Testcases for klay library + + + + + kmod + aarch64 + + e7a0bc6bd460947a47a56df1c4058e786cb6eb4966afc1330335359d5f156ab4 + Utilities to load modules into the kernel + kmod is a set of tools to handle common tasks with Linux kernel +modules like insert, remove, list, check properties, resolve +dependencies and aliases. + +These tools are designed on top of libkmod, a library that is shipped +with kmod. The aim is to be compatible with tools, configurations and +indexes from module-init-tools project. + + http://www.politreco.com/2011/12/announce-kmod-2/ + + + kmod-compat + aarch64 + + 8a515c71251aa36265d10fefe80d3ca93afc959c08cb3df5a174811f099fc333 + Compat symlinks for kernel module utilities + kmod is a set of tools to handle common tasks with Linux kernel +modules like insert, remove, list, check properties, resolve +dependencies and aliases. + +This package contains traditional name symlinks (lsmod, etc.) + + http://www.politreco.com/2011/12/announce-kmod-2/ + + + kmod-docs + aarch64 + + 94d774f6b0a13339041f8215cbb8529dec72c5bd208da42f78a1468c6d0fb36c + Documentation for package kmod + This package provides documentation for package kmod. + + http://www.politreco.com/2011/12/announce-kmod-2/ + + + kpartx + aarch64 + + d323811eaef3b5bef0af0aecd8fc0d647be81490beeac8cbb7dc96a24a130bc6 + Manages partition tables on device-mapper devices + The kpartx program maps linear devmaps to device partitions, which +makes multipath maps partionable. + + + +Authors: +-------- + Christophe Varoqui <christophe.varoqui@free.fr> + + http://christophe.varoqui.free.fr/ + + + krate + aarch64 + + 2398bc6a787ef9f01b976e8e4b099939c3def8bdaa904636aa24b13ceced7017 + Tizen Krate Manager + The krate package provides a daemon which is responsible for managing each of +krates. + + + + + krb5 + aarch64 + + 837fcda09ce0908998400b3b6c6f1470f157db1ff2d20d1c80c65bced5791c5e + MIT Kerberos5 Implementation--Libraries + Kerberos V5 is a trusted-third-party network authentication system, +which can improve your network's security by eliminating the insecure +practice of clear text passwords. + + http://web.mit.edu/kerberos/www/ + + + krb5-devel + aarch64 + + a42e85e9e6c393666da9a916102a95e547c9ae86ad1fa1ac3e001c0018196062 + MIT Kerberos5 - Include Files and Libraries + Kerberos V5 is a trusted-third-party network authentication system, +which can improve your network's security by eliminating the insecure +practice of cleartext passwords. This package includes Libraries and +Include Files for Development + + http://web.mit.edu/kerberos/www/ + + + launchpad + aarch64 + + b66ccd639f40e6c518ed47a65387c0538dc0f50d5be88571682239e030e92070 + Launchpad for launching applications + Launchpad for launching applications + + + + + launchpad-devel + aarch64 + + 9ca746ccf0531cf73b0f5b3e5074fbacb2596ef7e191418053c7cd473f0edd97 + Launchpad for launching applications (devel) + Launchpad for launching applications (devel) + + + + + lbs-server + aarch64 + + 2502b1febf06b9b2d07dbdca5f32496298841bf6f0e99d33c0d4a8dbd64cbc35 + LBS Server for Tizen + LBS Server for Tizen +LBS Server provides geographical location information + + + + + lbs-server-plugin-devel + aarch64 + + c969ee413455d2af8b4523ea12874cba7d724ddbc04c32ff1482fe3647486f96 + LBS Server plugin for Tizen (Development) + LBS Server plugin for Tizen (Development) +This package provides header files and pkgconfig file for LBS Server plugin + + + + + lbs-server-plugin-replay + aarch64 + + 6dc5b125f632cfc71991c2a716a683d88726cccf97fabc9388f1fb21a7d98fec + LBS Server plugin library for replay mode + LBS Server plugin library for replay mode + + + + + leveldb-devel + aarch64 + + 40ddf8b8514cabc4cc637f4fd81469d9e310d5a319df5db8d348d27c013f508e + A fast key-value storage library - Development + LevelDB is a fast key-value storage library written at Google +that provides an ordered mapping from string keys to string values. + +Development Files. + + + + + libaccount-service + aarch64 + + 80746b55b34ad5419bf9a0daa1b431aa1d381f58a5b4e124aefb7f127fea6a37 + Account DB library + Account DB libraryXB-Public-Package: no + + + + + libaccount-service-devel + aarch64 + + 86106195a6d29eb5c35bd794321cabf2b703d9e33410fc138ede0b1094b7bc3c + Development files for libaccount-service + Development files for libaccount-service + + + + + libaio + aarch64 + + 9982be08531f271b46b361659c8dc1ee5f36e237754984181572215b90195a76 + Linux-Native Asynchronous I/O Access Library + The Linux-native asynchronous I/O facility ("async I/O", or "aio") has +a richer API and capability set than the simple POSIX async I/O +facility. This library provides the Linux-native API for async I/O. The +POSIX async I/O facility requires this library to provide +kernel-accelerated async I/O capabilities, as do applications that +require the Linux-native async I/O API. + + http://kernel.org/pub/linux/libs/aio/ + + + libaio-devel + aarch64 + + 37b6dc88e460133e4d133ae01bd37aa56fc739a2fc20d84c9360733f3f30be10 + Development Files for Linux-native Asynchronous I/O Access + This package provides header files to include, and libraries to link +with, for the Linux-native asynchronous I/O facility ("async I/O", or +"aio"). + + http://kernel.org/pub/linux/libs/aio/ + + + libalarm + aarch64 + + e5a12a6e2e185a3fe1703cc54a6f45478e9caabd4506bbdd648fc1b7d24549e5 + Alarm server libraries + Alarm server libraries for client + + + + + libalarm-devel + aarch64 + + ca151b89919b510957f05b956cbb3278674c4c79905ea36bf52616433ae0d717 + Alarm server libraries (devel) + Alarm server libraries development package (devel) + + + + + libaskuser-common + aarch64 + + 67d36d6139d099f4888ba2e404149dad70887f3a212b6d45a2acbb5a43c0523a + Askuser common library + Askuser common library with common functionalities + + + + + libasound + aarch64 + + 2d3b32c189ed6ffa8fc1e2e309ec310ffb37291d13a18a82625650a23ebd8174 + ALSA Library package for multimedia framework middleware package + ALSA Library package for multimedia framework middleware package + + http://www.alsa-project.org/ + + + libasound-devel + aarch64 + + ce5832f4d19f4b87b9561f9dc8cf7599f5150e6e3ba68d7a592d39845bdfa83b + ALSA Library package for multimedia framework middleware package + ALSA Library package for multimedia framework middleware package + + http://www.alsa-project.org/ + + + libaspell + aarch64 + + 0338eca5d0b3c3cf748f5976ceaeac5ac61478e16ec4a65a1718b561b4bfdd01 + GNU Aspell Library + GNU Aspell is a spell checker designed to eventually replace Ispell. It +can be used as a library or as an independent spell checker. + +This package contains the aspell library. + + http://aspell.net/ + + + libassuan + aarch64 + + ee75fbeb20823aa87fa728edd91d27d9c93fc81bf3b064af37c188cafd215c45 + IPC library used by GnuPG version 2 + Libassuan is the IPC library used by gpg2 (GnuPG version 2) + + http://www.gnupg.org/aegypten2/index.html + + + libassuan-devel + aarch64 + + 6df3a1e222e6554bf05b878b28af5602dd7366d5697d4e40c82b49e4968af7f0 + IPC library used by GnuPG version 2 + Libassuan is the IPC library used by gpg2 (GnuPG version 2) + +gpgme also uses libassuan to communicate with a libassuan-enabled GnuPG +v2 server, but it uses it's own copy of libassuan. + + http://www.gnupg.org/aegypten2/index.html + + + libatk + aarch64 + + be8fb5839d2601979a9516d64674bd74f8e49ca89900ea88d2a8bd89760924f5 + An Accessibility ToolKit + The ATK library provides a set of accessibility interfaces. By +supporting the ATK interfaces, an application or toolkit can be used +with screen readers, magnifiers, and alternate input devices. + + http://www.gtk.org/ + + + libatk-bridge-2_0-0 + aarch64 + + 669aa9718b5b966645733c9a72487d37022a2a4576c3453f30df59d420e3488a + ATK/D-Bus bridging library + AT-SPI is a general interface for applications to make use of the +accessibility toolkit. This version is based on dbus. + +The package contains a ATK/D-Bus bridge library. + + http://www.gnome.org/ + + + libatspi0 + aarch64 + + 7ef4b53ce71fcca08b7cfb49340ca187919708e774a86c7bfd8f91dd7a2f3a6d + An Accessibility ToolKit -- Library + AT-SPI is a general interface for applications to make use of the +accessibility toolkit. This version is based on dbus. + + http://www.gnome.org/ + + + libaugeas + aarch64 + + 5e050f78f5c58cb470b495859448f911e0056b9926c373c9aa9557979ecc8129 + A library for changing configuration files + A library for programmatically editing configuration files. Augeas +parses configuration files into a tree structure, which it exposes +through its public API. Changes made through the API are written back +to the initially read files. + +The transformation works very hard to preserve comments and formatting +details. It is controlled by ``lens'' definitions that describe the +file format and the transformation into a tree. + + http://augeas.net/ + + + libauth-fw-client + aarch64 + + e663f333c238a8c15fb76c4d2cf10a8c8ff81e470cc492d6f16f16b55c281662 + Authentication framework (client) + Authentication framework package (client) + + + + + libauth-fw-client-admin + aarch64 + + d143aad17abcbeba57077917e6274fd3baf18350555532f68ac5ec341eddf935 + Authentication framework (client-admin) + Authentication framework package (client-admin) + + + + + libauth-fw-client-devel + aarch64 + + 4b5a0c71a5d3d50bffdb3243fa70f9f26dfe803a9db7a206218e4ce8c2ec5973 + Authentication framework (client-devel) + Authentication framework package (client-devel) + + + + + libavcodec + aarch64 + + e9ed7831c6db0c91b21ac629c65622becfec9491d29dd6947837a2914d4ff004 + AV codec lib + AV codec library + + http://libav.org + + + libavcodec-devel + aarch64 + + 0f8f3ffcb41f200257891d6f25789faa7513ba6c1441465fd93a7b75e40d43a1 + AV codec lib (devel) + AV codec library (devel) + + http://libav.org + + + libavfilter + aarch64 + + a89f5ce9fe611cee7c637309cb6d2a4e0d7f88082b76da391afd0ae06cadaa6d + AV util lib + AV filter library + + http://libav.org + + + libavfilter-devel + aarch64 + + bea7e03892f343ef2481aaec91c44ec24ec9fbb3591c0418f52a8dc542a1774d + AV util lib (devel) + AV filter library (devel) + + http://libav.org + + + libavformat + aarch64 + + 9eb62e516d3b140f2a8a780d0b62b7ffacdff32f52074275a82adbe45e9d2e52 + AV format lib + AV format library + + http://libav.org + + + libavformat-devel + aarch64 + + c58e8a019087fce60042314f4ac257994ff0764833b9af4d705619f93c475e43 + AV format lib (devel) + AV format library (devel) + + http://libav.org + + + libavtools + aarch64 + + f631a815b3ba71c90f6b2e9dcd7d39b0679dc705cca227a1f8dd6091bf238540 + AV tools + AV tools binary + + http://libav.org + + + libavutil + aarch64 + + 25ebd0485b6d1ac47c4f6a729b8cdc45489a4151949e40e8d36f43092b9cec3c + AV util lib + AV util library + + http://libav.org + + + libavutil-devel + aarch64 + + cfa6a94b7352a7e6a4c3a42579d4fef1fd9fb07f02114aac11ac2ec6e315a690 + AV util lib (devel) + AV util library (devel) + + http://libav.org + + + libbluetooth + aarch64 + + d8c75ff24c42e09499a96be3fa3fdb8b99fd467d504eb236ff3b418bdfa5a5d0 + Bluetooth Libraries + Bluetooth protocol stack libraries. + + http://www.bluez.org/ + + + libbluetooth-share + aarch64 + + 1dc76fe38b48f217e44a7231aa5237014776a69683ea6d651742627117a529b6 + Bluetooth share library + Bluetooth share library + + + + + libbluetooth-share-devel + aarch64 + + 2b60525a48b8c84807af5673dde050b83a71c104a547f0eaaaaf12547019833e + Development package for libbluetooth-share + Development package for libbluetooth-share + + + + + libbmp + aarch64 + + ec4d49a5aea50a24171bb029f3c5f6dc03b062e35dc0df7026daf331d7a86014 + A library of functions for encoding BMP image format files + libbmp is a simple, cross-platform, open source (revised LGPL-2.1) C library designed for easily +reading, writing, and modifying Windows bitmap (BMP) image files. +The library is oriented towards the novice programmer with little formal experience, +but it is sufficiently capable for anybody who desires to do I/O and pixel operations +on uncompressed 1, 4, 8, 16, 24, and 32 bpp (bits per pixel) BMP files. + + https://code.google.com/p/libbmp/ + + + libbmp-devel + aarch64 + + 8c1cc247245bc3449b810d0d4ec3131a45545d8cff41f5063552e6aa8c25599b + A library of functions for encoding BMP image format files (DEV) + A library of functions for encoding BMP image format files - Development files. + + https://code.google.com/p/libbmp/ + + + libcairo + aarch64 + + f34d553bcbfbc02f2e2833401420c9dc12ff879ca6feea241d31c02f53d31d6f + Vector Graphics Library with Cross-Device Output Support + Cairo is a vector graphics library with cross-device output support. +Currently supported output targets include the X Window System, +in-memory image buffers, and PostScript. Cairo is designed to produce +identical output on all output media while taking advantage of display +hardware acceleration when available. + + http://cairographics.org/ + + + libcairo-gobject + aarch64 + + 40e020f663e7d099e56e5a06912c5df7266ce403454320ebfb88d3b74817528c + Vector Graphics Library with Cross-Device Output Support + Cairo is a vector graphics library with cross-device output support. +Currently supported output targets include the X Window System, +in-memory image buffers, and PostScript. Cairo is designed to produce +identical output on all output media while taking advantage of display +hardware acceleration when available. + +This library contains GType declarations for Cairo types. It is also +meant to support gobject-introspection binding creation. + + http://cairographics.org/ + + + libcairo-script-interpreter + aarch64 + + f73547429e533f1779f26ebdaf716e5fc7c44c3ae8ab7d1f77359ec2d3952723 + Vector Graphics Library with Cross-Device Output Support + Cairo is a vector graphics library with cross-device output support. +Currently supported output targets include the X Window System, +in-memory image buffers, and PostScript. Cairo is designed to produce +identical output on all output media while taking advantage of display +hardware acceleration when available. + + http://cairographics.org/ + + + libcall-manager + aarch64 + + 9a400bf2da89e92d4790132a6bd027009e38bf6628b4042f5c281d7fdb49efa8 + Call Manager library + Call Manager Library + + + + + libcall-manager-devel + aarch64 + + 59b7361be90ff8ef4311638c44b0bf736c4d5534f04724e88f5af126f94e4d50 + Call Manager API library (devel) + Call Manager API library (devel) + + + + + libcap-ng + aarch64 + + b532dfba6efa513f9f40cbdb004fa6d311ef08655af65c35e153d8d63f7dccc0 + An alternate POSIX capabilities library + Libcap-ng is a library that makes using posix capabilities easier + + http://people.redhat.com/sgrubb/libcap-ng + + + libcap-ng-devel + aarch64 + + d088fd5fd09af679afce454099534a4f235299c3319169ed13bce49c9ad31682 + Header files for libcap-ng library + The libcap-ng-devel package contains the files needed for developing +applications that need to use the libcap-ng library. + + http://people.redhat.com/sgrubb/libcap-ng + + + libcap-ng-utils + aarch64 + + 5298200e06ae63b914742c22c95dab9b286e6750ad02dda27575d313a8318ee4 + Utilities for analysing and setting file capabilities + The libcap-ng-utils package contains applications to analyse the +posix capabilities of all the program running on a system. It also +lets you set the file system based capabilities. + + http://people.redhat.com/sgrubb/libcap-ng + + + libcert-checker-client + aarch64 + + 25e41203369c2a64288778f6e935db0bd2f83200f16815fd7c34173fc88e7e0c + Client Library package for cert-checker + cert-checker client library package. + + + + + libcert-checker-common + aarch64 + + b57635e62ac1a74f365b19ca33140f6a05c207976641f606b893d2e26e0100ab + Common Library package for cert-checker + cert-checker common library package. + + + + + libconfig + aarch64 + + 2e6e723809a38ccfef650342cb41e5be43639f490df48681cfdeb15fa8411f21 + C/C++ configuration file library + Libconfig is a library for reading and writing configuration files. +Format of configuration files is more readable than XML and library +does all the job related to types convesions. + + + + + libconfig-devel + aarch64 + + 6895347a132f8faabea7897223004c080afd2b1a42d057c9a72306a002d34666 + Development package for libconfig + Development libraries for libconfig. + + + + + libcore-sync-client + aarch64 + + abd839d161564ff2a91e55d7929f12de7ce32428bc159903f5e90964a3dab53b + Sync manager client library + sync client provides sync adapter functionality to register sync adapters and to get callbacks. + + + + + libcore-sync-client-devel + aarch64 + + e5baf73da18aab2ebd4e3ea3f3acbcac033c6bd21ea1d4d61bf20bac84177901 + Sync manager client library (Development) + sync client provides sync adapter functionality to register sync adapters and to get callbacks. + + + + + libcryptsvc + aarch64 + + 4c0a54f98b3118ceb7ac3ff35d42f11654f86b345a62043735b9fe5898a05cd0 + Crypto Service Library + Crypto Service Library. + + + + + libcryptsvc-devel + aarch64 + + f811e663ce5b50b17f3f1350eebec0b96ace3011c11863ea6e3e50c8f03814de + Crypto Service Library (Development) + Crypto Service Library (Development). + + + + + libcryptsvc-test + aarch64 + + 4f746cd6e9c9ca0e9b2e6e88fc453a9d0150eb887482dcd2c92eda35deb1aedd + Testing for Crypto Service + Testing for Crypto Service. + + + + + libcsr-framework-client + aarch64 + + f1c4bd1b8230b51a4d5afe9c5d0f54984f1bb51e72b7123fdb6eb1c1e961cfc6 + Client library package for csr-framework + csr-framework client library package. + + http://tizen.org + + + libcsr-framework-common + aarch64 + + d3f984c8747e1895cfb7fa5c7c963c14df0c1c8ed38c99d007f12f36fdcfa78f + Common library package for csr-framework + csr-framework common library package. + + http://tizen.org + + + libcurl + aarch64 + + b892b59757ae781d7d484a47176ec7f8f490311950480f22207e85a70a2348b3 + A library for getting files from web servers + This package provides a way for applications to use FTP, HTTP, Gopher and +other servers for getting files. + + http://curl.haxx.se/ + + + libcurl-devel + aarch64 + + f29877e7364edb9c7e99deb6d87aee22c226ec8318d6a41423bace558e2653be + Files needed for building applications with libcurl + libcurl is the core engine of curl; this packages contains all the libs, +headers, and manual pages to develop applications using libcurl. + + http://curl.haxx.se/ + + + libcynara-admin + aarch64 + + 7e2be564c442c78e2ae6e3aedb4f28fde2af2529715722983034337a49e920bd + Cynara - admin client library + admin client library for setting, listing and removing policies + + + + + libcynara-agent + aarch64 + + 39158099918a0db073e0ef5b41e13bac3ac2a9be23c182d925a44e7b3757fcff + Cynara - agent client library + agent client library for communication with cynara service and plugins + + + + + libcynara-client + aarch64 + + 3daeec45b761b823ef4a461910afa4af9fd9e1097e632d600ee7adbe7a1b9ab7 + Cynara - client libraries + Client libraries for checking policies: synchronous and asynchronous + + + + + libcynara-commons + aarch64 + + 921cd84975e0496c4e1be97d4abf8ecd5034386a856f50a608e18f166c6ceafd + Cynara - cynara commons library + cynara common library with common functionalities + + + + + libcynara-creds-commons + aarch64 + + bf84b870e5bb5589f0221519546aab4c5ca3920dde524bc34a44c532088e35aa + Base library for cynara credentials helpers + Base library for cynara credentials helpers + + + + + libcynara-creds-dbus + aarch64 + + 31bfe2278536d4edd36e9f7541804cbca99cd79c37f03c35b50d3b9d4850892c + Cynara credentials helpers library for dbus clients + Cynara credentials helpers library for dbus clients + + + + + libcynara-creds-dbus-devel + aarch64 + + 8d1898d40adad43ad88690baf1ae6a91011858a29d6d98ed8cf1c7444b3cdd04 + Development files for dbus helpers library + Development files for dbus helpers library + + + + + libcynara-creds-gdbus + aarch64 + + 509d7f7e2a0260a0f2ac74285b60f09d9f37eadc871bde503e68204d18e2e139 + Cynara credentials helpers library for gdbus client + Cynara credentials helpers library for gdbus clients + + + + + libcynara-creds-gdbus-devel + aarch64 + + 7a090026570a23f3e27270b9a4db2a0927688fdce44bc3d10cbd6c0052f54338 + Development files for gdbus helpers library + Development files for gdbus helpers library + + + + + libcynara-creds-self + aarch64 + + 60994b91b784629db9e4937521884ebe17e754f64704354cd2ffd8f34ede1586 + Cynara credentials helpers library for current process + Cynara credentials helpers library for current context process + + + + + libcynara-creds-socket + aarch64 + + cfe7c9d163f1ada7e2cfc63d7030093038975543d7dba8bc3a004c85b522b926 + Cynara credentials helpers library for socket clients + Cynara credentials helpers library for socket clients + + + + + libcynara-monitor + aarch64 + + e3c0b9b3f2d29e08a1981c8b62a0496dfc894cb6ed85eb7ba605df647a94c4d9 + Cynara - monitor client library + Monitor client library for obtaining check logs + + + + + libcynara-session + aarch64 + + 7fc0d3aa589d5dd9da605a7eab0053ab3698682b9e8f20ef525d9e15c3b9ff10 + Cynara helper client session string creation library + Cynara helper client session string creation library + + + + + libdaemon + aarch64 + + 290ab568ac49880b69678c6b934a55f6ffbd22403a6af95ed6d1d9a7149a7633 + Lightweight C library That Eases the Writing of UNIX Daemons + libdaemon is a lightweight C library that eases the writing of UNIX +daemons. + + http://0pointer.de/lennart/projects/libdaemon/ + + + libdaemon-devel + aarch64 + + 466e63ad836d3298ec7f898471c32f3c3dbcb3006a590ea522ea92f725acb226 + Lightweight C library That Eases the Writing of UNIX Daemons + libdaemon is a lightweight C library that eases the writing of UNIX +daemons. + + http://0pointer.de/lennart/projects/libdaemon/ + + + libdatrie + aarch64 + + 64ca9cabdfe15332557df3da76a5ea645a23f155b9339d0f7d2a140199f310c8 + Double-Array Trie Library + This is an implementation of double-array structure for representing +trie, as proposed by Junichi Aoe. + +Summary: Double-Array Trie Library +Group: Development/Libraries/C and C++ + + http://linux.thai.net/~thep/datrie/datrie.html + + + libdatrie-devel + aarch64 + + d48eb7a76c9a30f85b5801260fe7f5fca9256d0e1aa497b94f998057d619b7ce + Double-Array Trie Library (development) + This is an implementation of double-array structure for representing +trie, as proposed by Junichi Aoe. + +This package contains the development files for libdatrie. + + http://linux.thai.net/~thep/datrie/datrie.html + + + libdbuspolicy + aarch64 + + 6e2df5e7ee1af4c315d7802553e09318fff369b48d8ff4b017e025f4c48029d3 + Helper library for fine-grained userspace policy handling + libdbuspolicy is a helper library for fine-grained userspace +policy handling (with SMACK support) + + + + + libdbuspolicy-devel + aarch64 + + 9e6069b10fcc6b1a2daa47d58ea3e267bd818296fcaa08d9767d97fe829f1e14 + Helper library for fine-grained userspace policy handling-development package + libdbuspolicy is a helper library for fine-grained userspace +policy handling (with SMACK support). This package contains +development files. + + + + + libdevice-node + aarch64 + + c825e0fe2ef3b40f9d84fe7ae185f73ab05ec935315f92101144faea2f98c9a2 + Library to control OAL APIs + development package of library to control OAL APIs + + + + + libdevice-node-devel + aarch64 + + 4acf577f33090efd1110a63896896c13d94ee4c4fcdf28fd5ec5bf577de65ee2 + Control OAL APIs (devel) + Library to control OAL APIs (devel) + + + + + libdeviced + aarch64 + + c0199cb6cb74503a0cb1bcc39a13d925113563ba33a40aa70e449f82ba960bbd + Deviced library + Deviced library for device control + + + + + libdeviced-devel + aarch64 + + 4c104ceb8339a386dcecfba7da06c03eef759f1d66bbd715f2fb51fb3ae30cd0 + Deviced library for (devel) + Deviced library for device control (devel) + + + + + libdevmapper + aarch64 + + 1379fa8099d2ae463eff1b6b5402e3cf3c94c1355a142579b1a44787f98a0479 + Device-mapper shared library + This package contains the device-mapper shared library, libdevmapper. + + http://sources.redhat.com/dm + + + libdlog + aarch64 + + 2127b35d204cb21889ce990ff4db2bbf4f626ef615c64b8075e01a4c4dab7c72 + Logging service dlog API + dlog API library. If dlogbackend isn't installed, pipe backend is selected. + + + + + libdlog-devel + aarch64 + + 292c15108f2e8c9c3a8a2fb2e0d2684671543d9e5e9b94f5009a2786ea34c95b + Logging service dlog API + dlog API library + + + + + libdns_sd + aarch64 + + 6c006476e70b7c651072ae46c690d354b446fa6b3cb91f33d38ad87a49fe1714 + DNS-SD - client libraries + Client libraries for DNS-SD: synchronous and asynchronous + + + + + libdpm + aarch64 + + 914407caa985aeeb918f4a23ea516757cd2a7a1ec9e254b6b51915d95192d7d8 + Tizen Device Policy Client library + The libdpm package contains the libraries needed to run DPM client. + + + + + libdpm-devel + aarch64 + + 5bc45db34502ebc92c611f65dff0b7b8a370d10ac7d07568d90c42830b6ee31b + Libraries and header files for device policy client development + The libdpm-devel package includes the libraries and header files necessary for +developing the DPM client program. + + + + + libdrm + aarch64 + + bcc06e63dc8a122a4cab5878827ad11333434655128af35b91d6f62f111308a1 + Userspace interface to kernel DRM services + Direct Rendering Manager headers and kernel modules. + + http://cgit.freedesktop.org/mesa/drm + + + libdrm-devel + aarch64 + + 6d947725bb8422a6e45ea9b0d1292b2bfc88923904185eecfdd7cb18cbd76392 + Userspace interface to kernel DRM services + Direct Rendering Manager headers and kernel modules. + +Development related files. + + http://cgit.freedesktop.org/mesa/drm + + + libdrm-tools + aarch64 + + c83d3aefc9a6f7a1264879f7adca6001ae8cbe460d3229fd05bf01c3b006e268 + Diagnostic utilities for DRI and DRM + Diagnoistic tools to run a test for DRI and DRM + + http://cgit.freedesktop.org/mesa/drm + + + libdrm-tools-exynos + aarch64 + + 09ad39e91db52ec185faf830658cf1ea701a7eb0840bc9ae9f6787a6c05b471b + Diagnostic utilities for exynos + Diagnoistic tools to run a test for exynos + + http://cgit.freedesktop.org/mesa/drm + + + libedit + aarch64 + + 8c49825cce28a9833dd485260780886213d018d3e1ab781fbc706f5e169da6c6 + Command Line Editing and History Library + libedit is a command line editing and history library. It is designed +to be used by interactive programs that allow the user to type commands +at a terminal prompt. + + http://www.thrysoee.dk/editline/ + + + libedit-devel + aarch64 + + 1ded32d2560e2d8041857fcaf33a06588d68aa8a1cac0eb7c23d3d4f440cb758 + Development files for libedit + libedit is a command line editing and history library. It is designed +to be used by interactive programs that allow the user to type commands +at a terminal prompt. + +This package holds the development files for libedit. + + http://www.thrysoee.dk/editline/ + + + libeom + aarch64 + + 2d4d95a692417bd3777eab9862d2eda944a9431c7350c268d2fce781ae6acc18 + External Output Manager Library + This package provides the runtime library to manage External Output + + + + + libeom-devel + aarch64 + + 0a2bfd7e74d1412f1d712cd680681c7f51cb84b8bce6dccfd773177c65bebc56 + EOM Library development package + External Output Manager Library development package + + + + + libevdev + aarch64 + + 7de57d968b6c993b016a7fe2432beafa3f3eb88cffff91639bbb9cc5146a85c5 + wrapper library for evdev input devices + libevdev is a wrapper library for evdev devices. it moves the common +tasks when dealing with evdev devices into a library and provides a library +interface to the callers, thus avoiding erroneous ioctls, etc. + + git://anongit.freedesktop.org/libevdev + + + libevdev-devel + aarch64 + + 201d0ebbae292bb0d89d3e1b56416524427c61b0a765cafaa6da1522f86dab02 + wrapper library for evdev input devices + libevdev is a wrapper library for evdev devices. it moves the common +tasks when dealing with evdev devices into a library and provides a library +interface to the callers, thus avoiding erroneous ioctls, etc. + + git://anongit.freedesktop.org/libevdev + + + libevent + aarch64 + + 27dff27f198956be3023f9cf448263e4498de39248eee5845682cde7bbf01766 + Library Providing an Event Handling API + The libevent library provides a mechanism to execute a function when a +specific event on a file descriptor occurs or after a given time has +passed. + + http://monkey.org/~provos/libevent/ + + + libevent-devel + aarch64 + + 8fd61c20571979c93f43b2d0ae5b7eed73990159261bb52c79b28ebbc3a23e66 + Development files for libevent2 + The libevent library provides a mechanism to execute a function when a +specific event on a file descriptor occurs or after a given time has +passed. + +This package holds the development files for libevent2. + + http://monkey.org/~provos/libevent/ + + + libexif + aarch64 + + d256cea38e0db4d6bda6acce023853e9c63f43e4f53158121784e40d11be6e08 + An EXIF Tag Parsing Library for Digital Cameras + This library is used to parse EXIF information from JPEGs created by +digital cameras. + + http://libexif.sourceforge.net + + + libexif-devel + aarch64 + + 88658c4f145b46b1debdd534427a0477d430e401bb8abb13d9ffcc1047440b9d + An EXIF Tag Parsing Library for Digital Cameras (Development files) + This library is used to parse EXIF information from JPEGs created by +digital cameras. + + http://libexif.sourceforge.net + + + libfeedback + aarch64 + + 39a119af8548984666236ef430b1083919e2fafbe8f9e5fb2440c8dfb54c9162 + Feedback library + Feedback library for playing sound and vibration + + + + + libfeedback-devel + aarch64 + + f9e7ec1f04b6a78eaca117d58c437303845526621f7591cf6980927ac984df5c + Feedback library for (devel) + Feedback library for playing sound and vibration (devel) + + + + + libfreetype + aarch64 + + 8519c438bbd45e7359e952aaa1ecf65cff2f57eebe4141cba5078b03d2b3a065 + A TrueType Font Library + This library features TrueType fonts for open source projects. This +version also contains an autohinter for producing improved output. + + http://www.freetype.org + + + libfuse + aarch64 + + 8392229a3431dec4c96a53da6202588991587f359c1c607341ae7cf940ad0900 + Library of FUSE, the User space File System for GNU/Linux and BSD + With FUSE, a user space program can export a file system through the +kernel-default (Linux kernel). + +A FUSE file system which only needs libfuse is ntfs-3g, other FUSE +file systems might need the fuse package in addition to have fusermount +and /sbin/mount.fuse. + +After installing fuse-devel, administrators can compile and install +other user space file systems which can be found at +http://fuse.sourceforge.net/wiki + + http://fuse.sourceforge.net + + + libgbm + aarch64 + + e439a38af34cb481ac4ccc6aaeacc611609c83cb510c30198c325475e87bfe49 + Wayland GBM for TIZEN + Wayland Generic Buffer Management for TIZEN + + + + + libgbm-devel + aarch64 + + 2a0f51ee735ba65ae68bd86cf77678d95af0afa696e2448347071232890c1e17 + Development header files for use with GBM + Development header files for use with Wayland GBM + + + + + libgeofence-dbus + aarch64 + + 5ba61a5406687f500b61a29ffc5ec2f325cff2ad8ce65e64b8695b7b5f005e1b + Geofence dbus library + Geofence client API library + + + + + libgeofence-dbus-devel + aarch64 + + f475f5ed6e1adbeccb5047827dd48ba719a7c545966b23e52a121ea0ee0300e1 + Telephony client API (devel) + Geofence client API library (devel) + + + + + libgio + aarch64 + + c544e4ab96ec4faee2fbf0dc476b23a5fc3208db17a472d64037d319969862bb + General-Purpose Utility Library -- Library for VFS + GLib is a general-purpose utility library, which provides many useful +data types, macros, type conversions, string utilities, file utilities, +a main loop abstraction, and so on. + +GIO provides a modern, easy-to-use VFS API. + + http://www.gtk.org/ + + + libgirepository + aarch64 + + 8d2f865121d2431ab569defff6c2101c97d11d5bf18a79d6988394e0662557c6 + GObject Introspection Library + The goal of the project is to describe the APIs and collect them in +a uniform, machine readable format. + + http://live.gnome.org/GObjectIntrospection + + + libglib + aarch64 + + 09773a9d293b62f64bf0241f692491b2f0266f67c00830d05d2f744b99257a2b + General-Purpose Utility Library + GLib is a general-purpose utility library, which provides many useful +data types, macros, type conversions, string utilities, file utilities, +a main loop abstraction, and so on. + + http://www.gtk.org/ + + + libgmodule + aarch64 + + 379d27338b92cd526dd9eca8133675a3ac12a5a5338b5a34d7d0de751c2e411d + General-Purpose Utility Library -- Library for Modules + GLib is a general-purpose utility library, which provides many useful +data types, macros, type conversions, string utilities, file utilities, +a main loop abstraction, and so on. + +The libgmodule library provides a portable way to dynamically load +object files (commonly known as 'plug-ins'). + + http://www.gtk.org/ + + + libgnutls + aarch64 + + 50c47ee09c96cc335b98d0d1819c017456be6d79dd2d277edafb29c5be939443 + The GNU Transport Layer Security Library + The GnuTLS project aims to develop a library that provides a secure +layer over a reliable transport layer. Currently the GnuTLS library +implements the proposed standards of the IETF's TLS working group. + + http://www.gnutls.org/ + + + libgnutls-devel + aarch64 + + ab43e90624c26164ccd35fb84f6d9e338acc83e041d5e617f1abba6ac31b9c9d + Development package for gnutls + Files needed for software development using gnutls. + + http://www.gnutls.org/ + + + libgnutlsxx + aarch64 + + 01bf898139feec62f55d5b6ac6128e736467d32ee7bfcc3f9397a438db26660e + The GNU Transport Layer Security Library + The GnuTLS project aims to develop a library that provides a secure +layer over a reliable transport layer. Currently the GnuTLS library +implements the proposed standards of the IETF's TLS working group. + + http://www.gnutls.org/ + + + libgnutlsxx-devel + aarch64 + + fa7c5843be2e5272e984e5eed1ab319ca71b7229ecbbaac24dd16a17d1a47d33 + Development package for gnutls + Files needed for software development using gnutls. + + http://www.gnutls.org/ + + + libgobject + aarch64 + + 9ebe587a4b20684239eaffbc07b514d25df7f7e0ebc3a7435eac00a2a38db390 + General-Purpose Utility Library -- Object-Oriented Framework for C + GLib is a general-purpose utility library, which provides many useful +data types, macros, type conversions, string utilities, file utilities, +a main loop abstraction, and so on. + +The GObject library provides an object-oriented framework for C. + + http://www.gtk.org/ + + + libgpgme + aarch64 + + f4554db4ce7ff42e1bb1ec7cbb1f08adda0bcb7ddbffa6c816c49923df7c4fe2 + A Library Designed to give Applications easy Access to GnuPG + GnuPG Made Easy (GPGME) is a library designed to make access to GnuPG +easier for applications. It provides a high-level Crypto API for +encryption, decryption, signing, signature verification, and key +management. Currently it uses GnuPG as its back-end, but the API is not +restricted to this engine. + +Who Should use GPGME? + +Because the direct use of GnuPG from an application can be a +complicated programming task, it is suggested that all software should +try to use GPGME instead. This way bug fixes or improvements can be +done at a central place and every application benefits from this. +Authors of MUAs should especially consider using GPGME. Creating a set +of standard widgets for common key selection tasks is even planned. + + http://www.gnupg.org/related_software/gpgme/ + + + libgpgme-devel + aarch64 + + 84db3f31b6bb08b9ee9ef5359d2d0c110fc39052480ded82563e8581d06917fa + A Library Designed to give Applications easy Access to GnuPG + GnuPG Made Easy (GPGME) is a library designed to make access to GnuPG +easier for applications. It provides a high-level Crypto API for +encryption, decryption, signing, signature verification, and key +management. Currently it uses GnuPG as its back-end, but the API is not +restricted to this engine. + +Who Should use GPGME? + +Because the direct use of GnuPG from an application can be a +complicated programming task, it is suggested that all software should +try to use GPGME instead. This way bug fixes or improvements can be +done at a central place and every application benefits from this. +Authors of MUAs should especially consider using GPGME. Creating a set +of standard widgets for common key selection tasks is even planned. + + http://www.gnupg.org/related_software/gpgme/ + + + libgthread + aarch64 + + aff3a02edb73ca31d49588b7547d167986630367db08ca6fd3e937b3a033dff9 + General-Purpose Utility Library -- Library for Threads + GLib is a general-purpose utility library, which provides many useful +data types, macros, type conversions, string utilities, file utilities, +a main loop abstraction, and so on. + +The libgthread library provides a portable way to write multi-threaded +software. + + http://www.gtk.org/ + + + libgum + aarch64 + + c93013f142db627c592bd7e43acb3124a8ee8f840353b223b71349b83903519b + User management client library + User management client library files + + https://github.com/01org/gumd + + + libgum-devel + aarch64 + + 675feb9a8ada3aba214c01623d809e8408f8a0f1b0573f5bea2e51037a370bc5 + Development files for user management client library + Development files for user management client library files + + https://github.com/01org/gumd + + + libhangul + aarch64 + + 28f55c71f44a5e7eaef3d197133de7c413f896f2008092241a3564d620913380 + Hangul input library used by scim-hangul and ibus-hangul + "Hangul input library used by scim-hangul and ibus-hangul + + +Authors: +-------- + Choe Hwanjin <choe.hwanjin@gmail.com> + Joon-cheol Park <jooncheol@gmail.com> + +Hangul input library used by scim-hangul and ibus-hangul +" + + http://code.google.com/p/libhangul + + + libhangul-devel + aarch64 + + 8a15330fe1a731d9ee432cd0077ba8e55c8e0cad48cf3ad3ff2219a1e7219300 + Include Files and Libraries mandatory for Development + This package contains all necessary include files and libraries needed +to develop applications that require these. + + http://code.google.com/p/libhangul + + + libharfbuzz + aarch64 + + 0dd47d1b1914095d681fa579a9696989eab741bc350e79ea695b63fde50cc1a7 + An OpenType text shaping engine + HarfBuzz is an OpenType text shaping engine. + + http://www.freedesktop.org/wiki/Software/HarfBuzz + + + libhogweed + aarch64 + + c81aecb67650ea932f754f6688acc0103641cb467dc96fed5eac7fa6f7a2be89 + Cryptographic Library for Public Key Algorithms + Nettle is a cryptographic library that is designed to fit easily in more or +less any context: In crypto toolkits for object-oriented languages (C++, +Python, Pike, ...), in applications like LSH or GNUPG, or even in kernel space. + +The libhogweed library contains public key algorithms to use with libnettle. + + + + + libhyphen + aarch64 + + 0fab6ff9f8e49beab7c73a9b8f1154b474ed145461f631f6d5c19926179ad0d1 + Hyphenation Library + Hyphenation Library. + + http://hunspell.sourceforge.net + + + libicu + aarch64 + + 30ca2492cd07029988af743e014fd0459e796955ef9accc89a242d4c6665cfed + International Components for Unicode - libraries + The International Components for Unicode (ICU) libraries provide +robust and full-featured Unicode services on a wide variety of +platforms. ICU supports the most current version of the Unicode +standard, and they provide support for supplementary Unicode +characters (needed for GB 18030 repertoire support). +As computing environments become more heterogeneous, software +portability becomes more important. ICU lets you produce the same +results across all the various platforms you support, without +sacrificing performance. It offers great flexibility to extend and +customize the supplied services. + + http://www.icu-project.org/ + + + libicu-devel + aarch64 + + c4a84c470263084cfb50711ff36c30cd57ebd79064c8be537024e2682ecf2933 + Development files for International Components for Unicode + Includes and definitions for developing with icu. + + http://www.icu-project.org/ + + + libinput + aarch64 + + da62873731b21f4bf42dd81955144b5810567811491673e40768be3d81fe4d3a + Input devices for display servers and other applications + +libinput is a library that handles input devices for display servers and +other applications that need to directly deal with input devices. + +It provides device detection, device handling, input device event +processing and abstraction so minimize the amount of custom input +code the user of libinput need to provide the common set of +functionality that users expect. + + http://www.freedesktop.org/software/libinput/libinput-0.11.0.tar.xz + + + libinput-devel + aarch64 + + 710c4101876dca66d461f2f2b8c4b07c48b4ad13acc32c2ec75f4bd06dc9ed32 + Input devices for display servers and other applications + +libinput is a library that handles input devices for display servers and +other applications that need to directly deal with input devices. + +It provides device detection, device handling, input device event +processing and abstraction so minimize the amount of custom input +code the user of libinput need to provide the common set of +functionality that users expect. + + http://www.freedesktop.org/software/libinput/libinput-0.11.0.tar.xz + + + libiri + aarch64 + + e7abaa9a7f63520990497638d1145bbf0496a4781cc2660d5dc1d7d3febd259a + An IRI parsing library + libiri is a simple toolkit for parsing Internationalized Resource Identifiers (IRIs). + +For many intents and purposes, you can think of libiri as a “URL parser which supports Unicode”. + +Specifically: + +URLs are a subset of URIs +URIs are restricted to a portion of the ASCII character set +IRIs are a superset of URIs that are not restricted to ASCII characters +If something is a valid URL or URI, it's also a valid IRI. + + http://code.google.com/p/libiri/ + + + libiri-devel + aarch64 + + c28d2786903e23e96e2598ccd6e3897cd73ce626744eba26aa6c6ea830534bcd + An IRI parsing library - Development Files + libiri is a simple toolkit for parsing Internationalized Resource Identifiers (IRIs). + + http://code.google.com/p/libiri/ + + + libjpeg + aarch64 + + 8b51e32f955fdf64fd9a6aa128385ecc0085ecb749caa7b2913ff418d739289e + The MMX/SSE accelerated JPEG compression/decompression library + This library contains MMX/SSE accelerated functions for manipulating +JPEG images. + + http://sourceforge.net/projects/libjpeg-turbo + + + libjpeg-devel + aarch64 + + 61eabb3215221fe11bd6e2d5dc7e421d83cafdfa965a2450e467fc4e48732fd0 + Development Tools for applications which will use the Libjpeg Library + The libjpeg-devel package includes the header files and libraries +necessary for compiling and linking programs which will manipulate JPEG +files using the libjpeg library. + + http://sourceforge.net/projects/libjpeg-turbo + + + libjpeg-turbo + aarch64 + + c9f5c94ffd9887f3694e8b339e109ba20a648305a3e43352454c0549c123a1e0 + A MMX/SSE2 accelerated library for manipulating JPEG image files + The libjpeg-turbo package contains a library of functions for manipulating +JPEG images. + + http://sourceforge.net/projects/libjpeg-turbo + + + libjpeg-turbo-docs + aarch64 + + 498b1c001733d9c4ca61b3a9a77a1abb0a3d320838ff12709b74266bcc64a197 + Documentation for package libjpeg-turbo + This package provides documentation for package libjpeg-turbo. + + http://sourceforge.net/projects/libjpeg-turbo + + + libjson + aarch64 + + 7c2bb60ccbdb4bb4cdaacbbb7cd6f803649577a033bd029e6d0fd430de61dc9c + JSON shared lib + This package includes the JSON library. + + http://oss.metaparadigm.com/json-c + + + libjson-devel + aarch64 + + 7bc70f434fd082bd00627b241062856296bdb6dbec58f3b9d4ee67017f9ea67e + Development headers and libraries for json-c + This package includes header files and scripts needed for developers +using the json-c library + + http://oss.metaparadigm.com/json-c + + + libjson-glib + aarch64 + + e8f34523f968cca541d1ff1b5fcc16746c78e822d9abe3c9b0f98d2cc9c3373b + Library for JavaScript Object Notation format + JSON is a lightweight data-interchange format.It is easy for humans to +read and write. It is easy for machines to parse and generate. + +JSON-GLib provides a parser and a generator GObject classes and various +wrappers for the complex data types employed by JSON, such as arrays +and objects. + +JSON-GLib uses GLib native data types and the generic value container +GValue for ease of development. It also provides integration with the +GObject classes for direct serialization into, and deserialization from, +JSON data streams. + + http://live.gnome.org/JsonGlib + + + libkey-manager-client + aarch64 + + 2998fa4d5f4e176e3552f6b581ee4b4742bafefb74422bbe621879dd81715b97 + Central Key Manager (client) + Central Key Manager package (client) + + + + + libkey-manager-client-devel + aarch64 + + fac9bb7ffa018e1ff3f1530779a0ab5f2ee9f705aefd8a78fdc642f605bad64a + Central Key Manager (client-devel) + Central Key Manager package (client-devel) + + + + + libkey-manager-common + aarch64 + + a88e69fe135009bf45bacac7305481d13c9ec22847130fc1d5fb1608460de031 + Central Key Manager (common libraries) + Central Key Manager package (common library) + + + + + libkeyutils + aarch64 + + c5860a4c03da5ad97f4143a94229b6909d5ad0e9267891323fed5819c6280072 + Key utilities library + This package provides a wrapper library for the key management facility +system calls. + + http://people.redhat.com/~dhowells/keyutils/ + + + libkmod + aarch64 + + 83040969ebb0e2a95d9ee76fec020393c49557cca1f0cb6af18ab4a59e831fd8 + Library to interact with Linux kernel modules + libkmod was created to allow programs to easily insert, remove and +list modules, also checking its properties, dependencies and aliases. + + http://www.politreco.com/2011/12/announce-kmod-2/ + + + libkmod-devel + aarch64 + + b76c2775a824c8d401b6f603795f768bbe87215ffd31f716854b500accff79cb + Development files for libkmod + libkmod was created to allow programs to easily insert, remove and +list modules, also checking its properties, dependencies and aliases. + +This package contains the development headers for the library found +in libkmod. + + http://www.politreco.com/2011/12/announce-kmod-2/ + + + libkms + aarch64 + + 641aad7cb3ed6dcbe8ff5419c8908dbcbb2409eee278b7767648bfb2e77b37fb + Userspace interface to kernel DRM buffer management + Userspace interface to kernel DRM buffer management files + + http://cgit.freedesktop.org/mesa/drm + + + libkrate + aarch64 + + 779f29641238051a35ceda60e6e47b6372118aa09ee5ebb22464ed4413c5932b + Tizen Krate Client library + The libkrate package contains the libraries needed to control inside of the krate. + + + + + libkrate-devel + aarch64 + + f1429c21b01d8da505ce046bbd7eba303f97eca977d6a7941eae4502e8703846 + Libraries and header files for krate client development + The libkrate-devel package includes the libraries and header files necessary for +developing the krate client program. + + + + + libksba + aarch64 + + 12101c0b9afb25f4cf6805f014eff1399d6ccc7bdecd80619a06478a1b108f1a + KSBA Library + KSBA is a library to simplify the task of working with X.509 +certificates, CMS data, and related data. + + http://www.gnupg.org/aegypten/ + + + libksba-devel + aarch64 + + 5abcb148ae48641f3bb9c144ea2ce5f5872d99a4804aa4ba6682aa8b63b3142c + A X + KSBA is a library to simplify the task of working with X.509 +certificates, CMS data, and related data. + +This package contains the needed files to compile and link against the +libksba. + + http://www.gnupg.org/aegypten/ + + + liblazymount + aarch64 + + 971392b19cc126449fcad1825121520c015197209845a932ed36469a99b9f0e0 + Library for lazy mount feature + Library for lazy mount feature. It supports some interface functions. + + + + + liblazymount-devel + aarch64 + + 21afbbb546a743762caa2538ee10654fa795b9bd7662edb06c2623c912734204 + Development library for lazy mount feature + Development library for lazy mount feature.It supports some interface functions. + + + + + liblbs-dbus + aarch64 + + 6307a3993a7e9fc57bf4b1b6125b1cc81969c53bfd6aef5cd11c2bc37444f915 + DBus interface for Location Based Service + DBus interface for Location Based Service +The package provides IPC between LBS Server and Location Manager. + + + + + liblbs-dbus-devel + aarch64 + + 5b2d37f92eecd1f1be75974fdf4fb3ce6d4297fc6131871e4c785751e0ff6322 + LBS DBus Library (devel) + LBS DBus Library (devel) +The package includes header files and pkgconfig file of LBS DBus interface. + + + + + liblbs-location + aarch64 + + dc046b0a5d58f46de5b1ae48052014439b97f7eb49e1e2e7ff4e6a9e9b17a0dc + Location Based Service Library + Location Based Service Library + + + + + liblbs-location-devel + aarch64 + + 10020b44bf22403aa5bbb67da606e7f0f9410d6a55a2d4324754f22108144283 + Location Based Service Library (Development files) + Location Based Service Library (Development files) +The package includes header files and pkgconfig file. + + + + + libleveldb + aarch64 + + 266421eabea750b7fc8892bfb2f503ad7da118be9b88df19d0b5af09f72cddc4 + A fast key-value storage library + LevelDB is a fast key-value storage library written at Google +that provides an ordered mapping from string keys to string values. + + + + + libmedia-service + aarch64 + + fc9266cf30038085ed870208bdcb341123d13022d797041b07c077a8d20edf5c + Media information service library for multimedia applications + This package is a library that provides the media information service for the multimedia applications. + + + + + libmedia-service-devel + aarch64 + + 58f82af552ff105a8cdc67334791a894d5ea4d428e590b05bc3078cc2854478c + Media information service library for multimedia applications. (development) + This package is a library that provides the media information service for the multimedia applications. (Development files included) + + + + + libmedia-thumbnail + aarch64 + + 7bf748a4258ef3e256e3ee06a361bd841c09516c15252ce0ea404f7826d71d86 + Media thumbnail service library for multimedia applications + Description: Media thumbnail service library for multimedia applications + + + + + libmedia-thumbnail-devel + aarch64 + + a64560e44d586c8ff7681882c735cdf7fda0236c5942c374fbf912989d33305f + Media thumbnail service library for multimedia applications (development) + Description: Media thumbnail service library for multimedia applications (development) + + + + + libmedia-utils + aarch64 + + ab608e6fc2d65709cd26ad86feb3452c96a51a2d1c1d69dc442bae8ec6ab0637 + The media server runtime library + Description : The media server runtime library. + + + + + libmedia-utils-devel + aarch64 + + 53bfd2cdaa8a68a50970aa249fee88165cc7944661f5dbcf39a38055f1816f93 + The media server runtime library (development) + Description: The media server runtime library. (Development files included) + + + + + libmm-camcorder + aarch64 + + c46dae7cb17955997beedbcd289239dbc4bfa393a6e4e4bf1933545995f70df5 + Camera and recorder library + Camera and recorder function supported library. + + + + + libmm-camcorder-devel + aarch64 + + 7a9c9ec3c3bdd07bf5cc58a38af3cc14780fd140137d15464fd07d390451a1b1 + Camera and recorder library for development + Camera and recorder function supported library for development. + + + + + libmm-common + aarch64 + + 5dfd586c43ad7ab1e485f6035380644e12f69cf39e3cd7768e7ae2247df128f5 + Multimedia Framework Common Lib + Multimedia Framework Common Library + + + + + libmm-common-devel + aarch64 + + 0f5ae256479f185ae4e74b52582f0eeb1db18792bb526dbc3556afe9425689e9 + Multimedia Framework Common Lib (devel) + Multimedia Framework Common Library (devel) + + + + + libmm-evas-renderer + aarch64 + + ce4a89f52bc229866204d7fe7cb4aaf1a0361e86d20b2f6673058fcf06713ec0 + Multimedia Framework Evas Renderer Library + Multimedia Framework Evas Renderer Library files. + + + + + libmm-evas-renderer-devel + aarch64 + + c78c446995379c23b8fbb1373a4581d87990b07d82d793e47ad04a608e146800 + Multimedia Framework Evas Renderer Library (Development) + This package contains all necessary include files and libraries needed +to develop applications that require libmm-evas-renderer. + + + + + libmm-fileinfo + aarch64 + + d460e00ad1a090dff7f5c08eda246c64b9b29b79a79c2954e8bce73d45066810 + Media Fileinfo + Multimedia Framework FileInfo Library + + + + + libmm-fileinfo-devel + aarch64 + + 5e228eec98dc2817c4d604153df5229768b25e19173168a58bf2e8c076e7ccf3 + Media Fileinfo + Multimedia Framework FileInfo Library (development files) + + + + + libmm-imgp-gstcs + aarch64 + + 56b09c9162327504e302f8d841e1f2e8db3070b9de270d3079420f1102a17df7 + Multimedia Framework Utility Library + Multimedia Framework Utility Library. + + + + + libmm-log-devel + aarch64 + + abb8e052e6b7ac6ed1dface959cdd399d4cec63d345a158f7694ec26d77f6cd2 + Multimedia Framework LOG Lib (devel) + Multimedia Framework LOG Library (devel) + + + + + libmm-player + aarch64 + + 8ae46bcd89fd73c26eb223d101baac6fe414abc6d319e3830d58635bb5e089e1 + Multimedia Framework Player Library + Multimedia Framework Player Library files. + + http://source.tizen.org + + + libmm-player-devel + aarch64 + + 03c6953c91816a922fbc3253d2143a83d584ef12dc1d10b950945dae1f6ad8fb + Multimedia Framework Player Library (DEV) + Multimedia Framework Player Library files (DEV). + + http://source.tizen.org + + + libmm-radio + aarch64 + + 159a8ed2b281959b3c3bf6794ee0c3ee2cae94c6da657addaf16c57afb26bac9 + Multimedia Framework Radio Library + Description: Multimedia Framework Radio Library + + + + + libmm-radio-devel + aarch64 + + cfe1ecc2eac70bcc7fefe12675ca86654bdb83347eef0777a2cc202a4869845a + Multimedia Framework Radio Library (DEV) + Description: Multimedia Framework Radio Library (DEV) + + + + + libmm-session + aarch64 + + 8c090c7e5f03ca3ee0cd60c67c025e30b0f7b2f1d04f3422d3cd717203094d53 + Multimedia Session Library + Multimedia Session Library package. + + + + + libmm-session-devel + aarch64 + + 627475c704084ba156ee75439483f52a1c966eccbd203249a33c5cb432264dd9 + Multimedia Session Library (Development) + Multimedia Session Library (Development) +This package contains all necessary include files and libraries needed +to develop applications that require libmm-session. + + + + + libmm-sound + aarch64 + + c89fcc9270e2b79f129d9937e2a596a2516d833342a6f7f086bc88ca27e6d842 + MMSound Package contains client lib and sound_server binary + MMSound Package contains client lib and sound_server binary for sound system + + + + + libmm-sound-devel + aarch64 + + 1b77842602b392dc422a6b9ec5f0b343e5555f139c83f78c381e76b97ad756f5 + MMSound development package + MMSound development package for sound system + + + + + libmm-sound-sdk-devel + aarch64 + + 27978baf2d2fe11f47d121b25ee3e9a3b990b779405189d7dd649e339c5e8d41 + MMSound development package + MMSound development package for sound system + + + + + libmm-sound-tool + aarch64 + + 6b6de0e3fadbdb337560ee224b42f3b4a75fb7fcd46999315507a2a3f9ba00d5 + MMSound utility package - contians mm_sound_testsuite, sound_check + MMSound utility package - contians mm_sound_testsuite, sound_check for sound system + + + + + libmm-streamrecorder + aarch64 + + c0d5c3c6b714e78560971273b900daae68acaf840a1caef2c2ef56663bc18484 + Media Stream Recorder library + This library is for making video/audio files with gstreamer + + + + + libmm-streamrecorder-devel + aarch64 + + 24d874f5d1e8a7bc3de472af695180c9ed6cdaaf30db449b4bfaacef72485b3c + Common recorder development library + Media Stream Recorder development library + + + + + libmm-transcode + aarch64 + + 19e5e5373855446a9a965ad440f2375ac0f485ad314958afddc1c1f7f96d0c6b + Multimedia Framework Video Transcode Library + Multimedia Framework Video Transcode Library. + + + + + libmm-transcode-devel + aarch64 + + 4eed67d2483646a1e72f2ba488c2ba062953326e36702307aeb8d6f6d63079c9 + Multimedia Framework Video Transcode Library (DEV) + Multimedia Framework Video Transcode Library (DEV). + + + + + libmm-transcode-tool + aarch64 + + 8d217a177b62359928003d43d948b137ac66d60e5fd2b83f212a37e82bd1e063 + Multimedia Framework Video Transcode Utility Package + Multimedia Framework Video Transcode Utility Package + + + + + libmm-utility + aarch64 + + 424b3c0e3d73c02176f9333d63b39d906a985928033b52e29f5cd58543352dc8 + Multimedia Framework Utility Library + Multimedia Framework Utility Library - Main package. + + + + + libmm-utility-devel + aarch64 + + 1f3960687ab0cf0b18c8270a3f8ff66a161865be7017ff2ca90a5fd131f9e832 + Multimedia Framework Utility Library (DEV) + Multimedia Framework Utility Library - Development files. + + + + + libmm-utility-tool + aarch64 + + c509c97927426d2a633baf92f074a9aa8cb9b3dae16721bad13cec8a8aaeeb17 + Multimedia Framework Utility tools + Multimedia Framework Utility Library - Tools. + + + + + libmm-wfd + aarch64 + + 318a562392e21b8c93bda92679fbe0ec60668bb2a506878d41c929611e07a793 + Multimedia Framework Wifi-Display Library + + + + + + libmm-wfd-devel + aarch64 + + fa694cb4b30d7d56cbbaad540a5672b28c49bd89c9091324c81d1406f2ddf05a + Multimedia Framework Wifi-Display Library (DEV) + + + + + + libmnl + aarch64 + + a64e07e32c1c12b927e34fd75e28fef0e7db05749e8c12b4c89bbbf0e39b2c99 + Minimalistic Netlink communication library + libmnl is a minimalistic user-space library oriented to Netlink +developers. There are a lot of common tasks in parsing, validating, +constructing of both the Netlink header and TLVs that are repetitive +and easy to get wrong. This library aims to provide simple helpers +that allows you to re-use code and to avoid re-inventing the wheel. + + http://netfilter.org/projects/libmnl/ + + + libmnl-devel + aarch64 + + 4e83949897f71dda327ed300cc470faf71e7787e2acf406f7a5f5d19b70656fa + Development files for libmnl + libmnl is a minimalistic user-space library oriented to Netlink +developers. There are a lot of common tasks in parsing, validating, +constructing of both the Netlink header and TLVs that are repetitive +and easy to get wrong. This library aims to provide simple helpers +that allows you to re-use code and to avoid re-inventing the wheel. + + http://netfilter.org/projects/libmnl/ + + + libmozjs185 + aarch64 + + e92dec133d0c1fd8b4a6c033ebe4f2337eb867214546658695bc447bc4b61e49 + JavaScript library + JavaScript is the Netscape-developed object scripting language used in millions +of web pages and server applications worldwide. Netscape's JavaScript is a +superset of the ECMA-262 Edition 3 (ECMAScript) standard scripting language, +with only mild differences from the published standard. + + http://www.mozilla.org/js/ + + + libmtdev + aarch64 + + a1ee9aca0dd71f0419989f11ed00b815ea1d00438b79153329eff92550ba43aa + Multitouch Protocol Translation Library + The mtdev is a stand-alone library which transforms all variants of kernel MT events to the slotted type B protocol. The events put into mtdev may be from any MT device, specifically type A without contact tracking, type A with contact tracking, or type B with contact tracking. See the kernel documentation for further details. + + http://bitmath.org/code/mtdev/ + + + libmtp + aarch64 + + 61f1e72a806a46df4125f8afc976cc7bcdcbe7793e1299e72c42ebf736114450 + Library for media transfer protocol (mtp) + Libmtp support media transfer protocol, role is initiator +This package contains the library. + + + + + libmtp-devel + aarch64 + + efa6fa8811218f50975f8f3636eb1778a2200e1850d952f7bf5b11b642dc1398 + libmtp development package + This package contains the development files. + + + + + libnet-client + aarch64 + + ea1040a4a57776523232b957e26da7989a0bb896730739ac8a1e793c82b13eb3 + Network Client library (Shared library) + Network Client library (Shared library) + + + + + libnet-client-devel + aarch64 + + d686376a5a215d0a4f423f0c0af503c5b3b7a4f8394516849d5c069421c3116c + Network Client library (Development) + Network Client library (Development) + + + + + libnetfilter_queue + aarch64 + + 09b6d4e668b77a1f8c5e04338cd6af934e6bc7862a65f6e749c41a97375ee66a + Netfilter queue userspace library + libnetfilter_queue is a userspace library providing an API to packets that have +been queued by the kernel packet filter. It is is part of a system that +deprecates the old ip_queue / libipq mechanism. + +libnetfilter_queue has been previously known as libnfnetlink_queue. + + http://netfilter.org + + + libnetfilter_queue-devel + aarch64 + + 228f18ed5793f92dbbd0f204b02f1f761d76fc8c786da1ca38e56b7c14326c17 + Netfilter queue userspace library + libnetfilter_queue is a userspace library providing an API to packets that have +been queued by the kernel packet filter. It is is part of a system that +deprecates the old ip_queue / libipq mechanism. + +libnetfilter_queue has been previously known as libnfnetlink_queue. + + http://netfilter.org + + + libnettle + aarch64 + + e308d9a2319e54b2be5574a50d0367db332905a237e44823d41c0160b6a30e4f + Cryptographic Tools + Nettle is a cryptographic library that is designed to fit easily in more or +less any context: In crypto toolkits for object-oriented languages (C++, +Python, Pike, ...), in applications like LSH or GNUPG, or even in kernel space. + +This package contains a few command-line tools to perform cryptographic +operations using the nettle library. + + + + + libnettle-devel + aarch64 + + e4637a41b71414745f34c3025cd766a6665edd1fd2f07ce5e8186e8cfb987ecf + Cryptographic Library + Nettle is a cryptographic library that is designed to fit easily in more or +less any context: In crypto toolkits for object-oriented languages (C++, +Python, Pike, ...), in applications like LSH or GNUPG, or even in kernel space. + + + + + libnfnetlink + aarch64 + + e151df96d60d997930391f1a6bd38d5316edb3e00c1faee6386df92cee1d6f68 + Low-level library for Netfilter-related kernel/userspace communication + libnfnetlink is the low-level library for netfilter related +kernel/userspace communication. It provides a generic messaging +infrastructure for in-kernel netfilter subsystems (such as +nfnetlink_log, nfnetlink_queue, nfnetlink_conntrack) and their +respective users and/or management tools in userspace. + +This library is not meant as a public API for application developers. +It is only used by other netfilter.org projects, such as +libnetfilter_log, libnetfilter_queue or libnetfilter_conntrack. + + http://netfilter.org/projects/libnfnetlink/ + + + libnfnetlink-devel + aarch64 + + 8a78b829c12f93dbe67b2614822bbb098301bd87f88e6e2049d38eaa6ca1217b + Low-level library for Netfilter-related kernel/userspace communication + libnfnetlink is the low-level library for netfilter related +kernel/userspace communication. It provides a generic messaging +infrastructure for in-kernel netfilter subsystems (such as +nfnetlink_log, nfnetlink_queue, nfnetlink_conntrack) and their +respective users and/or management tools in userspace. + +This library is not meant as a public API for application developers. +It is only used by other netfilter.org projects, such as +libnetfilter_log, libnetfilter_queue or libnetfilter_conntrack. + + http://netfilter.org/projects/libnfnetlink/ + + + libnl2 + aarch64 + + 0bd1c63bfd02a6af80b21e73193a0258d9a1db1570408a7f2f63c233da2aa608 + Library for netlink sockets + This is a library for applications dealing with netlink sockets. +The library provides an interface for raw netlink messaging and various +netlink family specific interfaces. + + + + + libnl2-devel + aarch64 + + 360e0ad46c07180efb69970eb4661bdde73ff6f760bd2da3d35f59b4f8d7a973 + Development library and headers for libnl2 + This is a library for applications dealing with netlink sockets. +The library provides an interface for raw netlink messaging and various +netlink family specific interfaces. +This package contains all files that are needed to build applications using +libnl2. + + + + + libnsbmp + aarch64 + + b951028f8e11f2703624fb4680fd945fce4ef6d57674c023b20290dab530df72 + A library of functions for decoding BMP image format files + Libnsbmp is a decoding library for BMP and ICO image file formats, written in C. + + http://www.netsurf-browser.org/projects/libnsbmp/ + + + libnsbmp-devel + aarch64 + + d54cc14438910354f84b4129a8f3b2cf1fd33ead5373774a05ed77280aa47251 + A library of functions for decoding BMP image format files (DEV) + A library of functions for decoding BMP image format files - Development files. + + http://www.netsurf-browser.org/projects/libnsbmp/ + + + libnsd-dns-sd + aarch64 + + 412f4861a3840bc535174fe562c001cfcfcf5ac31a95968f4127cae93138bb8b + NSD - DNS-SD library in Tizen C API + Network Service Discovery library for DNS-SD + + + + + libnsd-ssdp + aarch64 + + 5c4dd912b4dcde07957ca4378661b32ab9595c5910a53925059b2a87ab7a03a7 + NSD - SSDP library in Tizen C API + Network Service Discovery library for SSDP + + + + + libnss-security-manager + aarch64 + + 51521f740d0dac72a65e42a1cc49a343a140c5053f7220d846ee91f5d5b712df + Security Manager NSS library + Tizen Security Manager NSS library + + + + + liboauth + aarch64 + + 1ac93209b685a54ed0c3aad8eaa613121dff55e7868195ea22d0aa54eee07479 + OAuth - server to server secure API authentication + library implementing the OAuth secure authentication protocol (shared libs) + + http://liboauth.sourceforge.net/ + + + liboauth-devel + aarch64 + + 0653761711298044816836cb69ccc6c04664665249838ba21e9d0628f1dac123 + Development files for liboauth + Development files for liboauth + + http://liboauth.sourceforge.net/ + + + libogg + aarch64 + + 72e1ea14e59c8961c484d5dfe9aa119277a7c2dd68f8f4fad2fb381cb5157575 + Ogg Bitstream Library + Libogg is a library for manipulating ogg bitstreams. It handles both +making ogg bitstreams and getting packets from ogg bitstreams. + +Ogg is the native bitstream format of the libvorbis (Ogg Vorbis audio +codec ) and the libtheora (Theora video codec) + + http://www.vorbis.com/ + + + libogg-devel + aarch64 + + a61926d3873db64ff6981095b5da9952e621cb8bf57fa301eed01bafcc9b7083 + Include Files and Libraries mandatory for Ogg Development + This package contains all necessary include files and libraries needed +to compile and develop applications that use libogg. + + http://www.vorbis.com/ + + + libomxil-e54xx + aarch64 + + cdb8ae3ea7c6b92c5ebb46b2fdc72fc174c0c68aa9fcca2463ce34d8e37fb484 + OpenMAX IL for e54xx + implementation of OpenMAX IL for e54xx + + + + + libomxil-e54xx-devel + aarch64 + + 13ddcea24b725f65e6edda8b6b39edd49169dbc0130a7aa1711e55256f42444c + OpenMAX IL for e54xx (Developement) + development package for libomxil-e54xx + + + + + liborc + aarch64 + + 8ef6f39c0c03ab2b078bb0fdbc0444902abc82cface1a3a40d33a2107fee71a2 + The Oil Runtime Compiler Library + Orc is a library and set of tools for compiling and executing very simple +programs that operate on arrays of data. The “language” is a generic +assembly language that represents many of the features available in SIMD +architectures, including saturated addition and subtraction, and many +arithmetic operations. + + http://code.entropywave.com/projects/orc/ + + + libpciaccess + aarch64 + + 255d4027da10287d53588eae8dc1a92b77250e9a907f776cf95750bb18b04656 + PCI access library + libpciaccess is a library for portable PCI access routines across multiple +operating systems. + + http://cgit.freedesktop.org/xorg/lib/libpciaccess/ + + + libpciaccess-devel + aarch64 + + 5ec4743c5106bfbb6553f0a93af10126194656a2e67c0cd8d62edf0b13e54fb4 + PCI access library development package + libpciaccess is a library for portable PCI access routines across multiple +operating systems. + +This package contains development files needed to develop with the +libpciaccess library. + + http://cgit.freedesktop.org/xorg/lib/libpciaccess/ + + + libpepper-efl + aarch64 + + 97bdf6e1ae468bef79b78080237d9ce9970822d8ac486bd8fdef1b03c718681d + EFL backend for pepper + EFL backend for pepper. +Pepper is a lightweight and flexible library for developing various types of wayland compositors. + + + + + libphonenumber + aarch64 + + fa927587cf4d86a81bfb9ca588203af21bc1213b6379c45423b8719b64bb16d7 + A library for manipulating international phone numbers + Google's common Java, C++ and Javascript library for parsing, +formatting, storing and validating international phone numbers. The +Java version is optimized for running on smartphones, and is used by +the Android framework since 4.0 (Ice Cream Sandwich). + + http://code.google.com/p/libphonenumber/ + + + libphonenumber-devel + aarch64 + + 09e1b68f3a3f9e8379bf78d5271ce3b13ec34e5ea0d6617fed3f77fc2332d9d1 + Devel package for library + Google's common Java, C++ and Javascript library for parsing, +formatting, storing and validating international phone numbers. The +Java version is optimized for running on smartphones, and is used by +the Android framework since 4.0 (Ice Cream Sandwich). + + http://code.google.com/p/libphonenumber/ + + + libpipeline + aarch64 + + 233e7d7c728ba95f0aec806c046b9e07ee9f1b921c0b45db39811c30f666f6ac + A pipeline manipulation library + libpipeline is a C library for setting up and running pipelines of +processes, without needing to involve shell command-line parsing which +is often error-prone and insecure. This alleviates programmers of the +need to laboriously construct pipelines using lower-level primitives +such as fork(2) and execve(2). + + http://www.nongnu.org/libpipeline/ + + + libpipeline-devel + aarch64 + + 294f9ba0cd3c73ad3fbcdfde31a0954d420b1a446674b86f4f6160ede58b4bdc + A pipeline manipulation library + libpipeline is a C library for setting up and running pipelines of +processes, without needing to involve shell command-line parsing which +is often error-prone and insecure. This alleviates programmers of the +need to laboriously construct pipelines using lower-level primitives +such as fork(2) and execve(2). + + http://www.nongnu.org/libpipeline/ + + + libpng + aarch64 + + 10be9c4b90982707a94a679f2b3d6e601a269c155f35162334c81c5a8de012f3 + A library of functions for manipulating PNG image format files + The libpng package contains a library of functions for creating and +manipulating PNG (Portable Network Graphics) image format files. PNG +is a bit-mapped graphics format similar to the GIF format. PNG was +created to replace the GIF format, since GIF uses a patented data +compression algorithm. + +Libpng should be installed if you need to manipulate PNG format image +files. + + http://www.libpng.org/pub/png/ + + + libpng-devel + aarch64 + + 3cd3681010d564fe1b47769ef9fb47f1adfbc2ff128ebad2081d15228199c3ce + Development tools for programs to manipulate PNG image format files + The libpng-devel package contains header files and documentation necessary +for developing programs using the PNG (Portable Network Graphics) library. + + http://www.libpng.org/pub/png/ + + + libprotobuf-lite9 + aarch64 + + 10e535a710e339a24503ef510637bfe8e283d2794c3ceceb953e283b2792a976 + Protocol Buffers - Google's data interchange format + Protocol Buffers are a way of encoding structured data in an efficient yet +extensible format. Google uses Protocol Buffers for almost all of its internal +RPC protocols and file formats. + + http://code.google.com/p/protobuf/ + + + libprotobuf9 + aarch64 + + 5b3c44124361b492ff5c854dc4064c3d1f3f03b2f3d9242498b2e5d557718ffb + Protocol Buffers - Google's data interchange format + Protocol Buffers are a way of encoding structured data in an efficient yet +extensible format. Google uses Protocol Buffers for almost all of its internal +RPC protocols and file formats. + + http://code.google.com/p/protobuf/ + + + libprotoc9 + aarch64 + + 168bf55250f9ae5512cfb1cd85e6b0c795f644bedb9a08f4e4cac82e40be2497 + Protocol Buffers - Google's data interchange format + Protocol Buffers are a way of encoding structured data in an efficient yet +extensible format. Google uses Protocol Buffers for almost all of its internal +RPC protocols and file formats. + + http://code.google.com/p/protobuf/ + + + libpspell + aarch64 + + 4a433801cb0c9ce779da1afc099d56b6e816dfc034a5646686598c174ee86208 + GNU Aspell - Pspell Compatibility Library + GNU Aspell is a spell checker designed to eventually replace Ispell. It +can be used as a library or as an independent spell checker. + +This package contains the pspell compatibility library. + + http://aspell.net/ + + + libpth + aarch64 + + 30bc404af6a984234e62c1e88b8346c916cc9ef2f8a3c8994aa36732be9229e9 + GNU Portable Threads + Pth is a very portable POSIX/ANSI-C based library for Unix platforms +which provides non-preemptive priority-based scheduling for multiple +threads of execution ("multithreading") inside server applications. All +threads run in the same address space of the server application, but +each thread has it's own individual program-counter, run-time stack, +signal mask and errno variable. + + http://www.gnu.org/software/pth/ + + + libpth-devel + aarch64 + + a698a87d5630e01d40949bac79fd247d04ac0ec2dc221183243384b3d73d56a8 + GNU Portable Threads + Pth is a very portable POSIX/ANSI-C based library for Unix platforms +which provides non-preemptive priority-based scheduling for multiple +threads of execution ("multithreading") inside server applications. All +threads run in the same address space of the server application, but +each thread has it's own individual program-counter, run-time stack, +signal mask and errno variable. + + http://www.gnu.org/software/pth/ + + + libpulse + aarch64 + + f472b9b9f065bda96dec4fb2279b4248f013d84d5ac21b38188fd24c2561dba4 + PulseAudio client libraries + Client libraries used by applications that access a PulseAudio sound server +via PulseAudio's native interface. + + http://pulseaudio.org + + + libpulse-devel + aarch64 + + 24a21384890c0efafb60aa80254eff448ee457f983d55b9009442fc0bbb59652 + PulseAudio client development headers and libraries + Headers and libraries for developing applications that access a PulseAudio +sound server via PulseAudio's native interface + + http://pulseaudio.org + + + libpulse-mainloop-glib + aarch64 + + 2ccf02af764c1e2c6198f24d8bffb7831dcf1707b5060c5de39c76e921f16f0e + GLIB 2 + pulseaudio is a networked sound server for Linux and other Unix like +operating systems and Microsoft Windows. It is intended to be an +improved drop-in replacement for the Enlightened Sound Daemon (ESOUND). + +This package contains the GLIB Main Loop bindings for the PulseAudio +sound server. + + http://pulseaudio.org + + + libpush + aarch64 + + 06875d6e6fdae9fb8b90bd9b63389798e9f5a67dc01f2882df51c3d16620504f + Push service client library + Push service client library + + + + + libpush-devel + aarch64 + + f61d6b6d0e9938c443bc402cb6e0e7cf5b64e7d1c1d732e05eb724de78a7b445 + Push service client library (DEV) + Push service client library (DEV) + + + + + libpyglib-gi-python + aarch64 + + 3663509645c79be80151fdec62980f47e72f40788b3dbbd12dadd418fe11408f + Python Gobject Introspeciton binding + Pygobjects is an extension module for python that gives you access to +GLib's GObjects. + +The bindings are handled by gobject-introspection libraries. + + http://ftp.gnome.org/pub/GNOME/sources/pygobject/ + + + libre2 + aarch64 + + 82feb88bc017419a130dda68009b9c190365ae28d4820218b2336bd4d7a7884a + An efficient, principled regular expression library + RE2 is a fast, safe, thread-friendly alternative to backtracking +regular expression engines like those used in PCRE, Perl, and +Python. It is a C++ library. + + http://code.google.com/p/re2/ + + + librua + aarch64 + + 9aebb5a329b371e53e5e9ed10e039af23807dbe1b0754dd2199110130fd5177a + Recently used application + Recently used application library + + + + + librua-devel + aarch64 + + 151d779a73c533feade6b7bbc0b0ed25a0e460278be80c6b72d22d7f19308bf7 + Recently used application (devel) + Recently used application library (devel) + + + + + librua-test + aarch64 + + 4bf4588ae41021d72d31cb03155772a17730886ba5918fe4ee88501ef0ad1d5c + Recently used application (test) + Recently used application library (test) + + + + + libscl-common + aarch64 + + 49cd790bd47f52579d0e56c06fec2af8c1bc73cd7a264d03ae8bc8fd200917db + A library for developing software keyboards + A library that helps developing S/W Keyboard + + + + + libscl-common-devel + aarch64 + + d9097b8fb4d2b9fa530a5eafd18b75d73cfb6821bc0c06845b2e865bb18046da + SCL-Common header file + A devel package of libscl-common library that helps developing S/W Keyboard + + + + + libscl-core + aarch64 + + 37d276c33aa2a03545a073f77a8a08ff56ed71dcac1bc8b9d46445d564251ffe + A library for developing software keyboards + A library that helps developing S/W Keyboard + + + + + libscl-core-devel + aarch64 + + 66aa6a85c4bb5b2ecc3a079920841980add38f061b124187b3a381bc5639107e + SCL-Core header file + A devel package of libscl-core library that helps developing S/W Keyboard + + + + + libscl-core-profile_common + aarch64 + + f779aded48ddd9eebf1a2a439f51a0341e06fe120c1a176ba42170adceece984 + libscl-core subpackage for common/mobile/tv/ivi + A library for developing software keyboards for common/mobile/tv/ivi. + + + + + libscl-ui + aarch64 + + 1d1a8d59df35be4ce12af8bcc92bbe2d32bd2a80be238d258657f799123722b2 + A library for developing XML-based software keyboards + A library that helps developing S/W Keyboard + + + + + libscl-ui-devel + aarch64 + + 0fa5aeffc1c9f7726a3df37dd33c63a682f7dcb3dd57cccdf5fdb26cbd0b9316 + SCL-UI header file + A devel package of libscl-ui library that helps developing S/W Keyboard + + + + + libsecurity-manager-client + aarch64 + + 42c95225c84bada5ed14afee4a41142bc11194e51026c01967c2e54347069f41 + Security manager (client) + Tizen Security manager client library + + + + + libsecurity-manager-client-devel + aarch64 + + 90f0de1b51f95d8e4daf85a75b758d57ac2c20e9d3c81c878671fbe31f669090 + Security manager (client-devel) + Development files needed for using the security manager client + + + + + libsensord + aarch64 + + cec561f1959cca3eafc9b4c36c521700dcc058212f5f2b70f824230893552c5c + Sensord library + Sensord library + + + + + libsensord-devel + aarch64 + + 15246bb80a54edf6b5ecd1993b464217027cfcf452e20fc635625de3380edf94 + Sensord shared library + Sensord shared library + + + + + libshortcut + aarch64 + + 8cd8e79dde3617f7de5684e0bfb66e41e837b8e42553d22a10b215aef0429528 + Shortcut add feature supporting library + [Shortcut] AddToHome feature supporting library for menu/home screen developers. + + + + + libshortcut-devel + aarch64 + + dd95fc83c4ff18743b046ea5cea7c0fd0a60a2ca74f3838a7159b5d19227cbc2 + AddToHome feature supporting library development files + [Shortcut] AddToHome feature supporting library for menu/home screen developers(dev). + + + + + libslp-db-util + aarch64 + + 4f6ee61ffe4915e1052d0a4d6844b8babef1c4d283046f2eb5727e76b26069fe + DB Utility + DB Utility. + + + + + libslp-db-util-devel + aarch64 + + 3836fcd60ee9c3c68ff748f8a422aa8d1090eea642776e376c74a46397978296 + Devel package for libslp-db-util (devel) + Devel package for libslp-db-util (devel) + + + + + libsndfile + aarch64 + + af099e4ab7ed18881e63102908f5db99701da3c55558d720b137a4a5fb6a8ef9 + C library for reading and writing sound files + Libsndfile is a C library for reading and writing sound files, such as +AIFF, AU, and WAV files, through one standard interface. It can +currently read and write 8, 16, 24, and 32-bit PCM files as well as +32-bit floating point WAV files and a number of compressed formats. + + http://www.mega-nerd.com/libsndfile/ + + + libsndfile-devel + aarch64 + + a58e882bff49fde66a4b5a3c171f5952a05d7811265a1fd57ec1445823707464 + Development package for the libsndfile library + This package contains the files needed to compile programs that use the +libsndfile library. + + http://www.mega-nerd.com/libsndfile/ + + + libsolv + aarch64 + + d98c4b30d9deae472e786634f6c96197f8c3879fcb8217e135b7ce142790a42c + A new approach to package dependency solving + A new approach to package dependency solving. + + https://github.com/openSUSE/libsolv + + + libsolv-demo + aarch64 + + 4e1147437af69c66c8b6fe094f34b473fe9b9176586883e243daab61548cf7d4 + Applications demoing the libsolv library + Applications demoing the libsolv library. + + https://github.com/openSUSE/libsolv + + + libsolv-devel + aarch64 + + 2ee08dd4658da14ef7fc368fa9a231610a6689123ef6786bc0900fd4e7f70c2a + A new approach to package dependency solving + Development files for libsolv, a new approach to package dependency solving + + https://github.com/openSUSE/libsolv + + + libsolv-tools + aarch64 + + ad75860c4978ab9e4d4b6e0c9a84922bb3c885a029043ca60dde579235c01288 + A new approach to package dependency solving + A new approach to package dependency solving. + + https://github.com/openSUSE/libsolv + + + libsoup + aarch64 + + bde7634332f87fccdc80011dd71cda22d2fb50880f110eacb21e1965484238c7 + HTTP client/server library for GNOME + Libsoup is an HTTP client/server library for GNOME. It uses GObjects +and the glib main loop, to integrate well with GNOME applications. + +Features: + * Both asynchronous (GMainLoop and callback-based) and synchronous APIs + * Automatically caches connections + * SSL Support using GnuTLS + * Proxy support, including authentication and SSL tunneling + * Client support for Digest, NTLM, and Basic authentication + * Server support for Digest and Basic authentication + * XML-RPC support + + http://www.gnome.org + + + libsoup-devel + aarch64 + + 412c45c539b5cba7fc5b8df574b29671577d37c0521e1378610660a5c0986220 + HTTP client/server library for GNOME - Development Files + Libsoup is an HTTP client/server library for GNOME. It uses GObjects +and the glib main loop, to integrate well with GNOME applications. + +Features: + * Both asynchronous (GMainLoop and callback-based) and synchronous APIs + * Automatically caches connections + * SSL Support using GnuTLS + * Proxy support, including authentication and SSL tunneling + * Client support for Digest, NTLM, and Basic authentication + * Server support for Digest and Basic authentication + * XML-RPC support + + http://www.gnome.org + + + libsoup-locale + noarch + + 26809f3ec821cd5967d7842ec21860ae87d9d7a1d35e9075a922c763abaf1714 + Translations and Locale for package libsoup + This package provides translations for package libsoup. + + http://www.gnome.org + + + libspeex + aarch64 + + b72daa5bee74307104b0b7428de674f4b8bd86ce00828eb988ef6c2970239984 + An Open Source, Patent Free Speech Codec Library + Speex is a patent free audio codec designed especially for voice +(unlike Vorbis which targets general audio) signals and providing good +narrowband and wideband quality. This project aims to be complementary +to the Vorbis codec. + + http://www.speex.org/ + + + libspeexdsp + aarch64 + + 0b42788acc31be280f1a5816f36ba1c953a3a06310002b2d5761a0c3a5dcb9e7 + An Open Source, Patent Free Speech Codec Library + Speex is a patent free audio codec designed especially for voice +(unlike Vorbis which targets general audio) signals and providing good +narrowband and wideband quality. This project aims to be complementary +to the Vorbis codec. + + http://www.speex.org/ + + + libstorage + aarch64 + + 8a4bbd2539648eb5e05e9dc7a4755f77ac989ac8267584d8985d166e23b7a6ca + Library to get storage information + development package of library to get storage + + + + + libstorage-devel + aarch64 + + 0645ea7a5d6b23ee731166ee334cdecbbc0ef82270e46737f892590f1c160102 + Get storage information (devel) + Library to get storage information (devel) + + + + + libswscale + aarch64 + + e4527388581ad67f709b751b8c1eeaccb578714c6fbfc807338e8f0f214e1892 + SW scale lib + development files for libswsacle + + http://libav.org + + + libswscale-devel + aarch64 + + aaf95d3a2d0f7d9112cd564ed0a8b88889ff4ede3af2e0c31a32f8aaece5cc61 + SW scale lib (devel) + development files for libswsacle + + http://libav.org + + + libsystemd + aarch64 + + 251b56b54677a15c2746ebaadd895fd4a5e139a85eac0c1cd61ecc4cc186e4a6 + Systemd libraries + Libraries for systemd and udev, as well as the systemd PAM module. + + http://www.freedesktop.org/wiki/Software/systemd + + + libtapi + aarch64 + + fa3b02dde5fc696c2488210543b7d0c7a3146136337581f3479ebc07a628199e + Telephony dbus client library + Telephony client API library + + + + + libtapi-devel + aarch64 + + e126dafe5e83a9f9ee635fbbd462333f58f426fb64061c6c22e33783519a0788 + Telephony client API (devel) + Telephony client API library (devel) + + + + + libtasn1 + aarch64 + + 3ee7f6ea860709e78f38bfc0504ba39891cfb7089a7388b4d086dc04f7d552d8 + ASN + This is the ASN.1 library used in GNUTLS. More up to date information +can be found at http://www.gnu.org/software/gnutls and +http://www.gnutls.org + + http://ftp.gnu.org/gnu/libtasn1/ + + + libtasn1-devel + aarch64 + + 03587220a4c19a589696b6e2bc5237017cc4afb42675a9a8fd3ab1c3cf53fc31 + ASN + This is the ASN.1 library used in GNUTLS. More up to date information +can be found at http://www.gnu.org/software/gnutls and +http://www.gnutls.org + + http://ftp.gnu.org/gnu/libtasn1/ + + + libtasn1-docs + aarch64 + + 28035d3c984660ab4fc7b0aae1401a7f141c3d36ddb36d068d897cde32417c55 + Documentation for package libtasn1 + This package provides documentation for package libtasn1. + + http://ftp.gnu.org/gnu/libtasn1/ + + + libtasn1-tools + aarch64 + + 5684fd8e0d706d51aee0f3e95f0d345bf4eb5a7bfbf5db0aadd57161f1ff3928 + ASN + This is the ASN.1 library used in GNUTLS. More up to date information +can be found at http://www.gnu.org/software/gnutls and +http://www.gnutls.org + + http://ftp.gnu.org/gnu/libtasn1/ + + + libtbm + aarch64 + + 6a5c39a343126c1c0615521da5f24b51d92e2018724066db34ef3562bdf25425 + The library for Tizen Buffer Manager + Description: The library for Tizen Buffer Manager + + + + + libtbm-devel + aarch64 + + 935cfb1e138e826a5829bfa9bc231ea91df1e8a586bddf369ac8733d33a41180 + Tizen Buffer Manager Library - Development + The library for Tizen Buffer Manager. + +Development Files. + + + + + libtbm-exynos + aarch64 + + c2227189b6c7586cd1a5a8154e1b85dff16d4eaa6a6bd104664f80be5cbd5715 + Tizen Buffer Manager - exynos backend + descriptionion: Tizen Buffer manager backend module for exynos + + + + + libtbm-vigs + aarch64 + + e1178678424b112f947111463fb517d5dee5dacd05d468c1fd54fe95d3473bf0 + Tizen Buffer Manager - emulator backend + description: ${summary} + + + + + libtcore + aarch64 + + 884fe73f4ccdf36c2de79a3bdce72a6854255c15a3ab95db9c0c60bf3c7512fd + Telephony-core library + Telephony-core library + + + + + libtcore-devel + aarch64 + + 6b3d592f81d4d1116a9a2841c2ab6b9b58d19e705b038797a59a4fe71a3c4f61 + Telephony-core library (Development) + Telephony-core library (Development) + + + + + libtdm + aarch64 + + a6574be739894846994f21efae282332319132da083c790c5fbf5f4f1c9dd4bb + User Library of Tizen Display Manager + Common user library of Tizen Display Manager : libtdm front-end library + + + + + libtdm-client + aarch64 + + 747082fde55c8ff7862f52b052041c5a144960e292b33416a6dedb27a14cf02d + Client library for Tizen Display Manager + Tizen Display Manager Client Library + + + + + libtdm-client-devel + aarch64 + + c6d0e0dce2a764001af3c9a65463285d1ce9159c74b3d943324c230caa035500 + Client library for Tizen Display Manager + Tizen Display Manager Client Library headers + + + + + libtdm-devel + aarch64 + + ab13a8a23d8e0df83b6a3a915d4a5f89e83a201cb4655eae37816e14cd71ec5a + Devel of Tizen Display Manager Library + This supports frontend & backend library header and so + + + + + libtdm-drm + aarch64 + + 1240b63bf3f9da1934e4d498a10d5c83f2b883479ddd7526e2bfcd56e20c7f39 + Tizen Display Manager DRM Back-End Library + Back-End library of Tizen Display Manager DRM : libtdm-mgr DRM library + + + + + libtdm-exynos + aarch64 + + 4280768229ee1e49c9214e873af051d96e31d714be8453dcac83fffdf662a30a + Tizen Display Manager Exynos Back-End Library + Back-End library of Tizen Display Manager Exynos : libtdm-mgr Exynos library + + + + + libtdm-tools + aarch64 + + 0b4f3cfe51ad6ecfd6ecc47ae7cb01f11aa4a44e17f653ea4c772766fd5c40fa + Tools for libtdm + This contains libtdm tools for fundamental testing + + + + + libtheora + aarch64 + + 496aca159f08e0cdf0cc832aa810668cb16f512fb0e40ed517e50de82746610c + Free Video Codec + Theora is a free video codec based on VP3. The package contains the +library that can decode and encode Theora streams. Theora is also able +to playback VP3 streams. + + http://www.theora.org/ + + + libtheora-devel + aarch64 + + 9cff71906aeb80a8c06596c650ce6f75de63e5a018066cb0c9e785e87e10fc07 + Free Video Codec + Theora is a free video codec based on VP3. The package contains the +library that can decode and encode Theora streams. Theora is also able +to playback VP3 streams. + + http://www.theora.org/ + + + libtiff + aarch64 + + d71192b05e6cfeb13c792c897bc5c99c95ebf87ff91ef8dad25be5a3c0101be0 + The Tiff Library (with JPEG and compression support) + This package includes the tiff libraries. To link a program with +libtiff, you will have to add -ljpeg and -lz to include the necessary +libjpeg and libz in the linking process. + + http://www.remotesensing.org/libtiff + + + libtiff-devel + aarch64 + + 0df80492b18d79139c1e7b9a46c12893356cd28edb8d85152ac3629245861dfb + Development Tools for Programs which will use the libtiff Library + This package contains the header files and static libraries for +developing programs which will manipulate TIFF format image files using +the libtiff library. + + http://www.remotesensing.org/libtiff + + + libtpl-egl + aarch64 + + 6ef9373607a86e4efe20da706e4f830e659c40ae5f881a04e914a2b3a0ef0819 + Tizen Porting Layer for EGL (Wayland backend) + Tizen Porting Layer (a.k.a TPL) is a linkage between the underlying window +system and the EGL porting layer. + +The following window systems are supported: +- X11 DRI2/DRI3 +- Wayland + + + + + libtpl-egl-devel + aarch64 + + ffa6f257bc0e4761dbf4e49060197757950d2c2771e8b56eb16837fa1add2ce4 + Development files for TPL + This package contains the development libraries and header files needed by +the GPU Vendor DDK's EGL. + + + + + libtracker + aarch64 + + 0ce8c5c8f3b377e9ef6cc9d7d383ce6071977b0eff9ff64e8167723d95ebc43a + tracker library for system information + Tracker library for system information. + + + + + libtracker-devel + aarch64 + + c08c4e842553b7a3359948d3f2f443a708ed81c9866e3f4982d7cf8ef4a63889 + tracker library for system information (devel) + Tracker library for system information (devel) + + + + + libtremolo + aarch64 + + a43d07f794dbccbe934f5a83af6f67598c9be1c07ddb7ad11bda9017860d4ccf + Audio Library + Tremolo is playback codec, which is an arm optimized version of the ogg vorvis 'Tremor' + + + + + libtremolo-devel + aarch64 + + 71599c0bef753c16c4be6e84d81117109c3bd04a30a491879b1c63631b5819a9 + Multimedia Framework Utility Library (DEV) + Tremolo is playback codec, which is an arm optimized version of the ogg vorvis 'Tremor'(DEV) + + + + + libtzplatform-config + aarch64 + + aacf53f1f11d617d89c77127a2278e68724f084d0b49474f97bf840000063f49 + Tizen Platform Configuration - helper library + Tizen Platform Configuration - helper library to lookup Tizen variables easily + + http://www.tizen.org + + + libtzplatform-config-devel + aarch64 + + 599dbf4e104d4dcb7a1a508ad98627a25366fd5cd1416639c21710a4ce31e1cb + Tizen Platform Configuration - helper libray headers, RPM macros + Tizen Platform Configuration - helper library headers to include in source code, +RPM macros to call in spec files + + http://www.tizen.org + + + libulockmgr + aarch64 + + 10c37781915ef95c95f2e36c99430155f69aedce40c0700ea639b89540038fae + Library of FUSE, the User space File System for GNU/Linux and BSD + With FUSE, a user space program can export a file system through the +kernel-default (Linux kernel). + + http://fuse.sourceforge.net + + + libunwind + aarch64 + + 6b269f9720d197bbb8f603199bdacb69b9f5e0267660cc09e5998977a7f69ed8 + Unwind Library + A portable and efficient C programming interface (API) to determine the +call chain of a program. + + http://savannah.nongnu.org/projects/libunwind/ + + + libunwind-devel + aarch64 + + a7167b19c9289975d40038128fd21f56572d2ec3b5e8b091c939b6dfaf43765b + Unwind library + A portable and efficient C programming interface (API) to determine the +call-chain of a program. + + http://savannah.nongnu.org/projects/libunwind/ + + + libusb + aarch64 + + 042cdba70b87d5274bc0be24f9560d89a1e8eb9c85dd0ea704ab36f35c0a2cd5 + USB Library + Libusb is a library that allows userspace access to USB devices. + + http://www.libusb.org/ + + + libusb-devel + aarch64 + + d67558f848d942f8d986e7ea89c0c7e263df38024d945981b241a991494e7e41 + USB Library + Libusb is a library that allows userspace access to USB devices. + + http://www.libusb.org/ + + + libusbg + aarch64 + + 2b636d0cc37cea1d7395deeffff288f535d3279c39eadbe22175a1957f94adbd + USB gadget with ConfigFS Library + Libusbg is a librarary for all USB gadget operations using ConfigFS. + + + + + libusbg-devel + aarch64 + + 75777118901219c541b82138451c81c71a2d72fec612ae3a84252aa98e9b7c9c + USB gadget with ConfigFS Library + Development package for libusbg. Contains headers and binaries required for +compilation of applications which use libusbg. + + + + + libusbg-examples + aarch64 + + deb4562bd372867d0c18e174f6d59a56439efc6eba1b24c361976659f719e1b3 + Examples of libusbg usage + Sample applications which shows how to use libusbg. + + + + + libuw-imap-toolkit + aarch64 + + 51a80271da0b4e9e98411ef12cb5dc82f1c8080a7d536abea455b37ac4a7220c + IMAP-2007e developed by University of Washington + IMAP-2007e run-time library for E-mail Framework + + + + + libuw-imap-toolkit-devel + aarch64 + + 2d011935be2e06eec5e5a29b4feb9c3eb4f7ba96905871d7603c95902a1fa1db + IMAP-2007e developed by University of Washington + IMAP-2007e development library for E-mail Framework + + + + + libv4l + aarch64 + + 9db3729991187f4d2705d10616052591edf645a859c7b697c735c43273f3d043 + Collection of video4linux support libraries + libv4l is a collection of libraries which adds a thin abstraction layer on +top of video4linux2 devices. The purpose of this (thin) layer is to make it +easy for application writers to support a wide variety of devices without +having to write separate code for different devices in the same class. libv4l +consists of 3 different libraries: libv4lconvert, libv4l1 and libv4l2. + + http://linuxtv.org/downloads/v4l-utils/ + + + libv4l-devel + aarch64 + + e2f669002f57e8c9250ede4e8d02feb2a457ac9528af5b9c0f0483683668cd58 + Development files for libv4l + The libv4l-devel package contains libraries and header files for +developing applications that use libv4l. + + http://linuxtv.org/downloads/v4l-utils/ + + + libvorbis + aarch64 + + f8efe8704a5be1aebf3ea509ec22dd6c139321238da8660210ce199dd21b9a2d + The Vorbis General Audio Compression Codec + Vorbis is a fully open, nonproprietary, patent-and-royalty-free, and +general-purpose compressed audio format for audio and music at fixed +and variable bit rates from 16 to 128 kbps/channel. + +The native bitstream format of Vorbis is libogg (Ogg). Alternatively, +libmatroska (matroska) can also be used. + + http://www.vorbis.com/ + + + libvorbis-devel + aarch64 + + 295cf1f7091b08dff19667a0b1cfab71b5ae6f4cabc936489d841b23565c4173 + Include Files and Libraries mandatory for Ogg Vorbis Development + This package contains all necessary include files and libraries needed +to compile and develop applications that use libvorbis. + + http://www.vorbis.com/ + + + libvorbisenc + aarch64 + + 921c1a1183789e914d9a423f4426e59fb546a8c07297fafc60854ed0548ee8fe + The Vorbis General Audio Compression Codec + Vorbis is a fully open, nonproprietary, patent-and-royalty-free, and +general-purpose compressed audio format for audio and music at fixed +and variable bit rates from 16 to 128 kbps/channel. + +The native bitstream format of Vorbis is libogg (Ogg). Alternatively, +libmatroska (matroska) can also be used. + + http://www.vorbis.com/ + + + libvorbisfile + aarch64 + + c207d89d43c04893371b46a8b90162730cd320d8ecdda5d092760e4efdcd5c0f + The Vorbis General Audio Compression Codec + Vorbis is a fully open, nonproprietary, patent-and-royalty-free, and +general-purpose compressed audio format for audio and music at fixed +and variable bit rates from 16 to 128 kbps/channel. + +The native bitstream format of Vorbis is libogg (Ogg). Alternatively, +libmatroska (matroska) can also be used. + + http://www.vorbis.com/ + + + libvpx + aarch64 + + f558d7691f068843ab0079a9e6584c5bd00b6a52fd7270de27a67409dbdfc85a + VP8 codec library + WebM is an open, royalty-free, media file format designed for the web. + +WebM defines the file container structure, video and audio formats. +WebM files consist of video streams compressed with the VP8 video codec +and audio streams compressed with the Vorbis audio codec. +The WebM file structure is based on the Matroska container. + + http://www.webmproject.org/ + + + libvpx-devel + aarch64 + + 983cded465f6320bfffac00257c337d5c815e9563e9a55ccda118b34871c1be1 + VP8 codec library - Development headers + Development headers and library + +WebM is an open, royalty-free, media file format designed for the web. + +WebM defines the file container structure, video and audio formats. +WebM files consist of video streams compressed with the VP8 video codec +and audio streams compressed with the Vorbis audio codec. +The WebM file structure is based on the Matroska container. + + http://www.webmproject.org/ + + + libwayland-client + aarch64 + + e72e156d400aadbdbcd789fddfc2e6f417d3c56c6064ae7e5598b49ced5cc69c + Wayland core client library + Wayland is a protocol for a compositor to talk to its clients as well +as a C library implementation of that protocol. The compositor can be +a standalone display server running on Linux kernel modesetting and +evdev input devices, an X application, or a wayland client itself. +The clients can be traditional applications, X servers (rootless or +fullscreen) or other display servers. + + http://wayland.freedesktop.org/ + + + libwayland-cursor + aarch64 + + 65f6faf88b67e4d3d7b141f075bfb9e9ab73d283ede165ab91f54f3a8af61482 + Wayland cursor library + The purpose of this library is to be the equivalent of libXcursor in +the X world. This library is compatible with X cursor themes and +loads them directly into an shm pool making it easy for the clients +to get buffer for each cursor image. + + http://wayland.freedesktop.org/ + + + libwayland-egl + aarch64 + + c4ce0a13096e182818000559a750baf8f823065a6c3b1c2f55b279033b60f7ac + Wayland EGL backend + Wayland EGL backend + + + + + libwayland-egl-devel + aarch64 + + 4320b0127fb1ca2a6db04f4746eda2c23fdaeecc2385c585fac64ddd52f0e0ec + Development header files for use with Wayland protocol + Development header files for use with Wayland protocol + + + + + libwayland-extension-client + aarch64 + + 963adc482296372fad86af0ab8d289a0a19cfef9ec741b1d183b921ef45ef4fc + Wayland Extension client library + wayland-extension is a protocol for tizen window system. + + http://www.tizen.org/ + + + libwayland-extension-server + aarch64 + + 873fa2923b2ed123ad5f2c4bf0d83049edfbaaf9eeff8d49583e3f33212a87bd + Wayland Extension server library + wayland-extension is a protocol for tizen window system. + + http://www.tizen.org/ + + + libwayland-server + aarch64 + + 9cb7770bd7da7725aedb68dbb97a7bb5b298c65014958f38a314d52fbcbdf4ce + Wayland core server library + Wayland is a protocol for a compositor to talk to its clients as well +as a C library implementation of that protocol. The compositor can be +a standalone display server running on Linux kernel modesetting and +evdev input devices, an X application, or a wayland client itself. +The clients can be traditional applications, X servers (rootless or +fullscreen) or other display servers. + + http://wayland.freedesktop.org/ + + + libwayland-tbm-client + aarch64 + + 8314b062e857a25e5e91d2af05fb7bfc8cf2b41ffec3f00f776c0d5f03041fa4 + Wayland TBM client library + Wayland tbm is a protocol for graphics memory management for TIZEN + + http://www.tizen.org/ + + + libwayland-tbm-devel + aarch64 + + af765953150b28fe3671dc347ec3b916234176478370f4265bf07afab32732de + Development header files + Development header files for use with Wayland protocol + + http://www.tizen.org/ + + + libwayland-tbm-server + aarch64 + + 0c35ec6e9ce39b4195e594b6a00e6b177be72521b61697136c4fc0a89a95cb7c + Wayland TBM server library + Wayland tbm is a protocol for graphics memory management for TIZEN + + http://www.tizen.org/ + + + libwbxml2 + aarch64 + + 188f8cefb72e2738b32c6a0f9d1fc81d945541256985625f717748603741e32e + WBXML parser and compiler library + wbxml2 is a library that includes a WBXML parser and a WBXML compiler. +Unlike wbxml, it does not depend on libxml2 but on expat, making it +faster and more portable. WBXML Library contains a library and its +associated tools to Parse, Encode and Handle WBXML documents. The WBXML +(Wireless Binary XML) format is a binary representation of XML, and it +has been defined by the Wap Forum. + + http://libwbxml.opensync.org/ + + + libwbxml2-devel + aarch64 + + 99984d6f51eb7c8864b7008ac3ccb875ef2df3ee73a5ad12b5afad0f2f254a7d + WBXML parser and compiler library + wbxml2 is a library that includes a WBXML parser and a WBXML compiler. +Unlike wbxml, it does not depend on libxml2 but on expat, making it +faster and more portable. WBXML Library contains a library and its +associated tools to Parse, Encode and Handle WBXML documents. The WBXML +(Wireless Binary XML) format is a binary representation of XML, and it +has been defined by the Wap Forum. + + http://libwbxml.opensync.org/ + + + libwebappenc + aarch64 + + f1c7d8f2b42d193670fd35161f0f85948172a130318eb21c25f18950537377ca + Web application encryption service + Web application encryption and decryption service + + + + + libwebappenc-devel + aarch64 + + 8a09ca49365b6dd998ec5dbadcccfa4c84b2bca771d4f983bf69240080f603c5 + Web application encryption service (development files) + Web application encryption and decryption service (development files) + + + + + libwebappenc-test + aarch64 + + 12773adbdb92bd6c685ed7bcc211020429aa1290c3cf4f4bc576e2a553d4a438 + Web application encryption service (test) + Web application encryption and decryption service (test) + + + + + libwebsockets + aarch64 + + 894b7062ba39aa83fa6c055098b2a9aea3e337f970e3a9f8f9ec8ab7a2c038ec + WebSocket Library + C Websockets Server Library + + https://github.com/warmcat/libwebsockets + + + libwebsockets-devel + aarch64 + + 34817b6e9e6b743b45f4e1aabc0cb6c973fdfaf202c851410f4035a1f018daf8 + Development files for libwebsockets + Development files needed for building websocket clients and servers + + https://github.com/warmcat/libwebsockets + + + libwidget_service + aarch64 + + f6a702af4889e09da46a6484a44451c82a8748f042afa58579fc81094f795544 + Service API for gathering installed widget information + Service API for gathering information of installed widgetes + + + + + libwidget_service-devel + aarch64 + + a11f851825bd41316f26f5c2b0e8952e51dc86fd8290ce0e71e7949fcd5ed15b + Files for widget service + Gathering the installed widget information. + + + + + libwidget_viewer + aarch64 + + bb52c3f4cfe31eab067ca19e10fb83b8db265fbb44cec58ede7c11ba1897db36 + Library for developing the application + API for creating a new instance of the widget and managing its life-cycle. + + + + + libwidget_viewer-devel + aarch64 + + 24c051efdd86258f4ec9ebd369319d08c66d73b9822eb0ef48a2f7a57a823fd6 + Development Library for widget Viewer Application (dev) + Header and package configuration files for the widget viewer development + + + + + libwidget_viewer_dali + aarch64 + + 6499b4f7e228b0c6276c940da9f606b1e3f862a62bc30071c4592cb95d5174e2 + Library for developing the widget viewer DALi + Provider APIs to develop the widget viewer DALi application. + + + + + libwidget_viewer_dali-devel + aarch64 + + f89aabc2d170f457ed105b05745ff17ed4d87f953067fd4439992e83b35d0a1c + Widget provider application development library (dev) (DALi version) + Header & package configuration files to support development of the widget viewer applications. (for DALi app) + + + + + libwidget_viewer_evas + aarch64 + + f6d62751e2e3ed8a037f539b67ff170e8fcc0fdc204f800be4910a85f17825d2 + Library for developing the widget viewer evas + Provider APIs to develop the widget viewer EFL application. + + + + + libwidget_viewer_evas-devel + aarch64 + + 59e454ec1f801c23c0f08c9b1fb3f43439e1b2f0235c3c403c0d556429973a8e + Widget provider application development library (dev) (EFL version) + Header & package configuration files to support development of the widget viewer applications. (for EFL app) + + + + + libxkbcommon + aarch64 + + a289b84817e6c5dc5bca1ccec9111318f91d0b8f29d5f8b16d99020b7cf143a6 + Wayland libxkbcommon library + Keyboard handling library using XKB data. + + http://wayland.freedesktop.org/ + + + libxkbcommon-devel + aarch64 + + e56e0d0b10f172d5f9d6a6d6aeebdc71c03aa04e147a3b0a285b2fe35d8f6dcc + Development files for the Wayland libxkbcommon library + Keyboard handling library using XKB data. + +This package contains the development headers for the library found +in libxkbcommon. + + http://wayland.freedesktop.org/ + + + libyaml + aarch64 + + 02830abf3ce4c25e904948b0d769da0faa1d09698b62439dfdc18b1ed19884db + A YAML 1.1 parser and emitter written in C + A YAML 1.1 parser and emitter written in C + + http://pyyaml.org/wiki/LibYAML + + + libyaml-devel + aarch64 + + c44358505318164c64cb0e2bb12463538621f247f47e4269999c7f0bca85f22a + Development files for libyaml + A YAML 1.1 parser and emitter written in C + +This package holds the development files for libyaml. + + http://pyyaml.org/wiki/LibYAML + + + libzip + aarch64 + + 4427644904351c687e0f4583e8c7614e3192f4343da5de6d7455e5e67973e615 + C library for reading, creating, and modifying zip archives + libzip is a C library for reading, creating, and modifying zip +archives. Files can be added from data buffers, files, or compressed. This +package contains a set of small utilities built using libzip + * zipmerge - merge source zip archives into the target one + * zipcmp - compares the zip archives and check if they contains same files + * ziptorrent - manipulate with a restricted file format used for using bittorrent on zip files. + + http://www.nih.at/libzip + + + libzip-devel + aarch64 + + 699742021dd331880ff9d0b4c31f06647923a6b119f4a1f1ee70952a8dd994d3 + C library for reading, creating, and modifying zip archives + libzip is a C library for reading, creating, and modifying zip +archives. This package contains devel files. + + http://www.nih.at/libzip + + + libzip-util + aarch64 + + f3ac113dddb98fc8cdd18ac645c7391c28842400525a02109758367f46393759 + C library for reading, creating, and modifying zip archives + This is libzip, a C library for reading, creating, and modifying zip +archives. Files can be added from data buffers, files, or compressed +data copied directly from other zip archives. Changes made without +closing the archive can be reverted. The API is documented by man +pages. + + http://www.nih.at/libzip + + + libzypp + aarch64 + + 1b71b5dea12599aad635715fff4530800d729e3c2cccb2e0a6d19fa758aed6da + Package, Patch, Pattern, and Product Management + Package, Patch, Pattern, and Product Management + +Authors: +-------- + Michael Andres <ma@suse.de> + Jiri Srain <jsrain@suse.cz> + Stefan Schubert <schubi@suse.de> + Duncan Mac-Vicar <dmacvicar@suse.de> + Klaus Kaempf <kkaempf@suse.de> + Marius Tomaschewski <mt@suse.de> + Stanislav Visnovsky <visnov@suse.cz> + Ladislav Slezak <lslezak@suse.cz> + + + + + libzypp-devel + aarch64 + + b7c42b82abb4c46d5743b2ce8ca21df75c8d49baeebbd6d5d5befd8ef15aea4b + Package, Patch, Pattern, and Product Management - developers files + Package, Patch, Pattern, and Product Management - developers files + +Authors: +-------- + Michael Andres <ma@suse.de> + Jiri Srain <jsrain@suse.cz> + Stefan Schubert <schubi@suse.de> + Duncan Mac-Vicar <dmacvicar@suse.de> + Klaus Kaempf <kkaempf@suse.de> + Marius Tomaschewski <mt@suse.de> + Stanislav Visnovsky <visnov@suse.cz> + Ladislav Slezak <lslezak@suse.cz> + + + + + libzypp-locale + noarch + + b564f8417ee58fbf2d82a4f917291bb7defb24188a702032fb6a306dc980444f + Translations and Locale for package libzypp + This package provides translations for package libzypp. + + + + + location-geofence-server + aarch64 + + 3517d5b91cadc7f61126bb99acab56cd4bdbe8c4f38ae2020bc209c61cddef83 + Geofence Server for Tizen + Geofence Server for Tizen + + + + + location-lbs-server + aarch64 + + a2df191813b3832830e7704ceeac286f161127afdbc6c8cb1578a1a4f72916e6 + Client of LBS Server for Tizen + Client of LBS Server for Tizen +This package provides geographical location information received from LBS Server + + + + + lrzsz + aarch64 + + aeb76b6fa2c90571f1c69e6c5e960bd95eee75d523df0ed54d9a1ca9ffcecb11 + Serial file transfer protocols + This collection of commands can be used to download and upload +files using the Z, X, and Y protocols. Many terminal programs +(like minicom) make use of these programs to transfer files. + + + + + lsof + aarch64 + + 9e432207e16e2808b47e9e781eadadba9b663db030b2d36ac032abf33a2340b2 + A utility which lists open files on a Linux/UNIX system + Lsof stands for LiSt Open Files, and it does just that: it lists +information about files that are open by the processes running on a +UNIX system. + + http://people.freebsd.org/~abe/ + + + lsof-docs + aarch64 + + 38ba56a4310a11e05a46bdb7b59b0b1e4d92c0b6154ffc148a6ddc815ecec3de + Documentation for package lsof + This package provides documentation for package lsof. + + http://people.freebsd.org/~abe/ + + + ltrace + aarch64 + + dec541955eb0c170652ee5264e3800b0c2ce37e1d16a16a9fb77ccbedf5c3ef6 + Trace the Library and System Calls a Program Makes + Ltrace is a program that runs the specified command until it exits. It +intercepts and records the dynamic library calls that are called by the +executed process and the signals that are received by that process. It +can also intercept and print the system calls executed by the program. + +The program to trace need not be recompiled for this, so you can use +ltrace on binaries for which you do not have access to the source. + +This is still a work in progress, so, for example, the tracking to +child processes may fail or some things may not work as expected. + + http://ltrace.org/ + + + lzop + aarch64 + + c78a70e29dcfc74a5860d8256edb619b6aeb5a3a0bdd5c2de47ce7bc2ac01426 + lzop + lzop is a file compressor which is very similar to gzip. lzop uses +the LZO data compression library for compression services, and its +main advantages over gzip are much higher compression and +decompression speed (at the cost of some compression ratio). + +lzop is copyrighted OpenSource software distributed under the terms +of the GNU General Public License (GPL). + + http://www.lzop.org + + + lzop-docs + aarch64 + + 668bc4c7908af01fefe5c9d83a7a763a2c56462060ae412d76a078464351aac5 + Documentation for package lzop + This package provides documentation for package lzop. + + http://www.lzop.org + + + manifest-parser + aarch64 + + 495a386b77a844ed5cc5bbc7e95843b1e97b31fad262301aa439032ff8ca2b60 + Manifest parser + This is a meta package that installs manifest parser. + + + + + manifest-parser-devel + aarch64 + + 5827bd2f905f95b4df54920cfcbcbef48d4e20f6a1a715ee6ce45ab0f9a1f895 + Manifest parser development files + This package contains necessaary files for manifest-parser development + + + + + manifest-parser-examples + aarch64 + + f2cf9bf8deeaffa9f138dbf487b0d186a53777aaf0031402f3d09d536f423272 + Examples for manifest-parser + Examples of manifest-parser usage + + + + + manifest-parser-tests + aarch64 + + 8eee96d56951c68ebdcb63a2f97035083d155d9253c65a29c12443f1164b2f04 + Unit tests for manifest-parser + Unit tests for al modules of manifest-parser + + + + + maps-plugin-here + aarch64 + + dbe160286e13d3ed0e28cf8eee641984a3e1a654556b56fdb4040c2d246ef83d + Tizen HERE Maps Plug-in Library + This package provides Plugin APIs capsulating HERE Maps Engine Library for Maps Service Library. + + + + + maps-plugin-mapzen + aarch64 + + a7c1326b292594d4939b35b4e3947fc279cf9a2e75b5a3198aa34dd36d041124 + Tizen Mapzen Maps Plug-in Library + This package provides Plugin APIs for Mapzen. + + + + + maps-plugin-mapzen-devel + aarch64 + + 6d28e9c8459f6e68f3c004f1ac51fb143b29eea0d03bcaa20337f2b7162e70e8 + Tizen Mapzen Maps Plug-in Library (Development) + This package provides Plugin APIs for Mapzen. (Development) + + + + + mdnsresponder + aarch64 + + 0443ba00d57f1a1b8b0c66abcffbb1be1ca4aecde56802db6c9d7ad56a2ef9ff + DNS Service Discovery service with dns-sd library + The DNS Service Discovery is part of Bonjour, Apple's implementation of +zero-configuration networking(ZEROCONF). + + + + + mdnsresponder-devel + aarch64 + + a58bc6b45a9435600050cf0433209e08ce770f07ee36808987a43d36f8b58292 + DNS Service Discovery (Development) + DNS-SD development files + + + + + media-server + aarch64 + + 4e54f061b462144b84ccde40631f61f4f73a227e69d7e10dc0a05bedbfe05fd4 + A server for media content management + Description: A server for media content management. + + + + + media-thumbnail-server + aarch64 + + 269b214e3686f4b5a47f33f8ac2b462c643cf7023289ecc95b835fb76a6635c7 + Thumbnail generator + Description: Media Thumbnail Server + + + + + mediacontroller + aarch64 + + 95448d052c2e31354c3ccc706a4cdb66318514f3f26a1923df132fc68fa40f23 + A media controller service for media controller library + This packeage provides media controller service for media controller library + + + + + memps + aarch64 + + d24d0d04e3ff86800d3b9b66849ed7ecccb733648cbe87ff7dc4e30e99660e55 + Tool to summarize memory usage of processes, tmpfs and graphics memory usage + memps displays information about current memory usage of processes (metrics like RSS, PSS, memory map of the process, clean and dirty pages), tmpfs and graphics memory usage information + + + + + message-port + aarch64 + + 96297a4a8df9a72bc65cf230925197413a9006147c4b9e8c08889c2bf23d76c3 + Message Port library + Message Port library package. + + + + + message-port-devel + aarch64 + + 84f09a08ee93229cfe214ea8715b23222a8812676c9f2ce6664dee79f810e766 + Message Port library (Development) + Message Port library (Development) package. + + + + + meta-generic + noarch + + b594fcecd9bb85b31214b425a9058661bcf501687e7b73e39a70f01a3be16c3e + Tizen Package Groups and Images Configurations + Tizen Package Groups and Image Configurations for Base OS + + http://www.tizen.org + + + meta-generic-adaptation + noarch + + 8af1dee4d39b3eed610ea60de91f7b148787d2de5298fa5f91b6a03ed42d56ca + Hardware adataption configuration files + Hardware adaptation tweaks to ship inside image + + http://www.tizen.org + + + meta-mobile + aarch64 + + 80ad7a3507a4d99f880fe121b29e5a91c3c45caba7f4793a5a631cb8df1020fd + Tizen Mobile Package Groups and Image Configurations + Tizen Mobile Package Groups and Image Configurations + + http://www.tizen.org + + + mic + noarch + + 86db633d896d81089b945438d40b00aac0a6408694b3b935cae47f49ed32a7d3 + Image Creator for Linux Distributions + The tool mic is used to create and manipulate images for Linux distributions. +It is composed of three subcommand\: create, convert, chroot. Subcommand create +is used to create images with different types; subcommand convert is used to +convert an image to a specified type; subcommand chroot is used to chroot into +an image. + + http://www.tizen.org + + + mic-bootstrap-x86-arm + aarch64 + + 5907b047c99c47b92c532ea8d490034a0c9398b6f6f74a1f82d81672a2a41846 + mic bootstrap + used for mic bootstrap, this package will be repackaged for i586 and arm libs. +it provides a x86 bootstrap environment for unified usage, especially to speed +up the performance of arm image creation. + + http://www.tizen.org/ + + + minicontrol + aarch64 + + 9b14cac0e00cb455fd0cf064ddeec437fff7dc3a5bb40225a73f9d5a70af8eae + Library packaes for minicontrol + Minicontrol is a small control panel on notification panel or lock screen. This package supports to develop minicontrols. + + + + + minicontrol-devel + aarch64 + + ba21a7a02eae089118a01052d540274bcc1db0a1baff9237096092f18d5ec596 + Minicontrol library (devel) + Minicontrol library (devel). + + + + + mm-hal-interface + noarch + + 0fa8bfc3bc056e447346f19eef007c239d1fbbbdb5fdf46f303f423512a16bb3 + Multimedia HAL Interface + Multimedia framework hardware abstraction layer interface package. + + + + + mmfw-sysconf-target-artik10 + aarch64 + + be7bb1a1dcf96e01014cc1f4f6b0574ca78eeda7684befc7f9293595081ce715 + Multimedia Framework system configuration package for artik 10 + Multimedia Framework system configuration package including ini, conf and etc files for artik 10 target. + + + + + mmfw-sysconf-target-hawkp + aarch64 + + cb47de6f3f80d2b6e65060921c0e9645b4d61184ecc9482111ac373e5b50f31c + Multimedia Framework system configuration package for hawkp + Multimedia Framework system configuration package including ini, conf and etc files for hawkp target. + + + + + mmfw-sysconf-target-n4 + aarch64 + + 45c2ae5b622be33d6921bce4101d5b73586b8180cf6e2afb464398fc70791146 + Multimedia Framework system configuration package for n4 + Multimedia Framework system configuration package including ini, conf and etc files for n4 target. + + + + + mmfw-sysconf-target-tm1 + aarch64 + + bb4571a9c6e4b8a2a6af492c7419d7d17bfc51309b140d07db1880332031d016 + Multimedia Framework system configuration package for tm1 + Multimedia Framework system configuration package including ini, conf and etc files for tm1 target. + + + + + mmfw-sysconf-target-tw1 + aarch64 + + b76584f39d53d22d166c3f91e11ea3ae94e156f1c3e88875f926eb1deba5521a + Multimedia Framework system configuration package for tw1 + Multimedia Framework system configuration package including ini, conf and etc files for tw1 target. + + + + + mmfw-sysconf-target-u3 + aarch64 + + 5d97ebc16e63e8df017cb38c3abbe9d949edb4bcc031386ba478e52b3414f52b + Multimedia Framework system configuration package for u3 + Multimedia Framework system configuration package including ini, conf and etc files for u3 target. + + + + + mms-plugin + aarch64 + + 42eb1f6485b150b1a4bf02f3c6f39d386e52758375e5b8f72d8a7dafc8cdf530 + MMS plugin library + Description: MMS plugin library + + + + + mmsvc-camera + aarch64 + + 430f9df89470cfd4b9331470a3e8760595368a5778ac9b86a6e8a83ee3e3c656 + A Camera module for muse server + A Camera module for muse server and native camera API. + + + + + mmsvc-camera-devel + aarch64 + + 3683cf73dc99b6fa3ed005055e7cccad5d11f6f937de40c89f08b5180fc9cfb3 + A Camera module for muse server (Development) + Development related files of a Camera module for muse server. + + + + + mmsvc-player + aarch64 + + 33e3279ccb4b3a56dc107cac5156a8458e77511c08f45ccaac20d700d417a822 + A Media Player module for muse server + A Media Player module for muse server and Tizen Native API. + + + + + mmsvc-player-devel + aarch64 + + 15c14d394b48704be0b6b906c5bc6deb3174a3f3d199d8664bfb698a7a71f968 + A Media Player module for muse server.(Development) + This package contains all necessary include files and libraries needed +to develop applications that require mmsvc-player. + + + + + mmsvc-recorder + aarch64 + + 7e34062b36d35479e10a733ffbdd7c617fc313c145028ce879c2a8e2a2670799 + A Recorder module for muse server + A Recorder module for muse servier and native recorder API. + + + + + mmsvc-recorder-devel + aarch64 + + 668c994a9a4473444e89173541ba3fbdbd319c2407ec7dec3795b0655f447f7e + A Recorder module for muse server (Development) + Development related files of a recorder module for muse server. + + + + + mobileap-agent + aarch64 + + 1c3816d9a70f3e34e8fb6781e4ca1ab3e115b12e9bf80159620253fd930d2c2a + Mobile AP daemon for setting tethering environments + Mobile AP daemon for setting tethering environments + + + + + model-build-features + noarch + + 34b86ff0d6cdd2ac855fd1272ec7382df88ed1b53d59e15f62d341f487d89dc8 + Model Build Feature configuration file for optimize packages-listing + Model Build Feature configuration file for optimize packages-listing + + http://www.tizen.org + + + model-config-emulator + aarch64 + + a4c2cf6a83a3da72f171ddc47ffb5e221bff30b269e9dba8b2bace143475ad7f + A Model configuration + Model configuration data package + + + + + model-config-n4 + noarch + + 1b2bd0712ea239d647185ccd62b6ee3ce21404d208b846c18003874dbb40389b + A Model configuration + Model configuration data package + + + + + model-config-tm1 + noarch + + 74a50c290bdda29554ddb31bcc8e680025f46dd5a94bc7a0da395fce9bfdc4d7 + A Model configuration + Model configuration data package + + + + + motion + aarch64 + + 4b569b38015b4e1dcae7ee919c9856f9f3756748c76049ae5a34422295d56c7f + Tizen Native Motion Recognition API + Tizen Native Motion Recognition API + + + + + motion-devel + aarch64 + + 9b0773aab55cfff456fef1e3f44f2b985b1220ce0d1f5f6d3706bb97244c7cef + Tizen Native Motion Recognition API (Development) + Tizen Native Motion Recognition API (Development) + + + + + msg-manager + aarch64 + + 35d7bf3bdf0129b47bd06b307fed4448e5079dc59e0225d6c64bfa5b011e197b + Message manager application + Description: Message manager application + + + + + msg-service + aarch64 + + 457a5fe706bb81afcce5e30ab47e16d55a89e04a7a075273fd46e31ed029533b + Messaging Framework Library + Description: Messaging Framework Library + + + + + msg-service-devel + aarch64 + + 35de7cbf33de2e78f76c4374d19a14fc0462304cfa62d1d2435d5291dcd83997 + Messaging Framework Library (development) + Description: Messaging Framework Library (development) + + + + + msg-service-tools + aarch64 + + 732b2ea7b0aab93572ccdb208ddf50fed941b0d99d64cc0b02cd36b7eb5c6cb6 + Messaging server application + Description: Messaging server application + + + + + mtdev + aarch64 + + 3fa3f97078ce3362b75e4add72d3406b776f780cd437905ad28fe3eade3addf9 + Multitouch Protocol Translation Library + The mtdev is a stand-alone library which transforms all variants of kernel MT events to the slotted type B protocol. The events put into mtdev may be from any MT device, specifically type A without contact tracking, type A with contact tracking, or type B with contact tracking. See the kernel documentation for further details. + + http://bitmath.org/code/mtdev/ + + + mtdev-devel + aarch64 + + e1f181740f7c245eaca9e88648e7d95b4e3df3998c9c7b5708cf1ea60c90f585 + Development package for mtdev library + This package contains the files needed to compile programs that use mtdev library. + + http://bitmath.org/code/mtdev/ + + + mtools + aarch64 + + 12a88a6c90893dcf94a865ce934c37226263bee645e7bf71957e15bd56fbe3cd + Access Files on an MS-DOS File System + Mtools allows uncomplicated access to an MS-DOS file system on disk +without mounting it. It includes commands for working with MS-DOS +files: mdir, mcd, mcopy, and mformat. + +XDF support for OS/2 is also provided. + + http://mtools.linux.lu/ + + + mtools-docs + aarch64 + + 68d428ed20d6c0d9a09bf3371d19dabfd5237f29e3210a396a8ef102d79dcd14 + Documentation for package mtools + This package provides documentation for package mtools. + + http://mtools.linux.lu/ + + + mtp-initiator + aarch64 + + c0efa532b3f68d28ed5fcc52cd5f55d58b3304f64a7defc9d97fa854ac5202fd + mtp(media transfer protocol) initiator + A mtp-initiator + + + + + mtp-responder + aarch64 + + c775977c640affa651e56af1a0de5d15db13e76f0f94f7645574c6ffea134941 + Media Transfer Protocol daemon (responder) + This package includes a daemon which processes Media Transper Protocol(MTP) commands as MTP responder role. + + + + + multipath-tools + aarch64 + + 46670fd8d8417235074854f67468286a4589e5cd985125c2725fb5787641ae29 + Tools to Manage Multipathed Devices with the device-mapper + This package provides the tools to manage multipathed devices by +instructing the device-mapper multipath module what to do. The tools +are: + +- multipath: scans the system for multipathed devices, assembles + them, and updates the device-mapper's maps + +- multipathd: waits for maps events then execs multipath + +- devmap-name: provides a meaningful device name to udev for devmaps + +- kpartx: maps linear devmaps to device partitions, which makes +multipath maps partionable + + http://christophe.varoqui.free.fr/ + + + murphy + aarch64 + + 642dce7b3646eae6fdfe283825b43ea49af175e57e1823533dde74a45751d282 + Resource policy framework + This package contains the basic Murphy daemon. + + http://01.org/murphy/ + + + murphy-devel + aarch64 + + a517e4776e7b90aa569d839c8cd424cbc7473d0749ffa1999adc6bceaa27b37f + The header files and libraries needed for Murphy development + This package contains header files and libraries necessary for development. + + http://01.org/murphy/ + + + murphy-doc + aarch64 + + 0dfce9acb9a68013118d8cc35b92042fbb7969faab5a30415f60a5269c5f3ff3 + Documentation for Murphy + This package contains documentation. + + http://01.org/murphy/ + + + murphy-glib + aarch64 + + aaf09082e955a3ca54a90ad73a739d614caf58eb25ccd2d7d4d92d4c1790a4a6 + Murphy glib mainloop integration + This package contains the Murphy glib mainloop integration runtime files. + + http://01.org/murphy/ + + + murphy-glib-devel + aarch64 + + f8a41ca670d277f6eb42fd961df8623452590c86d4a113ea1fa75f737b85cda6 + Murphy glib mainloop integration development files + This package contains the Murphy glib mainloop integration development +files. + + http://01.org/murphy/ + + + murphy-tests + aarch64 + + a69621f3ac50541c45674cc305c283ad575ceae98ec547e3a5177d599541f46d + Various test binaries for Murphy + This package contains various test binaries for Murphy. + + http://01.org/murphy/ + + + mused + aarch64 + + 71dddfff919af6cb96da437f0a018aefc30f91172b127021624aac5d22f71325 + A Multimedia Daemon in Tizen Native API + + + + + + mused-devel + aarch64 + + 64c39b5c69de7ff30312f8f725ec81b1c285659920fefc3e8a0a204e3bf203ae + A Media Daemon library in Tizen (Development) + + + + + + my-account + aarch64 + + 3c3a9855904b846274674171c523a5f738bd3c0e8402bf886d289e9f5b045b70 + My account application + Accounts ug of setting application. + + + + + nasm + aarch64 + + 81f29fb8c63c2dc18d31a3755cde5367d9fbaac8b4ccaa34dd4ff1b1ce314830 + Netwide Assembler (An x86 Assembler) + NASM is a prototype general-purpose x86 assembler. It can currently +output several binary formats, including ELF, a.out, Win32, and OS/2. + +Read the licence agreement in /usr/share/doc/packages/nasm/Licence. + + http://nasm.sourceforge.net/ + + + nasm-doc + aarch64 + + deecb02fd65a77240dc09ccf2aa0aaf6c0450e41797fc38ebfa348da5f3467e9 + Documentation for Nasm + This package contains the documentation for Nasm. + + http://nasm.sourceforge.net/ + + + net-config + aarch64 + + 9bafdb5e17859b8a5febcbfb70148ba689c55d2c35a2f7d9655c9b0c99b8c1f4 + TIZEN Network Configuration service + TIZEN Network Configuration service + + + + + net.netpopup + aarch64 + + 95a15a6c96437a27e37c920e6f322aa444a51fe4aa644d90e6aad7697ced68f0 + Network Notification Popup applicationa + Network Notification Popup application + + + + + net.wifi-qs + aarch64 + + 1a80c7368b6f7f15d41c3c70c294166e3f60f55add2fb8cb5767e575ccf58890 + Wi-Fi System popup + Wi-Fi System popup for TIZEN + + + + + nether + aarch64 + + 924b0b959875b57da6eb25b1ab08bdef0a046e42bc22ba2fd4e46194f086a1f9 + Daemon for enforcing network privileges + This is a network privilege enforcing service. + + + + + nettle + aarch64 + + 49d3f57cc0d05e00e1a1e9ba92f78fc798198a5392b16370e677964be21452c1 + Cryptographic Library + Nettle is a cryptographic library that is designed to fit easily in more or +less any context: In crypto toolkits for object-oriented languages (C++, +Python, Pike, ...), in applications like LSH or GNUPG, or even in kernel space. + + + + + newfs-msdos + aarch64 + + e33266e3b235292d4811f3e5cee1c358880765de265566834d33167fa3d3f470 + Newfs-msdos + Newfs-msdos tool + + + + + nfc-common-lib + aarch64 + + f7ae20cb51345bd9b3db2d302b8aac942739964b7b52e15482d45388ab0df636 + NFC common library + A library for Tizen NFC Framework and Tizen NFC client library. + + + + + nfc-common-lib-devel + aarch64 + + e0e29e4cd1b52c5e0007b85f86de30cdf2e9a8be1e6ffc622907e12b4d076dc3 + NFC common library (devel) + This package contains the development files for NFC Common library. + + + + + nfc-manager + aarch64 + + 7819dfc04a1fd7e6dc34761e103aeb75f6e9668e833f4c72d1cbb5a6ef31baee + NFC framework manager + A NFC Service Framework for support Tizen NFC. + + + + + nfc-plugin-emul + aarch64 + + 2d1689d25d2b67a325ba3b4b65360f001e8efeb808325cf98ec8ec324f8b4a7d + NFC emul plugin + NFC Plugin Emul + + + + + nodejs + aarch64 + + 0c03010f9cea14cd13d33baabdec062d8baedaa471541a2ddff6401d9ffa4354 + Evented I/O for V8 JavaScript + Node.js is a platform built on Chromes JavaScript runtime for easily building fast, +scalable network applications. Node.js uses an event-driven, non-blocking I/O model +that makes it lightweight and efficient, perfect for data-intensive real-time +applications that run across distributed devices. + + http://nodejs.org/ + + + nodejs-devel + aarch64 + + 7215aa997beda50b1c3d0a3b3bd25e76820ff4853cb7f85aa86b1704097c4030 + Header files for nodejs + Development libraries for Node.js + + http://nodejs.org/ + + + nodejs-npm + aarch64 + + ea2ffc2ad1b290ae7b6762473f0547bdcd1196e2a4f37b9d92df588d80acd726 + npm tools for nodejs + npm tools for Node.js + + http://nodejs.org/ + + + notification + aarch64 + + 6aa8f4c6c1d0d963b1759035aca5c3ec969c397a648c070b6b16e29ebb0ca5d1 + Notification library + Client/Server library for sending notifications. + + + + + notification-devel + aarch64 + + 62ff39d9c23c5167eed3a0e6a5a0b1476c1222117d43c94eb66b15d9f135fdca + Notification library (devel) + Development files needed to build software that needs to system a system notification. + + + + + oauth2 + aarch64 + + cae5114808f781eb1fb4bec15d083fe38c578dc4f5f25e30942e53fe75e4752a + Tizen oauth 2.0 Framework + Tizen oauth 2.0 Framework + + + + + oauth2-devel + aarch64 + + 5fe06960ac781e1a6dc204d4eed33b13dcdad01bf5234a30e6a2d3e2cdd309a9 + Development files for oauth2 + Development files for oauth2 + + + + + obexd + aarch64 + + 98885efeb837691c9429c2d590f5c1aaa22d31d17a4aca695bccd8bd4210540e + OBEX Server A basic OBEX server implementation + OBEX Server A basic OBEX server implementation. + + http://www.bluez.org/ + + + openal-soft + aarch64 + + e784c6df8a19d1624feac13a1e1e8ffe978fc1a528eadfb2c786025dacf1b10f + A cross-platform 3D audio API + OpenAL is a cross-platform 3D audio API appropriate for use with gaming +applications and many other types of audio applications. + + http://connect.creativelabs.com/openal/ + + + openal-soft-devel + aarch64 + + f3c009aac133372c0de6b69cb1f8c575e34dbdb32347d83c89de8c9a97a8e377 + openal-soft development package + Development package for OpenAL, a cross-platform 3D audio API +appropriate for use with gaming applications and many other types of +audio applications. + + http://connect.creativelabs.com/openal/ + + + opencore-amr + aarch64 + + 9972861100aa4de09a7c2b1cb3786a8638e88984d9f5983f3762ebd38e3ee79c + Opencore AMR package + opencore AMRNB and AMRWB package + + + + + opencore-amr-devel + aarch64 + + eb11ae137c5629248e3dbb54e3d370f5d8bc62df04e4c35ef0b9027658f0b69a + Opencore AMR package (Development) + opencore AMRNB and AMRWB development package + + + + + opencv + aarch64 + + 3ca0e8b8f972589973fbe3a978f8743f06074961b1a7e3c06c2c5598491e9b18 + OpenCV library + The Open Computer Vision Library includes various algorithms for computer vision problems. + + + + + opencv-devel + aarch64 + + 40ac2a07c2d05dae1d84ae80144d0b91979098cdc6b2ef4609192fcf36cbcaa9 + OpenCV Library (Dev) + The Open Computer Vision Library (Dev) includes various algorithms for computer vision problems. + + + + + openssh + aarch64 + + ce3335e7885dbfddb54e8df139f9e7f6fdae56972c8b923d79ce29e3417905cb + Secure Shell Client and Server (Remote Login Program) + SSH (Secure Shell) is a program for logging into and executing commands +on a remote machine. It is intended to replace rsh (rlogin and rsh) and +provides openssl (secure encrypted communication) between two untrusted +hosts over an insecure network. + +xorg-x11 (X Window System) connections and arbitrary TCP/IP ports can +also be forwarded over the secure channel. + + http://www.openssh.com/ + + + openvpn + aarch64 + + 4da8b889fd50a5f423854e72e12950377271a8ceec2e87e504a4cbc312ef7027 + A full-featured SSL VPN solution + OpenVPN is a robust and highly flexible tunneling application that uses all +of the encryption, authentication, and certification features of the +OpenSSL library to securely tunnel IP networks over a single UDP or TCP +port. It can use the Marcus Franz Xaver Johannes Oberhumer's LZO library +for compression. + + http://openvpn.net/ + + + oprofile + aarch64 + + 4e5ff479ba48e67bf8064424126b2e024fa3461583b459148c808e476617708c + System wide profiler + OProfile is a profiling system for systems running Linux. The +profiling runs transparently during the background, and profile data +can be collected at any time. OProfile makes use of the hardware performance +counters provided on Intel P6, and AMD Athlon family processors, and can use +the RTC for profiling on other x86 processor types. + +See the HTML documentation for further details. + + http://oprofile.sf.net + + + oprofile-devel + aarch64 + + 7878d32fd56921e200b5f2694def3a502ce5b59957836f0474afebe68c0f5478 + System wide profiler + Header files and libraries for developing apps which will use oprofile. + + http://oprofile.sf.net + + + oprofile-docs + aarch64 + + 618b26b71f46e8a698a11f2a06f3f74ee061cdbbbbe148de1c79620751ff0cfd + Documentation for package oprofile + This package provides documentation for package oprofile. + + http://oprofile.sf.net + + + oprofile-jit + aarch64 + + 15a3ab040020bd3737d46fd44600d00bdc83354bfacdf16b7587290f2796441e + System wide profiler + This package includes a base JIT support library, as well as a Java +agent library. + + http://oprofile.sf.net + + + orc + aarch64 + + d499cfe9f27cf610e67cfc3ef1f1f0695f2ae2ea6372bdd4310f073c0bffbfc1 + The Oil Runtime Compiler + Orc is a library and set of tools for compiling and executing very simple +programs that operate on arrays of data. The “language” is a generic +assembly language that represents many of the features available in SIMD +architectures, including saturated addition and subtraction, and many +arithmetic operations. + + http://code.entropywave.com/projects/orc/ + + + org.tizen.app-selector + aarch64 + + 48074dd7cb7e8828ee6f6144142e29212a45aa3081c54edc8023397fd6f2e050 + Application selector + SLP application selector + + + + + org.tizen.bluetooth-share-ui + aarch64 + + 3ab72b7d383a3d91cc7cabb980f1f7a3bc523b68eaf1f8f30685246eeea254d2 + bluetooth share UI application + bluetooth share UI application + + + + + org.tizen.browser + aarch64 + + c9b2f419aa8086c19db260a89fe01d31d1df2c013131bf676218c6be10a1c1f2 + Tizen TV Open Browser + WebKit browser with EFL for Tizen TV Platform. + + + + + org.tizen.bt-syspopup + aarch64 + + 793b42b9d9f41fd7399d94e4e89f838d4e0a73fad82c6f3ff2cec69092c27d69 + bluetooth system-popup application (bluetooth system popup) + bluetooth system-popup application (bluetooth system popup). + + + + + org.tizen.call-ui + aarch64 + + 86ee106b4da07f4feec4693285b5f2742707618dc68c70546095c2f3d4794602 + Call UI Application + profile/mobile/apps/native/call-ui#684f7291d8072f7aa7b6e46cea38f92464ed4740 +This is a container package which have preload TPK files + + + + + org.tizen.callmgr-popup + aarch64 + + 7049f533b7a3ea2173df839f3c65a158d532b947bede10c251464739e07d2d09 + Display popup about call + Display Voice mail notification popup + + + + + org.tizen.camera-app + aarch64 + + dd15bc5a8f9c374f75fb5aa630769b6cbc16ca97efde215bf07486befe453a86 + camera application + profile/mobile/apps/native/camera-app#ace16741b07ceb8af025a40dddc51f9ea0665c20 +This is a container package which have preload TPK files + + + + + org.tizen.crash-syspopup + aarch64 + + 31e6dd570813a1acab98903b6fef7f16c7406cecee4c332a25cb5cdb9e2b693b + System popup application (crash system popup) + to inform user crash information. It is activated +when crash event is happend + + + + + org.tizen.d2d-conv-setting + aarch64 + + eadaaf8f0efcb0b3b52788bcf54b164bd766f9fc3f2e5ef11ded2bfa59a3c3fc + Tizen D2D Convergence Setting Application + Tizen D2D Convergence Setting Application + + + + + org.tizen.d2d-conv-syspopup + aarch64 + + 1b6c9158bd9818e2f10339a9f36a3f4035cb2d470bede86288eba5f75877f9d5 + Tizen D2D Convergence system popup + Tizen D2D Convergence system popup + + + + + org.tizen.download-manager + aarch64 + + 605cd8f2a0be6941d1ff493ff721f44914465e1c46d3025a2f69c753974e5292 + Application for support of the content download + Application for support of the content download + + N/A + + + org.tizen.dpm-syspopup + aarch64 + + 7ac636049aa8185fe9104744513bbf8a0ef096c1e829c7cf0c32ba002868c8ae + Tizen DPM system popup Interface + Tizen DPM system popup interface package + + + + + org.tizen.dpm-toolkit + aarch64 + + 5d840214d2a213b6ac92788d2f3fef632039b757cd07dadadc81e00b7f992615 + Tizen DPM test toolkit package + Device Policy Manager test toolkit pakcage + + + + + org.tizen.elm-demo-tizen-mobile + aarch64 + + b6ff7d5bba89cb49b18b2438fded55d58eac0a5fbd7db196f03bc7d4fa94901a + Tizen mobile demo + Tizen mobile theme demo + + + + + org.tizen.email + aarch64 + + 14a2bccd3217fe588868de109d7ae8a63fcd5442fb95cc63de7c2ec509ab4ae3 + Native email application + profile/mobile/apps/native/email-app#7944d1369413a065aa6f9e3ade7f3cae1b4f231c +This is a container package which have preload TPK files + + + + + org.tizen.fidosvcui + aarch64 + + 47ae92f0e29b4d0efda7a8a674a4a477aea4411d13ce1830f24e1bb10ec0e955 + FIDO Service UI + FIDO Service UI provides Authenticator selection UI. + + + + + org.tizen.gallery + aarch64 + + 4da912dc473a3276b8cb86db48d49d56c2f660e76ba35c476fea1f6e6ff8372c + org.tizen.gallery UX + profile/mobile/apps/native/gallery#7ee25461ad42f60e92878fb44d2a385a9b0e1f6d +This is a container package which have preload TPK files + + + + + org.tizen.gps-syspopup + aarch64 + + 374879ae81749784419c25614be2cd1282367604950ebbebec133837674e2cd8 + GPS popup + GPS popup. + + + + + org.tizen.heremaps-uc + aarch64 + + 19e24073e1d25c7bc2b8a7e626cdde8624278b2dd1b36dd7bb3225c0f9edeadd + HereMaps UC popup + This package provides UI interface to get consents from users to the HERE platform Service. + + + + + org.tizen.image-viewer + aarch64 + + 53e24d6bfe8987cd44ce19183a15fbe888c06690ae949620ac0966780e76dc21 + image-viewer + profile/mobile/apps/native/ug-image-viewer-efl#6c5bf7884d0ec85f350604eb4d8883273b24014c +This is a container package which have preload TPK files + + + + + org.tizen.indicator + aarch64 + + 0fb5ad7e675246eb1ad211ef41384dfb165b2dd1d414d84c0523514a49804585 + indicator window + Indicator window reference implementation. + + + + + org.tizen.inputmethod-setting + aarch64 + + 09ae654a58bfdb2e7ba90dcbac9b8f8989c6e85bc0bc441ced2199f71044506a + Input Method Setting Application + Setting Application for ISF. +This requires profile specific extensions. (e.g., org.tizen.inputmethod-setting-profile_common) + + + + + org.tizen.inputmethod-setting-profile_mobile + aarch64 + + f01ab7e8bf456aa31460df51f72d60fe7480d17d946bc53c5c478ec4d97c07f1 + Input Method Setting Application Binaries for Mobile Profile + Setting Application for ISF, Mobile Profile Edition. +Binaries in this package is compiled with "mobile" options. + + + + + org.tizen.isf-kbd-mode-changer + aarch64 + + f02b0bcd329344dc5b8b58346e3e1404884c50963d718b80bde755b0e3652cf8 + Keyboard mode changer + Keyboard mode changer application + + + + + org.tizen.kaskit + aarch64 + + a8d7d4a09963abeda127a3a65e2880132415252b9f5bd56bea369a90165fe3bf + Tizen Krate launcher Interface + Tizen Krate launcher interface + + + + + org.tizen.keyguard + aarch64 + + 385a69abb8da9f1cd6028abedaf012c4247673fd8d2f25083284fc54a75abf7c + Tizen Krate keyguard Interface + Tizen Krate keyguard interface + + + + + org.tizen.krate-setup-wizard + aarch64 + + ab5c320d520b8531f95515986b0c0f1dd30d99c9332b98b62341f2aab0ade108 + Tizen Krate setup wizard Interface + Tizen Krate setup wizard interface + + + + + org.tizen.menu-screen + aarch64 + + 2807fb8afd706c1bcd41b573372c3d0fdd1467a05d6bce27b69168834cc1a14a + An utility library of the menu screen + An utility library for developers of the menu screen. + + + + + org.tizen.music-player + aarch64 + + a90efab17afefaf82574a3bea276e34e76761127b0f123879bae9e6acc6afb82 + music player application + profile/mobile/apps/native/music-player#397e9fad7c94b6fc590ce98f0d9d4cbb249ba4c3 +This is a container package which have preload TPK files + + + + + org.tizen.myfile + aarch64 + + 859621ef72076dcd918d32e3122f92596e07fb30edb0f3879f1e78a7c57810c1 + Myfile Application v1.0 + profile/mobile/apps/native/myfiles#c938baab9b51b839026825ceec8a0c96342e829e +This is a container package which have preload TPK files + + + + + org.tizen.myplace + aarch64 + + 8214327dadf59a668419b3d7c7ff94b543a1faa9bcace2f5b1fad3554ef13c2c + My places + Manage places for geofence service. + + + + + org.tizen.ode + aarch64 + + fcdfeae0c431dd9ef4228784e1b3dbeb80bdd857c54cabcec0961701499ccd9c + Tizen ODE User Interface + Tizen ODE User Interface for device policy management + + + + + org.tizen.overheat-syspopup + aarch64 + + a1fa25c84b3f467c80301aa7dca0b1269e8e17a485c1efa0224ffa89ec06f74c + Overheat-popup application + to inform user overheat information. It is activated +when overheat event is happened + + + + + org.tizen.powerkey-syspopup + aarch64 + + f2b19520e89e9de123c7a075894086e04fbaf552ece900329fa61e41a8017484 + Powerkey-popup application + to inform user powerkey information. It is activated +when user power key event is happened + + + + + org.tizen.privacy-setting + aarch64 + + 37a66d201df429650eb3b2e16828ffdcaed8f451eefc91dbca8d1ea43d6ed53e + Privacy setting ui application + Application providing ui for managing other installed applications privacy status. + + + + + org.tizen.quickpanel + aarch64 + + f74c8ded71e8145dbb6586d9a04d3364dcc03474f1beb0144336509ae4eb149a + Quick access panel for the notifications and various kinds of services. + Quick Panel + + + + + org.tizen.screen-reader + aarch64 + + 5bbd085f9ef13bf492ec54da2bc026a1d821a07be7410fc854b7ddaa31408668 + Screen Reader Assistive Technology + An utility library for developers of the menu screen. + + + + + org.tizen.service-plugin-sample + aarch64 + + ede592f0ae39a30cf20e3d5ecc8aa3ad863c3231cd9c56888503b717e2400ade + plugin sample + plugin sample + + + + + org.tizen.setting + aarch64 + + 94da76b50093dce1cb10cb458e49d41e30d21438967db281a1455efe4df9995b + Setting application + Setting application + BEAT UI, Setting application. + + + + + org.tizen.setting-devel + aarch64 + + f0da8f2a82e18eb3075185f4ce6f069ca73538ca5066e2653eb115a38d869673 + A setting common library (Development) + Development package of setting application. + + + + + org.tizen.setting-location + aarch64 + + cd8edf5fe86e328e3e13f38f435e44065e76318a0cd2cf6c9f7645dcd4c293b2 + location setting + location setting. + + + + + org.tizen.setting-ref + aarch64 + + f9732ad6b88a4087d4c4b50f375c9f210bb24b528baf094ace8dfc54e92b95dd + Replacement for org.tizen.setting.xml + replace for org.tizen.setting.xml + need to check + + + + + org.tizen.settings-adid + aarch64 + + 3ce5dcd522f73b15fc46fee9c033d5b0e237295af00b21a3b486a6c156dfdb4a + Ad Id + Tizen Ad-Id Setting Application + + + + + org.tizen.share-panel + aarch64 + + b9facbe69c2ecce1ada2b99ab4027086731ce46e3ff5dfacdfd0bbd3ba355072 + Share Panel + profile/mobile/apps/native/share-panel#8ad91ade576797f01c8a40b329d7b3c71b3bdfbf +This is a container package which have preload TPK files + + + + + org.tizen.stt-engine-default + aarch64 + + 4ec4869a1d603b2cd7544514b1433c58080d809a3909e26e06fa7e28c0f2b259 + Speech To Text default engine library + Description: Speech To Text default engine library + + + + + org.tizen.sys-lock + aarch64 + + 651839c3484c473ea2523551835f1a621272f2c5c42093585b0d1f40edd34987 + Sys-lock app + Syslock application for Tizen. + + + + + org.tizen.system-signal-sender + aarch64 + + 2489ac1c0c696936372107ce46857984d38161dda3f509ceb539359c26a43237 + System FW signal sender + to inform user system FW signal sender. It is activated +when system event is happend + + + + + org.tizen.system-syspopup + aarch64 + + 12b372922c492f6f2da0178b92ee215954dcc821c49d47c22c2cfbf0c4cbbcc6 + System popup application + to inform user system information. It is activated +when system event is happend + + + + + org.tizen.task-mgr + aarch64 + + cb96c02d112b82ad47c31169af9054c88218e4517d3c503de54cb38ba68cc27b + Taskmanager application + profile/mobile/apps/native/taskmanager#73e8d597751871a0d6f328a9abe00a434f8a1f4d +This is a container package which have preload TPK files + + + + + org.tizen.tts-engine-default + aarch64 + + 34c360d346c5bd89c2bd1a3fe8c91d81d40deec2a932ae35e4adf7788b416871 + Text To Speech default engine library + Description: Text To Speech default engine library + + + + + org.tizen.ug-gallery-efl + aarch64 + + 8b05520579c470949e031665f1e51d95bb4efdec0896d08209e3d4ae57e822d5 + Gallery UX + profile/mobile/apps/native/ug-gallery-efl#0b055da2ebac8ff4f5fd49d14e78e8eaf33a698d +This is a container package which have preload TPK files + + + + + org.tizen.ug-myfile-efl + aarch64 + + 253fad3a963fe0680beac029e5e69fd43d6c9a0cadface47835430e5b18f44a9 + ug-myfile-efl + profile/mobile/apps/native/ug-myfile-efl#fc6147bf445a63d564275afd7d16ff8473976681 +This is a container package which have preload TPK files + + + + + org.tizen.videos + aarch64 + + 56e00160a1bee138e72a22ca36621ee7b01c64cbe34e7ba7a3db75e169fc04d4 + video library & store + profile/mobile/apps/native/video-player#d6ac53ce635a975ac1fbe5c22fb7bccdb4590343 +This is a container package which have preload TPK files + + + + + org.tizen.voice-control-panel + aarch64 + + f6218bd5698d5a41ff4e03ddad0d9a6716e4349f76a961d87db57d1b80dee6ae + Voice control panel(manager) application + Voice control panel(manager) application + + + + + org.tizen.voice-setting + aarch64 + + 3d25e12f209c899b46c0f86df8d626aaa9d5d8533034342fb90d7ddc317ceaba + Voice Setting Application + Voice Setting Application. + + + + + org.tizen.volume + aarch64 + + 54bd11a2a42272ab0078f3257ddc711fd4cafa79128202c035a0606770476fb7 + Volume application (EFL) + volume. + + + + + org.tizen.widget_viewer_sdk + aarch64 + + 3355e55a85aa1ec2a770197b09b0b39a14bc57409605a36048d133f021a8586d + The widget viewer for development using SDK(IDE) + While developing the widget applications, this viewer will load it and execute it to help you to see it on the screen. + + + + + org.tizen.wifi-direct-popup + aarch64 + + fadee0f609cbc0b60d52d8caaf46c7c7a9c517ad1c7e65dc7071744c4dccd365 + Wifi-Wirect system popup + Wi-Fi Direct system popup. + + + + + package-groups + aarch64 + + ae84f78fde74ff483e6d9686b8d648f23dedd47da6bf48382ffa0cd088f36f86 + Tizen Package Groups + Tizen Package Groups + + http://www.tizen.org + + + pacrunner + aarch64 + + d80207f3785d806748c7e28c87a1581504169e29d5417de289024b46259747ab + Proxy configuration daemon + PACrunner - Proxy configuration daemon. + + http://connman.net/ + + + pacrunner-libproxy + aarch64 + + 99d595f92198ef4f5f793ebeea5cfd0dee6502c95911e2636344c8feeded0aae + Libproxy library + PACrunner - Proxy configuration daemon. + +Libproxy library. + + http://connman.net/ + + + pacrunner-libproxy-devel + aarch64 + + 92a1d23151cbd7f4937b2b1cdf5a3da7768fba62f1e3a24a57de1510d1e55e77 + Libproxy library Development Files + PACrunner - Proxy configuration daemon. + +Libproxy library Development Files. + + http://connman.net/ + + + pacrunner-proxy-tools + aarch64 + + ffd0cc61704e743e7e3d4cd1e8e399897eaff91551725ef957b3e15b8f1f26a1 + Libproxy library Tools + PACrunner - Proxy configuration daemon. + +Libproxy library Tools. + + http://connman.net/ + + + pacrunner-test + aarch64 + + 352cb7cb6e7de77511b2b3c405bc20f0963f9fa6ba9a0bd69cd9f6310ac6ed0b + Test Scripts for pacrunner + PACrunner - Proxy configuration daemon. + +Pacrunner tests + + http://connman.net/ + + + parted + aarch64 + + c60b1f868eb0ab5803d9589f77a80922358896b4e3d51d16d3eb527786e576a0 + The GNU disk partition manipulation program + The GNU Parted program allows you to create, destroy, resize, move, +and copy hard disk partitions. Parted can be used for creating space +for new operating systems, reorganizing disk usage, and copying data +to new hard disks. + + http://www.gnu.org/software/parted + + + parted-devel + aarch64 + + b2bd4431656dcbdab92902ff5dac4ad47027886e5eb854ba99fa87d76a7e999a + Files for developing apps which will manipulate disk partitions + The GNU Parted library is a set of routines for hard disk partition +manipulation. If you want to develop programs that manipulate disk +partitions and filesystems using the routines provided by the GNU +Parted library, you need to install this package. + + http://www.gnu.org/software/parted + + + parted-docs + aarch64 + + f6e434ce5698a2aff3c44e0ec834a3366219b16325b7fd77027988881ac74927 + Documentation for package parted + This package provides documentation for package parted. + + http://www.gnu.org/software/parted + + + parted-locale + noarch + + 74c933a512175a46a3130c4e0fdee433feb09a98586bb732266e24710f131466 + Translations and Locale for package parted + This package provides translations for package parted. + + http://www.gnu.org/software/parted + + + pattern-tools + aarch64 + + 7f068c64ff466c6425ccef09f4f787eef3b29f2adb54a9369578491884bdad43 + Pattern Tools + Tools for managing package groups and patterns. + + http://www.tizen.org + + + pbzip2 + aarch64 + + 525c052e35c1acf34e0357adf49d486e7033f2e47ee55a7a18b68d986fd0ec0e + Parallel implementation of bzip2 + PBZIP2 is a parallel implementation of the bzip2 block-sorting file +compressor that uses pthreads and achieves near-linear speedup on SMP +machines. The output of this version is fully compatible with bzip2 +v1.0.2 or newer (ie: anything compressed with pbzip2 can be +decompressed with bzip2). + + http://www.compression.ca/pbzip2/ + + + pbzip2-docs + aarch64 + + c8af30408a1f3ed660f4013aaa913da18b5e7c35b3645ae793dd9abb73338e8a + Documentation for package pbzip2 + This package provides documentation for package pbzip2. + + http://www.compression.ca/pbzip2/ + + + pepper + aarch64 + + 203994aa97095ecdf882e5844941b1c76a99af5611bf47d74c6679f9f52db908 + Library for developing wayland compositor + Pepper is a lightweight and flexible library for developing various types of wayland compositors. + + + + + pepper-dali + aarch64 + + d9410bba737d7e3dbff28f1f334efb2cb0d0a40d808ab4711bb79d583a05e94c + DALi backend for pepper + DALi backend for pepper. +Pepper is a lightweight and flexible library for developing various types of wayland compositors. + + + + + pepper-dali-devel + aarch64 + + 3ce413d094bab723b49c171e3eeea51089689671f83a768bf259337b22ec8f98 + Development components for pepper-dali + This package includes developer files common to all packages. + + + + + pepper-desktop-shell + aarch64 + + f5583e89263274d1d438c1929e178a68b7f9fef47d427d0d27a7092bad428eaf + Desktop-shell module for pepper package + This package includes desktop-shell module files. + + + + + pepper-desktop-shell-devel + aarch64 + + 5a4e020d15d403ebe2c9d43fa71e2b63ca064784b69fcfec4d32b0e8fa56d355 + Desktop-shell development module for pepper package + This package includes desktop-shell development module files. + + + + + pepper-devel + aarch64 + + 1ba54c187ea8799d55f8df78ef725b485862e7d7f44742ec022555d899db5af5 + Development module for pepper package + This package includes developer files common to all packages. + + + + + pepper-doctor + aarch64 + + 456c4c1767e3478fbad4a4de339077199e605cf021f22828ef28029bf413c5ac + Doctor server for pepper package + This package includes doctor server files. + + + + + pepper-drm + aarch64 + + eedd3926e9f19934b4dac057b0bf4b80a89120b84fb265bef19b9d2b31f8a790 + Drm backend module for pepper package + This package includes drm backend module files. + + + + + pepper-drm-devel + aarch64 + + a0178357d7b255b2915be01ddca04a4ada386df4fa188d376a53d5a4ee2cc99f + Drm backend development module for pepper package + This package includes drm backend development module files. + + + + + pepper-fbdev + aarch64 + + e5758cbb1bdc61fc51e2a321751ee153ce888db54082475933b1592d2d95d3a5 + Fbdev backend module for pepper package + This package includes fbdev backend module files. + + + + + pepper-fbdev-devel + aarch64 + + 3977c82140b795b1776d738aae28003b9a082bed8b475845e7bfa4bb65c5966f + Fbdev backend development module for pepper package + This package includes fbdev backend development module files. + + + + + pepper-libinput + aarch64 + + 60e4704d9407b152ea3ad3d8b7cf4ca9ecb67a74e0ded0e88399dc7f0c243dd5 + Libinput module for pepper package + This package includes libinput module files. + + + + + pepper-libinput-devel + aarch64 + + 35258195fe20948d5e847da4ebc32ad22422373a067a812a13c4bf5510f6cbd4 + Libinput development module for pepper package + This package includes libinput development module files. + + + + + pepper-render + aarch64 + + ae993ce1eb4bc393a7197b6d098f5ab0cec676bc31a8f467828cdc271f13bb12 + Render module for pepper package + This package includes render module files. + + + + + pepper-render-devel + aarch64 + + 8f0a04265b62b6800c89ed743940a154e2929dacc1f9bc2aba0bb83ed697c199 + Render development module for pepper package + This package includes render development module files. + + + + + pepper-tdm + aarch64 + + 48a3a772309e0937698253f1374ce66c6cb20f5e9608ec36689a3a52ad3e8a87 + TDM backend module for pepper package + This package includes tdm backend module files. + + + + + pepper-tdm-devel + aarch64 + + 177987c931bb077810deaf77e57c7a40fee944ac1db423a58a52575ca0a351b8 + TDM backend development module for pepper package + This package includes drm backend development module files. + + + + + pepper-wayland + aarch64 + + 4442b46a1c6bfca68d72c5145fb9e3af4addf2a6650d149c02f4dfb2dae507e6 + Wayland backend module for pepper package + This package includes wayland backend module files. + + + + + pepper-wayland-devel + aarch64 + + 9529d300ae43df3ac26737de31a335f8bd027e66955e62001c2d8cd42e10beb8 + Wayland backend development module for pepper package + This package includes wayland backend development module files. + + + + + perl-Error + noarch + + 81317e01fd8ef633f13d2f26e4d040c76c8d9cb1d857172c11733f90454474a4 + Error/exception handling in an OO-ish way + The 'Error' package provides two interfaces. Firstly 'Error' provides a +procedural interface to exception handling. Secondly 'Error' is a base +class for errors/exceptions that can either be thrown, for subsequent +catch, or can simply be recorded. + +Errors in the class 'Error' should not be thrown directly, but the user +should throw errors from a sub-class of 'Error'. + + http://search.cpan.org/dist/Error/ + + + perl-solv + aarch64 + + f5c02d1622dbf5efe9e428b023b608779276058f8de4c5b81aff69487b20a714 + Perl bindings for the libsolv library + Perl bindings for sat solver. + + https://github.com/openSUSE/libsolv + + + phonenumber-utils + aarch64 + + 120773e547d5bd7f6515b9d06c5385d5332d4678640bd0ad5debbf3a9d9877d1 + Phone Number Utilities + Phone Number Utilities(location, formatted number, normalized number) + + + + + phonenumber-utils-devel + aarch64 + + 5ce98ef694cddf31701264a044dd9310808d2846829471a5da16c350000fcf8b + Phone Number Utilities (devel) + Phone Number Utilities development kit + + + + + phonenumber-utils-test + aarch64 + + 5a647e46398af8c190373b36020d876b48c2627f6b677c4079cad39b08f72862 + Phone Number Utilities tester + Tizen Phone Number Utilities tester + + + + + pims-ipc + aarch64 + + 091342e7c46b6450e49d88c14478603b507366cb5c03f0119b32302d7b85eaf2 + library for PIMs IPC + library for PIMs IPC + + + + + pims-ipc-devel + aarch64 + + a28f93c4b32633fc0a1e9506c510c3b0b9ccba1a2a4cf2324d4ede8486ec06cd + DB library for calendar + library for PIMs IPC (developement files) + + + + + pixman + aarch64 + + 35817502e4ed215b54ce24e90f9a3e6c218b53409b92d1e7a7d838405e89c5e6 + Pixel manipulation library + The pixel-manipulation library for X and cairo. + + http://cairographics.org/releases/pixman-0.32.6.tar.gz + + + pixman-devel + aarch64 + + 07956ac941bee04849fa31b41f5bcd41453c526370034f41fef90460352a71cd + Development components for the pixman library + The pixel-manipulation library for X and cairo. + +Development components for the pixman library. + + http://cairographics.org/releases/pixman-0.32.6.tar.gz + + + pkgmgr + aarch64 + + 70cff2df09b1ca5dfe04f9138d44ffca8e30764a2a4cf8bc99f6555a0478d363 + Packager Manager client library package + Packager Manager client library package for packaging + + + + + pkgmgr-client + aarch64 + + 0cb043822c3d9e8fc8b125f8a9b79dff9a967bca710861242e830dc4f7d23133 + Package Manager client library develpoment package + Package Manager client library develpoment package for packaging + + + + + pkgmgr-client-devel + aarch64 + + 32a241074f16903dd6856be92f516d5dfa6622dedb97b185a6b2960066bbe15c + Package Manager client library develpoment package + Package Manager client library develpoment package for packaging + + + + + pkgmgr-info + aarch64 + + 9639889fcb31c3aa7c841e2b28a3991769e8417c7fab6bbfca8c6d6cd0591341 + Packager Manager infomation api for package + Packager Manager infomation api for packaging + + + + + pkgmgr-info-devel + aarch64 + + 5731067ce61e9f66e24dbdbe4d1fe746b86a7651177b35f8c3f1bcb2615b76fd + Packager Manager infomation api (devel) + Packager Manager infomation api (devel) + + + + + pkgmgr-info-parser + aarch64 + + 7ef3628a62ec2fdb94d3cc48e387610c951414bb97a602be4c1c66a114bba26e + Library for manifest parser + Library for manifest parser + + + + + pkgmgr-info-parser-devel + aarch64 + + 65bb362091a4a5358cf2cdea55d8d9547df56c99c4a1450bf098040f1e6dcf7e + Dev package for libpkgmgr-parser + Dev package for libpkgmgr-parser + + + + + pkgmgr-installer + aarch64 + + f86ec898632a57fd7066dd046a12469abd654f1e42cba37cff6647a2c417d9a5 + Library for installer frontend/backend + Library for installer frontend/backend for packaging. + + + + + pkgmgr-installer-devel + aarch64 + + b60fe3bce9c997f675e9a0487842f95c6ad68f9b6b9747f7db50e1552dcbcdc3 + Dev package for libpkgmgr-installer + Dev package for libpkgmgr-installer for packaging. + + + + + pkgmgr-server + aarch64 + + a418315610b0bc890154a8f61871f8323839f139655b7cf6f64059e2dd8d1fbf + Packager Manager server package + Packager Manager server package for packaging + + + + + pkgmgr-tool + aarch64 + + 5934757b468a2bcea750420944898e7305fdb0d52c8a033cec8af19e7de0f5c1 + Packager Manager Tool package + Packager Manager Tool for packaging + + + + + pkgmgr-types-devel + aarch64 + + 9a931c66c13f42ad4610827c71b8b73d4669eb4b57b8f3d6a42f253a63bb4a1e + Package Manager manifest parser develpoment package + Package Manager client types develpoment package for packaging + + + + + powertop + aarch64 + + 75f5208e3a3320fb74117690f31fe67e49d6ecf4e700efbb155d5ca50816cf41 + A tool that is used for power diagnostics + PowerTop is a tool that detects which Linux programs +and kernel tunables are resulting in the largest +power consumption and use of battery time. By +fixing (or closing) these applications or +processes, you can immediately see the power +savings in the tool. You'll also see the estimated +time left for battery power if you are running a +laptop. + + http://www.01.org + + + powertop-docs + aarch64 + + dbe414ccfbee142771c8ee54feae6f7db2b911f3aa13d83cb73d31d5c938990a + Documentation for package powertop + This package provides documentation for package powertop. + + http://www.01.org + + + powertop-locale + noarch + + bfec58be705627ea09c2565a9aa19183fa3985c357e9af4b1a7305407ac89b60 + Translations and Locale for package powertop + This package provides translations for package powertop. + + http://www.01.org + + + prelink + aarch64 + + 19e2c33cba894bbe66dc9ee92da59be9d87a31f37f2f35ef5aacd73623812d09 + An ELF Prelinking Utility + The prelink program is a utility that modifies shared libraries and +executables in the ELF format so that far less relocations need to be +resolved at run time. This decreases program start-up time. + +Be aware that prelink can modify all libraries and executables on your +system. Applications which monitor changes in files or RPM itself +will no longer work. + + http://people.redhat.com/jakub/prelink/ + + + prelink-docs + aarch64 + + aa3dbdeda3cac53a206b397dda5ce18c191df687984fe185c44737f9733133c3 + Documentation for package prelink + This package provides documentation for package prelink. + + http://people.redhat.com/jakub/prelink/ + + + privacy-guard-client + aarch64 + + a4d83816a2e4dfd03f71296b5d939084514173e8d7a6f941c106633e2bed1339 + Privacy Guard client + privacy-guard client + + + + + privacy-guard-client-devel + aarch64 + + b69096dbfcea369e24a2971c0bc266b7e91d82410e03421f6d2c7f55613f3bad + Privacy Guard client devel + Privacy Management(development files) + + + + + privacy-guard-server + aarch64 + + 0b80f0b887645e37fac5cba3f2b1fcb2050d6471d46ed0e945548a4526c2be25 + Privacy Management + Privacy Management + + + + + privacy-guard-server-devel + aarch64 + + 827eb15084d51cd74570c6fa0385a030f1a7150dc962369477106b6a3371c6fe + Privacy Guard Server + privacy-guard server devel + + + + + privilege-checker + aarch64 + + 720e52aeb0d5f4a0c8301b9ce1aa7e0c3ed2df907bf92808e7a06a7ea07b8520 + Privilege Management + Pakcage for Privilege Management + + + + + privilege-info + aarch64 + + ada3ea4cf2fabcdf0ef72125ba05c29c40e304e9ef0d370193778e5494001b19 + Privilege Information + Provides Privilege Information(Privilege Info) API + + + + + privilege-info-devel + aarch64 + + 98c08ab8146eba7241ee822d7c3805bed06a7bccb49463ecb9a3d1f2264b0e30 + Privilege Info API (Development) + The Privilege Info API provides functions to get privilege information (DEV) + + + + + privilege-verifier + aarch64 + + 4452a52c88f219c4d1f93125d6eca23788ffa9ee4edab139b68b4a3143d1cca8 + Privilege Verification Utility + The Privilege Verifier Utility provides functions to verify privilege information of packages to be installed. + + + + + protobuf-devel + aarch64 + + 04bc2e2234c899b838a0343858040510134696ddca72b272070898cdc6108bf2 + Header files, libraries and development documentation for protobuf + Development files for Google Protocol Buffers + + http://code.google.com/p/protobuf/ + + + psmisc + aarch64 + + a69b128d505b07009a4b68a26b6dc2741017538b96065fbc1075a75443ee61f7 + Utilities for managing processes on your system + The psmisc package contains utilities for managing processes on your +system: pstree, killall and fuser. The pstree command displays a tree +structure of all of the running processes on your system. The killall +command sends a specified signal (SIGTERM if nothing is specified) to +processes identified by name. The fuser command identifies the PIDs of +processes that are using specified files or filesystems. + + http://sourceforge.net/projects/psmisc/ + + + psmisc-docs + aarch64 + + 8da68658477c35e953afbfa0b5cef58316f8283961ac795c265809a5907823c8 + Documentation for package psmisc + This package provides documentation for package psmisc. + + http://sourceforge.net/projects/psmisc/ + + + pubkey-pinning + aarch64 + + bd78e8cf7cb92ebf68d56f941206e01ed0259205b549851e410e8c52b3fab587 + Https Public Key Pinning for Tizen platform + Https Public Key Pinning for Tizen platform system framework. + + + + + pubkey-pinning-devel + aarch64 + + 7bcee4859f9f3cd9a0e8e9c513be4466f260e0077969ca11bcd49f129fa76d56 + Tizen HPKP library development files + Tizen HPKP library development files including headers and +pkgconfig. + + + + + pulseaudio + aarch64 + + 7fed28a4506b3ec30cb3ac07386fd635301bd0f096abf4372874b411150cdedf + Improved Linux sound server + PulseAudio is a sound server for Linux and other Unix like operating +systems. It is intended to be an improved drop-in replacement for the +Enlightened Sound Daemon (ESOUND). + + http://pulseaudio.org + + + pulseaudio-cascaded-setup + aarch64 + + 3fc82780ce6dfc4215f0a05d8413bfbdfac22429c0b33e5de0f702bd4b13ba32 + Configuration for enabling the "cascaded" PulseAudio setup + This package enables the system PulseAudio instance, and changes the user +instance configuration so that user instances access the hardware via the +system instance instead of accessing the hardware directly. This allows +multiple users to use the hardware simultaneously. + + http://pulseaudio.org + + + pulseaudio-config + aarch64 + + 165b30e9be313ce963c82b6fa775371525f7ee8ee210a7e8e5d9f858c8bf825f + PA default configuration + Default configuration for PulseAudio. + + http://pulseaudio.org + + + pulseaudio-docs + aarch64 + + 963b5126af086637fdd1f8563f6156c22e8efa75f9cd4a65bab502741c767d1c + Documentation for package pulseaudio + This package provides documentation for package pulseaudio. + + http://pulseaudio.org + + + pulseaudio-locale + noarch + + 12e316a5bc94360a272dfa216cc73efec765eee39caffcaaa51c6a81f0b6a442 + Translations and Locale for package pulseaudio + This package provides translations for package pulseaudio. + + http://pulseaudio.org + + + pulseaudio-module-augment-properties + aarch64 + + 584fe39b9ae784241d84963acce2a3a099cc9c97332604536fe0f6478cc4e75e + PA module-augment-properties + PulseAudio module-augment-properties. + + http://pulseaudio.org + + + pulseaudio-module-bluetooth + aarch64 + + 5d7e4f0ec75f09f3f72775a2b871ec3336a154b93b97503fc1d707d23c0a5b3b + Bluetooth module for PulseAudio sound server + This module enables PulseAudio to work with bluetooth devices, like headset +or audio gateway + + http://pulseaudio.org + + + pulseaudio-module-dbus-protocol + aarch64 + + 7f5a273d54a18fd2307fdcf2ecbd1576ed337f1d58cd47d9c113bf9c7456ef0c + PA module-dbus-protocol + PulseAudio module-dbus-protocol. + + http://pulseaudio.org + + + pulseaudio-module-devel + aarch64 + + c80102c74e6e3f2c4a1b05fbcf7e801a327af8e53bc74314a5638922aa1b036b + Headers and libraries for PulseAudio module development + Headers and libraries for developing pulseaudio modules outside +the source tree. + + http://pulseaudio.org + + + pulseaudio-module-filter + aarch64 + + f9102b64b59074a5abde55b7e6de027da5d1ddeb9afe89da1a9dea147f2498da + PA module-filter + PulseAudio module-filter. + + http://pulseaudio.org + + + pulseaudio-module-raop + aarch64 + + bdae9744a9695bd6f90a056369f0280cb4c46d8da83a85ece74d28b9c0d75e7a + PA module-raop + PulseAudio module-raop. + + http://pulseaudio.org + + + pulseaudio-module-switch-on-connect + aarch64 + + b47978d56c37c30d0cbcaf7cf1d232bef8eaad1bd6498a5929492d64f91e04fc + PA module-swich-on-connect + PulseAudio module-swich-on-connect. + + http://pulseaudio.org + + + pulseaudio-modules-tizen + aarch64 + + 638d13ce9b96950fbc8816333e6ce1fe6698f0b726efe40688ef910fdc6541c4 + Pulseaudio modules for Tizen + This package contains pulseaudio modules for tizen audio system. + + + + + pulseaudio-realtime-scheduling + aarch64 + + 1c24b8e60d74691ab75204d4298d43ca9811eb8363ab6205685eedd255a5d52d + PA realtime scheduling + PulseAudio realtime-scheduling. + + http://pulseaudio.org + + + pulseaudio-utils + aarch64 + + 553a17fba0c528827c2b8b5af4585086242a1c8c2cb595249de1005bee0818f7 + Command line tools for the PulseAudio sound server + These tools provide command line access to various features of the +PulseAudio sound server. Included tools are: +pabrowse - Browse available PulseAudio servers on the local network. +paplay - Playback a WAV file via a PulseAudio sink. +pacat - Cat raw audio data to a PulseAudio sink. +parec - Cat raw audio data from a PulseAudio source. +pacmd - Connect to PulseAudio's built-in command line control interface. +pactl - Send a control command to a PulseAudio server. +padsp - /dev/dsp wrapper to transparently support OSS applications. +pax11publish - Store/retrieve PulseAudio default server/sink/source +settings in the X11 root window. + + http://pulseaudio.org + + + pulseaudio-vala-bindings + aarch64 + + 886aab66ac4316a68613f36a4ac330247215eef4541e67fd2350a8744a93c4d6 + PA Vala bindings + PulseAudio Vala bindings. + + http://pulseaudio.org + + + push-bin + aarch64 + + d247659ae67b571ebbfd5d4385c1e8ff9a65ca20bc7ea3384d4ee49024531f7a + Push service daemon + Push service daemon + + + + + push-tool + aarch64 + + 005d7e630f01f358dc54589cc267ab49a89412754c192c55d4b028d66660054d + Push service tool + Push service tool + + + + + pygobject + aarch64 + + e1d76d577e9362fd7fb5029598dcc9634c8632847785e0289c0c7bfbf2c8b504 + Python bindings for GObject + The pygobject package provides a convenient wrapper for the GObject library +for use in Python programs. + + http://www.pygtk.org/ + + + pygobject-codegen + aarch64 + + 1d1ba7128ad3190e24dee5b3b6c091e135627ddee0630989a0531d0f22dbca21 + The code generation program for PyGObject + The package contains the C code generation program for PyGObject. + + http://www.pygtk.org/ + + + pygobject-devel + aarch64 + + a942fda353194c1b89be04f8a9ccdc6f5cc73426f20ada66a169e878db88a7d3 + Development files for building add-on libraries + This package contains files required to build wrappers for pygobject-based +libraries such as pygtk2. + + http://www.pygtk.org/ + + + pygobject-doc + aarch64 + + 3e2b84e5e6bce11af0d7c09611fec0078a230f1a15ccf329c4c5200078c6d6be + Documentation files for pygobject + This package contains documentation files for pygobject. + + http://www.pygtk.org/ + + + python-Cheetah + aarch64 + + 0407443438df74583d7a797305b5dae89406b0ef38382061c50a3f61bf49928f + Cheetah is a template engine and code generation tool + Cheetah is an open source template engine and code generation tool. + +It can be used standalone or combined with other tools and frameworks. Web +development is its principle use, but Cheetah is very flexible and is also being +used to generate C++ game code, Java, sql, form emails and even Python code. + + http://www.cheetahtemplate.org/ + + + python-M2Crypto + aarch64 + + 744a16395666def89ebf386e5a2e4543cf3dd996b27479e6591379e618c85c7b + Crypto and SSL toolkit for Python + M2Crypto is a crypto and SSL toolkit for Python featuring the +following: + +RSA, DSA, DH, HMACs, message digests, symmetric ciphers (including +AES). SSL functionality to implement clients and servers. HTTPS +extensions to Python's httplib, urllib, and xmlrpclib. Unforgeable +HMAC'ing AuthCookies for web session management. FTP/TLS client and +server. S/MIME. ZServerSSL: A HTTPS server for Zope. ZSmime: An S/MIME +messenger for Zope. + +It currently lives at +http://wiki.osafoundation.org/bin/view/Projects/MeTooCrypto. The +original M2Crypto homepage is at http://sandbox.rulemaker.net/ngps/m2/. + + http://chandlerproject.org/bin/view/Projects/MeTooCrypto + + + python-PyYAML + aarch64 + + 80ca1ee069dfc247e44c78fff4c0f1c1529c21b14ae67f0d4988641b518ca107 + YAML parser and emitter for Python + YAML is a data serialization format designed for human readability +and interaction with scripting languages. PyYAML is a YAML parser +and emitter for Python. + +PyYAML features a complete YAML 1.1 parser, Unicode support, pickle +support, capable extension API, and sensible error messages. PyYAML +supports standard YAML tags and provides Python-specific tags that +allow to represent an arbitrary Python object. + +PyYAML is applicable for a broad range of tasks from complex +configuration files to object serialization and persistance. + + http://pyyaml.org/wiki/PyYAML + + + python-cairo + aarch64 + + 94c1ca7244077cf18fde7074ebb53ff8ce654755eefc1de324a54ab8bb7fa4df + Python Bindings for Cairo + Python bindings for cairo. + + http://www.cairographics.org/ + + + python-cairo-devel + aarch64 + + bccb1fbe454d2bcb520d3bd776bf7cb1dc15ca5a613a5e53bad636f85ece20d8 + Headers for python-cairo + Headers for python-cairo + + http://www.cairographics.org/ + + + python-deltarpm + aarch64 + + 605f1105735f98e2a08d5b987f22694728d96164fe3074d4e96b44013faa95e3 + Tools to Create and Apply deltarpms + Python bindings for deltarpm + + ftp://ftp.suse.com/pub/projects/deltarpm + + + python-distribute + noarch + + ce1cec0343a33db36ed2c9b48d459493e30be4780409e6da0a9fc27096f88216 + Easily download, build, install, upgrade, and uninstall Python packages + Distribute is a fork of the Setuptools project. + +Distribute is intended to replace Setuptools as the standard method for working +with Python module distributions. + + http://packages.python.org/distribute + + + python-gobject + aarch64 + + d7897608053cc29475d87124663d71eda8681c0bb1c03004ea3ea3cf04240506 + Python bindings for GObject + Pygobjects is an extension module for python that gives you access to +GLib's GObjects. + + http://ftp.gnome.org/pub/GNOME/sources/pygobject/ + + + python-gobject-cairo + aarch64 + + debcb58c9f3854a0194dacbdc4e3620f838152b05a116bd315399ad26435b123 + Python bindings for GObject -- Cairo bindings + Pygobjects is an extension module for python that gives you access to +GLib's GObjects. + +This package contains the Python Cairo bindings for GObject. + + http://ftp.gnome.org/pub/GNOME/sources/pygobject/ + + + python-gobject-devel + aarch64 + + 02a1ba85a86e0f5c02acafcd38b555ae3d6a585913e16df9e86088ebe926599f + Python bindings for GObject + This package contains files required to build wrappers for gobject +addon libraries such as pygtk. + + http://ftp.gnome.org/pub/GNOME/sources/pygobject/ + + + python-gobject-pygtkcompat + aarch64 + + b627adc3aa0950f7a36b8fad97e37291c81473d3c2046ecb0f2b9e4e0f50f42d + Python bindings for GObject -- PyGTK Backwards Compatibility + Pygobjects is an extension module for python that gives you access to +GLib's GObjects. + +This package contains a module providing backwards compatibility to +pygtk. + + http://ftp.gnome.org/pub/GNOME/sources/pygobject/ + + + python-gpgme + aarch64 + + a482579c9c4873eb539a70d9cd22f88bad322d13d2fbd93bc16c4514d6823a42 + A Python module for working with OpenPGP messages + PyGPGME is a Python module that lets you sign, verify, encrypt and +decrypt messages using the OpenPGP format. + +It is built on top of the GNU Privacy Guard and the GPGME library. + + http://pypi.python.org/pypi/pygpgme + + + python-iniparse + noarch + + faeb954349951af964095799534ee3fc98892bbf680040bd66717c52be467b22 + Python Module for Accessing and Modifying Configuration Data in INI files + iniparse is an INI parser for Python which is API compatible with the +standard library's ConfigParser, preserves structure of INI files +(order of sections & options, indentation, comments, and blank lines +are preserved when data is updated), and is more convenient to use. + + http://code.google.com/p/iniparse/ + + + python-nose + noarch + + 9ca9a22e563bed8904c0490249535c85816deb4ac196308dec62fe1f33002705 + Nose extends unittest to make testing easier + Nose extends the test loading and running features of unittest, making +it easier to write, find and run tests. + +By default, nose will run tests in files or directories under the current +working directory whose names include "test" or "Test" at a word boundary +(like "test_this" or "functional_test" or "TestClass" but not +"libtest"). Test output is similar to that of unittest, but also includes +captured stdout output from failing tests, for easy print-style debugging. + +These features, and many more, are customizable through the use of +plugins. Plugins included with nose provide support for doctest, code +coverage and profiling, flexible attribute-based test selection, +output capture and more. + + http://readthedocs.org/docs/nose/ + + + python-pycurl + aarch64 + + 0364e1d45d335cc922996ce57b53d7da7b32e407409af8df835da47b063bb6df + A Python interface to libcurl + PycURL is a Python interface to libcurl. PycURL can be used to fetch +objects identified by a URL from a Python program, similar to the +urllib Python module. PycURL is mature, very fast, and supports a lot +of features. + + http://pycurl.sourceforge.net/ + + + python-solv + aarch64 + + c7a72982a7d83c3deb14f122c981ac9e58c93cde0ec206b7c6421bb68a45aead + Python bindings for the libsolv library + Python bindings for sat solver. + + https://github.com/openSUSE/libsolv + + + python-sqlite + aarch64 + + d8b3e0297e3018d3798b9404a97d44e257aa63ae03d54c59e99e39677a914507 + DB-API 2.0 interface for SQLite 3.x + Python interface to SQLite 3 + +pysqlite is an interface to the SQLite 3.x embedded relational database engine. +It is almost fully compliant with the Python database API version 2.0 also +exposes the unique features of SQLite. + + http://pysqlite.googlecode.com/ + + + python-urlgrabber + noarch + + 0178abd773cb2e4beb547d03241717f5187961e9285d57ef77543eb34f13affc + A high-level cross-protocol url-grabber + A high-level cross-protocol url-grabber for python supporting HTTP, FTP +and file locations. Features include keepalive, byte ranges, throttling, +authentication, proxies and more. + + http://urlgrabber.baseurl.org/ + + + python-zypp + aarch64 + + 0ac33f65c57d1831a6cdff4e0604025d6b1500e597030b66d5a9a94ad1596fd6 + Python bindings for libzypp + Python bindings of libzypp + + + + + re2-devel + aarch64 + + eaec5c8eee5d166f28baafbe48f5e79bdb07d342cb1f306e0bd2bb6f41249524 + An efficient, principled regular expression library + RE2 is a fast, safe, thread-friendly alternative to backtracking +regular expression engines like those used in PCRE, Perl, and +Python. It is a C++ library. + + http://code.google.com/p/re2/ + + + re2c + aarch64 + + fa22830498b891b5c876574e89e12d6221b5075401e44e90b1e072d28e685e16 + Tool for generating C-based recognizers from regular expressions + re2c is a tool for writing fast and flexible lexers. Unlike other such +tools, it concentrates solely on generating efficient code for matching +regular expressions. This makes it suitable for a wide variety of +applications. The generated scanners approach hand-crafted ones in +terms of size and speed. + + http://re2c.org/ + + + resourced + aarch64 + + 64c925508dd75caf73798f6d41f1ab89b3a8cf62b6281afd1af71c1b3225e2e2 + Resource management daemon + Resourced daemon + + + + + rfkill + aarch64 + + 2900c1cd972594475a6f2f05db95eabbfc211e1649e007b7803c3aedae675a4b + Tool for enabling and disabling wireless devices + rfkill is a small tool for accessing the Linux rfkill device interface, +which is used to enable and disable wireless networking devices, typically +WLAN, Bluetooth and mobile broadband. + + http://wireless.kernel.org/download/rfkill/ + + + rfkill-docs + aarch64 + + ce4922bafb52cfc4f4dd0c3a0d59ee24901bfcda7467f3b1a377572922008383 + Documentation for package rfkill + This package provides documentation for package rfkill. + + http://wireless.kernel.org/download/rfkill/ + + + rsync + aarch64 + + a9f77961f5848ad82ac20534925462813dca457b809b80d0ab86aa6b01e8781a + A program for synchronizing files over a network + Rsync uses a reliable algorithm to bring remote and host files into +sync very quickly. Rsync is fast because it just sends the differences +in the files over the network instead of sending the complete +files. Rsync is often used as a very powerful mirroring process or +just as a more capable replacement for the rcp command. A technical +report which describes the rsync algorithm is included in this +package. + + http://rsync.samba.org/ + + + rsync-docs + aarch64 + + a66db5479d90bee58d8665f0f14c511b3dd893fd5e672af4a29bd4a29dce03ee + Documentation for package rsync + This package provides documentation for package rsync. + + http://rsync.samba.org/ + + + sbc + aarch64 + + 72d4fb35b16267bce4c97f6c2e0642fbebb52fff575b298462ebee4b91f9696e + Bluetooth SBC Utilities + Bluetooth SBC utilities + + http://www.bluez.org + + + sbc-devel + aarch64 + + 306a6f5afd1f03988521143092c93ec11ab0f39500db38b7cc3141578f86617a + Bluetooth SBC development files + This package contains Bluetooth SBC development files + + http://www.bluez.org + + + scons + aarch64 + + d0b18be027774a1928466a319dbd2b62b0dadb952bb2e72864570c04417b34c7 + Replacement for Make + SCons is a make replacement that provides a range of enhanced features, +such as automated dependency generation and built-in compilation cache +support. SCons rule sets are Python scripts, which means that SCons +provides itself as well as the features. SCons allows you to use the +full power of Python to control compilation. + + http://www.scons.org/ + + + sdbd + aarch64 + + 80092d08787e02c16527296c28fb547bd63df2a24872e56b7ddd16615cfd9146 + SDB daemon + Description: SDB daemon. + + + + + sdbd-devel + aarch64 + + aa6a7504b4c53fae358025b72ae8510cba7647c89529bc7e647dc391b6b961cb + SDBD plugin API + SDBD plugin API library + + + + + security-config + aarch64 + + 1c2c5fa6398a92ea0c34885a3787430d60e8ee1835291dfceb4af23973e04b88 + A set of security configuration files + set of important system configuration and +setup files, such as passwd, group, and profile. + + + + + security-config-profile_mobile + aarch64 + + 546eabc62fba95e3ae2f77b7e6f562bef85e50ed5ca2593e5c1ddd4007904922 + Additional package for Mobile Profile + additional security tests and settings for mobile profile + + + + + security-config-profile_wearable + aarch64 + + 25c9b11d3cae827c5407bba7dba1b4fd7e04e7c144e49fe3568768d60743a075 + Additional package for Wearable Profile + additional security tests and settings for wearable profile + + + + + security-manager + aarch64 + + 1e67c585182f5934c367131f36a1b549ecf363f7d97ee9ad2ba8d82d856008f5 + Security manager and utilities + Tizen security manager and utilities + + + + + security-manager-policy + aarch64 + + e3a6e450de8a154461dc12732b4c123803464ed58317096fc071b87c2fdc365b + Security manager policy + Set of security rules that constitute security policy in the system + + + + + security-manager-tests + aarch64 + + 4b8d6d15afac0bff8ddd54a28dba501dc85316f222964f77504025f20d6841c1 + Security manager unit test binaries + Internal test for security manager implementation. + + + + + security-privilege-manager + aarch64 + + a17e6c9679f57eb5b59dd710d679a22223d56123b67c62ffa115d359e470de4c + Privilege Manager API + The Privilege Manager API provides functions to verify privilege information of packages to be installed. + + + + + security-privilege-manager-devel + aarch64 + + af0ebbb9ddbca8258193ce45c23482b08528f3f4c120d7c71cefc013d1ed613d + Privilege Manager API (Development) + The Privilege Manager API provides functions to verify privilege information of packages to be installed.(DEV) + + + + + sensor-hal-devel + aarch64 + + dc0593d7417f86f37059675203971269b1efbcc6e28c717d2169733061d47dcb + Sensord HAL interface + Sensord HAL interface + + + + + sensor-hal-tm2 + aarch64 + + 3f66a71abd371b390b7742750dbb127374c110f3c114eee56d35843379ae67d0 + Note4 Sensor HAL + Note4 Sensor HAL + + + + + sensor-test + aarch64 + + 6f8f1608f3be61a2dd1d185dcf3e2344fffd44b8cf86acbeb958573c75116d95 + Sensord library + Sensor functional testing + + + + + sensord + aarch64 + + 0821445fd9f8d1ae2d955982561605b4e91cf73844505e985bda3d8619919005 + Sensor daemon + Sensor daemon + + + + + service-adaptor + aarch64 + + 3ae02509f3a9d79bdcdf059e1bd2c63157f5330fc730d33f2cc33c454e9928e7 + Service Adaptor Framework for Convergence + Service Adaptor Framework Library/Binary package + + + + + service-adaptor-devel + aarch64 + + 1b3a374a4070e1a42e03a26057d31ec9bae00590ec163f32b15cb07dfd2248f5 + Headers for Service Adaptor Framework (devel) + This package contains the header and pc files of Service Adaptor. + + + + + sgml-skel + noarch + + cf66e20fe1f399c0b8c1706d4c0392a0bc880d66e339977d2a1ed3ab76e44793 + Helper Scripts for the SGML System + These scripts will help prepare and maintain parts of an SGML system. + + + + + shared-mime-info + aarch64 + + 2a8c762b051dac338697cc74bd1aa46dee1bd7e1fbd82083fb7b8d2633dcddae + Shared MIME Database + This package contains: + +- The freedesktop.org shared MIME database spec. + +- The merged GNOME and KDE databases, in the new format. + +- The update-mime-database command, used to install new MIME data. + + http://freedesktop.org/wiki/Software/shared-mime-info + + + shared-mime-info-docs + aarch64 + + 8f8a51d9f02d93de3a4634132041f9695cc534faa61fdb86a0f2d6eb7da2b7e6 + Documentation for package shared-mime-info + This package provides documentation for package shared-mime-info. + + http://freedesktop.org/wiki/Software/shared-mime-info + + + shared-mime-info-locale + noarch + + 79a03d21d97e574fd0c7030d04ce3d974477c8c5bd6682a1ea65170db4ffee20 + Translations and Locale for package shared-mime-info + This package provides translations for package shared-mime-info. + + http://freedesktop.org/wiki/Software/shared-mime-info + + + shared-mime-info-tools + aarch64 + + 3123eae03bc35bb86ead5d725be282bb16e2428e8d78100932bf690f6f1df406 + Tools supporting shared-mime-info + Tools to support packages shared-mime-info + + http://freedesktop.org/wiki/Software/shared-mime-info + + + smartcard-plugin-nfc + aarch64 + + d48bc28321cdc54affe16d0f51660e57a46aeb17583bf3653d3c4d6307f5a5fb + Smartcard plugin nfc + Smartcard Service plugin nfc + + + + + smartcard-plugin-uicc + aarch64 + + 97d1b37db285211db70355d223b79993690706d61039d431f9e3d87e67aea892 + Smartcard plugin uicc + Smartcard Service plugin uicc + + + + + smartcard-service + aarch64 + + 2567197de0c71c46b9d3e26b641b41ebbd196d73be92b972374b1e0dda4a1fcb + Smartcard Service FW + Smartcard Service FW. + + + + + smartcard-service-common + aarch64 + + fb37aaa7755e009a12952bdc6a000aa3de3360ea5f0fa35e13e342fe8a913e7e + common smartcard service + common smartcard service. + + + + + smartcard-service-common-devel + aarch64 + + ee8434e227981e34d975c7807e3be570181f9b5fd5c654acc06da22d380c73f5 + common smartcard service + common smartcard service. + + + + + sms-plugin + aarch64 + + 69a223ff9b3107e9eee204293f68d66377301a8cd32e946e78eb767a1b6063d0 + SMS plugin library + Description: SMS plugin library + + + + + sound-pool + aarch64 + + 78da8583e3599664b7db7f09dc7a531b15c92a5cc0a89ec541fff84c5bb43945 + Tizen Sound Pool module + Tizen Sound Pool Module allowing sounds playing for audio resources. + + http://source.tizen.org + + + sound-pool-devel + aarch64 + + c774692898eabacd28365414979e1cb86b29205ad2cdaf104b262d30a8017762 + Tizen Module allowing sounds playing for audio resources (Development) + SoundPool Library in Tizen Native API (DEV). + + http://source.tizen.org + + + speex + aarch64 + + 53a00b35835e82c9dcc6e01bf0d1b8e211c2f8e68d3240606fcc42332c0df03e + An Open Source, Patent Free Speech Codec + Speex is a patent free audio codec designed especially for voice +(unlike Vorbis which targets general audio) signals and providing good +narrowband and wideband quality. This project aims to be complementary +to the Vorbis codec. + + http://www.speex.org/ + + + speex-devel + aarch64 + + 8057f438699765f822bad0657c4af13ce2a447aae2c257185bdd2b7cad81b23a + Development package for SpeeX + This package contains the files needed to compile programs that use the +SpeeX library. + + http://www.speex.org/ + + + squashfs + aarch64 + + 630aca44e9b095a644ff1103acb37a9823219c5114bb3728e06fce155b682523 + A Read-Only File System with Efficient Compression + This package contains the userland utilities to create and read +squashfs images. + + http://squashfs.sourceforge.net/ + + + starter + aarch64 + + 41b5ae567f560ddcc61d3afe40d3e4919b5ac0f61221d3defcfb8cdfdac8999e + This is a core application + This is for managing life-cycle of core applications. + + + + + sticker-panel + aarch64 + + 21511158421ba98473a3731a71d84df6abb169a6ef6b2f9e0cbf5758aec8694e + Sticker Panel + Description: Sticker Panel + + + + + sticker-panel-devel + aarch64 + + 6112088f09861472d65c8d144999dc9257d25a0408c5ad4d4be433f795bcb226 + Sticker panel library (devel) + Development files needed to build software that needs Sticker panel. + + + + + strace + aarch64 + + b00e9590905c5b7c4efd8a76980f533ce4eebbd2c31b7a8e757005bc7da2d4d4 + A utility to trace the system calls of a program + With strace, you can trace the activity of a program. Information +about any system calls the program makes and the signals it receives +and processes can be seen. Child processes can also be tracked. + + http://sourceforge.net/projects/strace/ + + + stt + aarch64 + + 369da2664eb83cb781c59402f57a96412952380248ee8dcc3446dafe8dc24386 + Speech To Text client library and daemon + Speech To Text client library and daemon. + + + + + stt-devel + aarch64 + + e0f109d8730efe34bc9435b264195e7f0d34db12650d01dff5b24b4614eb0ae1 + Speech To Text header files for STT development + Speech To Text header files for STT development. + + + + + stt-engine-devel + aarch64 + + 76d944ca2e1662c0d16748c4cbe84aaebe9110e2fcf56d7aeecaa3696610db15 + Speech To Text engine header files for STT development + Speech To Text engine header files for STT development. + + + + + stt-file-devel + aarch64 + + c01d662c61f866a634217aca2f5019aa1577dbafaa6522cb24cc437dc9e00eea + File To Text header files for STT FILE development + File To Text header files for STT FILE development. + + + + + stt-setting-devel + aarch64 + + 687126cd781baec0569787f172af96b1d08f1cac3279b4776286023006f1bd38 + Speech To Text setting header files for STT development + Speech To Text setting header files for STT development. + + + + + svi-data + aarch64 + + ef9e16639142673cb19d8ca47a344062a90a35ab4cc86b624381fdfeaf8ef675 + svi resource package + svi resource package + + + + + swig + aarch64 + + c5a40fdef413ca41f0b3f3c37fca245793ffe370db685355f10fdd5ec8f7eaaf + Simplified Wrapper and Interface Generator + SWIG is a compiler that attempts to make it easy to integrate C, C++, +or Objective-C code with scripting languages including Perl, Tcl, and +Python. In a nutshell, you give it a bunch of ANSI C/C++ declarations +and it generates an interface between C and your favorite scripting +language. However, this is only scratching the surface of what SWIG +can do--some of its more advanced features include automatic +documentation generation, module and library management, extensive +customization options, and more. + + http://www.swig.org/ + + + swig-doc + noarch + + 6ce4a21bdee28da4973d09780aa8bdf7a9bfc08b6ba91585ea69cfd31e24c143 + SWIG Manual + SWIG is a compiler that attempts to make it easy to integrate C, C++, +or Objective-C code with scripting languages including Perl, Tcl, and +Python. In a nutshell, you give it a bunch of ANSI C/C++ declarations +and it generates an interface between C and your favorite scripting +language. However, this is only scratching the surface of what SWIG +can do--some of its more advanced features include automatic +documentation generation, module and library management, extensive +customization options, and more. + +This package contains the SWIG manual. + + http://www.swig.org/ + + + swig-examples + aarch64 + + a471a324650d0b7c122e017a5e3184fcc11ce647476700244b24d17154d2d068 + SWIG example files + SWIG is a compiler that attempts to make it easy to integrate C, C++, +or Objective-C code with scripting languages including Perl, Tcl, and +Python. In a nutshell, you give it a bunch of ANSI C/C++ declarations +and it generates an interface between C and your favorite scripting +language. However, this is only scratching the surface of what SWIG +can do--some of its more advanced features include automatic +documentation generation, module and library management, extensive +customization options, and more. + +This package contains SWIG examples, useful both for testing and +understandig SWIG usage. + + http://www.swig.org/ + + + sync-service + aarch64 + + 17247461117eaba57d2380b211082998911508dabd81b028edc8f6866212784b + Sync manager daemon + sync manager service and sync framework which manages sync of registered applications + + + + + syspopup + aarch64 + + 0a51fb8b43706544f96c9b7e008ce90e4fc2c06fd1c9b54e15ed138731f15ee1 + Syspopup package + syspopup package for popup + + + + + syspopup-caller + aarch64 + + eaf123a5caf5a2c865d031855cef6eb69657b10c2590f5c27a4e2418fd097b30 + Syspopup-caller package + syspopup-caller package for popup + + + + + syspopup-caller-devel + aarch64 + + 113f753b1be9cb18ab515aeb02f79b7566489e33a19f6425768c3416080ca160 + Syspopup-caller development package + syspopup-caller development package for popup + + + + + syspopup-devel + aarch64 + + b0beaf63411d7eec10d5dc6b2f4c60f0bd02a6a9f3096915d74f240aabb832e1 + Syspopup development package + syspopup development package popup + + + + + system-plugin + aarch64 + + deb217b96f14ea45d0e4945d64aae16a77a2bb9fe8dbbf7e8d6d8e08e8661022 + Target specific system configuration files + This package provides target specific system configuration files. + + + + + system-plugin-circle + noarch + + 51600ecd33b2a4513937f39b16daba1cfc0906d9544e82f3c49f36396a5f3ab5 + Circle specific system configuration files + This package provides Circle specific system configuration files. + + + + + system-plugin-exynos + noarch + + 4f001eb2f21dc8a511eae23ecf361f53b86d44b1c3f368e69e10a7db366f9ee5 + Exynos specific system configuration files + This package provides Exynos specific system configuration files. + + + + + system-plugin-headless + noarch + + f768ed9f14cd1f04efda591515ba4efa3a8770536685fbb74492a1cab5d1fa62 + Support headless device. + This package provides the functions for headless device. + + + + + system-plugin-init_wrapper + noarch + + 2bf981adb438dcc9497d06dd223b4ff14759b8a307d651fbf9ab050e6cff1383 + Support init.wrapper booting. + This package provides init.wrapper and init symlink file for init wrapper booting. + + + + + system-plugin-n4 + noarch + + 770f4b59c2b14ef0dd134bc4e1ebf0557b0da1f929404fc78a2504c80f7fb9f8 + Note4 specific system configuration files + This package provides Note4 specific system configuration files. + + + + + system-plugin-profile_ivi + noarch + + 2b372c89da7ccaede5f7ad726de536403451718bd5f917406f10e841e320087f + ivi specific system configuration files + This package provides ivi specific system configuration files. + + + + + system-plugin-spreadtrum + noarch + + 470d50a556332852b6803ffbffd94c70ce2e1350f73b4c5575ebd255894fab1a + Spreadtrum specific system configuration files + This package provides Spreadtrum specific system configuration files. + + + + + system-plugin-u3 + noarch + + d76e8d081b9b5f8356523c638952479ff45df1346db635132f2f81a3db3ee973 + U3/XU3 specific system configuration files + This package provides U3/XU3 specific system configuration files. + + + + + system-servant + aarch64 + + 8e4a52e6f41a6ad20fd71aab3aae21e398a89146d82d8a84c766b477a34a1a19 + Servant application for System FW + System applications such as app-launcher +and service file for dbus activation + + + + + system-upgrade + aarch64 + + e2efa8d0e4e9c4fcb8f5691830c8a27ec09ed2bb2f890df4df744bc7f5efd84e + System upgrade available patch + Systemd offline system update activation package + + + + + systemd + aarch64 + + b77e233d6358244c209146f72e86f906e9c734a0660be30f53ffc671d9c05871 + A System and Service Manager + systemd is a system and service manager for Linux, compatible with +SysV and LSB init scripts. systemd provides aggressive parallelization +capabilities, uses socket and D-Bus activation for starting services, +offers on-demand starting of daemons, keeps track of processes using +Linux cgroups, supports snapshotting and restoring of the system +state, maintains mount and automount points and implements an +elaborate transactional dependency-based service control logic. It can +work as a drop-in replacement for sysvinit. + + http://www.freedesktop.org/wiki/Software/systemd + + + systemd-analyze + aarch64 + + 6b0c00288385f053c17f6be352485d9477a77bba3b47f7cea989aaa120b28bf2 + Tool for processing systemd profiling information + 'systemd-analyze blame' lists which systemd unit needed how much time to finish +initialization at boot. +'systemd-analyze plot' renders an SVG visualizing the parallel start of units +at boot. + + http://www.freedesktop.org/wiki/Software/systemd + + + systemd-devel + aarch64 + + 44e76820bc08809a59ddaf09bf93fedde1ae6f491c1b68855df6acf7d59fb722 + Development headers for systemd + Development headers and auxiliary files for developing applications for systemd. + + http://www.freedesktop.org/wiki/Software/systemd + + + systemd-docs + aarch64 + + d2ebf44222b99e485539534c31eee19081bd4765ce548e7e3a3a5600bbb10e12 + Documentation for package systemd + This package provides documentation for package systemd. + + http://www.freedesktop.org/wiki/Software/systemd + + + systemd-locale + noarch + + 6f97058c565f90c0960ffe36b28e8d330a039606b4886094d99645b931d420a6 + Translations and Locale for package systemd + This package provides translations for package systemd. + + http://www.freedesktop.org/wiki/Software/systemd + + + systemd-user-helper + aarch64 + + b9b0afab2c18db31b1c2f82c9777ddc42b7db0db95d602f3fb3327f8685ff325 + Systemd user launch helper for supporting Tizen specific feature + Systemd user launch helper supports Tizen specific feature like directory compatibility and container. + + + + + taglib + aarch64 + + 46ec5e2b956f41fa3ad17ebfdf334fd3ecfef4071f909d0c08e76e715c83b614 + library for reading and editing the meta-data of several popular audio formats + library for reading and editing the meta-data of several popular audio formats + + + + + taglib-devel + aarch64 + + 437315708acb3b5b17d3cf6cd2b360c7ed4dd7de6b590c163ecb84ac6b8ca0ec + A taglib library (Development) + library for reading and editing the meta-data of several popular audio formats + + + + + tc-privilege-checker + aarch64 + + e1baaccf8486d07f5dec2b5610c9e84dd478430b05be22a5fbffb63abd603c4c + Internal TC for privilege-checker + Internal TC for privilege-checker APIs + + + + + tc-privilege-info + aarch64 + + 4b2622e9dc219e3b0b61ba9d3f2f4f4fc66b0be6888614d66a3ea2d590f1ad67 + Privilege Info TC + Privilege Info API Internal Test + + + + + tcl + aarch64 + + 9bee64f211d4b1c275c9442bd8159c105e7ec6d3aa87cd23bdcfd30325d9bd6c + The Tcl Programming Language + Tcl (Tool Command Language) is a very powerful but easy to learn +dynamic programming language, suitable for a very wide range of uses, +including web and desktop applications, networking, administration, +testing and many more. Open source and business-friendly, Tcl is a +mature yet evolving language that is truly cross platform, easily +deployed and highly extensible. + +For more information on Tcl see http://www.tcl.tk and +http://wiki.tcl.tk . + + http://www.tcl.tk + + + tcl-devel + aarch64 + + b0ffa0a4bfae90fe36d8ffc16aa5c000bb687ba34978c3edb97516d36a3fc5bc + Header Files and C API Documentation for Tcl + This package contains header files and documentation needed for writing +Tcl extensions in compiled languages like C, C++, etc., or for +embedding the Tcl interpreter in programs written in such languages. + +This package is not needed for writing extensions or applications in +the Tcl language itself. + + http://www.tcl.tk + + + tel-plugin-database + aarch64 + + b1cf67e9b1d33ab4d0a48e35547f57dc4c7a14b5c2aed53a57d0e05e73be083c + Telephony DataBase storage plugin + Telephony DataBase storage plugin + + + + + tel-plugin-dbus_tapi + aarch64 + + c157fdcaac3cc0a77dfe40941f817741704cab4495e25234172225e095187ed5 + dbus-tapi plugin for telephony + dbus-tapi plugin for telephony + + + + + tel-plugin-indicator + aarch64 + + c8cc2541a01682cb0ea1459584c1c825ac4b324e876b67c0ea5198dbc848d8de + Telephony Indicator plugin + Telephony Indicator plugin + + + + + tel-plugin-nitz + aarch64 + + 5b06695496691f5bdf1b0d48c745c97cc3db5cc294e6572bea025c3319bd8c0f + nitz plugin for telephony + nitz plugin for telephony + + + + + tel-plugin-packetservice + aarch64 + + fa391370dcd983c1bf733eab02fb8af28168f890b8c62fd1b0a6ff08d5f5ac51 + Telephony Packet Service library + Telephony Packet Service library + + + + + tel-plugin-vconf + aarch64 + + c0e9951d38cbd7c13407382957144ebf0ffd295262da1aac23f10a97e5d171f6 + Telephony Vconf storage plugin + Telephony Vconf storage plugin + + + + + telephony-daemon + aarch64 + + 7b5f15896615194bc1ac2eba0924a2484aba87409edd26b685b166af826831cb + Telephony Daemon + Description: Telephony Daemon + + + + + tiff + aarch64 + + a3764850133c1920a3bc409e2b485a527e00e4e464500fe09036174e1deac4b2 + Tools for Converting from and to the Tiff Format + This package contains the library and support programs for the TIFF +image format. + + http://www.remotesensing.org/libtiff + + + tiff-docs + aarch64 + + 7a4f2e93303cc633402f519720f6b19880f757b5ecf679a69db9efa3ecac17d7 + Documentation for package tiff + This package provides documentation for package tiff. + + http://www.remotesensing.org/libtiff + + + tizen-debug + aarch64 + + 5186c66d5cf11d945325e2e584a2cad489bc78dacfb6f172c3dbc6234a1d0af9 + libc debug information with .debug_frame section only and ld debug information + The package contains the libc.so debug library with .debug_frame section only +which can be helpful during signal frame backtrace. +Also, the ld.so debug information is included for the debugging convenience. + + + + + tizen-locale + aarch64 + + 9558f7d2ae9278c1184492c756534dea70fd9bc43bcfe272ae0e5747079a43e9 + carring locale information for tizen platform + carring locale information for tizen platform + + + + + tizen-platform-config + aarch64 + + 6d55fc2cc54839e9ffc43bc29eafa3e29e2c80bf52d51b3e9382f9123eff4334 + Tizen Platform Configuration + Tizen Platform Configuration - variables definitions + + http://www.tizen.org + + + tizen-platform-config-meta + aarch64 + + b6de3471ff81a8008333f7094852966769b38762a60215198f4ebe9ded13a104 + Tizen Platform Configuration Meta data + Tizen Platform Configuration Meta data - variables definitions + + http://www.tizen.org + + + tizen-platform-config-tools + aarch64 + + bc5b6390c9d206751e101b9566278efe1cd3353837032ed3bf362061498ad306 + Tizen Platform Configuration - tools + Tizen Platform Configuration - helper program to lookup Tizen variables easily + + http://www.tizen.org + + + tizen-platform-wrapper + aarch64 + + a4d3933e9cbc30432489150c14d16c6a8f79d88effe25ad1756da934fd4865b8 + A toolkit to generate the libtizen-platform-config library + A toolkit to generate the libtizen-platform-config library in tizen-platform-config. + + http://www.tizen.org + + + tizen-release + aarch64 + + acd63ba3584267434439fe3983732736d7a0df0316f58969e11a731af64a9e83 + Tizen release files + Tizen release files such as various /etc/ files that define the release. + + http://www.tizen.com + + + tlm + aarch64 + + cad173ba6a2d34f5aa6b34755725f31afdbbe41427b79c8d6ed30c71bf597529 + Login manager for Tizen + TLM is a daemon that handles user logins in a multi-user, multi-seat system by +authenticating the users through PAM, and setting up, launching, and tracking +user sessions. + + https://github.com/01org/tlm + + + tlm-config-common + aarch64 + + f327a47df8f4a9c5ea0f06a8d5beebddb3213ae3578a062e6a376840ff72a0bf + Common configuration files + Tiny Login Manager common configuration files. + + https://github.com/01org/tlm + + + tlm-config-common-singleseat + aarch64 + + cb2e5c276d2470375ed0b2274734b7e6881f58437120d19fc1adb9111af45605 + Common configuration files with single seat + Tiny Login Manager common configuration files with signle seat. + + https://github.com/01org/tlm + + + tlm-devel + aarch64 + + ed921355f033ec0f030ba5799202fc61526df5d48ca9bf117bba8f8583e1f7a7 + Dev files for tlm + Development files for tlm. + + https://github.com/01org/tlm + + + tlm-doc + aarch64 + + 32ff8b19b7bd9e5b02def212c933f18da0183620fdff2306a3052e93021d6d5e + Doc files for tlm + Documentation files for tlm. + + https://github.com/01org/tlm + + + tolua++ + aarch64 + + 7a67e76f3d4640ecd012b4b565d15b8a5538cd9d0c5362459650805412baf51f + C/C++ with Lua Integration Tool + tolua++ is an extended version of tolua, a tool to integrate C/C++ code with +Lua. tolua++ includes new features oriented to c++ such as: +* support for std::string as a basic type (this can be turned off by a command + line option) +* support for class templates +as well as other features and bugfixes. + + http://www.codenix.com/~tolua/ + + + toybox + aarch64 + + a5183e8a4689045d24c0462c20771d3c182daea804409ed787ce62163dd7cb2d + Single binary providing simplified versions of system commands + Toybox is a single binary which includes versions of a large number +of system commands, including a shell. This package can be very +useful for recovering from certain types of system failures, +particularly those involving broken shared libraries. + + http://www.landley.net/toybox/ + + + toybox-symlinks-dhcp + aarch64 + + 1c8e4f216f2d173211e7ce197f876c45e2a7eb4caeeb4759226b56dbc5b726b8 + ToyBox symlinks to provide 'dhcp' + ToyBox symlinks for utilities corresponding to 'dhcp' package. + + http://www.landley.net/toybox/ + + + toybox-symlinks-dhcpd + aarch64 + + 9c4b34c9cb92b5fa5da9228da8778157bc8db1ea84f5bc1e25d964c53859e8e5 + ToyBox symlinks to provide 'dhcpd' + ToyBox symlinks for utilities corresponding to 'dhcpd' package. + + http://www.landley.net/toybox/ + + + toybox-symlinks-nslookup + aarch64 + + fcaaa8d5c0971845e965f9008373a58e4d638efd0e2ca66445e71b5e351e4be2 + ToyBox symlinks to provide 'nslookup' + ToyBox symlinks for utilities corresponding to 'nslookup' package. + + http://www.landley.net/toybox/ + + + toybox-symlinks-ping + aarch64 + + 621dbf282907a2d0df14858db395620695c8d9fb0f98b46d505b0d7105fe21e1 + ToyBox symlinks to provide 'ping' + ToyBox symlinks for utilities corresponding to 'ping' package. + + http://www.landley.net/toybox/ + + + toybox-symlinks-ping6 + aarch64 + + 0ce1d5b8ecb52da8bd7fd3a6d4ef14c316ee1e72c9de8b9483fe9fec4e931065 + ToyBox symlinks to provide 'ping6' + ToyBox symlinks for utilities corresponding to 'ping6' package. + + http://www.landley.net/toybox/ + + + tpk-backend + aarch64 + + 085f176f7d18a5e81226cc59c79a7a41ec83b856a77ef106fd3ecd8a86e0717c + Application installer backend for TPK + Backend for tizen package files + + + + + tpk-backend-devel + aarch64 + + d192cd23224b2985b4e914d176042014fb29e5e63fb2a5e54c6f9744ddf25fbe + Tpk-backend development files + This package contains header files of tpk-installer library + + + + + tpk-backend-tests + aarch64 + + 9894cb23d9ebf4d59dad695913c69c2993b7c446bda8ab5f5c84a7892d0d57a8 + Unit tests for tpk-backend + Unit tests for al modules of app-installers + + + + + tpk-manifest-handlers + aarch64 + + 984a472dbe4f017336c04727ad265377416f9cdb0d4951c9b84ff6d755d77bd8 + tpk-manifest-handlers + Installs tpk parser and handlers based on manifest-parser + + + + + tpk-manifest-handlers-devel + aarch64 + + c7cb80bcb741dfcc6be39e21b01ae5b3a5f9b14af174ad4bbc023d17a287aa85 + Manifest parser development files + This package contains necessaary files for manifest-parser development + + + + + ttrace + aarch64 + + da3f4b6a9c2e64f88a8a63e0994f2a042b0ff5fa878668b9d9e6904da0edbdf9 + T-trace for tizen + T-trace library + + + + + ttrace-devel + aarch64 + + 6d8a6f91493e2ceec1873067043e85c08258ba794eebfb7086da31e2f22e0471 + T-trace for tizen + T-trace library devel + + + + + ttrace-extension + aarch64 + + 0918050add33a854afcbc85e3e831a8c045372162f9b039642891439b928fba0 + T-trace extension package + T-trace extension library + + + + + ttrace-extension-devel + aarch64 + + 1683befa3e395472277fae54aa51f3a78135dafa8c0b213c0b2f5f62f3ac2677 + T-trace extension for tizen + T-trace extension library devel + + + + + tts + aarch64 + + e98ea6dc3da3b8a1d13b71e8f8b8766d3b55e1a2d894523703fb94232c3b27de + Text To Speech client library and daemon + Text To Speech client library and daemon. + + + + + tts-devel + aarch64 + + 09bef38edc7e2b8b5db420012f87c8fecd7a04044f68eb6a834c98d965f84cb5 + Text To Speech header files for TTS development + Text To Speech header files for TTS development. + + + + + tts-engine-devel + aarch64 + + 23c17a1a764e814e671bf24522bc2fb868042dad6f332c05c509a5adca14ab28 + Text To Speech engine header files for TTS development + Text To Speech engine header files for TTS development. + + + + + tts-setting-devel + aarch64 + + 6927eb95b1abf585045ccd3a34ed7aa9292af4b0e621b42e1b0f948a5b0166b9 + Text To Speech setting header files for TTS development + Text To Speech setting header files for TTS development. + + + + + typelib-1_0-Atspi-2_0 + aarch64 + + a46ff920b3163cf3ab29b21f0cee97d054f1e291865542d079d4feb0a2ae45e5 + An Accessibility ToolKit -- Introspection bindings + AT-SPI is a general interface for applications to make use of the +accessibility toolkit. This version is based on dbus. + +This package provides the GObject Introspection bindings for the +libatspi library. + + http://www.gnome.org/ + + + typelib-Json + aarch64 + + b0de5f137d2fbcc71a2ff07c2aa83115a2e308295f6fba597f3c4c27e22934a6 + Library for JavaScript Object Notation format -- Introspection bindings + JSON is a lightweight data-interchange format.It is easy for humans to +read and write. It is easy for machines to parse and generate. + +JSON-GLib provides a parser and a generator GObject classes and various +wrappers for the complex data types employed by JSON, such as arrays +and objects. + +JSON-GLib uses GLib native data types and the generic value container +GValue for ease of development. It also provides integration with the +GObject classes for direct serialization into, and deserialization from, +JSON data streams. + +This package provides the GObject Introspection bindings for JSON-GLib. + + http://live.gnome.org/JsonGlib + + + typelib-Soup + aarch64 + + ffc5bee261edd077efe01e0fc570a52091ec765258478f422a68fe21ad49fcd3 + HTTP client/server library for GNOME -- Introspection bindings + Libsoup is an HTTP client/server library for GNOME. It uses GObjects +and the glib main loop, to integrate well with GNOME applications. + +This package provides the GObject Introspection bindings for libsoup. + + http://www.gnome.org + + + tzsh + aarch64 + + 0db7a04a1f977cfbaca1f677836cafbebc86e24eca3f561a5c85149f2598df73 + Tizen Window System Shell + Description: Tizen Window System Shell + + http://www.samsung.com + + + tzsh-devel + aarch64 + + 0d64e73abd30bd64fbe81cc2ddbd69cd6bf368400704d1e46952888466419bf2 + Development files for package tzsh + This package provides header files and other developer releated files +for package tzsh. + + http://www.samsung.com + + + u-boot-tools + aarch64 + + 73def4cf6a4d3003dec4a76cd2fa7d3ac7d1dabb3e6a75eeeae2e932f4c54921 + Companion tools for Das U-Boot bootloader + This package includes the mkimage program, which allows generation of U-Boot +images in various formats, and the fw_printenv and fw_setenv programs to read +and modify U-Boot's environment. + + https://review.tizen.org/git/?p=kernel/u-boot.git + + + ug-bluetooth-efl + aarch64 + + 41e3eb5468a8f17b812dd43b6c89e4c0e7f8418a7c6d7fc7535b34ed7f5daffb + UI gadget about the bluetooth + UI gadget about the bluetooth + + + + + ug-nfc-efl + aarch64 + + 1579f0d15fcb44ce3ff3489db8c79b78fd9564a06ce358fbf03e3237c9268417 + NFC Setting UI + NFC Setting UI + + + + + ug-setting-mobileap-efl + aarch64 + + 4ec9bce24a27bfb9ad89cd36d19d03c9117b19ee07cfbf3572010048ebd8a25f + Tethering UI Gadget Library + Tethering UI Gadget Library + + + + + ug-setting-wifidirect-efl + aarch64 + + 09e4425514c54282dba60615dafc34e2b6f638cf55af25fb84223972603d93f8 + Wi-Fi Direct setting UI gadget + wifi direct client library (Shared Library) + + + + + ui-gadget-1 + aarch64 + + 49d7fff723f637c3d7589d2f880b7cf1d4c474259954264e87ed8d0b948de325 + UI Gadget Library + UI gadget library (development headers) + + + + + ui-gadget-1-devel + aarch64 + + 1dbc8f54879c305ff8e729ef6b760b1f045213fe755c076153850859fe0cf3c0 + Development files for ui-gadget-1 + Development files for ui-gadget-1 + + + + + ui-viewmgr + aarch64 + + fe6ee967a8003db9957992a995acb6ad89dd983de60a32e645ef4d9a5e912795 + UI VIEW MANAGER library + UI VIEW MANAGER library + + + + + ui-viewmgr-devel + aarch64 + + 8aca36ad25acd603170cc12e99ff00b1b971f95a4bae109271f12f3696aa41b6 + UI VIEW MANAGER library (devel) + UI VIEW MANAGER library providing View management functionality(devel) + + + + + ui-viewmgr-ui.viewmgr.demo + aarch64 + + f6fc2d803259988ab876328f3b90606ea920cd54093624cab3a05e80b270e976 + UI VIEW MANAGER Demo Application + UI VIEW MANAGER Demo Application + + + + + update-desktop-files + noarch + + 7da239e8112bf117cfa37b4895a99f4b289d85b033841595c6a6553d59bb6cbd + A Build Tool to Update Desktop Files + This package provides further translations and a shell script to update +desktop files. It is used by the %tizen_update_desktop_file rpm macro. + + + + + usbutils + aarch64 + + 40bf8d81432f3a1540a901bdaaaba6a28df0c49c64968d5c86083cc7627326d5 + Linux USB utilities + This package contains utilities for inspecting devices connected to a +USB bus. + + http://www.linux-usb.org/ + + + usbutils-docs + aarch64 + + 5a8f544d6f777337a20e900dc02ef0de06a7088ea8a64ac91d1eaeb3c21c0a0c + Documentation for package usbutils + This package provides documentation for package usbutils. + + http://www.linux-usb.org/ + + + util-macros + aarch64 + + e15fe3e6b1715f0fa2f1add6b43c84637c2859055e8ae2d4631d054b11063917 + X.Org build utilities + This package provides build utilties tha ship with the X Window System, including: + - util-macros, autotools macros for X.Org + + http://www.x.org + + + v4l-utils + aarch64 + + c5bc5983c36a9155a5c3efa1cd611f5323c2b49555342ecfa2525be8253efba8 + Utilities for video4linux and DVB devices + v4l-utils is a collection of various video4linux (V4L) and DVB utilities. The +main v4l-utils package contains cx18-ctl, ir-keytable, ivtv-ctl, v4l2-ctl and +v4l2-sysfs-path. + + http://linuxtv.org/downloads/v4l-utils/ + + + valgrind + aarch64 + + 38957990330ab345d25f831b08637afcb003cb912eeb6a518dca6d2dcc14a4e2 + Memory Management Debugger + Valgrind checks all memory operations in an application, like read, +write, malloc, new, free, and delete. Valgrind can find uses of +uninitialized memory, access to already freed memory, overflows, +illegal stack operations, memory leaks, and any illegal +new/malloc/free/delete commands. Another program in the package is +"cachegrind," a profiler based on the valgrind engine. + +To use valgrind you should compile your application with "-g -O0" +compiler options. Afterwards you can use it with: + +valgrind --tool=memcheck --sloppy-malloc=yes --leak-check=yes +--db-attach=yes my_application, for example. + +More valgrind options can be listed via "valgrind --help". A +debugged application runs slower and needs much more memory, but +is usually still usable. Valgrind is still in development, but it +has been successfully used to optimize several KDE applications. + + http://valgrind.org/ + + + valgrind-devel + aarch64 + + 151e8d4f10fc10c83f889ec620ff651a7f7b759c633db66db238a8f26fe390d1 + Memory Management Debugger + Valgrind checks all memory operations in an application, like read, +write, malloc, new, free, and delete. Valgrind can find uses of +uninitialized memory, access to already freed memory, overflows, +illegal stack operations, memory leaks, and any illegal +new/malloc/free/delete commands. Another program in the package is +"cachegrind," a profiler based on the valgrind engine. + +To use valgrind you should compile your application with "-g -O0" +compiler options. Afterwards you can use it with: + +valgrind --tool=memcheck --sloppy-malloc=yes --leak-check=yes +--db-attach=yes my_application, for example. + +More valgrind options can be listed via "valgrind --help". A +debugged application runs slower and needs much more memory, but +is usually still usable. Valgrind is still in development, but it +has been successfully used to optimize several KDE applications. + + http://valgrind.org/ + + + valgrind-docs + aarch64 + + 4a8505b87ca27f1757f3e7f03a7921ab3a18eea53564cfd80253b9b3805c6ca6 + Documentation for package valgrind + This package provides documentation for package valgrind. + + http://valgrind.org/ + + + vc-engine-default + aarch64 + + 710947839fd89d362582c182e537743c84a74389a7a2c9b0386caf4bdd690901 + Voice control default engine library + Description: Voice control default engine library + + + + + vconf-compat + aarch64 + + 1b583a235d1c2adc43b435799f7669398d65d1eec703eae1fcc3b13fa0186a69 + buxton wrapper for vconf APIs + Buxton wrapper library for providing vconf APIs + + + + + vconf-compat-devel + aarch64 + + 6ebbe3a93e4cc6b75f6f8d75e397c5a6747cffae52327d74e3782599bac1fe03 + buxton wrapper for vconf APIs (devel) + Buxton wrapper library for providing vconf APIs (devel) + + + + + vconf-internal-keys + aarch64 + + f4e0f8df6eb158167eb5aedec9f85200eba4b4e3ae9b417d6b44a0fdb54cae47 + Internal shared keys for vconf + configuration internal shared keys + + + + + vconf-internal-keys-config-profile_common + aarch64 + + fb28668420e38dbdd49222fd4229dad74af89f4c8a0e19fae15ce99474c4286c + Configure vconf internal shared keys for common + The vconf-internal-keys configurator for common +Vconf-internal-keys requires one of config-profile_* packages +installed to execute vconf configuration for buxton2. + + + + + vconf-internal-keys-config-profile_ivi + aarch64 + + d4e919ac1f944c3bdb8a34ae910858d6c6870bcb9c934f433bce3639fe091ebf + Configure vconf internal shared keys for ivi + The vconf-internal-keys configurator for ivi +Vconf-internal-keys requires one of config-profile_* packages +installed to execute vconf configuration for buxton2. + + + + + vconf-internal-keys-config-profile_mobile + aarch64 + + 72efc160b6014250cc86aa7d22d8f2a35730e510dca9b25de9806688050ae176 + Configure vconf internal shared keys for mobile + The vconf-internal-keys configurator for mobile. +Vconf-internal-keys requires one of config-profile_* packages +installed to execute vconf configuration for buxton2. + + + + + vconf-internal-keys-config-profile_tv + aarch64 + + 57da621ff4c3d559c4815354449c6cbfcfc6e4b1f5b051ab7c70c01c45a902fe + Configure vconf internal shared keys for tv + The vconf-internal-keys configurator for tv +Vconf-internal-keys requires one of config-profile_* packages +installed to execute vconf configuration for buxton2. + + + + + vconf-internal-keys-config-profile_wearable + aarch64 + + 421a47057561d8a871d4cf7c2dd797b7effaa95a2f1a5f2c15134db899a38f00 + Configure vconf internal shared keys for wearable + The vconf-internal-keys configurator for wearable +Vconf-internal-keys requires one of config-profile_* packages +installed to execute vconf configuration for buxton2. + + + + + vconf-internal-keys-devel + aarch64 + + f888f82a40f357e4d4c1cf8b08f202c6c92dc2b280ca6d71ca1ebdcb9454bb57 + Vconf internal keys (devel) + Vconf internal key header files (devel) + + + + + vi + aarch64 + + a91e86ea1d4afb14073f526d47b919e0f0f25c491d907be567c32abff7252692 + The Traditional Vi + Compared to most of its many clones, the traditional vi is a rather small +program just with its extremely powerful editing interface, but lacking fancy +features like multiple undo, multiple screens, or syntax highlighting. +This port of vi has generally preserved the original style, terminal control, +and feature set. It adds support for international character sets, including +multibyte encodings such as UTF-8, and some minor enhancements that were not +present in BSD vi 3.7, but had been included in later vi versions for System V +or in POSIX.2. + + http://ex-vi.sourceforge.net/ + + + voice-control + aarch64 + + 753fc39de1a4b0b8b4e21e6a1e7f473ad0229411ec85784c3e9b68f6d01bbe97 + Voice control client library and daemon + Voice Control client library and daemon + + + + + voice-control-devel + aarch64 + + aa18f0517c2890025079ed8717642166fe4151af4d1b2e592e73c93e35f89a62 + Voice control header files for VC development + Voice control header files for VC development. + + + + + voice-control-elm + aarch64 + + 99dbf3fd09522ceaf7fedf97ae47c4cdd2cc92faabca2daadf05272f77160ea8 + voice-control-elm library + voice-control-elm library that provides advanced Voice Driven Control over UI + + N/A + + + voice-control-elm-devel + aarch64 + + 5ee77baaf9af95a89b09399ca3bc61a16b45e1f3ece3a42e04f93fd5706f698a + voice-control-elm library development headers + voice-control-elm library development headers + + N/A + + + voice-control-engine-devel + aarch64 + + 11a2f9ce73ecf8ab7e1ddbd692753a341021f96f7ad16a41d47c2ebf5f124517 + Voice control engine header files for VC development + Voice control engine header files for VC development. + + + + + voice-control-manager-devel + aarch64 + + 19323ae3943393b6feb99f60eadb4a8adf4921991323780dc43c488d3f68c493 + Voice control manager header files for VC development + Voice control manager header files for VC development. + + + + + voice-control-setting-devel + aarch64 + + da2621f76593c3a49b656706292ba75bcdba53aacaa96493b4632acb442d58cb + Voice control setting header files for VC development + Voice control setting header files for VC development. + + + + + voice-control-widget-devel + aarch64 + + b39d375a606aea58c198082a5c55c73a0f8ed264134869ec53e34dfd545f3a0f + Voice control widget header files for VC development + Voice control widget header files for VC development. + + + + + vpx-tools + aarch64 + + dca5cfa0c8c38ab37b5a400e92b337fb120d035d2363b3ec493a4d8af4022af3 + VP8 codec library - Utilities + This package contains utilities around the vp8 codec sdk. + +WebM is an open, royalty-free, media file format designed for the web. + +WebM defines the file container structure, video and audio formats. +WebM files consist of video streams compressed with the VP8 video codec +and audio streams compressed with the Vorbis audio codec. +The WebM file structure is based on the Matroska container. + + http://www.webmproject.org/ + + + watch-control + aarch64 + + 37124141609440d5ad70be24f52e49c0d1ab6f102742167c5f7c01dd993177d8 + APIs to control watch applications + A set of APIs to control watch applications + + + + + watch-control-devel + aarch64 + + 865f3ed773b08fad0a8c3b94d17c4669b8b12443e012620e0be053748b742501 + APIs to control watch applications + Header & package configuration of watch-control + + + + + wayland-devel + aarch64 + + 362566368d66a115ddbb6238b4df16a9ca1d0dc5ac9c1c80a2de194249159d06 + Development files for the Wayland Compositor Infrastructure + Wayland is a protocol for a compositor to talk to its clients as well +as a C library implementation of that protocol. The compositor can be +a standalone display server running on Linux kernel modesetting and +evdev input devices, an X application, or a wayland client itself. +The clients can be traditional applications, X servers (rootless or +fullscreen) or other display servers. + +This package contains all necessary include files and libraries needed +to develop applications that require these. + + http://wayland.freedesktop.org/ + + + wayland-extension-client-devel + aarch64 + + b7bffaa40429105ac482db601d8cdfd9e9a49a68ce137acd489502f53a903d5c + Client development files for the Wayland Extension Protocol + wayland-extension is a protocol for tizen window system. + +This package contains all necessary include files and libraries needed +to develop applications that require these. + + http://www.tizen.org/ + + + wayland-extension-server-devel + aarch64 + + f8b13ba9420f46b96912486ad9ba574e5b82cb48e9144e8c5041b817edbe39d5 + Server development files for the Wayland Extension Protocol + wayland-extension is a protocol for tizen window system. + +This package contains all necessary include files and libraries needed +to develop a compositor that require these. + + http://www.tizen.org/ + + + wbxml2-tools + aarch64 + + f52277cbedfe98ed9b71cb3a536a60c6218e2684b501e67d3377619347d26701 + Tools for libwbxml2 + wbxml2 is a library that includes a WBXML parser and a WBXML compiler. +Unlike wbxml, it does not depend on libxml2 but on expat, making it +faster and more portable. WBXML Library contains a library and its +associated tools to Parse, Encode and Handle WBXML documents. The WBXML +(Wireless Binary XML) format is a binary representation of XML, and it +has been defined by the Wap Forum. + + http://libwbxml.opensync.org/ + + + webapi-plugins + aarch64 + + 26877989172148ccfe4d7f4c95754b5f6145050fb866539c612e9d1d421a0c89 + Tizen Web APIs implemented + Tizen Web APIs implemented. + + + + + webapi-plugins-devel + aarch64 + + 23626da47c5f7bb57005a30b6f2a105c241667932564b243f7866d987f06e878 + webapi-plugins development headers + webapi-plugins development headers + + + + + wgt-backend + aarch64 + + 588299e3c921f54e6df5e0dad40b6657adfdc08419f35e90b392a9e99ea5fba0 + Application installer backend for WGT + This is a package that installs the WGT backend of pkgmgr. + + + + + wgt-backend-tests + aarch64 + + 35badca8d5ac8397fef26440844a2a513bd372ceb89a213d23f6cded02b30aed + Unit tests for wgt-backend + Unit tests for wgt-backend + + + + + wgt-manifest-handlers + aarch64 + + 35a04860719165a49424122d310fcf7706d400b3a0cac1e9525b4a49a3b997a9 + wgt-manifest-handlers + This is a meta package that installs wgt manifest handlers. + + + + + wgt-manifest-handlers-devel + aarch64 + + 15f43335bb249e2e665775f5700c29f19db6e51d41acdc4536e0d529975d49c6 + Wgt manifest handlers development files + This package contains necessaary files for wgt-manifest-handlers development + + + + + wgt-manifest-handlers-tests + aarch64 + + 38a9da645821107ccc39e321a426743ba30f8e85ad05b9e10d284b3cf5b7be6b + Unit tests for wgt-manifest-handlers + Unit tests for al modules of manifest-parser + + + + + widget_toolkit + aarch64 + + db71e8165c63e2fbc664561563221195213771dd9876b36ddc3b40d33dd3dcfb + APIs to develop the widget viewer libraries + A sset of APIs to implement widget libraries + + + + + widget_toolkit-devel + aarch64 + + e7da758e295ea4a8cd78bb1531f2c1e9752cf9c4ca4b622b4d887479dbcf7eee + APIs to develop the widget viewer libraries + Header & package configuration files of widget_toolkit + + + + + wifi-direct-manager + aarch64 + + 390825b0e1fae5ff50750c713d9f0c2ca90da513f3f41fc523be75e60ff5cfc0 + Wi-Fi Direct manger + Manager for handling wifi-direct functionalities + + + + + wifi-direct-plugin-wpasupplicant + aarch64 + + 727ba8af9955cb219e0675c6de8a4f07d6b0469fa59464019303fabd73988cc5 + Wifi direct plugin for wpa supplicant + Wi-Fi direct manager plugin to abstract wpa_supplicant + + + + + wifi-efl-ug + aarch64 + + 5810d32717df58a784c5d06cfe6ad1139d041940099858fb7de1110bb7f44d2b + Wi-Fi UI Gadget for TIZEN + Wi-Fi UI Gadget + + + + + wpa_supplicant + aarch64 + + 00c2bfe6f627e1bfff387f9203a3a29dbb0fc244e2349aa625071124737f52e6 + WPA supplicant implementation + wpa_supplicant is an implementation of the WPA Supplicant component, +i.e., the part that runs in the client stations. It implements key +negotiation with a WPA Authenticator and it controls the roaming and +IEEE 802.11 authentication/association of the wlan driver. + + http://hostap.epitest.fi/wpa_supplicant/ + + + xdelta3 + aarch64 + + 06c977264cdaf9a30ad45b2e83876e549ae2115afd3d5416b8dea00275b2570a + The xdelta3 + Xdelta3 is a set of tools designed to compute changes between +binary files. These changes (delta files) are similar to the output of the +"diff" program, in that they may be used to store and transmit only the +changes between files. The "delta files" that Xdelta3 manages are +stored in RFC3284 (VCDIFF) format. + + http://xdelta.org/ + + + xdgmime + aarch64 + + ce903d7386647c4c97d1afeaa97aa1794b81b33916884505d355da3f40f4d428 + Querying information about file type + Querying information about file type package. + + + + + xdgmime-devel + aarch64 + + 57da8675b4967aa60cb7628864e8d423e0e003afa77dcc5cad3bc8b1ce413a9e + Querying information about file type (devel) + Querying information about file type (devel) package. + + + + + xkb-tizen-data + noarch + + 4c397efbbc7bdb70b2bedb3c1635744dcffc926d75a1dce30871662dc9f22a44 + Xkb data files + Data files for Xkb keymap + + + + + xkeyboard-config + noarch + + 1a75d3c1245df8be7c2836c601498dd0f6557d48100b88fe1563e5a75eeb23a6 + The X Keyboard Extension + The X Keyboard Extension essentially replaces the core protocol +definition of keyboard. The extension makes possible to clearly and +explicitly specify most aspects of keyboard behaviour on per-key basis +and to more closely track the logical and physical state of the +keyboard. It also includes a number of keyboard controls designed to +make keyboards more accessible to people with physical impairments. + + http://www.freedesktop.org/Software/XKeyboardConfig + + + xmlcharent + noarch + + 0ec1cac91c9b296712500c3bb2ecf36e5c1c44e1f9af576dbf86c2cca6233d74 + XML Character Entities + XML encodings for the 19 standard character entity sets defined in +non-normative Annex D of [ISO 8879:1986]. + + http://www.oasis-open.org/committees/docbook/xmlcharent/ + + + xmlsec1 + aarch64 + + 86c50105843b6b516387681837a26f074ea38520970e8bcab7d097dda27f9052 + Library providing support for "XML Signature" and "XML Encryption" standards + This C library allows to transform XML files into other XML files +(or HTML, text, ...) using the standard XSLT stylesheet transformation +mechanism. To use it you need to have a version of libxml2 >= 2.6.27 +installed. The xsltproc command is a command line interface to the XSLT engine + + http://www.aleksey.com/xmlsec/index.html + + + xmlsec1-devel + aarch64 + + 17630d0329fe0435cdde0eb6893e7d7ae1b83cb944293e2f674a27fafbd43f3c + Libraries, includes, etc + This C library allows to transform XML files into other XML files +(or HTML, text, ...) using the standard XSLT stylesheet transformation +mechanism. To use it you need to have a version of libxml2 >= 2.6.27 +installed. + + http://www.aleksey.com/xmlsec/index.html + + + xmlsec1-devel-static + aarch64 + + b8daa481fefb350b987b4c734a99c57310aef9169173fb7168d127b0a0acf66a + A library for Perl-compatible regular expressions + This C library allows to transform XML files into other XML files +(or HTML, text, ...) using the standard XSLT stylesheet transformation +mechanism. To use it you need to have a version of libxml2 >= 2.6.27 +installed. +This package contains static versions of the libxmlsec1 library. + + http://www.aleksey.com/xmlsec/index.html + + + xmlsec1-gcrypt + aarch64 + + dc72090ce3b330bec70bd64c62bbe17b759194daa45b21d6d2f93c3c8af36b6a + Gcrypt crypto plugin for XML Security Library + Gcrypt plugin for XML Security Library provides gcrypt based crypto services +for the xmlsec library. + + http://www.aleksey.com/xmlsec/index.html + + + xmlsec1-openssl + aarch64 + + 8db0178a826f38bfdabb7b08495aab2745cc90b068c3c2903df4e32d069ec999 + OpenSSL crypto plugin for XML Security Library + OpenSSL plugin for XML Security Library provides OpenSSL based crypto services +for the xmlsec library. + + http://www.aleksey.com/xmlsec/index.html + + + xmlstarlet + aarch64 + + bacd5750bc9767fef03a8cd9dcdc2cf2cd7961423a9757ffa42ce2385266565c + Command Line XML Toolkit + XMLStarlet is a set of command line utilities which can be used +to transform, query, validate, and edit XML documents and files +using simple set of shell commands in similar way it is done for +plain text files using UNIX grep, sed, awk, diff, patch, join, etc +commands. + + http://xmlstar.sourceforge.net/ + + + xmlto + aarch64 + + e2186c1cc935ea2b7ad0a7af1bb6b5df02221b18e16ca9a04da9624576080b9c + Tool for Converting XML Files to Various Formats + This is a package for converting XML files to various formats using XSL +stylesheets. As a processor it depends on xsltproc and as a formatter +for print output it makes use of passivetex. + + https://fedorahosted.org/xmlto/ + + + xwalk-extensions-common + aarch64 + + 09b0889f171bc2264e9da9101a276686f6c523f27f7c841d9f0319810405a28e + Common modules and tools for Crosswalk Extensions + Common modules and tools for Crosswalk Extensions + + https://www.tizen.org + + + xwalk-extensions-common-devel + aarch64 + + c1869b7f6f2cc7e60a19c3355584a9f0c207eec5726f60191addf98443dfcb90 + Development package of xwalk-extensions-common + Development package of xwalk-extensions-common + + https://www.tizen.org + + + yaca + aarch64 + + c4cf3db11fd2a952ce3e437ea6898ef3f368517c5f57da87836a17f0c470bbda + Yet Another Crypto API + The package provides Yet Another Crypto API. + + + + + yaca-devel + aarch64 + + 9799fca1d332cc1a64f6a17d52ac88d3ed5f6ef75401cf09c27331515947cf72 + Yet Another Crypto API development files + The package provides Yet Another Crypto API development files. + + + + + yaca-examples + aarch64 + + b69357f652ae7434c87b179d8086bd8641c2d7e637ba5eabfaa0fd2a0c0a2044 + Yet Another Crypto API example files + The package provides Yet Another Crypto API example files. + + + + + yasm + aarch64 + + 3774038746f5d6fb38d63c2346d973a0e8d397874668e1f80a5f823c67e7bf3f + Yasm Modular Assembler + Yasm is a complete rewrite of the NASM assembler under the “new” BSD License (some portions are under other licenses, see COPYING for details). +Yasm currently supports the x86 and AMD64 instruction sets, accepts NASM and GAS assembler syntaxes, outputs binary, ELF32, ELF64, 32 and 64-bit Mach-O, RDOFF2, COFF, Win32, and Win64 object formats, and generates source debugging information in STABS, DWARF 2, and CodeView 8 formats. +Yasm can be easily integrated into Visual Studio 2005/2008 and 2010 for assembly of NASM or GAS syntax code into Win32 or Win64 object files. + + http://yasm.tortall.net/ + + + yum + noarch + + b53f7c269d5bd339321a08d4659514f493508dd263834a554c82c7e9bd33f951 + RPM package installer/updater/manager + Yum is a utility that can check for and automatically download and +install updated RPM packages. Dependencies are obtained and downloaded +automatically, prompting the user for permission as necessary. + + http://yum.baseurl.org/ + + + yum-metadata-parser + aarch64 + + 942b889bb6b6ebea9facf1383ff7c4cfe532968965fa032258cc36972ca96d01 + A fast metadata parser for yum + Fast metadata parser for yum implemented in C. + + http://linux.duke.edu/projects/yum/ + + + zbar + aarch64 + + 8828d72ccbb21c8d9eacfd94d357f595ad0232a3adab000dd2f24714c3470c6d + Bar code reader + A layered barcode scanning and decoding library. Supports EAN, UPC, Code 128, +Code 39 and Interleaved 2 of 5. +Includes applications for decoding captured barcode images and using a video +device (eg, webcam) as a barcode scanner. + + + + + zbar-devel + aarch64 + + ebaeffe6f94916698103070e0e27cd8d166934af2c53b19032da3057001e2de3 + Bar code library extra development files + This package contains header files and additional libraries used for +developing applications that read bar codes with this library. + + + + + zint + aarch64 + + d1372681c93c7efc1a4a013a2cc10935e20914268cfe9ae16b5397a900827738 + Barcode generator library + Zint is a C library for encoding data in several barcode variants. The +bundled command-line utility provides a simple interface to the library. +Features of the library: +- Over 50 symbologies including all ISO/IEC standards, like QR codes. +- Unicode translation for symbologies which support Latin-1 and + Kanji character sets. +- Full GS1 support including data verification and automated insertion of + FNC1 characters. +- Support for encoding binary data including NULL (ASCII 0) characters. +- Health Industry Barcode (HIBC) encoding capabilities. +- Output in PNG, EPS and SVG formats with user adjustable sizes and colors. +- Verification stage for SBN, ISBN and ISBN-13 data. + + http://www.zint.org.uk + + + zint-devel + aarch64 + + f98aef9d499233ef067996cfaff8514a78a3193d867862dc497bb1bc27b113af + Library and header files for zint + C library and header files needed to develop applications that use +the Zint library. The API documentation can be found on the project website: +http://www.zint.org.uk/zintSite/Manual.aspx + + http://www.zint.org.uk + + + zypper + aarch64 + + 04245f146c760bcd94dd090d3c7514c6893567a5f41808df37f4d572c9fad182 + Command line software manager using libzypp + Zypper is a command line tool for managing software. It can be used to add +package repositories, search for packages, install, remove, or update packages, +install patches, hardware drivers, verify dependencies, and more. + +Zypper can be used interactively or non-interactively by user, from scripts, +or front-ends. + +Authors: +-------- + Jan Kupec <jkupec@suse.cz> + Duncan Mac-Vicar <dmacvicar@suse.de> + Martin Vidner <mvidner@suse.cz> + Josef Reidinger <jreidinger@suse.cz> + + http://en.opensuse.org/Zypper + + + zypper-locale + noarch + + 793d8d0e1c5af6520d49e25d00558e3eb22120691a09fbaba60c117d78c7ddfc + Translations and Locale for package zypper + This package provides translations for package zypper. + + http://en.opensuse.org/Zypper + + + zypper-log + noarch + + 021e1ee4bf3e1f7ab08bea1489f2bfc2187a0acfa10cedb842286636f51a1529 + CLI for accessing the zypper logfile + CLI for accessing the zypper logfile + +Authors: +-------- + Dominik Heidler <dheidler@suse.de> + + http://en.opensuse.org/Zypper + + \ No newline at end of file diff --git a/test/dependency_fixtures/mobile/repodata/2f5df56b9d899d2d42a4b26c11e34d89080bfab0538c4447a654953952a64551-primary.xml.gz b/test/dependency_fixtures/mobile/repodata/2f5df56b9d899d2d42a4b26c11e34d89080bfab0538c4447a654953952a64551-primary.xml.gz new file mode 100644 index 0000000..08cdc81 Binary files /dev/null and b/test/dependency_fixtures/mobile/repodata/2f5df56b9d899d2d42a4b26c11e34d89080bfab0538c4447a654953952a64551-primary.xml.gz differ diff --git a/test/dependency_fixtures/mobile/repodata/6fccecc933a8e700029a971aa5770c7c5a704692399b49c291bc345569099c27-group.xml b/test/dependency_fixtures/mobile/repodata/6fccecc933a8e700029a971aa5770c7c5a704692399b49c291bc345569099c27-group.xml new file mode 100644 index 0000000..fb45c74 --- /dev/null +++ b/test/dependency_fixtures/mobile/repodata/6fccecc933a8e700029a971aa5770c7c5a704692399b49c291bc345569099c27-group.xml @@ -0,0 +1,1057 @@ + + + + generic-adaptation + Generic Adaptation + Generic Adaptation + true + + linux-firmware + system-plugin + + + + generic-applications + Generic Applications + Generic Applications + true + + ca-certificates + + + + generic-autoqa + Generic Automated QA Tools + Generic Automated QA Tools + true + + testkit-lite + screen + which + + + + generic-base-micro + Generic Base Micro + Generic Base Micro + true + + bluez + kmod + tzdata + pam + setup + filesystem + systemd + busybox + default-ac-domains + tizen-release + glibc-locale + pciutils + lrzsz + + + + generic-base + Generic Base + Generic Base + true + + e2fsprogs + connman + rfkill + util-linux + kmod-compat + kmod + tzdata + shadow-utils-adm + pam + setup + filesystem + systemd + bash + coreutils + rpm + rpm-security-plugin + default-ac-domains + tizen-release + pam-locale + procps + psmisc + net-tools + glibc-locale + wpa_supplicant + gum-utils + tlm + lrzsz + + + + generic-bluetooth + Generic Bluetooth + Generic Bluetooth + true + + bluez + bluetooth-frwk-core + bluetooth-frwk-service + bluetooth-share + bluetooth-tools-no-firmware + obexd + + + + generic-console-tools + Generic Console Tools + Generic Console Tools + true + + tar + grep + gzip + zip + unzip + xz + curl + findutils + iptables + + + + generic-crosswalk + Generic Crosswalk + Generic Crosswalk + true + + crosswalk-tizen + + + + generic-desktop-applications + Generic Desktop Applications + Generic Desktop Applications + true + + emotion + + + + generic-development + Generic Development + Generic Development + true + + zip + unzip + less + gcc + glibc-devel + libtool + gcc-fortran + cmake + xz + tcl + gdb + gdb-server + nano + strace + yasm + make + diffutils + patch + autoconf + automake + binutils-devel + bison + flex + gcc-c++ + libstdc++-devel + libtool + findutils + wdiff + nasm + vim-enhanced + powertop + pulseaudio-utils + gstreamer-utils + alsa-utils + connman-test + pacrunner + git-core + valgrind + lsof + attr + smack + corewatcher + iputils + iproute2 + which + + + + generic-middleware + Generic Middleware + Generic Middleware + true + + buxton2 + resourced + murphy + key-manager + key-manager-pam-plugin + libkey-manager-common + libkey-manager-client + cynara + libcynara-creds-commons + libcynara-creds-dbus + libcynara-creds-gdbus + libcynara-creds-socket + cert-svc + security-privilege-manager + privilege-checker + privilege-info + contacts-service2 + calendar-service + cairo + csr-framework + pkgmgr-server + pkgmgr-tool + sqlite3 + sdbd + amd + voice-control + voice-control-elm + vc-engine-default + capi-maps-service + appcore-agent + data-control + ttrace + stt + org.tizen.tts-engine-default + eventsystem + vconf-internal-keys + toybox + toybox-symlinks-dhcp + toybox-symlinks-dhcpd + xdelta3 + launchpad + drm-service-core-tizen + nghttp2 + pubkey-pinning + crash-worker + app-installers + tpk-backend + wgt-backend + + + + generic-multimedia-intel + Generic Multimedia Intel + Generic Multimedia Intel + true + + gst-libav + gstreamer-vaapi + libva-intel-driver + vaapi-tools + + + + generic-multimedia + Generic Multimedia + Generic Multimedia + true + + alsa-utils + pulseaudio + pulseaudio-module-bluetooth + pulseaudio-modules-tizen + pulseaudio-utils + gst-plugins-bad + gst-plugins-base + gst-plugins-good + gstreamer + gstreamer-utils + + + + generic-packaging + Generic Packaging + Generic Packaging + true + + gpg2 + zypper + + + + generic-qa + Generic QA Tools + Generic QA Tools + true + + bluez-test + connman-test + dbus-python + dlogutil + eet-tools + gdb + glibc-devel-utils + gstreamer-utils + python-xml + wget + + + + generic-qt5 + Generic Qt5 + Generic Qt5 + true + + qt-tizen-full + + + + generic-setup-boot-bios + Generic Setup Boot Bios + Generic Setup Boot Bios + true + + setup-scripts-extlinux + setup-scripts-clone + + + + generic-setup-boot + Generic Setup Boot + Generic Setup Boot + true + + gummiboot-splash + setup-scripts-gummiboot + setup-scripts-clone + gptfdisk + + + + generic-wayland + Generic Wayland + Generic Wayland + true + + xkeyboard-config + + + + generic-x11-intel + Generic X11 Intel + Generic X11 Intel + true + + xf86-input-synaptics + xf86-video-intel + xf86-input-keyboard + + + + generic-x11 + Generic X11 + Generic X11 + true + + xorg-server + xorg-launch-helper + enlightenment + xf86-input-evdev + xf86-module-xdbg + xf86-video-fbdev + libxcb-dri3 + libxcb-present + libxcb-sync + xdpyinfo + xeyes + xrandr + + + + mobile-adaptation-32 + Mobile Adaptation 32 + Mobile Adaptation 32 + true + + + + mobile-adaptation-emulator + Mobile Adaptation Emulator + Mobile Adaptation Emulator + true + + nfc-manager + nfc-plugin-emul + ug-nfc-efl + ug-setting-mobileap-efl + audio-hal-emul + capi-network-mtp + coregl + device-manager-plugin-emul + emulator-yagl + emuld + gst-plugins-emulator + liblazymount + libpciaccess + libtbm-vigs + libtdm-client + libtdm-drm + model-config-emulator + sensor-hal-emulator + system-plugin + system-plugin-emulator + systemd-user-helper + tel-plugin-atmodem + tel-plugin-vmodem + vmodemd-emul + mmfw-sysconf-simulator + dlogbackend-logger + + + + mobile-adaptation-tm1-upgrade + Mobile Adaptation TM1 Upgrade + Mobile Adaptation TM1 Upgrade + true + + system-upgrade + + + + mobile-adaptation-tm1 + Mobile Adaptation TM1 + Mobile Adaptation TM1 + true + + audio-config-sc-TM1-sc7730 + audio-hal-sc7727 + bluetooth-firmware-sprd-TM1 + device-manager-plugin-sc7730 + liblazymount + libtbm-sprd + libtdm-client + libtdm-sprd + linux-3.10-sc7730_tizen_tm1 + mmfw-sysconf-target-tm1 + model-config-tm1 + sensor-hal-tm1 + smartcard-plugin-uicc + swap-manager + swap-modules + swap-probe + swap-probe-elf + system-plugin-spreadtrum + systemd-user-helper + capi-network-mtp + libmtp + mtp-initiator + mtp-responder + net.wifi-qs + org.tizen.wifi-direct-popup + ug-setting-mobileap-efl + ug-setting-wifidirect-efl + wifi-direct-manager + wifi-direct-plugin-wpasupplicant + dlogbackend-logger + smartcard-service + smartcard-service-common + + + + mobile-adaptation-tm2 + Mobile Adaptation TM2 + Mobile Adaptation TM2 + true + + alsa-ucm-data-wm5110 + audio-hal-wm5110 + bluetooth-firmware-bcm + device-manager-plugin-exynos5433 + gst-omx + gst-plugins-camera-n4 + liblazymount + libomxil-e54xx + libtbm-exynos + libtdm-client + libtdm-exynos + mmfw-sysconf-target-n4 + model-config-n4 + nfc-manager + sensor-hal-tm2 + system-plugin-n4 + systemd-user-helper + ug-nfc-efl + capi-network-mtp + capi-network-wifi + libmtp + mtp-initiator + mtp-responder + net.wifi-qs + org.tizen.wifi-direct-popup + ug-setting-mobileap-efl + ug-setting-wifidirect-efl + wifi-direct-manager + wifi-direct-plugin-wpasupplicant + + + + mobile-adaptation + Mobile Adaptation + Mobile Adaptation + true + + meta-generic-adaptation + + + + mobile-applications-32 + Mobile Applications 32 + Mobile Applications 32 + true + + org.tizen.gallery + org.tizen.indicator + org.tizen.music-player + org.tizen.videos + org.tizen.worldclock-efl + + + + mobile-applications + Mobile Applications + Mobile Applications + true + + app-installers + attach-panel + attach-panel-camera + attach-panel-document + attach-panel-gallery + attach-panel-voicerecorder + boot-animation + ca-certificates + capi-appfw-app-manager + data-provider-master + libwidget_service + libwidget_viewer + libwidget_viewer_evas + my-account + net.netpopup + org.tizen.app-selector + org.tizen.browser + org.tizen.callmgr-popup + org.tizen.crash-syspopup + org.tizen.d2d-conv-setting + org.tizen.d2d-conv-syspopup + org.tizen.download-manager + org.tizen.dpm-syspopup + org.tizen.dpm-toolkit + org.tizen.gps-syspopup + org.tizen.heremaps-uc + org.tizen.inputmethod-setting-profile_mobile + org.tizen.kaskit + org.tizen.keyguard + org.tizen.krate-setup-wizard + org.tizen.menu-screen + org.tizen.myplace + org.tizen.ode + org.tizen.overheat-syspopup + org.tizen.powerkey-syspopup + org.tizen.privacy-setting + org.tizen.quickpanel + org.tizen.screen-reader + org.tizen.setting + org.tizen.setting-location + org.tizen.settings-adid + org.tizen.stt-engine-default + org.tizen.sys-lock + org.tizen.system-signal-sender + org.tizen.system-syspopup + org.tizen.tts-engine-default + org.tizen.voice-control-panel + org.tizen.voice-setting + org.tizen.volume + org.tizen.widget_viewer_sdk + starter + tpk-backend + wgt-backend + + + + mobile-base + Mobile Base + Mobile Base + true + + capi-base-utils + cert-svc-ui + deviced + deviced-tools + dlogutil + fsck-msdos + libstorage + lzo + newfs-msdos + tizen-locale + tlm-config-common-singleseat + + + + mobile-bluetooth + Mobile Bluetooth + Mobile Bluetooth + true + + bluetooth-agent + bluetooth-frwk-core + bluetooth-frwk-service + bluetooth-share + bluetooth-tools + bluez + libbluetooth + obexd + org.tizen.bluetooth-share-ui + org.tizen.bt-syspopup + ug-bluetooth-efl + + + + mobile-boot-tm1 + Mobile Boot TM1 + Mobile Boot TM1 + true + + u-boot-tm1 + + + + mobile-boot-tm2 + Mobile Boot TM2 + Mobile Boot TM2 + true + + arm64-tm2-linux-kernel + + + + mobile-connectivity-framework + Mobile Connectivity Framework + Mobile Connectivity Framework + true + + capi-network-http + capi-network-nfc + capi-network-smartcard + capi-network-softap + capi-network-tethering + capi-network-wifi-manager + libdns_sd + libnl2 + libnsd-dns-sd + libnsd-ssdp + mdnsresponder + mobileap-agent + net-config + wifi-efl-ug + + + + mobile-console-tools + Mobile Console Tools + Mobile Console Tools + true + + curl + findutils + grep + gzip + iptables + tar + unzip + xz + zip + + + + mobile-dali + Mobile Dali + Mobile Dali + true + + dali + dali-adaptor + dali-adaptor-dali-video-player-plugin + dali-toolkit + libwidget_viewer_dali + + + + mobile-efl + Mobile EFL + Mobile EFL + true + + at-spi2-core + capi-ui-efl-util + default-fonts-fc-sdk + default-fonts-sdk + e-mod-tizen-qpmgr + efl-config + efl-extension + efl-misc + efl-modules + efl-theme-tizen-mobile + elementary-locale + elementary-tools + libatk + libatk-bridge-2_0-0 + libatspi0 + typelib-1_0-Atspi-2_0 + + + + mobile-enlightenment + Mobile Enlightenment + Mobile Enlightenment + true + + e-mod-tizen-devicemgr + e-mod-tizen-effect + e-mod-tizen-eom + e-mod-tizen-gesture + e-mod-tizen-keyrouter + e-mod-tizen-processmgr + e-mod-tizen-screen-reader + e-mod-tizen-wl-textinput + e-mod-tizen-wm-policy + e-tizen-data + enlightenment + + + + mobile-input-framework + Mobile Input Framework + Mobile Input Framework + true + + anthy + capi-ui-inputmethod + capi-ui-inputmethod-manager + ise-default + ise-engine-anthy + ise-engine-default + ise-engine-hangul + ise-engine-sunpinyin + ise-engine-tables + ise-engine-tables-zh + isf + isf-config-mobile + libhangul + libscl-ui + org.tizen.inputmethod-setting + + + + mobile-middleware + Mobile Middleware + Mobile Middleware + true + + SDL2 + account-common + account-manager + account-parser + amd + app2sd + appcore-agent + appcore-widget + argos_watchdog + askuser + askuser-notification + askuser-plugins + askuser-test + auth-fw + boost-date-time + boost-program-options + boost-regex + buxton2 + cairo + calendar-service + capi-appfw-package-manager + capi-geofence-manager + capi-maps-service + capi-messaging-email + capi-messaging-messages + capi-network-vpn-setting + capi-system-device + capi-system-media-key + capi-system-runtime-info + capi-system-usbhost + capi-vpnsvc + cbhm + cert-checker + cert-svc + connman-connman-vpnd + connman-plugin-openvpn + contacts-service2 + context + context-service + crash-worker + cryptsetup + csr-framework + cyad + cynara + d2d-conv-manager + d2d-conv-manager-lib + data-control + debug-launchpad + device-mapper + device-policy-manager + download-fonts-service + drm-service-core-tizen + dummyasm + email-service + esd + eventsystem + fido-client + geofence-server + heremaps-uc-launcher + iotcon + key-manager + key-manager-pam-plugin + krate + launchpad + lbs-server + lbs-server-plugin-replay + libaccount-service + libaskuser-common + libauth-fw-client + libauth-fw-client-admin + libcore-sync-client + libcsr-framework-client + libcynara-creds-commons + libcynara-creds-dbus + libcynara-creds-gdbus + libcynara-creds-socket + libcynara-monitor + libdpm + libeom + libgeofence-dbus + libhyphen + libjson-glib + libkey-manager-client + libkey-manager-common + libkrate + libnss-security-manager + liboauth + libprotobuf-lite9 + libpush + libsecurity-manager-client + libspeex + libwebappenc + location-geofence-server + location-lbs-server + maps-plugin-here + maps-plugin-mapzen + memps + mms-plugin + motion + msg-manager + msg-service-tools + murphy + nghttp2 + oauth2 + openvpn + org.tizen.service-plugin-sample + phonenumber-utils + pkgmgr-server + pkgmgr-server + pkgmgr-tool + privacy-guard-client + privacy-guard-server + privilege-checker + privilege-info + pubkey-pinning + push-bin + resourced + sdbd + security-config + security-config-profile_mobile + security-manager + security-privilege-manager + service-adaptor + sms-plugin + stt + sync-service + system-servant + tizen-debug + toybox + toybox-symlinks-dhcp + toybox-symlinks-dhcpd + ttrace + ttrace-extension + tzsh + ui-gadget-1 + ui-viewmgr + vc-engine-default + vconf-internal-keys + vconf-internal-keys-config-profile_mobile + voice-control + voice-control-elm + xdelta3 + yaca + + + + mobile-multimedia + Mobile Multimedia + Mobile Multimedia + true + + capi-content-media-content + capi-media-camera + capi-media-codec + capi-media-image-util + capi-media-metadata-editor + capi-media-metadata-extractor + capi-media-player + capi-media-recorder + capi-media-screen-mirroring + capi-media-sound-manager + capi-media-streamer + capi-media-streamrecorder + capi-media-thumbnail-util + capi-media-tone-player + capi-media-tool + capi-media-video-util + capi-media-vision + capi-media-wav-player + capi-mediademuxer + capi-mediamuxer + dcm-service + freealut + gst-libav + gst-plugins-tizen + gst-plugins-ugly + gst-rtsp-server + libbmp + libmedia-service + libmedia-thumbnail + libmedia-utils + libmm-camcorder + libmm-common + libmm-evas-renderer + libmm-fileinfo + libmm-imgp-gstcs + libmm-player + libmm-radio + libmm-session + libmm-sound + libmm-streamrecorder + libmm-transcode + libmm-wfd + libnsbmp + media-server + media-thumbnail-server + mediacontroller + mmsvc-camera + mmsvc-player + mmsvc-recorder + murphy-glib + mused + openal-soft + opencv + pulseaudio-modules-tizen + taglib + zbar + zint + + + + mobile-qt5 + Mobile Qt5 + Mobile Qt5 + true + + qt-tizen-demo + + + + mobile-telephony + Mobile Telephony + Mobile Telephony + true + + call-manager + capi-telephony + libcall-manager + libtapi + libtcore + tel-plugin-database + tel-plugin-dbus_tapi + tel-plugin-indicator + tel-plugin-nitz + tel-plugin-packetservice + tel-plugin-vconf + telephony-daemon + + + + mobile-tpk-applications + Mobile TPK Applications + Mobile TPK Applications + true + + org.tizen.calendar + org.tizen.call-setting + org.tizen.call-ui + org.tizen.camera-app + org.tizen.contacts + org.tizen.email + org.tizen.homescreen-efl + org.tizen.image-viewer + org.tizen.lockscreen + org.tizen.memo + org.tizen.message + org.tizen.myfile + org.tizen.setting-homescreen + org.tizen.setting-notification + org.tizen.share-panel + org.tizen.task-mgr + org.tizen.ug-gallery-efl + org.tizen.ug-lockscreen-options + org.tizen.ug-myfile-efl + org.tizen.wallpaper-ui-service + + + + mobile-wayland + Mobile Wayland + Mobile Wayland + true + + libwayland-tbm-client + libwayland-tbm-server + + + + mobile-web-framework + Mobile Web Framework + Mobile Web Framework + true + + browser-provider + chromium-efl + cordova-api + crosswalk-tizen + libwebsockets + webapi-plugins + + + diff --git a/test/dependency_fixtures/mobile/repodata/6fccecc933a8e700029a971aa5770c7c5a704692399b49c291bc345569099c27-group.xml.gz b/test/dependency_fixtures/mobile/repodata/6fccecc933a8e700029a971aa5770c7c5a704692399b49c291bc345569099c27-group.xml.gz new file mode 100644 index 0000000..623f841 Binary files /dev/null and b/test/dependency_fixtures/mobile/repodata/6fccecc933a8e700029a971aa5770c7c5a704692399b49c291bc345569099c27-group.xml.gz differ diff --git a/test/dependency_fixtures/mobile/repodata/725f72df1662d3c895553bbea22043638f8e087c9ec062119caba85d7fb99725-patterns.xml b/test/dependency_fixtures/mobile/repodata/725f72df1662d3c895553bbea22043638f8e087c9ec062119caba85d7fb99725-patterns.xml new file mode 100644 index 0000000..05b14be --- /dev/null +++ b/test/dependency_fixtures/mobile/repodata/725f72df1662d3c895553bbea22043638f8e087c9ec062119caba85d7fb99725-patterns.xml @@ -0,0 +1 @@ +generic-adaptationGeneric AdaptationGeneric AdaptationBase Groupgeneric-applicationsGeneric ApplicationsGeneric ApplicationsBase Groupgeneric-autoqaGeneric Automated QA ToolsGeneric Automated QA ToolsBase Groupgeneric-base-microGeneric Base MicroGeneric Base MicroBase Groupgeneric-baseGeneric BaseGeneric BaseBase Groupgeneric-bluetoothGeneric BluetoothGeneric BluetoothBase Groupgeneric-console-toolsGeneric Console ToolsGeneric Console ToolsBase Groupgeneric-crosswalkGeneric CrosswalkGeneric CrosswalkBase Groupgeneric-desktop-applicationsGeneric Desktop ApplicationsGeneric Desktop ApplicationsBase Groupgeneric-developmentGeneric DevelopmentGeneric DevelopmentBase Groupgeneric-middlewareGeneric MiddlewareGeneric MiddlewareBase Groupgeneric-multimedia-intelGeneric Multimedia IntelGeneric Multimedia IntelBase Groupgeneric-multimediaGeneric MultimediaGeneric MultimediaBase Groupgeneric-packagingGeneric PackagingGeneric PackagingBase Groupgeneric-qaGeneric QA ToolsGeneric QA ToolsBase Groupgeneric-qt5Generic Qt5Generic Qt5Base Groupgeneric-setup-boot-biosGeneric Setup Boot BiosGeneric Setup Boot BiosBase Groupgeneric-setup-bootGeneric Setup BootGeneric Setup BootBase Groupgeneric-waylandGeneric WaylandGeneric WaylandBase Groupgeneric-x11-intelGeneric X11 IntelGeneric X11 IntelBase Groupgeneric-x11Generic X11Generic X11Base Groupmobile-adaptation-32Mobile Adaptation 32Mobile Adaptation 32Base Groupmobile-adaptation-emulatorMobile Adaptation EmulatorMobile Adaptation EmulatorBase Groupmobile-adaptation-tm1-upgradeMobile Adaptation TM1 UpgradeMobile Adaptation TM1 UpgradeBase Groupmobile-adaptation-tm1Mobile Adaptation TM1Mobile Adaptation TM1Base Groupmobile-adaptation-tm2Mobile Adaptation TM2Mobile Adaptation TM2Base Groupmobile-adaptationMobile AdaptationMobile AdaptationBase Groupmobile-applications-32Mobile Applications 32Mobile Applications 32Base Groupmobile-applicationsMobile ApplicationsMobile ApplicationsBase Groupmobile-baseMobile BaseMobile BaseBase Groupmobile-bluetoothMobile BluetoothMobile BluetoothBase Groupmobile-boot-tm1Mobile Boot TM1Mobile Boot TM1Base Groupmobile-boot-tm2Mobile Boot TM2Mobile Boot TM2Base Groupmobile-connectivity-frameworkMobile Connectivity FrameworkMobile Connectivity FrameworkBase Groupmobile-console-toolsMobile Console ToolsMobile Console ToolsBase Groupmobile-daliMobile DaliMobile DaliBase Groupmobile-eflMobile EFLMobile EFLBase Groupmobile-enlightenmentMobile EnlightenmentMobile EnlightenmentBase Groupmobile-input-frameworkMobile Input FrameworkMobile Input FrameworkBase Groupmobile-middlewareMobile MiddlewareMobile MiddlewareBase Groupmobile-multimediaMobile MultimediaMobile MultimediaBase Groupmobile-qt5Mobile Qt5Mobile Qt5Base Groupmobile-telephonyMobile TelephonyMobile TelephonyBase Groupmobile-tpk-applicationsMobile TPK ApplicationsMobile TPK ApplicationsBase Groupmobile-waylandMobile WaylandMobile WaylandBase Groupmobile-web-frameworkMobile Web FrameworkMobile Web FrameworkBase Group \ No newline at end of file diff --git a/test/dependency_fixtures/mobile/repodata/725f72df1662d3c895553bbea22043638f8e087c9ec062119caba85d7fb99725-patterns.xml.gz b/test/dependency_fixtures/mobile/repodata/725f72df1662d3c895553bbea22043638f8e087c9ec062119caba85d7fb99725-patterns.xml.gz new file mode 100644 index 0000000..9f94d4b Binary files /dev/null and b/test/dependency_fixtures/mobile/repodata/725f72df1662d3c895553bbea22043638f8e087c9ec062119caba85d7fb99725-patterns.xml.gz differ diff --git a/test/dependency_fixtures/mobile/repodata/repomd.xml b/test/dependency_fixtures/mobile/repodata/repomd.xml new file mode 100644 index 0000000..fca5862 --- /dev/null +++ b/test/dependency_fixtures/mobile/repodata/repomd.xml @@ -0,0 +1,79 @@ + + + 1480908090 + + 2f5df56b9d899d2d42a4b26c11e34d89080bfab0538c4447a654953952a64551 + f7217b653333498be5ad1b821b6941597a7bf7c5462515aaf76ea8e608b4eee6 + + 1480908089 + 368709 + 3087881 + + + 2e070602e3d696fd265cc6eafceaee328aad9c1ccf3e847806d19b7ed76956aa + daccd368b59651c158f9f9bf5a6a9d8dec48cd2ffd023d8473718676d888cc82 + + 1480908089 + 809090 + 10247237 + + + 748f540172a21ef70c6514fc51197a467f7ae27261cb16a4f867ed2a9a571dcf + de1a132d7a47a3408adb4c8e334b88065c30cdff84fd36c9cfb8953ef678e249 + + 1480908089 + 119726 + 601779 + + + d5ec515cc029e47f85b8da399d9d7d001fbb60f3fc2f4c7ab39cab5df1b358ee + 3953fc24479bde415caecc21726aa005f21e8a38e56047ed82a31e0b92453e31 + + 1480908090 + 720335 + 3217408 + 10 + + + 743e27239e5b928c72f1a31300d80412de705dc5908aa2e7fa3b95b283d23b2f + 59338f338809a52420a897d91ee1a56fac577b927c0457582de96abb2be5a653 + + 1480908090 + 1020269 + 5094400 + 10 + + + 74fe7048599f1ff2aff29b2fca34fda1df9953fad0ca8fedc8c222ac731eafe7 + 245a92d90a9760520ce0cf2dd8d3bf7bd7e8eb644de791b15cea1551b6dffa5b + + 1480908089 + 147127 + 546816 + 10 + + + 41567fd9952d693fcefcaf21ab053ad991b81d59cfb0f87cfdc8ef0270da0e51 + 62b25140ac86ac91270d28da9c5078a5636bdf6baf607e1e00c089e1136ca2ae + + 1480908090 + 2981 + 10408 + + + 6fccecc933a8e700029a971aa5770c7c5a704692399b49c291bc345569099c27 + b33fa4034d4be7a1facd7aa9097930db09991ddd0d2c42d5207a45f58fe370a5 + + 1480908090 + 5439 + 52141 + + + 725f72df1662d3c895553bbea22043638f8e087c9ec062119caba85d7fb99725 + 1aa54e84c4484356b302b3d252c886abf547bcf76d589bbef36cf8ee78de85c5 + + 1480908090 + 5162 + 41389 + + diff --git a/test/suite.py b/test/suite.py new file mode 100644 index 0000000..c2c7cd3 --- /dev/null +++ b/test/suite.py @@ -0,0 +1,37 @@ +#!/usr/bin/python +# Copyright (c) 2000 - 2016 Samsung Electronics Co., Ltd. All rights reserved. +# +# Contact: +# @author Chulwoo Shin +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# Contributors: +# - S-Core Co., Ltd + +import sys +import unittest +from test import test_dependency +from test import test_repodata + + + +#if __name__ == "__main__": +# set test-suite +suite = unittest.TestSuite() +suite.addTests(test_repodata.suite()) +suite.addTests(test_dependency.suite()) + +# run test-suite +result = unittest.TextTestRunner(verbosity=2).run(suite) +sys.exit(not result.wasSuccessful()) diff --git a/test/test_dependency.py b/test/test_dependency.py new file mode 100644 index 0000000..cf9fa0f --- /dev/null +++ b/test/test_dependency.py @@ -0,0 +1,140 @@ +#!/usr/bin/python +# Copyright (c) 2000 - 2016 Samsung Electronics Co., Ltd. All rights reserved. +# +# Contact: +# @author Chulwoo Shin +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# Contributors: +# - S-Core Co., Ltd + +import os +import time +import unittest + +from tic.dependency import analyze_dependency +from tic.parser.repo_parser import RepodataParser +from tic.repo import get_repodata_from_repos + +current_milli_time = lambda: int(round(time.time() * 1000)) +CWD = os.path.dirname(__file__) or '.' +TEST_REPODATA_LOC=os.path.join(CWD, 'dependency_fixtures') +DEFAULT_CACHEDIR='/var/tmp/tic-core/cached' + +def suite(): + # return unittest.makeSuite(DependencyTest, ['testsun1', 'testTrue']) + return unittest.makeSuite(DependencyTest) + +class DependencyTest(unittest.TestCase): + def setUp(self): + # test environment setup + self.repo_list = [{'name': 'local_base', + 'url': 'file:/' + TEST_REPODATA_LOC + '/base'}, + {'name': 'local_mobile', + 'url': 'file:/' + TEST_REPODATA_LOC + '/mobile'}] + + self.repodata_list = get_repodata_from_repos(self.repo_list, DEFAULT_CACHEDIR) + + self.pkg_group = None + try: + repo_parser = RepodataParser(self.repodata_list) + self.pkg_group = repo_parser.parse() + except Exception as e: + raise self.failureException + + + def tearDown(self): + # clear environment after test + del self.repo_list + del self.pkg_group + + def test_parse(self): + self.assertNotEqual(self.pkg_group, None) + self.assertNotEqual(self.pkg_group['pkg_list'], None) + self.assertNotEqual(self.pkg_group['pkg2id'], None) + self.assertEqual(len(self.pkg_group['pkg_list']), len(self.pkg_group['pkg2id'])) + + pkg_list = self.pkg_group['pkg_list'] + pkg2id = self.pkg_group['pkg2id'] + + # Consistency checks between pkg_list and pkg2id + for pkg_id in range(len(pkg_list)): + pkg_info = pkg_list[pkg_id] + self.assertEqual(pkg_id, pkg2id.get(pkg_info['name'])) + + def test_dependency(self): + # 1st package install-depdency analysis + analyze_dependency(self.pkg_group) + # print('time:', current_milli_time() - start_time) + pkg_list = self.pkg_group['pkg_list'] + + # 2nd package install-depdency analysis for test (using bruteforce) + test_repo_parser = RepodataParser(self.repodata_list) + test_pkg_group = test_repo_parser.parse() + test_pkg_list = test_pkg_group.get('pkg_list') + test_pkg2id = test_pkg_group.get('pkg2id') + + count = 1 + visited = [0]*len(test_pkg_list) + for pkg_id in range(len(test_pkg_list)): + visited[pkg_id] = count + dep_set = self.dep_dfs(count, pkg_id, test_pkg_list, visited) + test_pkg_list[pkg_id]['dependency'] = list(dep_set) + count += 1 + # print('time:', current_milli_time() - start_time) + + # compares the result of 1st and 2nd + if len(pkg_list) != len(test_pkg_list): + raise self.failureException + + for pkg_id in range(len(pkg_list)): + pkg_info = pkg_list[pkg_id] + test_pkg_info = test_pkg_list[test_pkg2id[pkg_info['name']]] + + # package check + if pkg_info['name'] != test_pkg_info['name']: + raise self.failureException + + # dependency count + if len(pkg_info['dependency']) != len(test_pkg_info['dependency']): + print('pkg_info_1:', pkg_info['dependency']) + print('pkg_info_2:', test_pkg_info['dependency']) + raise self.failureException + + # dependency validation between pkg_info and test_pkg_info + for dep in test_pkg_info.get('dependency'): + if dep not in pkg_info['dependency']: + print(dep, 'does not exist') + raise self.failureException + + def dep_dfs(self, count, pkg_id, pkg_list, visited): + dep_set = set([pkg_list[pkg_id]['name']]) + + if pkg_list[pkg_id].get('requires'): + for req in pkg_list[pkg_id].get('requires'): + req_id = req.get('id') + if req_id is not None: + if visited[req_id] < count: + visited[req_id] = count + dep_set.update(self.dep_dfs(count, req_id, pkg_list, visited)) + else: + pass + #TODO: package doest not exist + #print('def_dfs::', req['name'], 'is not exist (in dep_analysis)') + + return dep_set + +if __name__ == "__main__": + #import sys;sys.argv = ['', 'Test.testName'] + unittest.main() \ No newline at end of file diff --git a/test/test_repodata.py b/test/test_repodata.py new file mode 100644 index 0000000..fc36f8b --- /dev/null +++ b/test/test_repodata.py @@ -0,0 +1,77 @@ +#!/usr/bin/python +# Copyright (c) 2000 - 2016 Samsung Electronics Co., Ltd. All rights reserved. +# +# Contact: +# @author Chulwoo Shin +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# Contributors: +# - S-Core Co., Ltd + +import os +import unittest +from tic.repo import get_repodata_from_repos + +CWD = os.path.dirname(__file__) or '.' +TEST_REPODATA_LOC=os.path.join(CWD, 'dependency_fixtures') +DEFAULT_CACHEDIR='/var/tmp/tic-core/cached' + +def suite(): + return unittest.makeSuite(RepodataTest) + +class RepodataTest(unittest.TestCase): + def setUp(self): + # test environment setup + self.local_repo = [{'name': 'local_base', + 'url': 'file:/' + TEST_REPODATA_LOC + '/base'}, + {'name': 'local_mobile', + 'url': 'file:/' + TEST_REPODATA_LOC + '/mobile'}] + + self.remote_repo = [{'name': 'local_base', + 'url': 'http://download.tizen.org/snapshots/tizen/base/latest/repos/arm64/packages'}, + {'name': 'local_mobile', + 'url': 'http://download.tizen.org/snapshots/tizen/mobile/latest/repos/arm64-wayland/packages'}] + + def tearDown(self): + # clear environment after test + del self.local_repo + del self.remote_repo + + def test_local_repodata(self): + repodata_list = get_repodata_from_repos(self.local_repo, DEFAULT_CACHEDIR) + + for repo_info in repodata_list: + self.assertNotEqual(repo_info, None) + self.assertNotEqual(repo_info.get('repomd'), None) + self.assertNotEqual(repo_info.get('primary'), None) + if not os.path.exists(repo_info.get('repomd')): + raise self.failureException + if not os.path.exists(repo_info.get('primary')): + raise self.failureException + + def test_remote_repodata(self): + repodata_list = get_repodata_from_repos(self.remote_repo, DEFAULT_CACHEDIR) + + for repo_info in repodata_list: + self.assertNotEqual(repo_info, None) + self.assertNotEqual(repo_info.get('repomd'), None) + self.assertNotEqual(repo_info.get('primary'), None) + if not os.path.exists(repo_info.get('repomd')): + raise self.failureException + if not os.path.exists(repo_info.get('primary')): + raise self.failureException + +if __name__ == "__main__": + #import sys;sys.argv = ['', 'Test.testName'] + unittest.main() \ No newline at end of file diff --git a/tic/__init__.py b/tic/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tic/command.py b/tic/command.py new file mode 100644 index 0000000..51f41cc --- /dev/null +++ b/tic/command.py @@ -0,0 +1,141 @@ +#!/usr/bin/python +# Copyright (c) 2000 - 2016 Samsung Electronics Co., Ltd. All rights reserved. +# +# Contact: +# @author Chulwoo Shin +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# Contributors: +# - S-Core Co., Ltd + +import os +import logging + +from tic.dependency import analyze_dependency, get_installed_packages +from tic.parser.recipe_parser import get_default_recipe, convert_recipe_to_yaml +from tic.parser.repo_parser import RepodataParser +from tic.parser.view_parser import make_view_data +from tic.utils.error import TICError +from tic.utils.file import copyfile +from tic.repo import get_repodata_from_repos +from tic.pykickstarter import KSoption, kswriter +from tic.utils import process + + +DEFAULT_CACHEDIR='/var/tmp/tic-core/cached' +DEFAULT_KICKSTARTDIR='/var/tmp/tic-core/kickstart' + +def analyze(repo_list, recipe_list=None): + logger = logging.getLogger(__name__) + + if not repo_list and not recipe_list: + raise TICError('No repositories defined') + + repos = [] + recipe = None + #TODO Repository check + # using default recipe (Temporary Code) + if recipe_list and recipe_list[0] == 'default': + recipe = get_default_recipe() + for repo_url in recipe.get('Repositories'): + repos.append({'name': repo_url.get('Name'), + 'url': repo_url.get('Url')}) + else: + number=1 + for repo_url in repo_list: + repos.append({'name': 'repository_%d' % number, + 'url': repo_url}) + number = number + 1 + + #Download repodata from repositories (Remote/Local) + repoinfo = get_repodata_from_repos(repos, DEFAULT_CACHEDIR) + + # Parse the xml files for the analysis of package (.rpm) + repo_parser = RepodataParser(repoinfo) + pkg_group = repo_parser.parse() + logger.info('pkg_list: %d, pkg2id: %d', len(pkg_group['pkg_list']), len(pkg_group['pkg2id'])) + + # package install-dependency analysis + analyze_dependency(pkg_group) + # Make a data for TIC (Tizen image creation) + view_data = make_view_data(pkg_group) + inst_packages = get_installed_packages(recipe, repoinfo, pkg_group) + + result = {'packages': view_data, + 'repos': repos, + 'defaultpackages': inst_packages} + + return result + +def exports(export_type, recipe, packages, outdir): + logger = logging.getLogger(__name__) + + #TODO validation should be checked before request + if not export_type: + export_type='ks' + logger.info('set default export format(.ks)') + + if not recipe: + raise TICError('No recipe defined') + if not packages or type(packages) is not list: + raise TICError('No packages defined') + + #TODO recipe parsing + # Temporary code for 1st prototype release + if recipe.get('name') == 'default': + recipe = get_default_recipe() + config = recipe.get('Configurations')[0] + for key in ['Default', config['Platform']]: + recipe[key]['Groups']=[] + recipe[key]['ExtraPackages']=[] + config['Groups']=[] + config['ExtraPackages'] = packages + else: + raise TICError('No recipes defined') + + # create the yaml + yaml_info = convert_recipe_to_yaml(recipe, DEFAULT_KICKSTARTDIR) + + # create kickstart(.ks) using kickstarter tool + options = KSoption(yaml_info.configs, yaml_info.repos, yaml_info.cachedir) + kswriter(options) + + # check whether the ks exists + baseline=recipe['Default'].get('Baseline') + ksname= ''.join([config.get('FileName'), '.ks']) + kspath=os.path.join(yaml_info.cachedir, baseline, ksname) + if not os.path.exists(kspath): + raise TICError('No ks file was created from kickstarter') + + # copy the ks to output directory + output=copyfile(kspath, outdir) + logger.info('copy the ks file from %s to dst:%s', kspath, output) + + return output + +def createimage(recipes, ksfile, outdir): + logger = logging.getLogger(__name__) + + if recipes: + logger.info('the recipes option is not yet supported') + return + + if not os.path.exists(ksfile) or os.path.isdir(ksfile): + raise TICError('kickstart file does not exist') + + mic_command=['mic', 'cr', 'auto', ksfile] + if outdir: + mic_command.append('--outdir=%s' % outdir) + + process.run(mic_command, 2) diff --git a/tic/dependency.py b/tic/dependency.py new file mode 100644 index 0000000..32b8994 --- /dev/null +++ b/tic/dependency.py @@ -0,0 +1,141 @@ +#!/usr/bin/python +# Copyright (c) 2000 - 2016 Samsung Electronics Co., Ltd. All rights reserved. +# +# Contact: +# @author Chulwoo Shin +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# Contributors: +# - S-Core Co., Ltd + +from lxml import etree +from tic.utils.error import TICError +import logging + +def analyze_dependency(pkg_group): + + def dep_dfs(pkg_id): + logger = logging.getLogger(__name__) + if pkg_list[pkg_id].get('dependency') is not None: + return pkg_list[pkg_id].get('dependency') + + number[0] += 1 + visited[pkg_id] = number[0] + min_num[pkg_id] = number[0] + stack.append(pkg_id) + + dep_set = set([pkg_list[pkg_id]['name']]) + + if pkg_list[pkg_id].get('requires'): + for req in pkg_list[pkg_id].get('requires'): + req_id = req.get('id') + if req_id is not None: + if scc_list[req_id] > 0: + dep_set.update(pkg_list[req_id].get('dependency')) + continue + + if visited[req_id] == 0: + dep_set.update(dep_dfs(req_id)) + + min_num[pkg_id] = min(min_num[pkg_id], min_num[req_id]) + else: + #TODO: package does not exist + #logger.warning('%s does not exist in repo', req['name']) + pass + + if min_num[pkg_id] == visited[pkg_id]: + # scc (string connected components) + make_scc(pkg_id, list(dep_set)) + + return dep_set + + def make_scc(pkg_id, dep_list): + p_id = 0 + scc_num[0] += 1 + # stack is not empty + while stack: + p_id = stack.pop() + scc_list[p_id] = scc_num[0] + pkg_list[p_id]['dependency'] = dep_list + if pkg_id == p_id: + break + + def analyze(): + for pkg_id in range(len(pkg_list)): + if visited[pkg_id] == 0: + dep_dfs(pkg_id) + + #TODO: Exception handling + if not pkg_group: + return None + + # package install-dependency analysis + pkg_list = pkg_group.get('pkg_list') + number = [0] + scc_num = [0] + visited = [0]*len(pkg_list) + min_num = [0]*len(pkg_list) + scc_list = [0]*len(pkg_list) + stack = [] + + return analyze() + +def get_installed_packages(recipe, repoinfo, pkg_group): + logger = logging.getLogger(__name__) + + if not recipe or not repoinfo: + return [] + + default = recipe.get('Default') + config = recipe.get('Configurations')[0] + platform_name = config.get('Platform') + platform = recipe.get(platform_name) + + # check groups/extraPackages + group_set = set([]) + extrapkg_set = set([]) + for g in [default, platform, config]: + if g.has_key('Groups'): + group_set.update(g.get('Groups')) + if g.has_key('ExtraPackages'): + extrapkg_set.update(g.get('ExtraPackages')) + group_dict = dict.fromkeys(group_set) + + # parsing group.xml + try: + tree = etree.parse(repoinfo[0].get('comps')) + root = tree.getroot() + except etree.XMLSyntaxError as e: + raise TICError('primary.xml syntax error. %s', e) + + # Convert groups to packages + pkg_set = set([]) + for elm in root.findall('group'): + group_name = elm.find('name').text + if group_dict.has_key(group_name): + pkglist = elm.find('packagelist') + plist = [] + for pkgreq in pkglist.findall('packagereq'): + plist.append(pkgreq.text) + pkg_set.update(set(plist)) + + # set up required package from group packages + pkg2id = pkg_group.get('pkg2id') + pkg_list = pkg_group.get('pkg_list') + for pkg in pkg_set: + pkg_id = pkg2id.get(pkg) + if pkg_id and pkg_list[pkg_id].get('dependency'): + extrapkg_set.update(set(pkg_list[pkg_id].get('dependency'))) + + return list(extrapkg_set) \ No newline at end of file diff --git a/tic/parser/__init__.py b/tic/parser/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tic/parser/recipe_parser.py b/tic/parser/recipe_parser.py new file mode 100644 index 0000000..e9049d4 --- /dev/null +++ b/tic/parser/recipe_parser.py @@ -0,0 +1,175 @@ +#!/usr/bin/python +# Copyright (c) 2000 - 2016 Samsung Electronics Co., Ltd. All rights reserved. +# +# Contact: +# @author Chulwoo Shin +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# Contributors: +# - S-Core Co., Ltd + +import collections +from datetime import datetime +import logging +import os +from tic.utils import error +from tic.utils.file import write, make_dirs +import yaml + + +def get_default_recipe(): + recipe = dict( + Default=dict( + Baseline= 'tizen-3.0', + Active= True, + Mic2Options= '-f raw --fstab=uuid --copy-kernel --compress-disk-image=bz2 --generate-bmap', + Part='mobile-mbr', + Language= 'en_US.UTF-8', + Keyboard= 'us', + Timezone= 'Asia/Seoul', + RootPass= 'tizen', + DefaultUser= 'guest', + DefaultUserPass= 'tizen', + BootLoader= True, + BootloaderAppend= "rw vga=current splash rootwait rootfstype=ext4 plymouth.enable=0", + BootloaderTimeout= 3, + BootloaderOptions= '--ptable=gpt --menus="install:Wipe and Install:systemd.unit=system-installer.service:test"', + StartX= False, + Desktop= 'None', + SaveRepos= False, + UserGroups= "audio,video" + ), + Emulator64wayland=dict( + Part='mobile-mbr', + UserGroups='audio,video', + Groups=[ + 'Generic Base', + 'Mobile Base', + 'Mobile Console Tools', + 'Mobile Adaptation', + 'Mobile Wayland', + 'Mobile Middleware', + 'Mobile Applications', + 'Generic Multimedia', + 'Mobile Multimedia', + 'Generic Desktop Applications', + 'Mobile Dali', + 'Mobile EFL', + 'Mobile Enlightenment', + 'Mobile Input Framework', + 'Mobile Connectivity Framework', + 'Mobile Bluetooth', + 'Mobile Web Framework', + 'Mobile Telephony'], + PostScripts=[], + Repos= [], + NoChrootScripts=[] + ), + Configurations=[ + dict( + Name='mobile-emulator64-wayland', + Architecture='x86_64', + Schedule= "*", + Active= True, + Platform= 'Emulator64wayland', + Part= 'mobile-2parts-emulator', + Mic2Options= '-f loop --pack-to=@NAME@.tar.gz', + FileName= 'mobile-emulator64-wayland', + Repos=['mobile-emulator64-wayland', 'base_emulator64'], + Groups=['Mobile Adaptation Emulator'], + ExtraPackages= [], + RemovePackages=[] + ) + ], + Repositories=[ + dict(Name='mobile-emulator64-wayland', + Url='http://download.tizen.org/snapshots/tizen/mobile/latest/repos/emulator64-wayland/packages/', + Options='--ssl_verify=no'), + dict(Name='base_emulator64', + Url='http://download.tizen.org/snapshots/tizen/base/latest/repos/emulator64/packages/', + Options='--ssl_verify=no') + ], + Partitions=[ + dict(Name='mobile-mbr', + Contents='part / --fstype="ext4" --size=3584 --ondisk=sda --active --label platform --fsoptions=defaults,noatime'), + dict(Name= 'mobile-2parts-emulator', + Contents='part / --size=2000 --ondisk=sda --fstype=ext4 --label=emulator-rootfs\npart /opt/ --size=2000 --ondisk=sda --fstype=ext4 --label=emulator-sysdata') + ] + ) + return recipe + +def load_yaml(path): + try: + with file(path) as f: + return yaml.load(f) + except IOError: + raise error.TICError('cannot read meta file: %s' % path) + except: + raise error.TICError('yaml format error of meta file: %s' % path) + + +def convert_recipe_to_yaml(recipe, filepath): + logger = logging.getLogger(__name__) + + # config.yaml + config = dict(Default=None, Configurations=[]) + config['Default'] = recipe.get('Default') + # targets (only one target) + config['Configurations'].append(recipe.get('Configurations')[0]) + platform_name = config['Configurations'][0].get('Platform') + config[platform_name] = recipe.get(platform_name) + + dir_path = os.path.join(filepath, datetime.now().strftime('%Y%m%d%H%M%S%f')) + make_dirs(dir_path) + logger.info('kickstart cache dir=%s' % dir_path) + + yamlinfo = YamlInfo(dir_path, + os.path.join(dir_path, 'configs.yaml'), + os.path.join(dir_path, 'repos.yaml')) + + # configs.yaml + with open(yamlinfo.configs, 'w') as outfile: + yaml.dump(config, outfile, default_flow_style=False) + + # repo.yaml + if 'Repositories' in recipe: + repos = {} + repos['Repositories'] = recipe['Repositories'] + with open(yamlinfo.repos, 'w') as outfile: + yaml.dump(repos, outfile, default_flow_style=False) + + # partition info + if 'Partitions' in recipe: + for partition in recipe.get('Partitions'): + partition_path = os.path.join(dir_path, 'partitions') + file_name = partition.get('Name') + temp = os.path.join(partition_path, file_name) + write(temp, partition['Contents']) + + # script.post + if 'PostScripts' in recipe: + for script in recipe.get('PostScripts'): + script_path = os.path.join(dir_path, 'scripts') + script_type = script.get('Type') + if script_type and script_type == 'nochroot': + file_name = '%s.nochroot' % script.get('Name') + else: + file_name = '%s.post' % script.get('Name') + write(os.path.join(script_path, file_name), script['Contents']) + + return yamlinfo + +YamlType = collections.namedtuple('YamlInfo', 'cachedir, configs, repos') +def YamlInfo(cachedir, configs, repos): + return YamlType(cachedir, configs, repos) \ No newline at end of file diff --git a/tic/parser/repo_parser.py b/tic/parser/repo_parser.py new file mode 100644 index 0000000..80bccc0 --- /dev/null +++ b/tic/parser/repo_parser.py @@ -0,0 +1,233 @@ +#!/usr/bin/python +# Copyright (c) 2000 - 2016 Samsung Electronics Co., Ltd. All rights reserved. +# +# Contact: +# @author Chulwoo Shin +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# Contributors: +# - S-Core Co., Ltd + +from lxml import etree +from tic.utils.error import TICError +import os +import logging +import re + +class RepodataParser(object): + + def __init__(self, repodata_list): + self.repodata_list = repodata_list + + def _xml_parse(self, pkg_group, root, tag_dic): + logger = logging.getLogger(__name__) + meta_prefix = 'building-block' + meta_prefix_root = 'building-block-root-' + meta_prefix_sub1 = 'building-block-sub1-' + meta_pattern = re.compile(''.join(['^', meta_prefix, '-(?Proot|sub1|sub2)-(?P.+)']), re.I) + meta_sub1_pattern = re.compile("(?P.+)-(?P.+)") + meta_sub2_pattern = re.compile("(?P.+)-(?P.+)-(?P.+)") + + pkg_list = pkg_group.get('pkg_list') + pkg2id = pkg_group.get('pkg2id') + provides2id = pkg_group.get('provides2id') + file2id = pkg_group.get('file2id') + meta_info = pkg_group.get('meta_info') + + pkg_id = len(pkg_list) + + for pkg in root.findall(tag_dic['package']): + + pkg_name = pkg.findtext(tag_dic['name']) + + # check whether a package is duplicated. + if pkg_name in pkg2id: + #TODO: Apply to policy of duplication + logger.warning('package(%s) is duplicated. exclude this package', pkg_name) + continue + else: + pkg2id[pkg_name] = pkg_id + + pkg_info = {} + pkg_info['name'] = pkg_name + pkg_info['text'] = pkg_name + + # Parsing meta-pkg using meta naming rule + meta_match = meta_pattern.search(pkg_info['name']) + if meta_match is not None: + #print(meta_match.group(0), ', ', meta_match.group('meta'), ', ', meta_match.group('pkgname')) + if meta_match.group('meta') == 'root': + meta_info['root'].append([pkg_info['name']]) + pkg_info['meta'] = 'root' + elif meta_match.group('meta') == 'sub1': + sub1_match = meta_sub1_pattern.search(meta_match.group('pkgname')) + meta_info['sub1'].append([pkg_info['name'], + ''.join([meta_prefix_root, sub1_match.group('root')])]) + pkg_info['meta'] = 'sub1' + elif meta_match.group('meta') == 'sub2': + sub2_match = meta_sub2_pattern.search(meta_match.group('pkgname')) + meta_info['sub2'].append([pkg_info['name'], + ''.join([meta_prefix_root, sub2_match.group('root')]), + ''.join([meta_prefix_sub1, sub2_match.group('root'),'-', sub2_match.group('sub1')])]) + pkg_info['meta'] = 'sub2' + pkg_info['nodes'] = [] + + pkg_info['arch'] = pkg.findtext(tag_dic['arch']) + pkg_info['version'] = pkg.find(tag_dic['version']).attrib['ver'] + pkg_info['checksum'] = pkg.findtext(tag_dic['checksum']) + pkg_info['summary'] = pkg.findtext(tag_dic['summary']) + pkg_info['description'] = pkg.findtext(tag_dic['description']) + pkg_info['location'] = pkg.find(tag_dic['location']).attrib['href'] + size_tag = pkg.find(tag_dic['size']) + pkg_info['size'] = size_tag.attrib['package'] + pkg_info['installed'] = size_tag.attrib['installed'] + + format_tag = pkg.find(tag_dic['format']) + if(format_tag is not None): + requires_tag = format_tag.find(tag_dic['requires']) + if requires_tag is not None: + dep_list = [] + for rpm in requires_tag: + req_rpm = {} + req_rpm['name'] = rpm.attrib['name'] + if 'ver' in rpm.attrib: + req_rpm['ver'] = rpm.attrib['ver'] + if 'flags' in rpm.attrib: + req_rpm['flags'] = rpm.attrib['flags'] + dep_list.append(req_rpm) + pkg_info['requires'] = dep_list; + provides_tag = format_tag.find(tag_dic['provides']) + if provides_tag is not None: + dep_list = [] + for rpm in provides_tag: + provide = {} + provide['id'] = pkg_id + provide['name'] = rpm.attrib['name'] + if 'ver' in rpm.attrib: + provide['ver'] = rpm.attrib['ver'] + if 'flags' in rpm.attrib: + provide['flags'] = rpm.attrib['flags'] + + if rpm.attrib['name'] in provides2id: + provides2id[rpm.attrib['name']].append(provide) + else: + provides2id[rpm.attrib['name']] = [provide] + dep_list.append(rpm.attrib['name']) + pkg_info['provides'] = dep_list; + conflicts_tag = format_tag.find(tag_dic['conflicts']) + if conflicts_tag is not None: + dep_list = [] + for rpm in conflicts_tag: + dep_list.append(rpm.attrib['name']) + pkg_info['conflicts'] = dep_list; + suggests_tag = format_tag.find(tag_dic['suggests']) + if suggests_tag is not None: + dep_list = [] + for rpm in suggests_tag: + dep_list.append(rpm.attrib['name']) + pkg_info['suggests'] = dep_list; + file_tag = format_tag.find(tag_dic['file']) + if file_tag is not None: + dep_list = [] + for file in format_tag.findall(tag_dic['file']): + f = {} + f['id'] = pkg_id + f['name'] = file.text + if file.text in file2id: + file2id[file.text].append(f) + else: + file2id[file.text] = [f] + dep_list.append(file.text) + pkg_info['file'] = dep_list; + pkg_list.append(pkg_info) + pkg_id += 1 + + def _prepare_requires_id(self, pkg_group): + logger = logging.getLogger(__name__) + pkg_list = pkg_group.get('pkg_list') + pkg2id = pkg_group.get('pkg2id') + provides2id = pkg_group.get('provides2id') + file2id = pkg_group.get('file2id') + + for pkg_id in range(len(pkg_list)): + requires = pkg_list[pkg_id].get('requires') + if requires is not None: + for req_info in requires: + req_name = req_info['name'] + #TODO: Determine dependency search order + if req_name in provides2id: + #TODO: Select a package in provides (version?) + req_info['id'] = provides2id[req_name][0]['id'] + elif req_name in pkg2id: + req_info['id'] = pkg2id[req_name] + elif req_name in file2id: + req_info['id'] = file2id[req_name][0]['id'] + else: + #TODO: Exception Check + # the dependent package does not exist. + logger.warning('"%s" required by "%s" does not exist.', req_name, pkg_list[pkg_id].get('name')) + + def _get_tagname(self, root): + tags = {} + # xmlns = re.sub('metadata$', '', root.tag) + tags['metadata'] = '{%s}metadata' % root.nsmap[None] + tags['package'] = '{%s}package' % root.nsmap[None] + tags['name'] = '{%s}name' % root.nsmap[None] + tags['arch'] = '{%s}arch' % root.nsmap[None] + tags['version'] = '{%s}version' % root.nsmap[None] + tags['checksum'] = '{%s}checksum' % root.nsmap[None] + tags['summary'] = '{%s}summary' % root.nsmap[None] + tags['description'] = '{%s}description' % root.nsmap[None] + tags['location'] = '{%s}location' % root.nsmap[None] + tags['size'] = '{%s}size' % root.nsmap[None] + tags['format'] = '{%s}format' % root.nsmap[None] + tags['requires'] = '{%s}requires' % root.nsmap['rpm'] + tags['provides'] = '{%s}provides' % root.nsmap['rpm'] + tags['conflicts'] = '{%s}conflicts' % root.nsmap['rpm'] + tags['suggests'] = '{%s}suggests' % root.nsmap['rpm'] + tags['file'] = '{%s}file' % root.nsmap[None] + return tags + + def parse(self): + if not self.repodata_list: + return None + + xml_list = [] + try: + for repodata in self.repodata_list: + tree = etree.parse(repodata['primary']) + xml_list.append(tree.getroot()) + except etree.XMLSyntaxError as e: + raise TICError('primary.xml syntax error. %s', e) + + tag_dic = self._get_tagname(xml_list[0]) + + #TODO: temporary code (should be deleted) + meta_string='building-block-root-metapkgaarch646f74666eb89e1addc4ce75e25f3e639bbfdd8798fc848a6b7027501070567dcfSimple DirectMedia LayerThis is the Simple DirectMedia Layer, a generic API that provides low level access to audio, keyboard, mouse, and display framebuffer across multiple platforms.http://www.libsdl.org/building-block-sub1-metapkg-extsub1aarch646f74666eb89e1addc4ce75e25f3e639bbfdd8798fc848a6b7027501070567dcfsub1-extensionThis is the Simple DirectMedia Layer, a generic API that provides low level access to audio, keyboard, mouse, and display framebuffer across multiple platforms.http://www.libsdl.org/building-block-sub2-metapkg-extsub1-exts1sub1aarch646f74666eb89e1addc4ce75e25f3e639bbfdd8798fc848a6b7027501070567dcfsub2-extensionThis is the Simple DirectMedia Layer, a generic API that provides low level access to audio, keyboard, mouse, and display framebuffer across multiple platforms.http://www.libsdl.org/building-block-sub2-metapkg-extsub1-exts1sub2aarch646f74666eb89e1addc4ce75e25f3e639bbfdd8798fc848a6b7027501070567dcfsub2-extensionThis is the Simple DirectMedia Layer, a generic API that provides low level access to audio, keyboard, mouse, and display framebuffer across multiple platforms.http://www.libsdl.org/building-block-sub1-metapkg-extsub2aarch646f74666eb89e1addc4ce75e25f3e639bbfdd8798fc848a6b7027501070567dcfsub1-extensionThis is the Simple DirectMedia Layer, a generic API that provides low level access to audio, keyboard, mouse, and display framebuffer across multiple platforms.http://www.libsdl.org/building-block-sub2-metapkg-extsub2-exts2sub1aarch646f74666eb89e1addc4ce75e25f3e639bbfdd8798fc848a6b7027501070567dcfsub2-extensionThis is the Simple DirectMedia Layer, a generic API that provides low level access to audio, keyboard, mouse, and display framebuffer across multiple platforms.http://www.libsdl.org/building-block-sub2-metapkg-extsub2-exts2sub2aarch646f74666eb89e1addc4ce75e25f3e639bbfdd8798fc848a6b7027501070567dcfsub2-extensionThis is the Simple DirectMedia Layer, a generic API that provides low level access to audio, keyboard, mouse, and display framebuffer across multiple platforms.http://www.libsdl.org/' + xml_list.append(etree.fromstring(meta_string)) + + pkg_group = dict(pkg_list=[], + pkg2id={}, + provides2id={}, + file2id={}, + meta_info=dict(root=[], sub1=[], sub2=[])) + + # parses the repodata (primary.xml) + for xml_root in xml_list: + self._xml_parse(pkg_group, xml_root, tag_dic) + + # set the requires id + self._prepare_requires_id(pkg_group) + + return pkg_group \ No newline at end of file diff --git a/tic/parser/view_parser.py b/tic/parser/view_parser.py new file mode 100644 index 0000000..261027b --- /dev/null +++ b/tic/parser/view_parser.py @@ -0,0 +1,90 @@ +from operator import itemgetter + + +def make_view_data(pkg_group): + + def set_meta_require(pkg_info): + pkg_nodes = pkg_info.get('nodes') + for child in pkg_nodes: + if 'meta' in child: + # meta-pkg + refer_count[pkg2id[child['name']]] += 1 + set_meta_require(child) + + req_list = pkg_info.get('requires') + if req_list is not None: + for req in req_list: + req_id = req.get('id') + if req_id is not None: + if 'meta' not in pkg_list[req_id]: + pkg_nodes.append(pkg_list[req_id]) + refer_count[req_id] += 1 + else: + #TODO: The meta-pkg of the other group are excluded. + pass + else: + #TODO: the dependent package does not exist. + pass + + view_data = [] + + if not pkg_group: + return view_data + + pkg_list = pkg_group['pkg_list'] + pkg2id = pkg_group.get('pkg2id') + refer_count = [0] * len(pkg_list) + + # sort by pkg_name ([0]:name, [1]:root, [2]:sub1) + meta_info = pkg_group.get('meta_info') + meta_info['root'] = sorted(meta_info['root'], key=itemgetter(0)) + meta_info['sub1'] = sorted(meta_info['sub1'], key=itemgetter(0)) + meta_info['sub2'] = sorted(meta_info['sub2'], key=itemgetter(0)) + + # make tree of meta information + for root in meta_info['root']: + pkg_id = pkg2id[root[0]] + view_data.append(pkg_list[pkg_id]) + + for sub1 in meta_info['sub1']: + pkg_id = pkg2id[sub1[0]] + if sub1[1] in pkg2id: + root_id = pkg2id[sub1[1]] + root_nodes = pkg_list[root_id].get('nodes') + root_nodes.append(pkg_list[pkg_id]) + else: + # If root-meta doest not exist, sub1 is added to top-level + view_data.append(pkg_list[pkg_id]) + + for sub2 in meta_info['sub2']: + pkg_id = pkg2id[sub2[0]] + if sub2[1] in pkg2id: # root + if sub2[2] in pkg2id: # sub1 + sub1_id = pkg2id[sub2[2]] + sub1_nodes = pkg_list[sub1_id].get('nodes') + sub1_nodes.append(pkg_list[pkg_id]) + else: + # If sub1-meta doest not exist, sub2 is added to child of root-meta + root_id = pkg2id[sub2[1]] + root_nodes = pkg_list[root_id].get('nodes') + root_nodes.append(pkg_list[pkg_id]) + else: + # If root-meta doest not exist, sub2 is added to top-level + view_data.append(pkg_list[pkg_id]) + + for meta_pkg in view_data: + refer_count[pkg2id[meta_pkg['name']]] += 1 + set_meta_require(meta_pkg) + + misc_info = {} + misc_info['text'] = 'MISC' + misc_info['nodes'] = [] + + for pkg_id in range(len(pkg_list)): + if refer_count[pkg_id] == 0: + misc_info['nodes'].append(pkg_list[pkg_id]) + + view_data.append(misc_info) + + return view_data + diff --git a/tic/pykickstarter.py b/tic/pykickstarter.py new file mode 100644 index 0000000..2e8d246 --- /dev/null +++ b/tic/pykickstarter.py @@ -0,0 +1,47 @@ +#!/usr/bin/python +# Copyright (c) 2000 - 2016 Samsung Electronics Co., Ltd. All rights reserved. +# +# Contact: +# @author Chulwoo Shin +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# Contributors: +# - S-Core Co., Ltd + +from tic.utils.error import TICError +from kswriter.KSWriter import KSWriter, KSMetaError + + +class KSoption: + def __init__(self, configs, repos, outdir): + self.configsfile = configs + self.repofile = [repos] + self.target = None + self.external = None + self.outdir = outdir + self.config = None + self.packages = False + self.targetdefs = None + +def kswriter(options): + try: + ks = KSWriter(options.configsfile, options.repofile, options.outdir, options.config, options.packages, options.external, options.targetdefs, options.target) + ks.generate() + except KSMetaError as err: + raise TICError(str(err)) + +if __name__ == "__main__": + print('start') + kswriter() + print('end') \ No newline at end of file diff --git a/tic/pymic.py b/tic/pymic.py new file mode 100644 index 0000000..13a6e31 --- /dev/null +++ b/tic/pymic.py @@ -0,0 +1,71 @@ +#!/usr/bin/python +# Copyright (c) 2000 - 2016 Samsung Electronics Co., Ltd. All rights reserved. +# +# Contact: +# @author Chulwoo Shin +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# Contributors: +# - S-Core Co., Ltd + +import mic.cmd_create + +class MICOptions: + def __init__(self, subcmd, arch, output, ksfile): + # Subcommand + self.subcommand = subcmd + self.interactive = True + self.verbose = None + # Common options + self.ksfile = ksfile + self.logfile = None + self.config = None + self.cachedir = None + self.outdir = output + self.arch = arch + self.release = None + self.record_pkgs = None + self.pkgmgr = None + self.local_pkgs_path = None + self.runtime = None + self.pack_to = None + self.copy_kernel = None + self.install_pkgs = None + self.check_pkgs = [] + self.enabletmpfs = None + self.repourl = [] + self.repo = [] + self.ignore_ksrepo = None + self.strict_mode = None + # sub-command : fs options + self.include_src = False + # sub-command: loop options + self.compress_image = None + self.include_src = None + self.shrink = False + # sub-command: raw options + self.compress_image = None + self.generate_bmap = None + self.fstab_entry = 'uuid' + +def create(options): + mic.cmd_create.main(None, options, None) + +if __name__ == "__main__": + subcommnad = 'loop' + archrecture = 'armv7l' + ksfile = '/home/shinchulwoo/project/image/mobile-wayland-armv7l-tm1.ks' + output = '/home/shinchulwoo/project/image' + options = MICOptions(subcommnad, archrecture, output, ksfile) + create(options) diff --git a/tic/repo.py b/tic/repo.py new file mode 100644 index 0000000..faeb817 --- /dev/null +++ b/tic/repo.py @@ -0,0 +1,155 @@ +#!/usr/bin/python +# Copyright (c) 2000 - 2016 Samsung Electronics Co., Ltd. All rights reserved. +# +# Contact: +# @author Chulwoo Shin +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# Contributors: +# - S-Core Co., Ltd + +import logging +import os +import base64 +import hashlib +import collections +from lxml import etree +from tic.utils import file +from tic.utils import process +from tic.utils.error import TICError +from tic.utils.grabber import myurlgrab + + +def _get_uncompressed_data_from_url(url, filename, proxies): + # download file + filename = myurlgrab(url, filename, proxies) + # Check if file compressed or not + if filename.endswith(".gz"): + decompress_filename = os.path.splitext(filename)[0] + filename = file.decompress_gzip(filename, decompress_filename) + elif filename.endswith(".bz2"): + process.run(['bunzip2', "-f", filename]) + filename = os.path.splitext(filename)[0] + + return filename + +def _get_metadata_from_repo(baseurl, proxies, cachedir, reponame, filename, + sumtype=None, checksum=None): + logger = logging.getLogger(__name__) + url = os.path.join(baseurl, filename) + filename_tmp = str("%s/%s" % (cachedir, os.path.basename(filename))) + if os.path.splitext(filename_tmp)[1] in (".gz", ".bz2"): + filename = os.path.splitext(filename_tmp)[0] + else: + filename = filename_tmp + + if sumtype and checksum and os.path.exists(filename): + if sumtype == 'sha256': + file_checksum = hashlib.sha256(open(filename, 'rb').read()).hexdigest() + elif sumtype == 'md5': + file_checksum = hashlib.md5(open(filename, 'rb').read()).hexdigest() + else: + sumcmd = "%ssum" % sumtype + result = process.run([sumcmd, filename])[1].strip() + file_checksum = result.split()[0] + + if file_checksum and file_checksum == checksum: + logger.info('use a cache file - ' + str(url)) + return filename + + return _get_uncompressed_data_from_url(url, filename_tmp, proxies) + + +def get_repodata_from_repos(repos, cachedir): + my_repodata = [] + for repo in repos: + reponame = repo.get('name') + baseurl = repo.get('url') + cache_dir = os.path.join(cachedir, base64.urlsafe_b64encode(baseurl)) + cache_file = os.path.join(cache_dir, 'repomd.xml') + + # make directory for caching + file.make_dirs(cache_dir) + + #TODO: support proxy + url = os.path.join(baseurl, 'repodata/repomd.xml') + repomd = myurlgrab(url, cache_file, None) + + try: + tree = etree.parse(repomd) + root = tree.getroot() + except etree.XMLSyntaxError: + raise TICError("repomd.xml syntax error.") + + ns = root.tag + ns = ns[0:ns.rindex("}")+1] + + filepaths = {} + checksums = {} + sumtypes = {} + + for elm in root.findall("%sdata" % ns): + if elm.attrib['type'] == 'patterns': + filepaths['patterns'] = elm.find("%slocation" % ns).attrib['href'] + checksums['patterns'] = elm.find("%sopen-checksum" % ns).text + sumtypes['patterns'] = elm.find("%sopen-checksum" % ns).attrib['type'] + elif elm.attrib['type'] == 'group': + filepaths['comps'] = elm.find("%slocation" % ns).attrib['href'] + checksums['comps'] = elm.find("%sopen-checksum" % ns).text + sumtypes['comps'] = elm.find("%sopen-checksum" % ns).attrib['type'] + elif elm.attrib["type"] == 'primary': + filepaths['primary'] = elm.find("%slocation" % ns).attrib['href'] + checksums['primary'] = elm.find("%sopen-checksum" % ns).text + sumtypes['primary'] = elm.find("%sopen-checksum" % ns).attrib['type'] + + for item in ("primary", "patterns", "comps"): + if item not in filepaths: + filepaths[item] = None + continue + filepaths[item] = _get_metadata_from_repo(baseurl, + None, + cache_dir, + reponame, + filepaths[item], + sumtypes[item], + checksums[item]) + + my_repodata.append({"name":reponame, + "baseurl":baseurl, + "repomd":repomd, + "primary":filepaths['primary'], + "cachedir":cache_dir, + "proxies":None, + "patterns":filepaths['patterns'], + "comps":filepaths['comps']}) + + return my_repodata + + +RepoType = collections.namedtuple('Repo', 'name, url') +def Repo(name, baseurl): + return RepoType(name, baseurl) + +if __name__ == '__main__': + repo_url_1 = 'https://download.tizen.org/snapshots/tizen/base/latest/repos/arm64/packagesaaa' + repo_url_2 = 'https://download.tizen.org/snapshots/tizen/mobile/latest/repos/arm64-wayland/packages' + repos = [] + repos.append(Repo('repo_1', repo_url_1)) + repos.append(Repo('repo_2', repo_url_2)) + cachedir = '/var/tmp/tic-core/cached' + repodata = get_repodata_from_repos(repos, cachedir) + print(repodata) + + + diff --git a/tic/server/__init__.py b/tic/server/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tic/server/tic_server.py b/tic/server/tic_server.py new file mode 100644 index 0000000..504f730 --- /dev/null +++ b/tic/server/tic_server.py @@ -0,0 +1,97 @@ +import collections +from flask import Flask +from flask import Response +from flask.globals import request +from flask.helpers import url_for +import json +import os +import logging +from tic import command +from tic.utils import error +from flask_cors import CORS + +app = Flask(__name__) +CORS(app) + +@app.route('/') +def index(): + return ''' + TIC-Core web server +

TIC-Core web server is working

+ ''' + +@app.route('/analysis', methods=['POST']) +def analysis(): + try: + logger = logging.getLogger(__name__) + logger.info('%s - %s %s : data=%s' % (request.remote_addr, request.method, request.path, request.data)) + repo_info = json.loads(request.data) + view_data = command.analyze(repo_info.get('repos'), repo_info.get('recipes')) + resp = makeresponse(view_data, None) + except error.TICError as err: + logger.error(err) + resp = makeresponse(str(err), err) + except ValueError as ve: + logger.error(ve) + resp = makeresponse(str(ve), ve) + except Exception as ex: + logger.error(ex) + resp = makeresponse(str(ex), ex) + + return resp + +@app.route('/exports', methods=['POST']) +def exports(): + try: + logger = logging.getLogger(__name__) + logger.info('%s - %s %s : data=%s' % (request.remote_addr, request.method, request.path, request.data)) + exportInfo = json.loads(request.data) + type = request.args.get('format') + output = command.exports(type, exportInfo.get('recipe'), exportInfo.get('packages'), exportInfo.get('output')) + resp = makeresponse(output, None) + except error.TICError as err: + logger.error(err) + resp = makeresponse(str(err), err) + except ValueError as ve: + logger.error(ve) + resp = makeresponse(str(ve), ve) + except Exception as ex: + logger.error(ex) + resp = makeresponse(str(ex), ex) + return resp + + +def start(port_num=59001): + # cryptographic random generator + app.secret_key = os.urandom(24) + + with app.test_request_context(): + print(url_for('index')) + print(url_for('analysis')) + print(url_for('exports')) + app.run(host='0.0.0.0', threaded=True, port=port_num) + + +def makeresponse(data, err): + status = 200 + if err: + if isinstance(err, error.TICError) or isinstance(err, ValueError): + status = 400 # Bad Request + elif isinstance(err, Exception): + status = 500 # Internal Server Error + res_body = json.dumps(ResultInfo('false', None, data)._asdict()) + else: + res_body = json.dumps(ResultInfo('true', data, None)._asdict()) + + resp = Response(status=status, + mimetype='application/json', + response=res_body) + return resp + + +ResultInfoType = collections.namedtuple('ResultInfo', 'result, data, message') +def ResultInfo(result='false', data=None, message=None): + return ResultInfoType(result, data, message) + +if __name__ == '__main__': + start(59003) diff --git a/tic/utils/__init__.py b/tic/utils/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tic/utils/error.py b/tic/utils/error.py new file mode 100644 index 0000000..e361097 --- /dev/null +++ b/tic/utils/error.py @@ -0,0 +1,45 @@ +#!/usr/bin/python +# Copyright (c) 2000 - 2016 Samsung Electronics Co., Ltd. All rights reserved. +# +# Contact: +# @author Chulwoo Shin +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# Contributors: +# - S-Core Co., Ltd + +class TICError(Exception): + """ Based class for all tic creator errors """ + keyword = None + + def __init__(self, msg): + Exception.__init__(self) + self.msg = msg + + def __str__(self): + if isinstance(self.msg, unicode): + self.msg = self.msg.encode('utf-8', 'ignore') + else: + self.msg = str(self.msg) + return self.msg + + def __repr__(self): + if not hasattr(self, 'keyword') or not self.keyword: + self.keyword = self.__class__.__name__ + return "<%s> %s" % (self.keyword, str(self)) + + +class RepoError(TICError): + """ Error class for Repository related """ + keyword = 'Repository' \ No newline at end of file diff --git a/tic/utils/file.py b/tic/utils/file.py new file mode 100644 index 0000000..442f3ce --- /dev/null +++ b/tic/utils/file.py @@ -0,0 +1,51 @@ +#!/usr/bin/python +# Copyright (c) 2000 - 2016 Samsung Electronics Co., Ltd. All rights reserved. +# +# Contact: +# @author Chulwoo Shin +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# Contributors: +# - S-Core Co., Ltd + +import errno +import gzip +import os +import shutil + +def make_dirs(dirname): + try: + os.makedirs(dirname) + except OSError as err: + if err.errno != errno.EEXIST: + raise + +def write(path, data): + # make directory + make_dirs(os.path.dirname(path)) + with(open(path, 'w')) as f: + f.write(data) + +def decompress_gzip(intput_path, output_path): + with(gzip.open(intput_path, 'rb')) as fobj: + f = open(output_path, 'wb') + f.write(fobj.read()) + f.close() + return output_path + +def copyfile(src, dst): + abs_dst=os.path.abspath(os.path.expanduser(dst)) + make_dirs(abs_dst) + shutil.copy(src, abs_dst) + return os.path.join(abs_dst, os.path.basename(src)) \ No newline at end of file diff --git a/tic/utils/grabber.py b/tic/utils/grabber.py new file mode 100644 index 0000000..93bc8ea --- /dev/null +++ b/tic/utils/grabber.py @@ -0,0 +1,77 @@ +#!/usr/bin/python +# Copyright (c) 2000 - 2016 Samsung Electronics Co., Ltd. All rights reserved. +# +# Contact: +# @author Chulwoo Shin +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# Contributors: +# - S-Core Co., Ltd + +import os +import logging +from urlgrabber import grabber +from tic.utils.error import TICError, RepoError +from tic.utils import process + + +def myurlgrab(url, filename, proxies, progress_obj = None): + logger = logging.getLogger(__name__) + g = grabber.URLGrabber() + + if url.startswith("file:/"): + filepath = "/%s" % url.replace("file:", "").lstrip('/') + if not os.path.exists(filepath): + raise RepoError("URLGrabber error: can't find file %s" % url) + if url.endswith('.rpm'): + return filepath + else: + # untouch repometadata in source path + process.run(['cp', '-f', filepath, filename]) + logger.info('copy file ' + filepath) + else: + try: + # cast url to str here, sometimes it can be unicode, + # but pycurl only accept str + filename = g.urlgrab(url=str(url), + filename=filename, + ssl_verify_host=False, + ssl_verify_peer=False, + proxies=proxies, + http_headers=(('Pragma', 'no-cache'),), + quote=0, + progress_obj=progress_obj) + logger.info('download file from ' + str(url)) + except grabber.URLGrabError as err: + if err.code == 22: + msg = 'The requested url was not found (%s)' % url + else: + msg = str(err) + if msg.find(url) < 0: + msg += ' on %s' % url + raise TICError(msg) + + return filename + +if __name__ == '__main__': + # file url + full_url = 'file://home/shinchulwoo/project/tic_view.json' + filename = '/var/tmp/tic_view.json' + myurlgrab(full_url, filename, None) + # http url + full_url = 'https://download.tizen.org/snapshots/tizen/mobile/latest/repos/arm64-wayland/packages/repodata/repomd.xml' + filename = '/var/tmp/repomd.xml' + myurlgrab(full_url, filename, None) + + diff --git a/tic/utils/log.py b/tic/utils/log.py new file mode 100644 index 0000000..afae483 --- /dev/null +++ b/tic/utils/log.py @@ -0,0 +1,51 @@ +#!/usr/bin/python +# Copyright (c) 2000 - 2016 Samsung Electronics Co., Ltd. All rights reserved. +# +# Contact: +# @author Chulwoo Shin +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# Contributors: +# - S-Core Co., Ltd + +import logging.handlers +import os +import errno + +LOG_FILE_MAX_BYTES=10*1024*1024 +TIC_LOG_DIR='/var/tmp/tic-core/log' + +def setup(root): + logger = logging.getLogger(root) + logger.setLevel(logging.DEBUG) + + formatter = logging.Formatter('%(asctime)s [%(levelname)s][%(filename)s(%(lineno)s)] %(message)s') + formatter.datefmt = '%Y-%m-%d %H:%M:%S' + + mkdir_p(TIC_LOG_DIR) + #fileHandler = logging.handlers.RotatingFileHandler(os.path.join(TIC_LOG_DIR, 'tic-core.log'), maxBytes=LOG_FILE_MAX_BYTES, backupCount=10) + streamHandler = logging.StreamHandler() + + #fileHandler.setFormatter(formatter) + streamHandler.setFormatter(formatter) + + #logger.addHandler(fileHandler) + logger.addHandler(streamHandler) + +def mkdir_p(path): + try: + os.makedirs(path) + except OSError as err: + if err.errno != errno.EEXIST: + raise diff --git a/tic/utils/process.py b/tic/utils/process.py new file mode 100644 index 0000000..d376ed4 --- /dev/null +++ b/tic/utils/process.py @@ -0,0 +1,72 @@ +#!/usr/bin/python +# Copyright (c) 2000 - 2016 Samsung Electronics Co., Ltd. All rights reserved. +# +# Contact: +# @author Chulwoo Shin +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# Contributors: +# - S-Core Co., Ltd + +import os +import subprocess +import logging + +from tic.utils.error import TICError + +def run(cmdln, catch=3): + logger = logging.getLogger(__name__) + if isinstance(cmdln, list): + cmd = cmdln[0] + shellType = False + else: + import shlex + cmd = shlex.split(cmdln)[0] + shellType = True + + + if catch == 0: + # silent run + dev_null = os.open("/dev/null", os.O_WRONLY) + sout = dev_null + serr = dev_null + elif catch == 2: + # no redirection + sout = None + serr = None + elif catch == 3: + # both STDOUT and STDERR + sout = subprocess.PIPE + serr = subprocess.STDOUT + + try: + logger.info('subprocess open: %s', cmd) + p = subprocess.Popen(cmdln, + stdout=sout, + stderr=serr, + shell=shellType) + + (sout, serr) = p.communicate() + out = ''.join(filter(None, [sout, serr])) + except OSError as e: + if e.errno == 2: + # No such file or directory + raise TICError('Cannot run command: %s' % cmd) + else: + raise + finally: + if catch == 0: + os.close(dev_null) + + return (p.returncode, out) \ No newline at end of file diff --git a/tools/tic-core b/tools/tic-core new file mode 100644 index 0000000..6011e5a --- /dev/null +++ b/tools/tic-core @@ -0,0 +1,110 @@ +#!/usr/bin/python +# Copyright (c) 2000 - 2016 Samsung Electronics Co., Ltd. All rights reserved. +# +# Contact: +# @author Chulwoo Shin +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# Contributors: +# - S-Core Co., Ltd + +from argparse import ArgumentParser +from argparse import RawDescriptionHelpFormatter +import os +import sys +import json +import logging +from tic import command +from tic.utils import log +from tic.utils import file +from tic.utils import error +from tic.server import tic_server + +__version__ = 0.1 +__date__ = '2016-11-07' +__updated__ = '2016-11-07' + +def create_parser(): + program_name = os.path.basename(sys.argv[0]) + program_version = "%s" % __version__ + program_version_message = '%s %s' % (program_name, program_version) + program_shortdesc = 'tic-core is a tool for analyzing package dependencies and generating Image' #__import__('__main__').__doc__ + program_epilog = "Try 'tic-core SUBCOMMAND --help' for help on a specific sub-command." + + parser = ArgumentParser(description=program_shortdesc, epilog=program_epilog, + formatter_class=RawDescriptionHelpFormatter) + parser.add_argument('-v', '--version', action='version', version=program_version_message) + subparsers = parser.add_subparsers(dest='subparser_name', help='sub-command help') + + # create the parser for the 'analyze' command + parser_analyze = subparsers.add_parser('analyze', help='analyze install-dependency of packages') + parser_analyze.add_argument('-r', "--repos", dest="repos", metavar="urls", nargs='+', help="The URL of repository [default: %(default)s]") + parser_analyze.add_argument('-c', "--recipes", dest="recipes", metavar="paths", nargs='+', help="The path of recipe") + parser_analyze.add_argument('-o', "--outdir", dest="outdir", action="store", help="The result file is distributed in the outdir path", default=os.getcwd()) + # create the parser for the 'export' command + parser_export = subparsers.add_parser('export', help='export files') + parser_export.add_argument('-f', "--format", dest="format", metavar="recipe/ks", help="exports file format", required=True) + parser_export.add_argument('-c', "--recipes", dest="recipes", metavar="paths", nargs='+', help="recipe files") + parser_export.add_argument('-o', "--outdir", dest="outdir", action="store", help="export file output directory", default=os.getcwd()) + # create the parser for the 'create' command + parser_create = subparsers.add_parser('createimage', help='create an image for tizen') + parser_create.add_argument('-c', "--recipes", dest="recipes", metavar="recipes", nargs='+', help="recipe files to be used for image creation") + parser_create.add_argument('-k', "--ks", dest="kickstart", metavar="kickstart", help="ks file to be used for image creation") + parser_create.add_argument('-o', "--outdir", dest="outdir", action="store", help="image output directory", default=os.getcwd()) + + parser_start = subparsers.add_parser('start', help='start the tic-core demon on system. port 59001 is used by default ') + parser_start.add_argument('-p', "--port", dest="port", action="store", help="port number", default=59001) + + return parser + +def main(argv): + logger = logging.getLogger('tic') + try: + # Setup argument parser + parser = create_parser() + # Process arguments + args = parser.parse_args(argv[1:]) + + if args.subparser_name == 'analyze': + view_data = command.analyze(args.repos, args.recipes) + output_dir=os.path.abspath(os.path.expanduser(args.outdir)) + file.write(os.path.join(output_dir, 'viewdata.json'), json.dumps(view_data)) + elif args.subparser_name == 'export': + #TODO Temporary code(should be deleted) + recipes={'name':'default'} + packages=['attr', 'filesystem'] + output=command.exports(args.format, recipes, packages, args.outdir) + logger.info("export the %s file: %s", args.format, output) + elif args.subparser_name == 'createimage': + if args.recipes or args.kickstart: + command.createimage(args.recipes, args.kickstart, args.outdir) + else: + logger.info('kickstart or recipes file is required') + elif args.subparser_name == 'start': + tic_server.start(args.port) + return 0 + except KeyboardInterrupt: + ### handle keyboard interrupt ### + return 0 + except error.TICError as err: + logger.error(err) + except Exception as ex: + logger.error(ex) + return 2 + +if __name__ == "__main__": + log.setup('tic') + sys.exit(main(sys.argv)) + +