From 0548263e898bf14f93d2fa423c0f0a9d9f2ff567 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Tue, 6 Apr 2021 14:39:39 -0700 Subject: [PATCH] add rpm -qai parser --- EXAMPLES.md | 53 + README.md | 1 + docs/parsers/rpm_qai.md | 191 + jc/cli.py | 1 + jc/parsers/rpm_qai.py | 255 + man/jc.1 | 5 + tests/fixtures/centos-7.7/rpm-qai.json | 1 + tests/fixtures/centos-7.7/rpm-qai.out | 9961 ++++++++++++++++++++++++ 8 files changed, 10468 insertions(+) create mode 100644 docs/parsers/rpm_qai.md create mode 100644 jc/parsers/rpm_qai.py create mode 100644 tests/fixtures/centos-7.7/rpm-qai.json create mode 100644 tests/fixtures/centos-7.7/rpm-qai.out diff --git a/EXAMPLES.md b/EXAMPLES.md index fedb54cc..8640ac3a 100644 --- a/EXAMPLES.md +++ b/EXAMPLES.md @@ -2479,6 +2479,59 @@ route -ee | jc --route -p # or: jc -p route -ee } ] ``` +### rpm -qai +```bash +rpm_qai | jc --rpm_qai -p # or: jc -p rpm -qai +``` +```json +[ + { + "name": "make", + "epoch": 1, + "version": "3.82", + "release": "24.el7", + "architecture": "x86_64", + "install_date": "Wed 16 Oct 2019 09:21:42 AM PDT", + "group": "Development/Tools", + "size": 1160660, + "license": "GPLv2+", + "signature": "RSA/SHA256, Thu 22 Aug 2019 02:34:59 PM PDT, Key ID 24c6a8a7f4a80eb5", + "source_rpm": "make-3.82-24.el7.src.rpm", + "build_date": "Thu 08 Aug 2019 05:47:25 PM PDT", + "build_host": "x86-01.bsys.centos.org", + "relocations": "(not relocatable)", + "packager": "CentOS BuildSystem ", + "vendor": "CentOS", + "url": "http://www.gnu.org/software/make/", + "summary": "A GNU tool which simplifies the build process for users", + "description": "A GNU tool for controlling the generation of executables and other non-source files of a program from the program's source files. Make allows users to build and install packages without any significant knowledge about the details of the build process. The details about how the program should be built are provided for make in the program's makefile.", + "build_epoch": 1565311645, + "build_epoch_utc": null + }, + { + "name": "kbd-legacy", + "version": "1.15.5", + "release": "15.el7", + "architecture": "noarch", + "install_date": "Thu 15 Aug 2019 10:53:08 AM PDT", + "group": "System Environment/Base", + "size": 503608, + "license": "GPLv2+", + "signature": "RSA/SHA256, Mon 12 Nov 2018 07:17:49 AM PST, Key ID 24c6a8a7f4a80eb5", + "source_rpm": "kbd-1.15.5-15.el7.src.rpm", + "build_date": "Tue 30 Oct 2018 03:40:00 PM PDT", + "build_host": "x86-01.bsys.centos.org", + "relocations": "(not relocatable)", + "packager": "CentOS BuildSystem ", + "vendor": "CentOS", + "url": "http://ftp.altlinux.org/pub/people/legion/kbd", + "summary": "Legacy data for kbd package", + "description": "The kbd-legacy package contains original keymaps for kbd package. Please note that kbd-legacy is not helpful without kbd.", + "build_epoch": 1540939200, + "build_epoch_utc": null + } +] +``` ### /etc/shadow file ```bash cat /etc/shadow | jc --shadow -p diff --git a/README.md b/README.md index f8951c5c..aafa8be3 100644 --- a/README.md +++ b/README.md @@ -174,6 +174,7 @@ The JSON output can be compact (default) or pretty formatted with the `-p` optio - `--pip-show` enables the `pip show` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/pip_show)) - `--ps` enables the `ps` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/ps)) - `--route` enables the `route` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/route)) +- `--rpm_qai` enables the `rpm -qai` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/rpm_qai)) - `--shadow` enables the `/etc/shadow` file parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/shadow)) - `--ss` enables the `ss` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/ss)) - `--stat` enables the `stat` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/stat)) diff --git a/docs/parsers/rpm_qai.md b/docs/parsers/rpm_qai.md new file mode 100644 index 00000000..b79a2034 --- /dev/null +++ b/docs/parsers/rpm_qai.md @@ -0,0 +1,191 @@ + +# jc.parsers.rpm_qai +jc - JSON CLI output utility `rpm -qai` command output parser + +Works with `rpm -qi [package]` or `rpm -qai`. + +The `build_epoch` calculated timestamp field is naive (i.e. based on the local time of the system the parser is run on) + +The `build_epoch_utc` calculated timestamp field is timezone-aware and is only available if the timezone field is UTC. + +Usage (cli): + + $ rpm -qai | jc --rpm_qai + + or + + $ jc rpm -qai + +Usage (module): + + import jc.parsers.rpm_qai + result = jc.parsers.rpm_qai.parse(rpm_qai_command_output) + +Compatibility: + + 'linux' + +Examples: + + $ rpm_qai | jc --rpm_qai -p + [ + { + "name": "make", + "epoch": 1, + "version": "3.82", + "release": "24.el7", + "architecture": "x86_64", + "install_date": "Wed 16 Oct 2019 09:21:42 AM PDT", + "group": "Development/Tools", + "size": 1160660, + "license": "GPLv2+", + "signature": "RSA/SHA256, Thu 22 Aug 2019 02:34:59 PM PDT, Key ID 24c6a8a7f4a80eb5", + "source_rpm": "make-3.82-24.el7.src.rpm", + "build_date": "Thu 08 Aug 2019 05:47:25 PM PDT", + "build_host": "x86-01.bsys.centos.org", + "relocations": "(not relocatable)", + "packager": "CentOS BuildSystem ", + "vendor": "CentOS", + "url": "http://www.gnu.org/software/make/", + "summary": "A GNU tool which simplifies the build process for users", + "description": "A GNU tool for controlling the generation of executables and other non-source files of a program from the program's source files. Make allows users to build and install packages without any significant knowledge about the details of the build process. The details about how the program should be built are provided for make in the program's makefile.", + "build_epoch": 1565311645, + "build_epoch_utc": null + }, + { + "name": "kbd-legacy", + "version": "1.15.5", + "release": "15.el7", + "architecture": "noarch", + "install_date": "Thu 15 Aug 2019 10:53:08 AM PDT", + "group": "System Environment/Base", + "size": 503608, + "license": "GPLv2+", + "signature": "RSA/SHA256, Mon 12 Nov 2018 07:17:49 AM PST, Key ID 24c6a8a7f4a80eb5", + "source_rpm": "kbd-1.15.5-15.el7.src.rpm", + "build_date": "Tue 30 Oct 2018 03:40:00 PM PDT", + "build_host": "x86-01.bsys.centos.org", + "relocations": "(not relocatable)", + "packager": "CentOS BuildSystem ", + "vendor": "CentOS", + "url": "http://ftp.altlinux.org/pub/people/legion/kbd", + "summary": "Legacy data for kbd package", + "description": "The kbd-legacy package contains original keymaps for kbd package. Please note that kbd-legacy is not helpful without kbd.", + "build_epoch": 1540939200, + "build_epoch_utc": null + }, + ... + ] + + $ rpm -qai | jc --rpm_qai -p -r + [ + { + "name": "make", + "epoch": "1", + "version": "3.82", + "release": "24.el7", + "architecture": "x86_64", + "install_date": "Wed 16 Oct 2019 09:21:42 AM PDT", + "group": "Development/Tools", + "size": "1160660", + "license": "GPLv2+", + "signature": "RSA/SHA256, Thu 22 Aug 2019 02:34:59 PM PDT, Key ID 24c6a8a7f4a80eb5", + "source_rpm": "make-3.82-24.el7.src.rpm", + "build_date": "Thu 08 Aug 2019 05:47:25 PM PDT", + "build_host": "x86-01.bsys.centos.org", + "relocations": "(not relocatable)", + "packager": "CentOS BuildSystem ", + "vendor": "CentOS", + "url": "http://www.gnu.org/software/make/", + "summary": "A GNU tool which simplifies the build process for users", + "description": "A GNU tool for controlling the generation of executables and other..." + }, + { + "name": "kbd-legacy", + "version": "1.15.5", + "release": "15.el7", + "architecture": "noarch", + "install_date": "Thu 15 Aug 2019 10:53:08 AM PDT", + "group": "System Environment/Base", + "size": "503608", + "license": "GPLv2+", + "signature": "RSA/SHA256, Mon 12 Nov 2018 07:17:49 AM PST, Key ID 24c6a8a7f4a80eb5", + "source_rpm": "kbd-1.15.5-15.el7.src.rpm", + "build_date": "Tue 30 Oct 2018 03:40:00 PM PDT", + "build_host": "x86-01.bsys.centos.org", + "relocations": "(not relocatable)", + "packager": "CentOS BuildSystem ", + "vendor": "CentOS", + "url": "http://ftp.altlinux.org/pub/people/legion/kbd", + "summary": "Legacy data for kbd package", + "description": "The kbd-legacy package contains original keymaps for kbd package..." + }, + ... + ] + + +## info +```python +info() +``` + + +## process +```python +process(proc_data) +``` + +Final processing to conform to the schema. + +Parameters: + + proc_data: (List of Dictionaries) raw structured data to process + +Returns: + + List of Dictionaries. Structured data with the following schema: + + [ + { + "name": string, + "epoch": integer, + "version": string, + "release": string, + "architecture": string, + "install_date": string, + "group": string, + "size": integer, + "license": string, + "signature": string, + "source_rpm": string, + "build_date": string, + "build_epoch": integer, # naive timestamp + "build_epoch_utc": integer, # Aware timestamp if timezone is UTC + "build_host": string, + "relocations": string, + "packager": string, + "vendor": string, + "url": string, + "summary": string, + "description": string + } + ] + + +## parse +```python +parse(data, raw=False, quiet=False) +``` + +Main text parsing function + +Parameters: + + data: (string) text data to parse + raw: (boolean) output preprocessed JSON if True + quiet: (boolean) suppress warning messages if True + +Returns: + + List of Dictionaries. Raw or processed structured data. + diff --git a/jc/cli.py b/jc/cli.py index 2bff8b3f..c713672f 100644 --- a/jc/cli.py +++ b/jc/cli.py @@ -88,6 +88,7 @@ parsers = [ 'pip-show', 'ps', 'route', + 'rpm_qai', 'shadow', 'ss', 'stat', diff --git a/jc/parsers/rpm_qai.py b/jc/parsers/rpm_qai.py new file mode 100644 index 00000000..5b64f303 --- /dev/null +++ b/jc/parsers/rpm_qai.py @@ -0,0 +1,255 @@ +"""jc - JSON CLI output utility `rpm -qai` command output parser + +Works with `rpm -qi [package]` or `rpm -qai`. + +The `build_epoch` calculated timestamp field is naive (i.e. based on the local time of the system the parser is run on) + +The `build_epoch_utc` calculated timestamp field is timezone-aware and is only available if the timezone field is UTC. + +Usage (cli): + + $ rpm -qai | jc --rpm_qai + + or + + $ jc rpm -qai + +Usage (module): + + import jc.parsers.rpm_qai + result = jc.parsers.rpm_qai.parse(rpm_qai_command_output) + +Compatibility: + + 'linux' + +Examples: + + $ rpm_qai | jc --rpm_qai -p + [ + { + "name": "make", + "epoch": 1, + "version": "3.82", + "release": "24.el7", + "architecture": "x86_64", + "install_date": "Wed 16 Oct 2019 09:21:42 AM PDT", + "group": "Development/Tools", + "size": 1160660, + "license": "GPLv2+", + "signature": "RSA/SHA256, Thu 22 Aug 2019 02:34:59 PM PDT, Key ID 24c6a8a7f4a80eb5", + "source_rpm": "make-3.82-24.el7.src.rpm", + "build_date": "Thu 08 Aug 2019 05:47:25 PM PDT", + "build_host": "x86-01.bsys.centos.org", + "relocations": "(not relocatable)", + "packager": "CentOS BuildSystem ", + "vendor": "CentOS", + "url": "http://www.gnu.org/software/make/", + "summary": "A GNU tool which simplifies the build process for users", + "description": "A GNU tool for controlling the generation of executables and other non-source files of a program from the program's source files. Make allows users to build and install packages without any significant knowledge about the details of the build process. The details about how the program should be built are provided for make in the program's makefile.", + "build_epoch": 1565311645, + "build_epoch_utc": null + }, + { + "name": "kbd-legacy", + "version": "1.15.5", + "release": "15.el7", + "architecture": "noarch", + "install_date": "Thu 15 Aug 2019 10:53:08 AM PDT", + "group": "System Environment/Base", + "size": 503608, + "license": "GPLv2+", + "signature": "RSA/SHA256, Mon 12 Nov 2018 07:17:49 AM PST, Key ID 24c6a8a7f4a80eb5", + "source_rpm": "kbd-1.15.5-15.el7.src.rpm", + "build_date": "Tue 30 Oct 2018 03:40:00 PM PDT", + "build_host": "x86-01.bsys.centos.org", + "relocations": "(not relocatable)", + "packager": "CentOS BuildSystem ", + "vendor": "CentOS", + "url": "http://ftp.altlinux.org/pub/people/legion/kbd", + "summary": "Legacy data for kbd package", + "description": "The kbd-legacy package contains original keymaps for kbd package. Please note that kbd-legacy is not helpful without kbd.", + "build_epoch": 1540939200, + "build_epoch_utc": null + }, + ... + ] + + $ rpm -qai | jc --rpm_qai -p -r + [ + { + "name": "make", + "epoch": "1", + "version": "3.82", + "release": "24.el7", + "architecture": "x86_64", + "install_date": "Wed 16 Oct 2019 09:21:42 AM PDT", + "group": "Development/Tools", + "size": "1160660", + "license": "GPLv2+", + "signature": "RSA/SHA256, Thu 22 Aug 2019 02:34:59 PM PDT, Key ID 24c6a8a7f4a80eb5", + "source_rpm": "make-3.82-24.el7.src.rpm", + "build_date": "Thu 08 Aug 2019 05:47:25 PM PDT", + "build_host": "x86-01.bsys.centos.org", + "relocations": "(not relocatable)", + "packager": "CentOS BuildSystem ", + "vendor": "CentOS", + "url": "http://www.gnu.org/software/make/", + "summary": "A GNU tool which simplifies the build process for users", + "description": "A GNU tool for controlling the generation of executables and other..." + }, + { + "name": "kbd-legacy", + "version": "1.15.5", + "release": "15.el7", + "architecture": "noarch", + "install_date": "Thu 15 Aug 2019 10:53:08 AM PDT", + "group": "System Environment/Base", + "size": "503608", + "license": "GPLv2+", + "signature": "RSA/SHA256, Mon 12 Nov 2018 07:17:49 AM PST, Key ID 24c6a8a7f4a80eb5", + "source_rpm": "kbd-1.15.5-15.el7.src.rpm", + "build_date": "Tue 30 Oct 2018 03:40:00 PM PDT", + "build_host": "x86-01.bsys.centos.org", + "relocations": "(not relocatable)", + "packager": "CentOS BuildSystem ", + "vendor": "CentOS", + "url": "http://ftp.altlinux.org/pub/people/legion/kbd", + "summary": "Legacy data for kbd package", + "description": "The kbd-legacy package contains original keymaps for kbd package..." + }, + ... + ] +""" +import jc.utils + + +class info(): + version = '1.0' + description = '`rpm -qai` command parser' + author = 'Kelly Brazil' + author_email = 'kellyjonbrazil@gmail.com' + # details = 'enter any other details here' + + # compatible options: linux, darwin, cygwin, win32, aix, freebsd + compatible = ['linux'] + magic_commands = ['rpm -qai', 'rpm -qia', 'rpm -qi'] + + +__version__ = info.version + + +def process(proc_data): + """ + Final processing to conform to the schema. + + Parameters: + + proc_data: (List of Dictionaries) raw structured data to process + + Returns: + + List of Dictionaries. Structured data with the following schema: + + [ + { + "name": string, + "epoch": integer, + "version": string, + "release": string, + "architecture": string, + "install_date": string, + "group": string, + "size": integer, + "license": string, + "signature": string, + "source_rpm": string, + "build_date": string, + "build_epoch": integer, # naive timestamp + "build_epoch_utc": integer, # Aware timestamp if timezone is UTC + "build_host": string, + "relocations": string, + "packager": string, + "vendor": string, + "url": string, + "summary": string, + "description": string + } + ] + """ + for entry in proc_data: + + int_list = ['epoch', 'size'] + for key in int_list: + if key in entry: + try: + entry[key] = int(entry[key]) + except (ValueError): + entry[key] = None + + if 'build_date' in entry: + timestamp = jc.utils.timestamp(entry['build_date']) + entry['build_epoch'] = timestamp.naive + entry['build_epoch_utc'] = timestamp.utc + + return proc_data + + +def parse(data, raw=False, quiet=False): + """ + Main text parsing function + + Parameters: + + data: (string) text data to parse + raw: (boolean) output preprocessed JSON if True + quiet: (boolean) suppress warning messages if True + + Returns: + + List of Dictionaries. Raw or processed structured data. + """ + if not quiet: + jc.utils.compatibility(__name__, info.compatible) + + raw_output = [] + entry_obj = {} + last_entry = None + this_entry = None + desc_entry = False + description = [] + + if jc.utils.has_data(data): + + for line in filter(None, data.splitlines()): + split_line = line.split(': ', maxsplit=1) + + if split_line[0].startswith('Name') and len(split_line) == 2: + this_entry = split_line[1].strip() + + if this_entry != last_entry: + if entry_obj: + entry_obj['description'] = ' '.join(description) + raw_output.append(entry_obj) + entry_obj = {} + last_entry = this_entry + desc_entry = False + + if len(split_line) == 2: + entry_obj[split_line[0].strip().lower().replace(' ', '_')] = split_line[1].strip() + + if line.startswith('Description :'): + desc_entry = True + description = [] + continue + + if desc_entry: + description.append(line) + + entry_obj['description'] = ' '.join(description) + raw_output.append(entry_obj) + + if raw: + return raw_output + else: + return process(raw_output) diff --git a/man/jc.1 b/man/jc.1 index 024fdb9b..a7008b72 100644 --- a/man/jc.1 +++ b/man/jc.1 @@ -262,6 +262,11 @@ Key/Value file parser \fB--route\fP `route` command parser +.TP +.B +\fB--rpm_qai\fP +`rpm -qai` command parser + .TP .B \fB--shadow\fP diff --git a/tests/fixtures/centos-7.7/rpm-qai.json b/tests/fixtures/centos-7.7/rpm-qai.json new file mode 100644 index 00000000..925f0ad5 --- /dev/null +++ b/tests/fixtures/centos-7.7/rpm-qai.json @@ -0,0 +1 @@ +[{"name":"make","epoch":1,"version":"3.82","release":"24.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:42 AM PDT","group":"Development/Tools","size":1160660,"license":"GPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:34:59 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"make-3.82-24.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:47:25 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnu.org/software/make/","summary":"A GNU tool which simplifies the build process for users","description":"A GNU tool for controlling the generation of executables and other non-source files of a program from the program's source files. Make allows users to build and install packages without any significant knowledge about the details of the build process. The details about how the program should be built are provided for make in the program's makefile.","build_epoch":1565311645,"build_epoch_utc":null},{"name":"kbd-legacy","version":"1.15.5","release":"15.el7","architecture":"noarch","install_date":"Thu 15 Aug 2019 10:53:08 AM PDT","group":"System Environment/Base","size":503608,"license":"GPLv2+","signature":"RSA/SHA256, Mon 12 Nov 2018 07:17:49 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"kbd-1.15.5-15.el7.src.rpm","build_date":"Tue 30 Oct 2018 03:40:00 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://ftp.altlinux.org/pub/people/legion/kbd","summary":"Legacy data for kbd package","description":"The kbd-legacy package contains original keymaps for kbd package. Please note that kbd-legacy is not helpful without kbd.","build_epoch":1540939200,"build_epoch_utc":null},{"name":"libsmartcols","version":"2.23.2","release":"61.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:42 AM PDT","group":"Development/Libraries","size":168712,"license":"LGPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:33:02 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"util-linux-2.23.2-61.el7.src.rpm","build_date":"Thu 08 Aug 2019 08:10:20 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://en.wikipedia.org/wiki/Util-linux","summary":"Formatting library for ls-like programs.","description":"This is library for ls-like terminal programs, part of util-linux.","build_epoch":1565320220,"build_epoch_utc":null},{"name":"ncurses-base","version":"5.9","release":"14.20130511.el7_4","architecture":"noarch","install_date":"Thu 15 Aug 2019 10:53:08 AM PDT","group":"System Environment/Base","size":223432,"license":"MIT","signature":"RSA/SHA256, Thu 07 Sep 2017 05:43:15 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"ncurses-5.9-14.20130511.el7_4.src.rpm","build_date":"Wed 06 Sep 2017 03:08:29 PM PDT","build_host":"c1bm.rdu2.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://invisible-island.net/ncurses/ncurses.html","summary":"Descriptions of common terminals","description":"This package contains descriptions of common terminals. Other terminal descriptions are included in the ncurses-term package.","build_epoch":1504735709,"build_epoch_utc":null},{"name":"procps-ng","version":"3.3.10","release":"26.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:43 AM PDT","group":"Applications/System","size":759403,"license":"GPL+ and GPLv2 and GPLv2+ and GPLv3+ and LGPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:39:53 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"procps-ng-3.3.10-26.el7.src.rpm","build_date":"Thu 08 Aug 2019 06:55:50 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://sourceforge.net/projects/procps-ng/","summary":"System and process monitoring utilities","description":"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.","build_epoch":1565315750,"build_epoch_utc":null},{"name":"postfix","epoch":2,"version":"2.10.1","release":"7.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:53 AM PDT","group":"System Environment/Daemons","size":12766329,"license":"IBM and GPLv2+","signature":"RSA/SHA256, Mon 12 Nov 2018 06:44:41 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"postfix-2.10.1-7.el7.src.rpm","build_date":"Tue 30 Oct 2018 09:50:35 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.postfix.org","summary":"Postfix Mail Transport Agent","description":"Postfix is a Mail Transport Agent (MTA), supporting LDAP, SMTP AUTH (SASL), TLS","build_epoch":1540918235,"build_epoch_utc":null},{"name":"kmod","version":"20","release":"25.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:44 AM PDT","group":"System Environment/Kernel","size":246109,"license":"GPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:28:22 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"kmod-20-25.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:05:58 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://git.kernel.org/?p=utils/kernel/kmod/kmod.git;a=summary","summary":"Linux kernel module management utilities","description":"The kmod package provides various programs needed for automatic loading and unloading of modules under 2.6, 3.x, and later kernels, as well as other module management programs. Device drivers and filesystems are two examples of loaded and unloaded modules.","build_epoch":1565309158,"build_epoch_utc":null},{"name":"aic94xx-firmware","version":"30","release":"6.el7","architecture":"noarch","install_date":"Thu 15 Aug 2019 10:53:56 AM PDT","group":"System Environment/Kernel","size":30752,"license":"Redistributable, no modification permitted","signature":"RSA/SHA256, Thu 03 Jul 2014 05:34:22 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"aic94xx-firmware-30-6.el7.src.rpm","build_date":"Mon 09 Jun 2014 11:57:07 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.adaptec.com/en-US/speed/scsi/linux/aic94xx-seq-30-1_tar_gz.htm","summary":"Adaptec SAS 44300, 48300, 58300 Sequencer Firmware for AIC94xx driver","description":"Adaptec SAS 44300, 48300, 58300 Sequencer Firmware for Open-Source AIC94xx Driver.","build_epoch":1402383427,"build_epoch_utc":null},{"name":"basesystem","version":"10.0","release":"7.el7.centos","architecture":"noarch","install_date":"Thu 15 Aug 2019 10:53:12 AM PDT","group":"System Environment/Base","size":0,"license":"Public Domain","signature":"RSA/SHA256, Thu 03 Jul 2014 05:46:57 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"basesystem-10.0-7.el7.centos.src.rpm","build_date":"Fri 27 Jun 2014 03:37:10 AM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","summary":"The skeleton package which defines a simple CentOS Linux system","description":"Basesystem defines the components of a basic CentOS Linux system (for example, the package installation order to use during bootstrapping). Basesystem should be in every installation of a system, and it should never be removed.","build_epoch":1403865430,"build_epoch_utc":null},{"name":"elfutils-default-yama-scope","version":"0.176","release":"2.el7","architecture":"noarch","install_date":"Wed 16 Oct 2019 09:21:47 AM PDT","group":"Development/Tools","size":1810,"license":"GPLv2+ or LGPLv3+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:56:57 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"elfutils-0.176-2.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:16:25 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://elfutils.org/","summary":"Default yama attach scope sysctl setting","description":"Yama sysctl setting to enable default attach scope settings enabling programs to use ptrace attach, access to /proc/PID/{mem,personality,stack,syscall}, and the syscalls process_vm_readv and process_vm_writev which are used for interprocess services, communication and introspection (like synchronisation, signaling, debugging, tracing and profiling) of processes.","build_epoch":1565306185,"build_epoch_utc":null},{"name":"grub2-tools-minimal","epoch":1,"version":"2.02","release":"0.80.el7.centos","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:49 AM PDT","group":"System Environment/Base","size":686003,"license":"GPLv3+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:25:18 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"grub2-2.02-0.80.el7.centos.src.rpm","build_date":"Thu 08 Aug 2019 04:31:11 AM PDT","build_host":"kbuilder.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnu.org/software/grub/","summary":"Support tools for GRUB.","description":"The GRand Unified Bootloader (GRUB) is a highly configurable and customizable bootloader with modular architecture. It supports a rich variety of kernel formats, file systems, computer architectures and hardware devices. This subpackage provides tools for support of all platforms.","build_epoch":1565263871,"build_epoch_utc":null},{"name":"ncurses-libs","version":"5.9","release":"14.20130511.el7_4","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:16 AM PDT","group":"System Environment/Libraries","size":1028216,"license":"MIT","signature":"RSA/SHA256, Thu 07 Sep 2017 05:43:31 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"ncurses-5.9-14.20130511.el7_4.src.rpm","build_date":"Wed 06 Sep 2017 03:08:29 PM PDT","build_host":"c1bm.rdu2.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://invisible-island.net/ncurses/ncurses.html","summary":"Ncurses libraries","description":"The curses library routines are a terminal-independent method of updating character screens with reasonable optimization. The ncurses (new curses) library is a freely distributable replacement for the discontinued 4.4 BSD classic curses library. This package contains the ncurses libraries.","build_epoch":1504735709,"build_epoch_utc":null},{"name":"dhcp-libs","epoch":12,"version":"4.2.5","release":"77.el7.centos","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:59 AM PDT","group":"System Environment/Base","size":149200,"license":"ISC","signature":"RSA/SHA256, Thu 22 Aug 2019 02:22:20 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"dhcp-4.2.5-77.el7.centos.src.rpm","build_date":"Thu 08 Aug 2019 04:10:22 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://isc.org/products/DHCP/","summary":"Shared libraries used by ISC dhcp client and server","description":"This package contains shared libraries used by ISC dhcp client and server","build_epoch":1565305822,"build_epoch_utc":null},{"name":"libffi","version":"3.0.13","release":"18.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:16 AM PDT","group":"System Environment/Libraries","size":47766,"license":"MIT and Public Domain","signature":"RSA/SHA256, Sun 20 Nov 2016 10:39:28 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"libffi-3.0.13-18.el7.src.rpm","build_date":"Sat 05 Nov 2016 09:30:28 AM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://sourceware.org/libffi","summary":"A portable foreign function interface library","description":"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.","build_epoch":1478363428,"build_epoch_utc":null},{"name":"dhcp-common","epoch":12,"version":"4.2.5","release":"77.el7.centos","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:01 AM PDT","group":"System Environment/Base","size":245529,"license":"ISC","signature":"RSA/SHA256, Thu 22 Aug 2019 02:22:18 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"dhcp-4.2.5-77.el7.centos.src.rpm","build_date":"Thu 08 Aug 2019 04:10:22 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://isc.org/products/DHCP/","summary":"Common files used by ISC dhcp client and server","description":"DHCP (Dynamic Host Configuration Protocol) is a protocol which allows individual devices on an IP network to get their own network configuration information (IP address, subnetmask, broadcast address, etc.) from a DHCP server. The overall purpose of DHCP is to make it easier to administer a large network. This package provides common files used by dhcp and dhclient package.","build_epoch":1565305822,"build_epoch_utc":null},{"name":"pcre","version":"8.32","release":"17.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:16 AM PDT","group":"System Environment/Libraries","size":1475532,"license":"BSD","signature":"RSA/SHA256, Thu 10 Aug 2017 12:04:31 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"pcre-8.32-17.el7.src.rpm","build_date":"Tue 01 Aug 2017 08:08:12 PM PDT","build_host":"c1bm.rdu2.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.pcre.org/","summary":"Perl-compatible regular expression library","just_provides_a_posix_calling_interface_to_pcre":"the regular expressions","description":"Perl-compatible regular expression library. PCRE has its own native API, but a set of \"wrapper\" functions that are based on the POSIX API are also supplied in the library libpcreposix. Note that this just provides a POSIX calling interface to PCRE: the regular expressions themselves still follow Perl syntax and semantics. The header file for the POSIX-style functions is called pcreposix.h.","build_epoch":1501643292,"build_epoch_utc":null},{"name":"grub2-tools-extra","epoch":1,"version":"2.02","release":"0.80.el7.centos","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:14 AM PDT","group":"System Environment/Base","size":6342188,"license":"GPLv3+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:25:17 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"grub2-2.02-0.80.el7.centos.src.rpm","build_date":"Thu 08 Aug 2019 04:31:11 AM PDT","build_host":"kbuilder.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnu.org/software/grub/","summary":"Support tools for GRUB.","description":"The GRand Unified Bootloader (GRUB) is a highly configurable and customizable bootloader with modular architecture. It supports a rich variety of kernel formats, file systems, computer architectures and hardware devices. This subpackage provides tools for support of all platforms.","build_epoch":1565263871,"build_epoch_utc":null},{"name":"p11-kit","version":"0.23.5","release":"3.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:16 AM PDT","group":"Unspecified","size":1337825,"license":"BSD","signature":"RSA/SHA256, Thu 10 Aug 2017 11:44:31 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"p11-kit-0.23.5-3.el7.src.rpm","build_date":"Fri 04 Aug 2017 04:37:00 PM PDT","build_host":"c1bm.rdu2.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://p11-glue.freedesktop.org/p11-kit.html","summary":"Library for loading and sharing PKCS#11 modules","description":"p11-kit provides a way to load and enumerate PKCS#11 modules, as well as a standard configuration setup for installing PKCS#11 modules in such a way that they're discoverable.","build_epoch":1501889820,"build_epoch_utc":null},{"name":"lvm2","epoch":7,"version":"2.02.185","release":"2.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:15 AM PDT","group":"System Environment/Base","size":3117026,"license":"GPLv2","signature":"RSA/SHA256, Thu 22 Aug 2019 02:34:51 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"lvm2-2.02.185-2.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:44:27 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://sources.redhat.com/lvm2","summary":"Userland logical volume management tools","description":"LVM2 includes all of the support for handling read/write operations on physical volumes (hard disks, RAID-Systems, magneto optical, etc., multiple devices (MD), see mdadm(8) or even loop devices, see losetup(8)), creating volume groups (kind of virtual disks) from one or more physical volumes and creating one or more logical volumes (kind of logical partitions) in volume groups.","build_epoch":1565311467,"build_epoch_utc":null},{"name":"libtasn1","version":"4.10","release":"1.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:16 AM PDT","group":"System Environment/Libraries","size":424486,"license":"GPLv3+ and LGPLv2+","signature":"RSA/SHA256, Thu 10 Aug 2017 10:58:43 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libtasn1-4.10-1.el7.src.rpm","build_date":"Tue 01 Aug 2017 05:21:37 PM PDT","build_host":"c1bm.rdu2.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnu.org/software/libtasn1/","summary":"The ASN.1 library used in GNUTLS","description":"A library that provides Abstract Syntax Notation One (ASN.1, as specified by the X.680 ITU-T recommendation) parsing and structures management, and Distinguished Encoding Rules (DER, as per X.690) encoding and decoding functions.","build_epoch":1501633297,"build_epoch_utc":null},{"name":"systemd-sysv","version":"219","release":"67.el7_7.1","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:16 AM PDT","group":"Unspecified","size":3979,"license":"LGPLv2+","signature":"RSA/SHA256, Sat 14 Sep 2019 04:50:41 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"systemd-219-67.el7_7.1.src.rpm","build_date":"Fri 13 Sep 2019 11:21:31 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.freedesktop.org/wiki/Software/systemd","summary":"SysV tools for systemd","description":"SysV compatibility tools for systemd","build_epoch":1568398891,"build_epoch_utc":null},{"name":"docker-common","epoch":2,"version":"1.13.1","release":"103.git7f2769b.el7.centos","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:26 AM PDT","group":"Unspecified","size":4481,"license":"ASL 2.0","signature":"RSA/SHA256, Mon 16 Sep 2019 05:33:25 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"docker-1.13.1-103.git7f2769b.el7.centos.src.rpm","build_date":"Sun 15 Sep 2019 07:07:52 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/docker/docker","summary":"Common files for docker and docker-latest","description":"This package contains the common files /usr/bin/docker which will point to /usr/bin/docker-current or /usr/bin/docker-latest configurable via /etc/sysconfig/docker","build_epoch":1568556472,"build_epoch_utc":null},{"name":"plymouth","version":"0.8.9","release":"0.32.20140113.el7.centos","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:27 AM PDT","group":"System Environment/Base","size":233304,"license":"GPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:39:19 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"plymouth-0.8.9-0.32.20140113.el7.centos.src.rpm","build_date":"Thu 08 Aug 2019 04:51:46 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.freedesktop.org/wiki/Software/Plymouth","summary":"Graphical Boot Animation and Logger","description":"Plymouth provides an attractive graphical boot animation in place of the text messages that normally get shown. Text messages are instead redirected to a log file for viewing after boot.","build_epoch":1565265106,"build_epoch_utc":null},{"name":"irqbalance","epoch":3,"version":"1.0.7","release":"12.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:45 AM PDT","group":"System Environment/Base","size":71212,"license":"GPLv2","signature":"RSA/SHA256, Thu 22 Aug 2019 02:26:22 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"irqbalance-1.0.7-12.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:57:59 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/Irqbalance/irqbalance","summary":"IRQ balancing daemon","description":"irqbalance is a daemon that evenly distributes IRQ load across multiple CPUs for enhanced performance.","build_epoch":1565308679,"build_epoch_utc":null},{"name":"libcap-ng","version":"0.7.5","release":"4.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:18 AM PDT","group":"System Environment/Libraries","size":50510,"license":"LGPLv2+","signature":"RSA/SHA256, Wed 25 Nov 2015 06:52:00 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"libcap-ng-0.7.5-4.el7.src.rpm","build_date":"Thu 19 Nov 2015 10:38:30 PM PST","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://people.redhat.com/sgrubb/libcap-ng","summary":"An alternate posix capabilities library","description":"Libcap-ng is a library that makes using posix capabilities easier","build_epoch":1448001510,"build_epoch_utc":null},{"name":"kexec-tools","version":"2.0.15","release":"33.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:49 AM PDT","group":"Applications/System","size":779247,"license":"GPLv2","signature":"RSA/SHA256, Thu 22 Aug 2019 02:28:13 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"kexec-tools-2.0.15-33.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:41:23 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","summary":"The kexec/kdump userspace component.","description":"kexec-tools provides /sbin/kexec binary that facilitates a new kernel to boot using the kernel's kexec feature either on a normal or a panic reboot. This package contains the /sbin/kexec binary and ancillary utilities that together form the userspace component of the kernel's kexec feature.","build_epoch":1565264483,"build_epoch_utc":null},{"name":"python-backports","version":"1.0","release":"8.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 12:00:19 PM PDT","group":"Unspecified","size":638,"license":"Public Domain","signature":"RSA/SHA256, Sat 14 Mar 2015 01:30:55 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"python-backports-1.0-8.el7.src.rpm","build_date":"Thu 05 Mar 2015 09:10:25 PM PST","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://pypi.python.org/pypi/backports","summary":"Namespace for backported Python features","description":"The backports namespace is a namespace reserved for features backported from the Python standard library to older versions of Python 2. Packages that exist in the backports namespace in Fedora should not provide their own backports/__init__.py, but instead require this package. Backports to earlier versions of Python 3, if they exist, do not need this package because of changes made in Python 3.3 in PEP 420 (http://www.python.org/dev/peps/pep-0420/).","build_epoch":1425618625,"build_epoch_utc":null},{"name":"cpio","version":"2.11","release":"27.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:18 AM PDT","group":"Applications/Archiving","size":689335,"license":"GPLv3+","signature":"RSA/SHA256, Wed 25 Apr 2018 03:56:03 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"cpio-2.11-27.el7.src.rpm","build_date":"Tue 10 Apr 2018 04:51:52 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnu.org/software/cpio/","summary":"A GNU archiving program","tape,_or_a_pipe.__gnu_cpio_supports_the_following_archive_formats":"binary,","description":"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.","build_epoch":1523404312,"build_epoch_utc":null},{"name":"NetworkManager-tui","epoch":1,"version":"1.18.0","release":"5.el7_7.1","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:49 AM PDT","group":"System Environment/Base","size":659215,"license":"GPLv2+","signature":"RSA/SHA256, Sat 14 Sep 2019 04:49:32 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"NetworkManager-1.18.0-5.el7_7.1.src.rpm","build_date":"Fri 13 Sep 2019 11:05:30 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnome.org/projects/NetworkManager/","summary":"NetworkManager curses-based UI","description":"This adds a curses-based \"TUI\" (Text User Interface) to NetworkManager, to allow performing some of the operations supported by nm-connection-editor and nm-applet in a non-graphical environment.","build_epoch":1568397930,"build_epoch_utc":null},{"name":"oci-register-machine","epoch":1,"version":"0","release":"6.git2b44233.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 12:00:20 PM PDT","group":"Unspecified","size":3372952,"license":"ASL 2.0","signature":"RSA/SHA256, Fri 09 Mar 2018 04:57:06 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"oci-register-machine-0-6.git2b44233.el7.src.rpm","build_date":"Wed 07 Mar 2018 09:09:27 AM PST","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/projectatomic/oci-register-machine","summary":"Golang binary to register OCI containers with systemd-machined","description":"Golang binary to register OCI containers with systemd-machined","build_epoch":1520442567,"build_epoch_utc":null},{"name":"which","version":"2.20","release":"7.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:18 AM PDT","group":"Applications/System","size":76962,"license":"GPLv3","signature":"RSA/SHA256, Thu 03 Jul 2014 10:43:07 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"which-2.20-7.el7.src.rpm","build_date":"Mon 09 Jun 2014 07:25:22 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.xs4all.nl/~carlo17/which/","summary":"Displays where a particular program in your path is located","description":"The which command shows the full pathname of a specified program, if the specified program is in your PATH.","build_epoch":1402367122,"build_epoch_utc":null},{"name":"chrony","version":"3.4","release":"1.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:50 AM PDT","group":"System Environment/Daemons","size":502859,"license":"GPLv2","signature":"RSA/SHA256, Thu 22 Aug 2019 02:21:16 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"chrony-3.4-1.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:42:19 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://chrony.tuxfamily.org","summary":"An NTP client/server","description":"A client/server for the Network Time Protocol, this program keeps your computer's clock accurate. It was specially designed to support systems with intermittent internet connections, but it also works well in permanently connected environments. It can use also hardware reference clocks, system real-time clock or manual input as time references.","build_epoch":1565264539,"build_epoch_utc":null},{"name":"sqlite","version":"3.7.17","release":"8.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:19 AM PDT","group":"Applications/Databases","size":814231,"license":"Public Domain","signature":"RSA/SHA256, Wed 25 Nov 2015 07:40:39 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"sqlite-3.7.17-8.el7.src.rpm","build_date":"Fri 20 Nov 2015 12:45:59 AM PST","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.sqlite.org/","summary":"Library that implements an embeddable SQL database engine","description":"SQLite is a C library that implements an SQL database engine. A large subset of SQL92 is supported. A complete database is stored in a single disk file. The API is designed for convenience and ease of use. Applications that link against SQLite can enjoy the power and flexibility of an SQL database without the administrative hassles of supporting a separate database server. Version 2 and version 3 binaries are named to permit each to be installed on a single host","build_epoch":1448009159,"build_epoch_utc":null},{"name":"microcode_ctl","epoch":2,"version":"2.1","release":"53.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:53 AM PDT","group":"System Environment/Base","size":2651210,"license":"GPLv2+ and Redistributable, no modification permitted","signature":"RSA/SHA256, Thu 22 Aug 2019 02:35:33 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"microcode_ctl-2.1-53.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:58:14 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://pagure.io/microcode_ctl","summary":"Tool to transform and deploy CPU microcode update for x86.","description":"The microcode_ctl utility is a companion to the microcode driver written by Tigran Aivazian . The microcode update is volatile and needs to be uploaded on each system boot i.e. it doesn't reflash your cpu permanently, reboot and it reverts back to the old microcode.","build_epoch":1565312294,"build_epoch_utc":null},{"name":"file-libs","version":"5.11","release":"35.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:19 AM PDT","group":"Applications/File","size":3076831,"license":"BSD","signature":"RSA/SHA256, Mon 12 Nov 2018 06:25:10 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"file-5.11-35.el7.src.rpm","build_date":"Tue 30 Oct 2018 11:16:23 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.darwinsys.com/file/","summary":"Libraries for applications using libmagic","description":"Libraries for applications using libmagic.","build_epoch":1540923383,"build_epoch_utc":null},{"name":"openssl","epoch":1,"version":"1.0.2k","release":"19.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:58 AM PDT","group":"System Environment/Libraries","size":833707,"license":"OpenSSL","signature":"RSA/SHA256, Thu 22 Aug 2019 02:37:31 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"openssl-1.0.2k-19.el7.src.rpm","build_date":"Thu 08 Aug 2019 06:40:02 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.openssl.org/","summary":"Utilities from the general purpose cryptography library with TLS implementation","description":"The OpenSSL toolkit provides support for secure communications between machines. OpenSSL includes a certificate management tool and shared libraries which provide various cryptographic algorithms and protocols.","build_epoch":1565314802,"build_epoch_utc":null},{"name":"libcroco","version":"0.6.12","release":"4.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:19 AM PDT","group":"System Environment/Libraries","size":320955,"license":"LGPLv2","signature":"RSA/SHA256, Mon 12 Nov 2018 06:31:55 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"libcroco-0.6.12-4.el7.src.rpm","build_date":"Tue 30 Oct 2018 11:03:18 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","summary":"A CSS2 parsing library","description":"CSS2 parsing and manipulation library for GNOME","build_epoch":1540922598,"build_epoch_utc":null},{"name":"mariadb-libs","epoch":1,"version":"5.5.64","release":"1.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:23:00 AM PDT","group":"Applications/Databases","size":4615213,"license":"GPLv2 with exceptions and LGPLv2 and BSD","signature":"RSA/SHA256, Thu 22 Aug 2019 02:35:07 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"mariadb-5.5.64-1.el7.src.rpm","build_date":"Thu 08 Aug 2019 07:29:56 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://mariadb.org","summary":"The shared libraries required for MariaDB/MySQL clients","description":"The mariadb-libs package provides the essential shared libraries for any MariaDB/MySQL client program or interface. You will need to install this package to use any other MariaDB package or any clients that need to connect to a MariaDB/MySQL server. MariaDB is a community developed branch of MySQL.","build_epoch":1565274596,"build_epoch_utc":null},{"name":"libgomp","version":"4.8.5","release":"39.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:23:01 AM PDT","group":"System Environment/Libraries","size":212184,"license":"GPLv3+ and GPLv3+ with exceptions and GPLv2+ with exceptions and LGPLv2+ and BSD","signature":"RSA/SHA256, Thu 22 Aug 2019 02:29:46 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"gcc-4.8.5-39.el7.src.rpm","build_date":"Tue 06 Aug 2019 10:15:38 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://gcc.gnu.org","summary":"GCC OpenMP v3.0 shared support library","description":"This package contains GCC shared support library which is needed for OpenMP v3.0 support.","build_epoch":1565111738,"build_epoch_utc":null},{"name":"libnl3-cli","version":"3.2.28","release":"4.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:20 AM PDT","group":"Development/Libraries","size":706246,"license":"LGPLv2","signature":"RSA/SHA256, Thu 10 Aug 2017 10:22:53 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libnl3-3.2.28-4.el7.src.rpm","build_date":"Thu 03 Aug 2017 12:49:03 PM PDT","build_host":"c1bm.rdu2.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.infradead.org/~tgr/libnl/","summary":"Command line interface utils for libnl3","description":"This package contains various libnl3 utils and additional libraries on which they depend","build_epoch":1501789743,"build_epoch_utc":null},{"name":"iwl3945-firmware","version":"15.32.2.9","release":"72.el7","architecture":"noarch","install_date":"Wed 16 Oct 2019 09:23:01 AM PDT","group":"System Environment/Kernel","size":287230,"license":"Redistributable, no modification permitted","signature":"RSA/SHA256, Thu 22 Aug 2019 02:58:07 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"linux-firmware-20190429-72.gitddde598.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:22:46 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/","summary":"Firmware for Intel® PRO/Wireless 3945 A/B/G network adaptors","description":"This package contains the firmware required by the iwl3945 driver for Linux. Usage of the firmware is subject to the terms and conditions contained inside the provided LICENSE file. Please read it carefully.","build_epoch":1565266966,"build_epoch_utc":null},{"name":"groff-base","version":"1.22.2","release":"8.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:20 AM PDT","group":"Applications/Publishing","size":3453946,"license":"GPLv3+ and GFDL and BSD and MIT","signature":"RSA/SHA256, Thu 03 Jul 2014 06:45:51 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"groff-1.22.2-8.el7.src.rpm","build_date":"Mon 09 Jun 2014 01:17:26 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnu.org/software/groff/","summary":"Parts of the groff formatting system required to display manual pages","description":"The groff-base package contains only necessary parts of groff formatting system which are required to display manual pages, and the groff's default display device (PostScript).","build_epoch":1402345046,"build_epoch_utc":null},{"name":"iwl5150-firmware","version":"8.24.2.2","release":"72.el7","architecture":"noarch","install_date":"Wed 16 Oct 2019 09:23:02 AM PDT","group":"System Environment/Kernel","size":474530,"license":"Redistributable, no modification permitted","signature":"RSA/SHA256, Thu 22 Aug 2019 02:58:10 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"linux-firmware-20190429-72.gitddde598.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:22:46 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/","summary":"Firmware for Intel® PRO/Wireless 5150 A/G/N network adaptors","description":"This package contains the firmware required by the iwl5150 driver for Linux. Usage of the firmware is subject to the terms and conditions contained inside the provided LICENSE file. Please read it carefully.","build_epoch":1565266966,"build_epoch_utc":null},{"name":"libedit","version":"3.0","release":"12.20121213cvs.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:20 AM PDT","group":"System Environment/Libraries","size":244257,"license":"BSD","signature":"RSA/SHA256, Thu 03 Jul 2014 07:44:30 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libedit-3.0-12.20121213cvs.el7.src.rpm","build_date":"Mon 09 Jun 2014 03:33:10 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.thrysoee.dk/editline/","summary":"The NetBSD Editline library","description":"Libedit is an autotool- and libtoolized port of the NetBSD Editline library. It provides generic line editing, history, and tokenization functions, similar to those found in GNU Readline.","build_epoch":1402353190,"build_epoch_utc":null},{"name":"iwl6000g2a-firmware","version":"17.168.5.3","release":"72.el7","architecture":"noarch","install_date":"Wed 16 Oct 2019 09:23:02 AM PDT","group":"System Environment/Kernel","size":1258554,"license":"Redistributable, no modification permitted","signature":"RSA/SHA256, Thu 22 Aug 2019 02:58:12 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"linux-firmware-20190429-72.gitddde598.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:22:46 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/","summary":"Firmware for Intel(R) Wireless WiFi Link 6005 Series Adapters","description":"This package contains the firmware required by the iwlagn driver for Linux. Usage of the firmware is subject to the terms and conditions contained inside the provided LICENSE file. Please read it carefully.","build_epoch":1565266966,"build_epoch_utc":null},{"name":"libnfnetlink","version":"1.0.1","release":"4.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:21 AM PDT","group":"System Environment/Libraries","size":47123,"license":"GPLv2+","signature":"RSA/SHA256, Thu 03 Jul 2014 08:01:58 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libnfnetlink-1.0.1-4.el7.src.rpm","build_date":"Mon 09 Jun 2014 05:21:22 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://netfilter.org","summary":"Netfilter netlink userspace library","description":"libnfnetlink is a userspace library that provides some low-level nfnetlink handling functions. It is used as a foundation for other, netfilter subsystem specific libraries such as libnfnetlink_conntrack, libnfnetlink_log and libnfnetlink_queue.","build_epoch":1402359682,"build_epoch_utc":null},{"name":"iwl2030-firmware","version":"18.168.6.1","release":"72.el7","architecture":"noarch","install_date":"Wed 16 Oct 2019 09:23:05 AM PDT","group":"System Environment/Kernel","size":844522,"license":"Redistributable, no modification permitted","signature":"RSA/SHA256, Thu 22 Aug 2019 02:58:05 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"linux-firmware-20190429-72.gitddde598.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:22:46 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/","summary":"Firmware for Intel(R) Centrino Wireless-N 2030 Series Adapters","description":"This package contains the firmware required by the iwlagn driver for Linux to support the iwl2030 hardware. Usage of the firmware is subject to the terms and conditions contained inside the provided LICENSE file. Please read it carefully.","build_epoch":1565266966,"build_epoch_utc":null},{"name":"openldap","version":"2.4.44","release":"21.el7_6","architecture":"x86_64","install_date":"Thu 15 Aug 2019 12:01:15 PM PDT","group":"System Environment/Daemons","size":1037424,"license":"OpenLDAP","signature":"RSA/SHA256, Fri 01 Feb 2019 08:21:40 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"openldap-2.4.44-21.el7_6.src.rpm","build_date":"Tue 29 Jan 2019 09:43:41 AM PST","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.openldap.org/","summary":"LDAP support libraries","description":"OpenLDAP is an open source suite of LDAP (Lightweight Directory Access Protocol) applications and development tools. LDAP is a set of protocols for accessing directory services (usually phone book style information, but other information is possible) over the Internet, similar to the way DNS (Domain Name System) information is propagated over the Internet. The openldap package contains configuration files, libraries, and documentation for OpenLDAP.","build_epoch":1548783821,"build_epoch_utc":null},{"name":"lsof","version":"4.87","release":"6.el7","architecture":"x86_64","install_date":"Tue 22 Oct 2019 03:59:58 PM PDT","group":"Development/Debuggers","size":949035,"license":"zlib and Sendmail and LGPLv2+","signature":"RSA/SHA256, Mon 12 Nov 2018 06:39:26 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"lsof-4.87-6.el7.src.rpm","build_date":"Tue 30 Oct 2018 09:28:20 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://people.freebsd.org/~abe/","summary":"A utility which lists open files on a Linux/UNIX system","lsof_stands_for_list_open_files,_and_it_does_just_that":"it lists","description":"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.","build_epoch":1540916900,"build_epoch_utc":null},{"name":"sysstat","version":"10.1.5","release":"18.el7","architecture":"x86_64","install_date":"Tue 29 Oct 2019 11:35:07 PM PDT","group":"Applications/System","size":1172464,"license":"GPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:44:12 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"sysstat-10.1.5-18.el7.src.rpm","build_date":"Thu 08 Aug 2019 07:54:59 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://sebastien.godard.pagesperso-orange.fr/","summary":"Collection of performance monitoring tools for Linux","description":"The sysstat package contains sar, sadf, mpstat, iostat, pidstat, nfsiostat-sysstat, tapestat, cifsiostat and sa tools for Linux. The sar command collects and reports system activity information. This information can be saved in a file in a binary format for future inspection. The statistics reported by sar concern I/O transfer rates, paging activity, process-related activities, interrupts, network activity, memory and swap space utilization, CPU utilization, kernel activities and TTY statistics, among others. Both UP and SMP machines are fully supported. The sadf command may be used to display data collected by sar in various formats (CSV, XML, etc.). The iostat command reports CPU utilization and I/O statistics for disks. The tapestat command reports statistics for tapes connected to the system. The mpstat command reports global and per-processor statistics. The pidstat command reports statistics for Linux tasks (processes). The nfsiostat-sysstat command reports I/O statistics for network file systems. The cifsiostat command reports I/O statistics for CIFS file systems.","build_epoch":1565319299,"build_epoch_utc":null},{"name":"pciutils-libs","version":"3.5.1","release":"3.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:22 AM PDT","group":"System Environment/Libraries","size":72691,"license":"GPLv2+","signature":"RSA/SHA256, Wed 25 Apr 2018 04:34:19 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"pciutils-3.5.1-3.el7.src.rpm","build_date":"Tue 10 Apr 2018 07:50:42 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://atrey.karlin.mff.cuni.cz/~mj/pciutils.shtml","summary":"Linux PCI library","description":"This package contains a library for inspecting and setting devices connected to the PCI bus.","build_epoch":1523415042,"build_epoch_utc":null},{"name":"rubygem-bigdecimal","version":"1.2.0","release":"36.el7","architecture":"x86_64","install_date":"Sat 16 Nov 2019 02:29:24 PM PST","group":"Development/Libraries","size":84611,"license":"GPL+ or Artistic","signature":"RSA/SHA256, Thu 22 Aug 2019 02:42:56 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"ruby-2.0.0.648-36.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:30:13 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://ruby-lang.org/","summary":"BigDecimal provides arbitrary-precision floating point decimal arithmetic","description":"Ruby provides built-in support for arbitrary precision integer arithmetic. For example: 42**13 -> 1265437718438866624512 BigDecimal provides similar support for very large or very accurate floating point numbers. Decimal arithmetic is also useful for general calculation, because it provides the correct answers people expect–whereas normal binary floating point arithmetic often introduces subtle errors because of the conversion between base 10 and base 2.","build_epoch":1565267413,"build_epoch_utc":null},{"name":"ruby-irb","version":"2.0.0.648","release":"36.el7","architecture":"noarch","install_date":"Sat 16 Nov 2019 02:29:25 PM PST","group":"Development/Libraries","size":160544,"license":"(Ruby or BSD) and Public Domain","signature":"RSA/SHA256, Thu 22 Aug 2019 03:00:54 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"ruby-2.0.0.648-36.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:30:13 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://ruby-lang.org/","summary":"The Interactive Ruby","description":"The irb is acronym for Interactive Ruby. It evaluates ruby expression from the terminal.","build_epoch":1565267413,"build_epoch_utc":null},{"name":"python-configobj","version":"4.7.2","release":"7.el7","architecture":"noarch","install_date":"Thu 15 Aug 2019 10:53:23 AM PDT","group":"System Environment/Libraries","size":611855,"license":"BSD","signature":"RSA/SHA256, Thu 03 Jul 2014 09:38:24 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"python-configobj-4.7.2-7.el7.src.rpm","build_date":"Mon 09 Jun 2014 11:57:08 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.voidspace.org.uk/python/configobj.html","summary":"Config file reading, writing, and validation","configobj_is_a_simple_but_powerful_config_file_reader_and_writer":"an ini file","description":"ConfigObj is a simple but powerful config file reader and writer: an ini file round tripper. Its main feature is that it is very easy to use, with a straightforward programmer's interface and a simple syntax for config files. It has lots of other features though: * Nested sections (subsections), to any level * List values * Multiple line values * String interpolation (substitution) * Integrated with a powerful validation system o including automatic type checking/conversion o repeated sections o and allowing default values * All comments in the file are preserved * The order of keys/sections is preserved * No external dependencies * Full Unicode support * A powerful unrepr mode for storing basic datatypes","build_epoch":1402383428,"build_epoch_utc":null},{"name":"unzip","version":"6.0","release":"20.el7","architecture":"x86_64","install_date":"Mon 13 Jan 2020 05:29:48 PM PST","group":"Applications/Archiving","size":373994,"license":"BSD","signature":"RSA/SHA256, Thu 22 Aug 2019 02:44:59 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"unzip-6.0-20.el7.src.rpm","build_date":"Thu 08 Aug 2019 08:09:03 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.info-zip.org/UnZip.html","summary":"A utility for unpacking zip files","description":"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.","build_epoch":1565320143,"build_epoch_utc":null},{"name":"libnetfilter_conntrack","version":"1.0.6","release":"1.el7_3","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:23 AM PDT","group":"System Environment/Libraries","size":143566,"license":"GPLv2+","signature":"RSA/SHA256, Thu 25 May 2017 04:23:10 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libnetfilter_conntrack-1.0.6-1.el7_3.src.rpm","build_date":"Thu 25 May 2017 12:59:45 PM PDT","build_host":"c1bm.rdu2.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://netfilter.org","summary":"Netfilter conntrack userspace library","description":"libnetfilter_conntrack is a userspace library providing a programming interface (API) to the in-kernel connection tracking state table.","build_epoch":1495742385,"build_epoch_utc":null},{"name":"mpfr","version":"3.1.1","release":"4.el7","architecture":"x86_64","install_date":"Wed 08 Apr 2020 05:17:22 AM PDT","group":"System Environment/Libraries","size":554279,"license":"LGPLv3+ and GPLv3+ and GFDL","signature":"RSA/SHA256, Thu 03 Jul 2014 08:49:45 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"mpfr-3.1.1-4.el7.src.rpm","build_date":"Mon 09 Jun 2014 06:11:54 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.mpfr.org/","summary":"A C library for multiple-precision floating-point computations","description":"The MPFR library is a C library for multiple-precision floating-point computations with \"correct rounding\". The MPFR is efficient and also has a well-defined semantics. It copies the good ideas from the ANSI/IEEE-754 standard for double-precision floating-point arithmetic (53-bit mantissa). MPFR is based on the GMP multiple-precision library.","build_epoch":1402362714,"build_epoch_utc":null},{"name":"gettext","version":"0.19.8.1","release":"2.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:23 AM PDT","group":"Development/Tools","size":5029340,"license":"GPLv3+ and LGPLv2+","signature":"RSA/SHA256, Thu 10 Aug 2017 09:07:43 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"gettext-0.19.8.1-2.el7.src.rpm","build_date":"Wed 02 Aug 2017 07:28:14 PM PDT","build_host":"c1bm.rdu2.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnu.org/software/gettext/","summary":"GNU libraries and utilities for producing multi-lingual messages","description":"The GNU gettext package provides a set of tools and documentation for producing multi-lingual messages in programs. Tools include a set of conventions about how programs should be written to support message catalogs, a directory and file naming organization for the message catalogs, a runtime library which supports the retrieval of translated messages, and stand-alone programs for handling the translatable and the already translated strings. Gettext provides an easy to use library and tools for creating, using, and modifying natural language catalogs and is a powerful and simple method for internationalizing programs.","build_epoch":1501727294,"build_epoch_utc":null},{"name":"glibc-headers","version":"2.17","release":"292.el7","architecture":"x86_64","install_date":"Wed 08 Apr 2020 05:17:25 AM PDT","group":"Development/Libraries","size":2339702,"license":"LGPLv2+ and LGPLv2+ with exceptions and GPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:24:45 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"glibc-2.17-292.el7.src.rpm","build_date":"Tue 06 Aug 2019 04:23:44 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnu.org/software/glibc/","summary":"Header files for development using standard C libraries.","description":"The glibc-headers package contains the header files necessary for developing programs which use the standard C libraries (which are used by nearly all programs). If you are developing programs which will use the standard C libraries, your system needs to have these standard header files available in order to create the executables. Install glibc-headers if you are going to develop programs which will use the standard C libraries.","build_epoch":1565133824,"build_epoch_utc":null},{"name":"libsepol-devel","version":"2.5","release":"10.el7","architecture":"x86_64","install_date":"Wed 08 Apr 2020 05:24:42 AM PDT","group":"Development/Libraries","size":126580,"license":"LGPLv2+","signature":"RSA/SHA256, Mon 12 Nov 2018 06:37:36 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"libsepol-2.5-10.el7.src.rpm","build_date":"Tue 30 Oct 2018 02:36:15 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/SELinuxProject/selinux/wiki","summary":"Header files and libraries used to build policy manipulation tools","description":"The libsepol-devel package contains the libraries and header files needed for developing applications that manipulate binary policies.","build_epoch":1540935375,"build_epoch_utc":null},{"name":"gobject-introspection","version":"1.56.1","release":"1.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:24 AM PDT","group":"Unspecified","size":854207,"license":"GPLv2+, LGPLv2+, MIT","signature":"RSA/SHA256, Mon 12 Nov 2018 06:28:00 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"gobject-introspection-1.56.1-1.el7.src.rpm","build_date":"Fri 02 Nov 2018 08:25:09 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://wiki.gnome.org/Projects/GObjectIntrospection","summary":"Introspection system for GObject-based libraries","description":"GObject Introspection can scan C header and source files in order to generate introspection \"typelib\" files. It also provides an API to examine typelib files, useful for creating language bindings among other things.","build_epoch":1541172309,"build_epoch_utc":null},{"name":"libcom_err-devel","version":"1.42.9","release":"16.el7","architecture":"x86_64","install_date":"Wed 08 Apr 2020 05:24:42 AM PDT","group":"Development/Libraries","size":17196,"license":"MIT","signature":"RSA/SHA256, Thu 22 Aug 2019 02:29:15 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"e2fsprogs-1.42.9-16.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:19:51 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://e2fsprogs.sourceforge.net/","summary":"Common error description library","description":"This is the common error description development library and headers, part of e2fsprogs. It contains the compile_et commmand, used to convert a table listing error-code names and associated messages messages into a C source file suitable for use with the library. libcom_err is an attempt to present a common error-handling mechanism.","build_epoch":1565306391,"build_epoch_utc":null},{"name":"openssl-devel","epoch":1,"version":"1.0.2k","release":"19.el7","architecture":"x86_64","install_date":"Wed 08 Apr 2020 05:24:44 AM PDT","group":"Development/Libraries","size":3268775,"license":"OpenSSL","signature":"RSA/SHA256, Thu 22 Aug 2019 02:37:32 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"openssl-1.0.2k-19.el7.src.rpm","build_date":"Thu 08 Aug 2019 06:40:02 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.openssl.org/","summary":"Files for development of applications which will use OpenSSL","description":"OpenSSL is a toolkit for supporting cryptography. The openssl-devel package contains include files needed to develop applications which support various cryptographic algorithms and protocols.","build_epoch":1565314802,"build_epoch_utc":null},{"name":"bzip2","version":"1.0.6","release":"13.el7","architecture":"x86_64","install_date":"Tue 14 Apr 2020 08:13:29 AM PDT","group":"Applications/File","size":83791,"license":"BSD","signature":"RSA/SHA256, Wed 25 Nov 2015 06:18:37 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"bzip2-1.0.6-13.el7.src.rpm","build_date":"Thu 19 Nov 2015 09:04:52 PM PST","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.bzip.org/","summary":"A file compression utility","description":"Bzip2 is a freely available, patent-free, high quality data compressor. Bzip2 compresses files to within 10 to 15 percent of the capabilities of the best techniques available. However, bzip2 has the added benefit of being approximately two times faster at compression and six times faster at decompression than those techniques. Bzip2 is not the fastest compression utility, but it does strike a balance between speed and compression capability. Install bzip2 if you need a compression utility.","build_epoch":1447995892,"build_epoch_utc":null},{"name":"devtoolset-3-runtime","version":"3.1","release":"12.el7","architecture":"x86_64","install_date":"Tue 14 Apr 2020 08:42:05 AM PDT","group":"Applications/File","size":6212,"license":"GPLv2+","signature":"RSA/SHA1, Sat 28 Nov 2015 06:50:56 AM PST, Key ID 4eb84e71f2ee9d55","source_rpm":"devtoolset-3-3.1-12.el7.src.rpm","build_date":"Mon 05 Oct 2015 03:10:53 PM PDT","build_host":"c1bj.rdu2.centos.org","relocations":"(not relocatable)","packager":"CBS ","vendor":"CentOS","summary":"Package that handles devtoolset-3 Software Collection.","description":"Package shipping essential scripts to work with devtoolset-3 Software Collection.","build_epoch":1444083053,"build_epoch_utc":null},{"name":"kernel","version":"3.10.0","release":"957.27.2.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 12:01:42 PM PDT","group":"System Environment/Kernel","size":66226363,"license":"GPLv2","signature":"RSA/SHA256, Wed 31 Jul 2019 12:52:32 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"kernel-3.10.0-957.27.2.el7.src.rpm","build_date":"Mon 29 Jul 2019 11:13:51 AM PDT","build_host":"kbuilder.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.kernel.org/","summary":"The Linux kernel","of_the_operating_system":"memory allocation, process allocation, device","description":"The kernel package contains the Linux kernel (vmlinuz), the core of any Linux operating system. The kernel handles the basic functions of the operating system: memory allocation, process allocation, device input and output, etc.","build_epoch":1564424031,"build_epoch_utc":null},{"name":"python-urlgrabber","version":"3.10","release":"9.el7","architecture":"noarch","install_date":"Thu 15 Aug 2019 10:53:25 AM PDT","group":"Development/Libraries","size":503349,"license":"LGPLv2+","signature":"RSA/SHA256, Mon 12 Nov 2018 07:19:19 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"python-urlgrabber-3.10-9.el7.src.rpm","build_date":"Tue 30 Oct 2018 10:15:12 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://urlgrabber.baseurl.org/","summary":"A high-level cross-protocol url-grabber","description":"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.","build_epoch":1540919712,"build_epoch_utc":null},{"name":"python3-pip","version":"9.0.3","release":"5.el7","architecture":"noarch","install_date":"Tue 15 Oct 2019 11:09:08 AM PDT","group":"Development/Libraries","size":9787341,"license":"MIT and Python and ASL 2.0 and BSD and ISC and LGPLv2 and MPLv2.0 and (ASL 2.0 or BSD)","signature":"RSA/SHA256, Thu 22 Aug 2019 02:59:47 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"python-pip-9.0.3-5.el7.src.rpm","build_date":"Wed 07 Aug 2019 10:05:45 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.pip-installer.org","summary":"A tool for installing and managing Python3 packages","description":"pip is a package management system used to install and manage software packages written in Python. Many packages can be found in the Python Package Index (PyPI). pip is a recursive acronym that can stand for either \"Pip Installs Packages\" or \"Pip Installs Python\".","build_epoch":1565197545,"build_epoch_utc":null},{"name":"gpg-pubkey","version":"rpm-4.11.3 (NSS-3)","release":"52ae6884","architecture":"(none)","install_date":"Mon 04 Jan 2021 12:31:55 PM PST","group":"Public Keys","size":0,"license":"pubkey","signature":"(none)","source_rpm":"(none)","build_date":"Sun 15 Dec 2013 06:42:12 PM PST","build_host":"localhost","relocations":"(not relocatable)","packager":"Fedora EPEL (7) ","summary":"gpg(Fedora EPEL (7) )","description":"-----BEGIN PGP PUBLIC KEY BLOCK----- Version: rpm-4.11.3 (NSS-3) mQINBFKuaIQBEAC1UphXwMqCAarPUH/ZsOFslabeTVO2pDk5YnO96f+rgZB7xArB OSeQk7B90iqSJ85/c72OAn4OXYvT63gfCeXpJs5M7emXkPsNQWWSju99lW+AqSNm jYWhmRlLRGl0OO7gIwj776dIXvcMNFlzSPj00N2xAqjMbjlnV2n2abAE5gq6VpqP vFXVyfrVa/ualogDVmf6h2t4Rdpifq8qTHsHFU3xpCz+T6/dGWKGQ42ZQfTaLnDM jToAsmY0AyevkIbX6iZVtzGvanYpPcWW4X0RDPcpqfFNZk643xI4lsZ+Y2Er9Yu5 S/8x0ly+tmmIokaE0wwbdUu740YTZjCesroYWiRg5zuQ2xfKxJoV5E+Eh+tYwGDJ n6HfWhRgnudRRwvuJ45ztYVtKulKw8QQpd2STWrcQQDJaRWmnMooX/PATTjCBExB 9dkz38Druvk7IkHMtsIqlkAOQMdsX1d3Tov6BE2XDjIG0zFxLduJGbVwc/6rIc95 T055j36Ez0HrjxdpTGOOHxRqMK5m9flFbaxxtDnS7w77WqzW7HjFrD0VeTx2vnjj GqchHEQpfDpFOzb8LTFhgYidyRNUflQY35WLOzLNV+pV3eQ3Jg11UFwelSNLqfQf uFRGc+zcwkNjHh5yPvm9odR1BIfqJ6sKGPGbtPNXo7ERMRypWyRz0zi0twARAQAB tChGZWRvcmEgRVBFTCAoNykgPGVwZWxAZmVkb3JhcHJvamVjdC5vcmc+iQI4BBMB AgAiBQJSrmiEAhsPBgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAAKCRBqL66iNSxk 5cfGD/4spqpsTjtDM7qpytKLHKruZtvuWiqt5RfvT9ww9GUUFMZ4ZZGX4nUXg49q ixDLayWR8ddG/s5kyOi3C0uX/6inzaYyRg+Bh70brqKUK14F1BrrPi29eaKfG+Gu MFtXdBG2a7OtPmw3yuKmq9Epv6B0mP6E5KSdvSRSqJWtGcA6wRS/wDzXJENHp5re 9Ism3CYydpy0GLRA5wo4fPB5uLdUhLEUDvh2KK//fMjja3o0L+SNz8N0aDZyn5Ax CU9RB3EHcTecFgoy5umRj99BZrebR1NO+4gBrivIfdvD4fJNfNBHXwhSH9ACGCNv HnXVjHQF9iHWApKkRIeh8Fr2n5dtfJEF7SEX8GbX7FbsWo29kXMrVgNqHNyDnfAB VoPubgQdtJZJkVZAkaHrMu8AytwT62Q4eNqmJI1aWbZQNI5jWYqc6RKuCK6/F99q thFT9gJO17+yRuL6Uv2/vgzVR1RGdwVLKwlUjGPAjYflpCQwWMAASxiv9uPyYPHc ErSrbRG0wjIfAR3vus1OSOx3xZHZpXFfmQTsDP7zVROLzV98R3JwFAxJ4/xqeON4 vCPFU6OsT3lWQ8w7il5ohY95wmujfr6lk89kEzJdOTzcn7DBbUru33CQMGKZ3Evt RjsC7FDbL017qxS+ZVA/HGkyfiu4cpgV8VUnbql5eAZ+1Ll6Dw== =hdPa -----END PGP PUBLIC KEY BLOCK-----","build_epoch":1387161732,"build_epoch_utc":null},{"name":"perl-HTTP-Tiny","version":"0.033","release":"3.el7","architecture":"noarch","install_date":"Tue 15 Oct 2019 11:27:57 AM PDT","group":"Development/Libraries","size":97210,"license":"GPL+ or Artistic","signature":"RSA/SHA256, Thu 03 Jul 2014 09:19:08 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"perl-HTTP-Tiny-0.033-3.el7.src.rpm","build_date":"Mon 09 Jun 2014 01:53:37 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://search.cpan.org/dist/HTTP-Tiny/","summary":"Small, simple, correct HTTP/1.1 client","description":"This is a very simple HTTP/1.1 client, designed for doing simple GET requests without the overhead of a large framework like LWP::UserAgent. It is more correct and more complete than HTTP::Lite. It supports proxies (currently only non-authenticating ones) and redirection. It also correctly resumes after EINTR.","build_epoch":1402347217,"build_epoch_utc":null},{"name":"acl","version":"2.2.51","release":"14.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:27 AM PDT","group":"System Environment/Base","size":201225,"license":"GPLv2+","signature":"RSA/SHA256, Wed 25 Apr 2018 03:52:22 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"acl-2.2.51-14.el7.src.rpm","build_date":"Tue 10 Apr 2018 05:41:24 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://acl.bestbits.at/","summary":"Access control list utilities","description":"This package contains the getfacl and setfacl utilities needed for manipulating access control lists.","build_epoch":1523407284,"build_epoch_utc":null},{"name":"wireless-tools","epoch":1,"version":"29","release":"13.el7","architecture":"x86_64","install_date":"Mon 04 Jan 2021 12:32:02 PM PST","group":"System Environment/Base","size":242259,"license":"GPL+","signature":"RSA/SHA256, Tue 16 Dec 2014 01:47:54 PM PST, Key ID 6a2faea2352c64e5","source_rpm":"wireless-tools-29-13.el7.src.rpm","build_date":"Mon 15 Dec 2014 01:39:37 PM PST","build_host":"buildhw-09.phx2.fedoraproject.org","relocations":"(not relocatable)","packager":"Fedora Project","vendor":"Fedora Project","url":"http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/Tools.html","summary":"Wireless ethernet configuration tools","description":"This package contain the Wireless tools, used to manipulate the Wireless Extensions. The Wireless Extension is an interface allowing you to set Wireless LAN specific parameters and get the specific stats for wireless networking equipment.","build_epoch":1418679577,"build_epoch_utc":null},{"name":"perl-Encode","version":"2.51","release":"7.el7","architecture":"x86_64","install_date":"Tue 15 Oct 2019 11:27:58 AM PDT","group":"Development/Libraries","size":10176350,"license":"GPL+ or Artistic","signature":"RSA/SHA256, Thu 03 Jul 2014 09:17:22 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"perl-Encode-2.51-7.el7.src.rpm","build_date":"Mon 09 Jun 2014 07:49:45 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://search.cpan.org/dist/Encode/","summary":"Character encodings in Perl","description":"The Encode module provides the interface between Perl strings and the rest of the system. Perl strings are sequences of characters.","build_epoch":1402368585,"build_epoch_utc":null},{"name":"mozjs17","version":"17.0.0","release":"20.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:28 AM PDT","group":"Development/Languages","size":4045213,"license":"GPLv2+ or LGPLv2+ or MPLv1.1","signature":"RSA/SHA256, Wed 25 Apr 2018 04:27:32 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"mozjs17-17.0.0-20.el7.src.rpm","build_date":"Tue 10 Apr 2018 05:33:07 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.mozilla.org/js/","summary":"JavaScript interpreter and libraries","description":"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.","build_epoch":1523406787,"build_epoch_utc":null},{"name":"oniguruma","version":"6.8.2","release":"1.el7","architecture":"x86_64","install_date":"Wed 31 Mar 2021 06:30:28 PM PDT","group":"System Environment/Libraries","size":688419,"license":"BSD","signature":"RSA/SHA256, Thu 28 May 2020 09:51:06 AM PDT, Key ID 6a2faea2352c64e5","source_rpm":"oniguruma-6.8.2-1.el7.src.rpm","build_date":"Tue 26 May 2020 12:24:56 PM PDT","build_host":"buildhw-03.phx2.fedoraproject.org","relocations":"(not relocatable)","packager":"Fedora Project","vendor":"Fedora Project","url":"https://github.com/kkos/oniguruma/","bug_url":"https://bugz.fedoraproject.org/oniguruma","summary":"Regular expressions library","(supported_apis":"GNU regex, POSIX and Oniguruma native)","description":"Oniguruma is a regular expressions library. The characteristics of this library is that different character encoding for every regular expression object can be specified. (supported APIs: GNU regex, POSIX and Oniguruma native)","build_epoch":1590521096,"build_epoch_utc":null},{"name":"perl-macros","epoch":4,"version":"5.16.3","release":"294.el7_6","architecture":"x86_64","install_date":"Tue 15 Oct 2019 11:27:58 AM PDT","group":"Development/Languages","size":5134,"license":"GPL+ or Artistic","signature":"RSA/SHA256, Thu 24 Jan 2019 05:22:17 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"perl-5.16.3-294.el7_6.src.rpm","build_date":"Mon 21 Jan 2019 02:12:20 PM PST","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.perl.org/","summary":"Macros for rpmbuild","description":"Macros for rpmbuild are needed during build of srpm in koji. This sub-package must be installed into buildroot, so it will be needed by perl. Perl is needed because of git.","build_epoch":1548108740,"build_epoch_utc":null},{"name":"perl-Time-Local","version":"1.2300","release":"2.el7","architecture":"noarch","install_date":"Tue 15 Oct 2019 11:27:58 AM PDT","group":"Development/Libraries","size":44062,"license":"GPL+ or Artistic","signature":"RSA/SHA256, Thu 03 Jul 2014 09:25:36 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"perl-Time-Local-1.2300-2.el7.src.rpm","build_date":"Mon 09 Jun 2014 12:31:30 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://search.cpan.org/dist/Time-Local/","summary":"Efficiently compute time from local and GMT time","description":"This module provides functions that are the inverse of built-in perl functions localtime() and gmtime(). They accept a date as a six-element array, and return the corresponding time(2) value in seconds since the system epoch (Midnight, January 1, 1970 GMT on Unix, for example). This value can be positive or negative, though POSIX only requires support for positive values, so dates before the system's epoch may not work on all operating systems.","build_epoch":1402342290,"build_epoch_utc":null},{"name":"perl-PathTools","version":"3.40","release":"5.el7","architecture":"x86_64","install_date":"Tue 15 Oct 2019 11:27:58 AM PDT","group":"Development/Libraries","size":174131,"license":"(GPL+ or Artistic) and BSD","signature":"RSA/SHA256, Thu 03 Jul 2014 09:22:03 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"perl-PathTools-3.40-5.el7.src.rpm","build_date":"Mon 09 Jun 2014 09:11:16 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://search.cpan.org/dist/PathTools/","summary":"PathTools Perl module (Cwd, File::Spec)","description":"This is the combined distribution for the File::Spec and Cwd modules.","build_epoch":1402373476,"build_epoch_utc":null},{"name":"libutempter","version":"1.1.6","release":"4.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:29 AM PDT","group":"System Environment/Libraries","size":49749,"license":"LGPLv2+","signature":"RSA/SHA256, Thu 03 Jul 2014 08:23:25 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libutempter-1.1.6-4.el7.src.rpm","build_date":"Mon 09 Jun 2014 07:03:46 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"ftp://ftp.altlinux.org/pub/people/ldv/utempter","summary":"A privileged helper for utmp/wtmp updates","description":"This library provides interface for terminal emulators such as screen and xterm to record user sessions to utmp and wtmp files.","build_epoch":1402365826,"build_epoch_utc":null},{"name":"perl-threads-shared","version":"1.43","release":"6.el7","architecture":"x86_64","install_date":"Tue 15 Oct 2019 11:27:58 AM PDT","group":"Development/Libraries","size":73972,"license":"GPL+ or Artistic","signature":"RSA/SHA256, Thu 03 Jul 2014 09:25:27 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"perl-threads-shared-1.43-6.el7.src.rpm","build_date":"Mon 09 Jun 2014 11:07:27 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://search.cpan.org/dist/threads-shared/","summary":"Perl extension for sharing data structures between threads","description":"By default, variables are private to each thread, and each newly created thread gets a private copy of each existing variable. This module allows you to share variables across different threads (and pseudo-forks on Win32). It is used together with the threads module.","build_epoch":1402380447,"build_epoch_utc":null},{"name":"perl-Getopt-Long","version":"2.40","release":"3.el7","architecture":"noarch","install_date":"Tue 15 Oct 2019 11:27:59 AM PDT","group":"Development/Libraries","size":134846,"license":"GPLv2+ or Artistic","signature":"RSA/SHA256, Wed 25 Apr 2018 04:36:10 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"perl-Getopt-Long-2.40-3.el7.src.rpm","build_date":"Tue 10 Apr 2018 05:34:16 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://search.cpan.org/dist/Getopt-Long/","summary":"Extended processing of command line options","description":"The Getopt::Long module implements an extended getopt function called GetOptions(). It parses the command line from @ARGV, recognizing and removing specified options and their possible values. It adheres to the POSIX syntax for command line options, with GNU extensions. In general, this means that options have long names instead of single letters, and are introduced with a double dash \"--\". Support for bundling of command line options, as was the case with the more traditional single-letter approach, is provided but not enabled by default.","build_epoch":1523406856,"build_epoch_utc":null},{"name":"rsync","version":"3.1.2","release":"6.el7_6.1","architecture":"x86_64","install_date":"Tue 15 Oct 2019 11:28:01 AM PDT","group":"Applications/Internet","size":834674,"license":"GPLv3+","signature":"RSA/SHA256, Mon 29 Apr 2019 08:47:46 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"rsync-3.1.2-6.el7_6.1.src.rpm","build_date":"Thu 25 Apr 2019 10:18:00 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://rsync.samba.org/","summary":"A program for synchronizing files over a network","description":"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.","build_epoch":1556212680,"build_epoch_utc":null},{"name":"json-c","version":"0.11","release":"4.el7_0","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:29 AM PDT","group":"Development/Libraries","size":65593,"license":"MIT","signature":"RSA/SHA256, Sat 05 Jul 2014 08:25:00 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"json-c-0.11-4.el7_0.src.rpm","build_date":"Tue 24 Jun 2014 05:18:58 AM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/json-c/json-c/wiki","summary":"A JSON implementation in C","description":"JSON-C implements a reference counting object model that allows you to easily construct JSON objects in C, output them as JSON formatted strings and parse JSON formatted strings back into the C representation of JSON objects.","build_epoch":1403612338,"build_epoch_utc":null},{"name":"grub2-common","epoch":1,"version":"2.02","release":"0.80.el7.centos","architecture":"noarch","install_date":"Wed 16 Oct 2019 09:21:16 AM PDT","group":"System Environment/Base","size":3915366,"license":"GPLv3+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:57:37 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"grub2-2.02-0.80.el7.centos.src.rpm","build_date":"Thu 08 Aug 2019 04:31:11 AM PDT","build_host":"kbuilder.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnu.org/software/grub/","summary":"grub2 common layout","description":"This package provides some directories which are required by various grub2 subpackages.","build_epoch":1565263871,"build_epoch_utc":null},{"name":"bind-license","epoch":32,"version":"9.11.4","release":"9.P2.el7","architecture":"noarch","install_date":"Wed 16 Oct 2019 09:21:17 AM PDT","group":"Unspecified","size":29711,"license":"MPLv2.0","signature":"RSA/SHA256, Thu 22 Aug 2019 02:56:52 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"bind-9.11.4-9.P2.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:20:30 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.isc.org/products/BIND/","summary":"License of the BIND DNS suite","description":"Contains license of the BIND DNS suite.","build_epoch":1565266830,"build_epoch_utc":null},{"name":"bash","version":"4.2.46","release":"33.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:18 AM PDT","group":"System Environment/Shells","size":3667788,"license":"GPLv3+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:20:37 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"bash-4.2.46-33.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:09:21 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnu.org/software/bash","summary":"The GNU Bourne Again shell","description":"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.","build_epoch":1565266161,"build_epoch_utc":null},{"name":"nspr","version":"4.21.0","release":"1.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:26 AM PDT","group":"System Environment/Libraries","size":287576,"license":"MPLv2.0","signature":"RSA/SHA256, Thu 22 Aug 2019 02:36:23 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"nspr-4.21.0-1.el7.src.rpm","build_date":"Thu 08 Aug 2019 06:16:40 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.mozilla.org/projects/nspr/","summary":"Netscape Portable Runtime","description":"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.","build_epoch":1565313400,"build_epoch_utc":null},{"name":"polkit-pkla-compat","version":"0.1","release":"4.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:32 AM PDT","group":"Unspecified","size":82409,"license":"LGPLv2+","signature":"RSA/SHA256, Thu 03 Jul 2014 09:32:08 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"polkit-pkla-compat-0.1-4.el7.src.rpm","build_date":"Mon 09 Jun 2014 03:08:34 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://fedorahosted.org/polkit-pkla-compat/","summary":"Rules for polkit to add compatibility with pklocalauthority","description":"A polkit JavaScript rule and associated helpers that mostly provide compatibility with the .pkla file format supported in polkit <= 0.105 for users of later polkit releases.","build_epoch":1402351714,"build_epoch_utc":null},{"name":"libcap","version":"2.22","release":"10.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:27 AM PDT","group":"System Environment/Libraries","size":107365,"license":"LGPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:29:10 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libcap-2.22-10.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:12:45 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://ftp.kernel.org/pub/linux/libs/security/linux-privs/kernel-2.6/","summary":"Library for getting and setting POSIX.1e capabilities","description":"libcap is a library for getting and setting POSIX.1e (formerly POSIX 6) draft 15 capabilities.","build_epoch":1565309565,"build_epoch_utc":null},{"name":"libuuid","version":"2.23.2","release":"61.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:28 AM PDT","group":"Development/Libraries","size":20278,"license":"BSD","signature":"RSA/SHA256, Thu 22 Aug 2019 02:33:45 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"util-linux-2.23.2-61.el7.src.rpm","build_date":"Thu 08 Aug 2019 08:10:20 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://en.wikipedia.org/wiki/Util-linux","summary":"Universally unique ID library","description":"This is the universally unique ID library, part of util-linux. The libuuid library generates and parses 128-bit universally unique id's (UUID's). A UUID is an identifier that is unique across both space and time, with respect to the space of all UUIDs. A UUID can be used for multiple purposes, from tagging objects with an extremely short lifetime, to reliably identifying very persistent objects across a network. See also the \"uuid\" package, which is a separate implementation.","build_epoch":1565320220,"build_epoch_utc":null},{"name":"os-prober","version":"1.58","release":"9.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:33 AM PDT","group":"System Environment/Base","size":97946,"license":"GPLv2+ and GPL+","signature":"RSA/SHA256, Sun 20 Nov 2016 11:50:19 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"os-prober-1.58-9.el7.src.rpm","build_date":"Sat 05 Nov 2016 08:30:02 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://kitenet.net/~joey/code/os-prober/","summary":"Probes disks on the system for installed operating systems","description":"This package detects other OSes available on a system and outputs the results in a generic machine-readable format. Support for new OSes and Linux distributions can be added easily.","build_epoch":1478403002,"build_epoch_utc":null},{"name":"shadow-utils","epoch":2,"version":"4.6","release":"5.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:29 AM PDT","group":"System Environment/Base","size":3887289,"license":"BSD and GPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:43:30 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"shadow-utils-4.6-5.el7.src.rpm","build_date":"Thu 08 Aug 2019 07:51:03 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://pkg-shadow.alioth.debian.org/","summary":"Utilities for managing accounts and shadow password files","description":"The shadow-utils 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 a passwd 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.","build_epoch":1565319063,"build_epoch_utc":null},{"name":"crontabs","version":"1.11","release":"6.20121102git.el7","architecture":"noarch","install_date":"Thu 15 Aug 2019 10:53:33 AM PDT","group":"System Environment/Base","size":3700,"license":"Public Domain and GPLv2","signature":"RSA/SHA256, Thu 03 Jul 2014 06:02:43 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"crontabs-1.11-6.20121102git.el7.src.rpm","build_date":"Mon 09 Jun 2014 03:14:31 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://fedorahosted.org/crontabs","summary":"Root crontab files used to schedule the execution of programs","description":"This package is used by Fedora mainly for executing files by cron. The crontabs package contains root crontab files and directories. You will need to install cron daemon to run the jobs from the crontabs. The cron daemon such as cronie or fcron checks the crontab files to see when particular commands are scheduled to be executed. If commands are scheduled, it executes them. Crontabs handles a basic system function, so it should be installed on your system.","build_epoch":1402352071,"build_epoch_utc":null},{"name":"diffutils","version":"3.3","release":"5.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:32 AM PDT","group":"Applications/Text","size":1065607,"license":"GPLv3+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:22:21 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"diffutils-3.3-5.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:11:40 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnu.org/software/diffutils/diffutils.html","summary":"A GNU collection of diff utilities","diffutils_includes_four_utilities":"diff, cmp, diff3 and sdiff. Diff","description":"Diffutils includes four utilities: diff, cmp, diff3 and sdiff. Diff compares two files and shows the differences, line by line. The cmp command shows the offset and line numbers where two files differ, or cmp can show the characters that differ between the two files. The diff3 command shows the differences between three files. Diff3 can be used when two people have made independent changes to a common original; diff3 can produce a merged file that contains both sets of changes and warnings about conflicts. The sdiff command can be used to merge two files interactively. Install diffutils if you need to compare text files.","build_epoch":1565305900,"build_epoch_utc":null},{"name":"nss-pem","version":"1.0.3","release":"7.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:33 AM PDT","group":"Unspecified","size":205531,"license":"MPLv1.1","signature":"RSA/SHA256, Thu 22 Aug 2019 02:36:27 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"nss-pem-1.0.3-7.el7.src.rpm","build_date":"Thu 08 Aug 2019 06:16:30 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/kdudka/nss-pem","summary":"PEM file reader for Network Security Services (NSS)","description":"PEM file reader for Network Security Services (NSS), implemented as a PKCS#11 module.","build_epoch":1565313390,"build_epoch_utc":null},{"name":"iptables","version":"1.4.21","release":"33.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:34 AM PDT","group":"System Environment/Base","size":1555528,"license":"GPLv2","signature":"RSA/SHA256, Thu 22 Aug 2019 02:26:19 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"iptables-1.4.21-33.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:42:19 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.netfilter.org/","summary":"Tools for managing Linux kernel packet filtering capabilities","description":"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.","build_epoch":1565264539,"build_epoch_utc":null},{"name":"device-mapper-persistent-data","version":"0.8.5","release":"1.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:35 AM PDT","group":"System Environment/Base","size":1344378,"license":"GPLv3+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:22:15 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"device-mapper-persistent-data-0.8.5-1.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:09:02 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/jthornber/thin-provisioning-tools","summary":"Device-mapper Persistent Data Tools","description":"thin-provisioning-tools contains check,dump,restore,repair,rmap and metadata_size tools to manage device-mapper thin provisioning target metadata devices; cache check,dump,metadata_size,restore and repair tools to manage device-mapper cache metadata devices are included and era check, dump, restore and invalidate to manage snapshot eras","build_epoch":1565305742,"build_epoch_utc":null},{"name":"ebtables","version":"2.0.10","release":"16.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:36 AM PDT","group":"System Environment/Base","size":350763,"license":"GPLv2+","signature":"RSA/SHA256, Wed 25 Apr 2018 03:57:57 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"ebtables-2.0.10-16.el7.src.rpm","build_date":"Tue 10 Apr 2018 07:44:57 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://ebtables.sourceforge.net/","summary":"Ethernet Bridge frame table administration tool","description":"Ethernet bridge tables is a firewalling tool to transparently filter network traffic passing a bridge. The filtering possibilities are limited to link layer filtering and some basic filtering on higher network layers. This tool is the userspace control for the bridge and ebtables kernel components. The ebtables tool can be used together with the other Linux filtering tools, like iptables. There are no known incompatibility issues.","build_epoch":1523414697,"build_epoch_utc":null},{"name":"python-linux-procfs","version":"0.4.11","release":"4.el7","architecture":"noarch","install_date":"Wed 16 Oct 2019 09:21:36 AM PDT","group":"System Environment/Libraries","size":96890,"license":"GPLv2","signature":"RSA/SHA256, Thu 22 Aug 2019 03:00:02 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"python-linux-procfs-0.4.11-4.el7.src.rpm","build_date":"Thu 08 Aug 2019 07:08:25 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://git.kernel.org/pub/scm/libs/python/python-linux-procfs/python-linux-procfs.git","summary":"Linux /proc abstraction classes","description":"Abstractions to extract information from the Linux kernel /proc files.","build_epoch":1565316505,"build_epoch_utc":null},{"name":"grubby","version":"8.28","release":"26.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:37 AM PDT","group":"System Environment/Base","size":131502,"license":"GPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:25:19 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"grubby-8.28-26.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:41:34 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://git.fedorahosted.org/git/grubby.git","summary":"Command line tool for updating bootloader configs","description":"grubby is a command line tool for updating and displaying information about the configuration files for the grub, lilo, elilo (ia64), yaboot (powerpc) and zipl (s390) boot loaders. It is primarily designed to be used from scripts which install new kernels and need to find information about the current boot environment.","build_epoch":1565307694,"build_epoch_utc":null},{"name":"libcurl","version":"7.29.0","release":"54.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:39 AM PDT","group":"Development/Libraries","size":439320,"license":"MIT","signature":"RSA/SHA256, Thu 22 Aug 2019 02:29:16 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"curl-7.29.0-54.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:02:11 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://curl.haxx.se/","summary":"A library for getting files from web servers","description":"libcurl is a free and easy-to-use client-side URL transfer library, supporting FTP, FTPS, HTTP, HTTPS, SCP, SFTP, TFTP, TELNET, DICT, LDAP, LDAPS, FILE, IMAP, SMTP, POP3 and RTSP. libcurl supports SSL certificates, HTTP POST, HTTP PUT, FTP uploading, HTTP form based upload, proxies, cookies, user+password authentication (Basic, Digest, NTLM, Negotiate, Kerberos4), file transfer resume, http proxy tunneling and more.","build_epoch":1565265731,"build_epoch_utc":null},{"name":"rpm","version":"4.11.3","release":"40.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:40 AM PDT","group":"System Environment/Base","size":2622933,"license":"GPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:42:32 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"rpm-4.11.3-40.el7.src.rpm","build_date":"Tue 06 Aug 2019 03:50:54 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.rpm.org/","summary":"The RPM package management system","description":"The RPM Package Manager (RPM) is a powerful command line driven package management system capable of installing, uninstalling, verifying, querying, and updating software packages. Each software package consists of an archive of files along with information about the package like its version, a description, etc.","build_epoch":1565131854,"build_epoch_utc":null},{"name":"yum-plugin-fastestmirror","version":"1.1.31","release":"52.el7","architecture":"noarch","install_date":"Wed 16 Oct 2019 09:21:40 AM PDT","group":"System Environment/Base","size":53895,"license":"GPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 03:02:01 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"yum-utils-1.1.31-52.el7.src.rpm","build_date":"Thu 08 Aug 2019 08:26:47 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://yum.baseurl.org/download/yum-utils/","summary":"Yum plugin which chooses fastest repository from a mirrorlist","description":"This plugin sorts each repository's mirrorlist by connection speed prior to downloading packages.","build_epoch":1565321207,"build_epoch_utc":null},{"name":"oci-umount","epoch":2,"version":"2.5","release":"3.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:41 AM PDT","group":"Applications/Text","size":67399,"license":"GPLv3+","signature":"RSA/SHA256, Mon 16 Sep 2019 05:33:35 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"oci-umount-2.5-3.el7.src.rpm","build_date":"Sun 15 Sep 2019 07:05:17 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/containers/oci-umount","summary":"OCI umount hook for docker","description":"OCI umount hooks umount potential leaked mount points in a containers mount name-spaces","build_epoch":1568556317,"build_epoch_utc":null},{"name":"kbd","version":"1.15.5","release":"15.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:46 AM PDT","group":"System Environment/Base","size":1383499,"license":"GPLv2+","signature":"RSA/SHA256, Mon 12 Nov 2018 06:30:42 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"kbd-1.15.5-15.el7.src.rpm","build_date":"Tue 30 Oct 2018 03:40:00 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://ftp.altlinux.org/pub/people/legion/kbd","summary":"Tools for configuring the console (keyboard, virtual terminals, etc.)","description":"The kbd package contains tools for managing a Linux system's console's behavior, including the keyboard, the screen fonts, the virtual terminals and font files.","build_epoch":1540939200,"build_epoch_utc":null},{"name":"libteam","version":"1.27","release":"9.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:41 AM PDT","group":"System Environment/Libraries","size":100748,"license":"LGPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:33:33 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libteam-1.27-9.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:33:37 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.libteam.org","summary":"Library for controlling team network device","description":"This package contains a library which is a user-space counterpart for team network driver. It provides an API to control team network devices.","build_epoch":1565310817,"build_epoch_utc":null},{"name":"ncurses","version":"5.9","release":"14.20130511.el7_4","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:08 AM PDT","group":"System Environment/Base","size":439378,"license":"MIT","signature":"RSA/SHA256, Thu 07 Sep 2017 05:43:11 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"ncurses-5.9-14.20130511.el7_4.src.rpm","build_date":"Wed 06 Sep 2017 03:08:29 PM PDT","build_host":"c1bm.rdu2.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://invisible-island.net/ncurses/ncurses.html","summary":"Ncurses support utilities","description":"The curses library routines are a terminal-independent method of updating character screens with reasonable optimization. The ncurses (new curses) library is a freely distributable replacement for the discontinued 4.4 BSD classic curses library. This package contains support utilities, including a terminfo compiler tic, a decompiler infocmp, clear, tput, tset, and a termcap conversion tool captoinfo.","build_epoch":1504735709,"build_epoch_utc":null},{"name":"filesystem","version":"3.2","release":"25.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:12 AM PDT","group":"System Environment/Base","size":0,"license":"Public Domain","signature":"RSA/SHA256, Wed 25 Apr 2018 03:59:36 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"filesystem-3.2-25.el7.src.rpm","build_date":"Tue 10 Apr 2018 10:00:29 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://pagure.io/filesystem","summary":"The basic directory layout for a Linux system","description":"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.","build_epoch":1523422829,"build_epoch_utc":null},{"name":"info","version":"5.1","release":"5.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:16 AM PDT","group":"System Environment/Base","size":494630,"license":"GPLv3+","signature":"RSA/SHA256, Wed 25 Apr 2018 04:05:32 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"texinfo-5.1-5.el7.src.rpm","build_date":"Tue 10 Apr 2018 06:03:36 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnu.org/software/texinfo/","summary":"A stand-alone TTY-based reader for GNU texinfo documentation","description":"The GNU project uses the texinfo file format for much of its documentation. The info package provides a standalone TTY-based browser program for viewing texinfo files.","build_epoch":1523408616,"build_epoch_utc":null},{"name":"btrfs-progs","version":"4.9.1","release":"1.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:57 AM PDT","group":"System Environment/Base","size":4142307,"license":"GPLv2","signature":"RSA/SHA256, Thu 10 Aug 2017 08:15:01 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"btrfs-progs-4.9.1-1.el7.src.rpm","build_date":"Sun 06 Aug 2017 09:32:37 AM PDT","build_host":"c1bm.rdu2.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://btrfs.wiki.kernel.org/index.php/Main_Page","summary":"Userspace programs for btrfs","description":"The btrfs-progs package provides all the userspace programs needed to create, check, modify and correct any inconsistencies in the btrfs filesystem.","build_epoch":1502037157,"build_epoch_utc":null},{"name":"libsepol","version":"2.5","release":"10.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:16 AM PDT","group":"System Environment/Libraries","size":686640,"license":"LGPLv2+","signature":"RSA/SHA256, Mon 12 Nov 2018 06:37:35 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"libsepol-2.5-10.el7.src.rpm","build_date":"Tue 30 Oct 2018 02:36:15 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/SELinuxProject/selinux/wiki","summary":"SELinux binary policy manipulation library","description":"Security-enhanced Linux is a feature of the Linux® kernel and a number of utilities with enhanced security functionality designed to add mandatory access controls to Linux. The Security-enhanced Linux kernel contains new architectural components originally developed to improve the security of the Flask operating system. These architectural components provide general support for the enforcement of many kinds of mandatory access control policies, including those based on the concepts of Type Enforcement®, Role-based Access Control, and Multi-level Security. libsepol provides an API for the manipulation of SELinux binary policies. It is used by checkpolicy (the policy compiler) and similar tools, as well as by programs like load_policy that need to perform specific transformations on binary policies such as customizing policy boolean settings.","build_epoch":1540935375,"build_epoch_utc":null},{"name":"libsysfs","version":"2.1.0","release":"16.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:57 AM PDT","group":"System Environment/Libraries","size":149365,"license":"LGPLv2+","signature":"RSA/SHA256, Thu 03 Jul 2014 08:20:01 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"sysfsutils-2.1.0-16.el7.src.rpm","build_date":"Mon 09 Jun 2014 05:06:19 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://sourceforge.net/projects/linux-diag/","summary":"Shared library for interfacing with sysfs","description":"Library used in handling linux kernel sysfs mounts and their various files.","build_epoch":1402358779,"build_epoch_utc":null},{"name":"libattr","version":"2.4.46","release":"13.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:16 AM PDT","group":"System Environment/Libraries","size":19896,"license":"LGPLv2+","signature":"RSA/SHA256, Wed 25 Apr 2018 04:11:11 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"attr-2.4.46-13.el7.src.rpm","build_date":"Tue 10 Apr 2018 05:40:44 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://acl.bestbits.at/","summary":"Dynamic library for extended attribute support","description":"This package contains the libattr.so dynamic library which contains the extended attribute system calls and library functions.","build_epoch":1523407244,"build_epoch_utc":null},{"name":"rootfiles","version":"8.1","release":"11.el7","architecture":"noarch","install_date":"Thu 15 Aug 2019 10:53:57 AM PDT","group":"System Environment/Base","size":599,"license":"Public Domain","signature":"RSA/SHA256, Thu 03 Jul 2014 09:50:28 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"rootfiles-8.1-11.el7.src.rpm","build_date":"Mon 09 Jun 2014 01:11:33 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","summary":"The basic required files for the root user's directory","description":"The rootfiles package contains basic required files that are placed in the root user's account. These files are basically the same as those in /etc/skel, which are placed in regular users' home directories.","build_epoch":1402344693,"build_epoch_utc":null},{"name":"libselinux","version":"2.5","release":"14.1.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:16 AM PDT","group":"System Environment/Libraries","size":217874,"license":"Public Domain","signature":"RSA/SHA256, Mon 12 Nov 2018 06:37:27 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"libselinux-2.5-14.1.el7.src.rpm","build_date":"Tue 30 Oct 2018 02:43:06 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/SELinuxProject/selinux/wiki","summary":"SELinux library and simple utilities","description":"Security-enhanced Linux is a feature of the Linux® kernel and a number of utilities with enhanced security functionality designed to add mandatory access controls to Linux. The Security-enhanced Linux kernel contains new architectural components originally developed to improve the security of the Flask operating system. These architectural components provide general support for the enforcement of many kinds of mandatory access control policies, including those based on the concepts of Type Enforcement®, Role-based Access Control, and Multi-level Security. libselinux provides an API for SELinux applications to get and set process and file security contexts and to obtain security policy decisions. Required for any applications that use the SELinux API.","build_epoch":1540935786,"build_epoch_utc":null},{"name":"grep","version":"2.20","release":"3.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:16 AM PDT","group":"Applications/Text","size":1195131,"license":"GPLv3+","signature":"RSA/SHA256, Thu 10 Aug 2017 09:26:26 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"grep-2.20-3.el7.src.rpm","build_date":"Wed 02 Aug 2017 11:58:44 PM PDT","build_host":"c1bm.rdu2.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnu.org/software/grep/","summary":"Pattern matching utilities","description":"The GNU versions of commonly used grep utilities. Grep searches through textual input for lines which contain a match to a specified pattern and then prints the matching lines. GNU's grep utilities include grep, egrep and fgrep. GNU grep is needed by many scripts, so it shall be installed on every system.","build_epoch":1501743524,"build_epoch_utc":null},{"name":"keyutils-libs","version":"1.5.8","release":"3.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:16 AM PDT","group":"System Environment/Base","size":42138,"license":"GPLv2+ and LGPLv2+","signature":"RSA/SHA256, Thu 03 Jul 2014 07:30:59 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"keyutils-1.5.8-3.el7.src.rpm","build_date":"Mon 09 Jun 2014 07:17:55 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://people.redhat.com/~dhowells/keyutils/","summary":"Key utilities library","description":"This package provides a wrapper library for the key management facility system calls.","build_epoch":1402366675,"build_epoch_utc":null},{"name":"libverto","version":"0.2.5","release":"4.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:16 AM PDT","group":"Unspecified","size":23060,"license":"MIT","signature":"RSA/SHA256, Thu 03 Jul 2014 08:23:48 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libverto-0.2.5-4.el7.src.rpm","build_date":"Tue 10 Jun 2014 12:44:21 AM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://fedorahosted.org/libverto/","summary":"Main loop abstraction library","description":"libverto provides a way for libraries to expose asynchronous interfaces without having to choose a particular event loop, offloading this decision to the end application which consumes the library. If you are packaging an application, not library, based on libverto, you should depend either on a specific implementation module or you can depend on the virtual provides 'libverto-module-base'. This will ensure that you have at least one module installed that provides io, timeout and signal functionality. Currently glib is the only module that does not provide these three because it lacks signal. However, glib will support signal in the future.","build_epoch":1402386261,"build_epoch_utc":null},{"name":"p11-kit-trust","version":"0.23.5","release":"3.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:16 AM PDT","group":"Unspecified","size":437261,"license":"BSD","signature":"RSA/SHA256, Thu 10 Aug 2017 11:44:51 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"p11-kit-0.23.5-3.el7.src.rpm","build_date":"Fri 04 Aug 2017 04:37:00 PM PDT","build_host":"c1bm.rdu2.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://p11-glue.freedesktop.org/p11-kit.html","summary":"System trust module from p11-kit","description":"The p11-kit-trust package contains a system trust PKCS#11 module which contains certificate anchors and black lists.","build_epoch":1501889820,"build_epoch_utc":null},{"name":"ivtv-firmware","epoch":2,"version":"20080701","release":"26.el7","architecture":"noarch","install_date":"Thu 15 Aug 2019 10:54:00 AM PDT","group":"System Environment/Kernel","size":857256,"license":"Redistributable, no modification permitted","signature":"RSA/SHA256, Thu 03 Jul 2014 07:10:03 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"ivtv-firmware-20080701-26.el7.src.rpm","build_date":"Mon 09 Jun 2014 05:06:24 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://dl.ivtvdriver.org/ivtv/firmware/","summary":"Firmware for the Hauppauge PVR 250/350/150/500/USB2 model series","description":"This package contains the firmware for WinTV Hauppauge PVR 250/350/150/500/USB2 cards.","build_epoch":1402358784,"build_epoch_utc":null},{"name":"xz-libs","version":"5.2.2","release":"1.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:18 AM PDT","group":"System Environment/Libraries","size":239967,"license":"LGPLv2+","signature":"RSA/SHA256, Sun 20 Nov 2016 01:02:51 PM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"xz-5.2.2-1.el7.src.rpm","build_date":"Sat 05 Nov 2016 08:28:07 AM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://tukaani.org/xz/","summary":"Libraries for decoding LZMA compression","description":"Libraries for decoding files compressed with LZMA or XZ utils.","build_epoch":1478359687,"build_epoch_utc":null},{"name":"gpg-pubkey","version":"rpm-4.11.3 (NSS-3)","release":"53a7ff4b","architecture":"(none)","install_date":"Thu 15 Aug 2019 12:00:08 PM PDT","group":"Public Keys","size":0,"license":"pubkey","signature":"(none)","source_rpm":"(none)","build_date":"Mon 23 Jun 2014 03:19:55 AM PDT","build_host":"localhost","relocations":"(not relocatable)","packager":"CentOS-7 Key (CentOS 7 Official Signing Key) ","summary":"gpg(CentOS-7 Key (CentOS 7 Official Signing Key) )","description":"-----BEGIN PGP PUBLIC KEY BLOCK----- Version: rpm-4.11.3 (NSS-3) mQINBFOn/0sBEADLDyZ+DQHkcTHDQSE0a0B2iYAEXwpPvs67cJ4tmhe/iMOyVMh9 Yw/vBIF8scm6T/vPN5fopsKiW9UsAhGKg0epC6y5ed+NAUHTEa6pSOdo7CyFDwtn 4HF61Esyb4gzPT6QiSr0zvdTtgYBRZjAEPFVu3Dio0oZ5UQZ7fzdZfeixMQ8VMTQ 4y4x5vik9B+cqmGiq9AW71ixlDYVWasgR093fXiD9NLT4DTtK+KLGYNjJ8eMRqfZ Ws7g7C+9aEGHfsGZ/SxLOumx/GfiTloal0dnq8TC7XQ/JuNdB9qjoXzRF+faDUsj WuvNSQEqUXW1dzJjBvroEvgTdfCJfRpIgOrc256qvDMp1SxchMFltPlo5mbSMKu1 x1p4UkAzx543meMlRXOgx2/hnBm6H6L0FsSyDS6P224yF+30eeODD4Ju4BCyQ0jO IpUxmUnApo/m0eRelI6TRl7jK6aGqSYUNhFBuFxSPKgKYBpFhVzRM63Jsvib82rY 438q3sIOUdxZY6pvMOWRkdUVoz7WBExTdx5NtGX4kdW5QtcQHM+2kht6sBnJsvcB JYcYIwAUeA5vdRfwLKuZn6SgAUKdgeOtuf+cPR3/E68LZr784SlokiHLtQkfk98j NXm6fJjXwJvwiM2IiFyg8aUwEEDX5U+QOCA0wYrgUQ/h8iathvBJKSc9jQARAQAB tEJDZW50T1MtNyBLZXkgKENlbnRPUyA3IE9mZmljaWFsIFNpZ25pbmcgS2V5KSA8 c2VjdXJpdHlAY2VudG9zLm9yZz6JAjUEEwECAB8FAlOn/0sCGwMGCwkIBwMCBBUC CAMDFgIBAh4BAheAAAoJECTGqKf0qA61TN0P/2730Th8cM+d1pEON7n0F1YiyxqG QzwpC2Fhr2UIsXpi/lWTXIG6AlRvrajjFhw9HktYjlF4oMG032SnI0XPdmrN29lL F+ee1ANdyvtkw4mMu2yQweVxU7Ku4oATPBvWRv+6pCQPTOMe5xPG0ZPjPGNiJ0xw 4Ns+f5Q6Gqm927oHXpylUQEmuHKsCp3dK/kZaxJOXsmq6syY1gbrLj2Anq0iWWP4 Tq8WMktUrTcc+zQ2pFR7ovEihK0Rvhmk6/N4+4JwAGijfhejxwNX8T6PCuYs5Jiv hQvsI9FdIIlTP4XhFZ4N9ndnEwA4AH7tNBsmB3HEbLqUSmu2Rr8hGiT2Plc4Y9AO aliW1kOMsZFYrX39krfRk2n2NXvieQJ/lw318gSGR67uckkz2ZekbCEpj/0mnHWD 3R6V7m95R6UYqjcw++Q5CtZ2tzmxomZTf42IGIKBbSVmIS75WY+cBULUx3PcZYHD ZqAbB0Dl4MbdEH61kOI8EbN/TLl1i077r+9LXR1mOnlC3GLD03+XfY8eEBQf7137 YSMiW5r/5xwQk7xEcKlbZdmUJp3ZDTQBXT06vavvp3jlkqqH9QOE8ViZZ6aKQLqv pL+4bs52jzuGwTMT7gOR5MzD+vT0fVS7Xm8MjOxvZgbHsAgzyFGlI1ggUQmU7lu3 uPNL0eRx4S1G4Jn5 =OGYX -----END PGP PUBLIC KEY BLOCK-----","build_epoch":1403518795,"build_epoch_utc":null},{"name":"oci-systemd-hook","epoch":1,"version":"0.2.0","release":"1.git05e6923.el7_6","architecture":"x86_64","install_date":"Thu 15 Aug 2019 12:00:19 PM PDT","group":"Applications/Text","size":72608,"license":"GPLv3+","signature":"RSA/SHA256, Tue 18 Jun 2019 11:59:33 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"oci-systemd-hook-0.2.0-1.git05e6923.el7_6.src.rpm","build_date":"Thu 13 Jun 2019 09:12:26 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/projectatomic/oci-systemd-hook","summary":"OCI systemd hook for docker","description":"OCI systemd hooks enable running systemd in a OCI runc/docker container.","build_epoch":1560442346,"build_epoch_utc":null},{"name":"python-ipaddress","version":"1.0.16","release":"2.el7","architecture":"noarch","install_date":"Thu 15 Aug 2019 12:00:19 PM PDT","group":"Unspecified","size":232357,"license":"Python","signature":"RSA/SHA256, Sun 20 Nov 2016 12:15:58 PM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"python-ipaddress-1.0.16-2.el7.src.rpm","build_date":"Sat 05 Nov 2016 09:37:10 AM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://pypi.python.org/pypi/ipaddress/1.0.16","summary":"Port of the python 3.3+ ipaddress module to 2.6+","description":"ipaddress provides the capabilities to create, manipulate and operate on IPv4 and IPv6 addresses and networks. The functions and classes in this module make it straightforward to handle various tasks related to IP addresses, including checking whether or not two hosts are on the same subnet, iterating over all hosts in a particular subnet, checking whether or not a string represents a valid IP address or network definition, and so on.","build_epoch":1478363830,"build_epoch_utc":null},{"name":"libgpg-error","version":"1.12","release":"3.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:18 AM PDT","group":"System Environment/Libraries","size":350865,"license":"LGPLv2+","signature":"RSA/SHA256, Thu 03 Jul 2014 07:49:22 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libgpg-error-1.12-3.el7.src.rpm","build_date":"Tue 10 Jun 2014 01:46:48 AM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"ftp://ftp.gnupg.org/gcrypt/libgpg-error/","summary":"Library for error values used by GnuPG components","description":"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.","build_epoch":1402390008,"build_epoch_utc":null},{"name":"libyaml","version":"0.1.4","release":"11.el7_0","architecture":"x86_64","install_date":"Thu 15 Aug 2019 12:00:19 PM PDT","group":"System Environment/Libraries","size":132993,"license":"MIT","signature":"RSA/SHA256, Thu 29 Jan 2015 03:55:31 PM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"libyaml-0.1.4-11.el7_0.src.rpm","build_date":"Thu 29 Jan 2015 03:44:10 PM PST","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://pyyaml.org/","summary":"YAML 1.1 parser and emitter written in C","description":"YAML is a data serialization format designed for human readability and interaction with scripting languages. LibYAML is a YAML parser and emitter written in C.","build_epoch":1422575050,"build_epoch_utc":null},{"name":"gzip","version":"1.5","release":"10.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:18 AM PDT","group":"Applications/File","size":250440,"license":"GPLv3+ and GFDL","signature":"RSA/SHA256, Wed 25 Apr 2018 04:04:30 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"gzip-1.5-10.el7.src.rpm","build_date":"Tue 10 Apr 2018 05:01:18 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gzip.org/","summary":"The GNU data compression program","description":"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.","build_epoch":1523404878,"build_epoch_utc":null},{"name":"python-backports-ssl_match_hostname","version":"3.5.0.1","release":"1.el7","architecture":"noarch","install_date":"Thu 15 Aug 2019 12:00:19 PM PDT","group":"Unspecified","size":18824,"license":"Python","signature":"RSA/SHA256, Wed 25 Apr 2018 04:38:25 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"python-backports-ssl_match_hostname-3.5.0.1-1.el7.src.rpm","build_date":"Tue 10 Apr 2018 07:25:31 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://bitbucket.org/brandon/backports.ssl_match_hostname","summary":"The ssl.match_hostname() function from Python 3","description":"The Secure Sockets layer is only actually secure if you check the hostname in the certificate returned by the server to which you are connecting, and verify that it matches to hostname that you are trying to reach. But the matching logic, defined in RFC2818, can be a bit tricky to implement on your own. So the ssl package in the Standard Library of Python 3.2 now includes a match_hostname() function for performing this check instead of requiring every application to implement the check separately. This backport brings match_hostname() to users of earlier versions of Python. The actual code is only slightly modified from Python 3.5.","build_epoch":1523413531,"build_epoch_utc":null},{"name":"expat","version":"2.1.0","release":"10.el7_3","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:18 AM PDT","group":"System Environment/Libraries","size":208315,"license":"MIT","signature":"RSA/SHA256, Mon 28 Nov 2016 02:32:05 PM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"expat-2.1.0-10.el7_3.src.rpm","build_date":"Mon 28 Nov 2016 02:27:00 PM PST","build_host":"c1bm.rdu2.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.libexpat.org/","summary":"An XML parser library","description":"This is expat, the C library for parsing XML, written by James Clark. Expat is a stream oriented XML parser. This means that you register handlers with the parser prior to starting the parse. These handlers are called when the parser discovers the associated structures in the document being parsed. A start tag is an example of the kind of structures for which you may register handlers.","build_epoch":1480372020,"build_epoch_utc":null},{"name":"checkpolicy","version":"2.5","release":"8.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 12:00:20 PM PDT","group":"Development/System","size":1288327,"license":"GPLv2","signature":"RSA/SHA256, Mon 12 Nov 2018 06:22:21 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"checkpolicy-2.5-8.el7.src.rpm","build_date":"Tue 30 Oct 2018 02:48:39 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","summary":"SELinux policy compiler","description":"Security-enhanced Linux is a feature of the Linux® kernel and a number of utilities with enhanced security functionality designed to add mandatory access controls to Linux. The Security-enhanced Linux kernel contains new architectural components originally developed to improve the security of the Flask operating system. These architectural components provide general support for the enforcement of many kinds of mandatory access control policies, including those based on the concepts of Type Enforcement®, Role-based Access Control, and Multi-level Security. This package contains checkpolicy, the SELinux policy compiler. Only required for building policies.","build_epoch":1540936119,"build_epoch_utc":null},{"name":"findutils","epoch":1,"version":"4.5.11","release":"6.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:18 AM PDT","group":"Applications/File","size":1855882,"license":"GPLv3+","signature":"RSA/SHA256, Mon 12 Nov 2018 06:25:15 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"findutils-4.5.11-6.el7.src.rpm","build_date":"Tue 30 Oct 2018 09:43:54 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnu.org/software/findutils/","summary":"The GNU versions of find utilities (find and xargs)","description":"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.","build_epoch":1540917834,"build_epoch_utc":null},{"name":"libsemanage-python","version":"2.5","release":"14.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 12:00:20 PM PDT","group":"Development/Libraries","size":451817,"license":"LGPLv2+","signature":"RSA/SHA256, Mon 12 Nov 2018 06:37:33 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"libsemanage-2.5-14.el7.src.rpm","build_date":"Tue 30 Oct 2018 04:44:33 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/SELinuxProject/selinux/wiki","summary":"semanage python bindings for libsemanage","description":"The libsemanage-python package contains the python bindings for developing SELinux management applications.","build_epoch":1540943073,"build_epoch_utc":null},{"name":"python-pytoml","version":"0.1.14","release":"1.git7dea353.el7","architecture":"noarch","install_date":"Thu 15 Aug 2019 12:00:20 PM PDT","group":"Unspecified","size":37995,"license":"MIT","signature":"RSA/SHA256, Tue 28 Nov 2017 01:46:33 PM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"python-pytoml-0.1.14-1.git7dea353.el7.src.rpm","build_date":"Tue 28 Nov 2017 01:35:01 PM PST","build_host":"c1bm.rdu2.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/avakar/pytoml","summary":"Parser for TOML","description":"A parser for TOML-0.4.0","build_epoch":1511904901,"build_epoch_utc":null},{"name":"cracklib","version":"2.9.0","release":"11.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:19 AM PDT","group":"System Environment/Libraries","size":209610,"license":"LGPLv2+","signature":"RSA/SHA256, Thu 03 Jul 2014 06:02:11 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"cracklib-2.9.0-11.el7.src.rpm","build_date":"Mon 09 Jun 2014 10:42:13 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://sourceforge.net/projects/cracklib/","summary":"A password-checking library","several_tests_on_passwords":"it tries to generate words from a username","description":"CrackLib tests passwords to determine whether they match certain security-oriented characteristics, with the purpose of stopping users from choosing passwords that are easy to guess. CrackLib performs several tests on passwords: it tries to generate words from a username and gecos entry and checks those words against the password; it checks for simplistic patterns in passwords; and it checks for the password in a dictionary. CrackLib is actually a library containing a particular C function which is used to check the password, as well as other C functions. CrackLib is not a replacement for a passwd program; it must be used in conjunction with an existing passwd program. Install the cracklib package if you need a program to check users' passwords to see if they are at least minimally secure. If you install CrackLib, you will also want to install the cracklib-dicts package.","build_epoch":1402378933,"build_epoch_utc":null},{"name":"python-IPy","version":"0.75","release":"6.el7","architecture":"noarch","install_date":"Thu 15 Aug 2019 12:00:20 PM PDT","group":"System Environment/Libraries","size":121946,"license":"BSD","signature":"RSA/SHA256, Thu 03 Jul 2014 09:39:22 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"python-IPy-0.75-6.el7.src.rpm","build_date":"Tue 10 Jun 2014 12:18:29 AM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/haypo/python-ipy","summary":"Python module for handling IPv4 and IPv6 Addresses and Networks","description":"IPy is a Python module for handling IPv4 and IPv6 Addresses and Networks in a fashion similar to perl's Net::IP and friends. The IP class allows a comfortable parsing and handling for most notations in use for IPv4 and IPv6 Addresses and Networks.","build_epoch":1402384709,"build_epoch_utc":null},{"name":"shared-mime-info","version":"1.8","release":"4.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:19 AM PDT","group":"System Environment/Base","size":2379317,"license":"GPLv2+","signature":"RSA/SHA256, Wed 25 Apr 2018 04:46:39 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"shared-mime-info-1.8-4.el7.src.rpm","build_date":"Tue 10 Apr 2018 05:37:03 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://freedesktop.org/Software/shared-mime-info","summary":"Shared MIME information database","description":"This is the freedesktop.org shared MIME info database. Many programs and desktops use the MIME system to represent the types of files. Frequently, it is necessary to work out the correct MIME type for a file. This is generally done by examining the file's name or contents, and looking up the correct MIME type in a database.","build_epoch":1523407023,"build_epoch_utc":null},{"name":"file","version":"5.11","release":"35.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:19 AM PDT","group":"Applications/File","size":67448,"license":"BSD","signature":"RSA/SHA256, Mon 12 Nov 2018 06:25:08 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"file-5.11-35.el7.src.rpm","build_date":"Tue 30 Oct 2018 11:16:23 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.darwinsys.com/file/","summary":"A utility for determining file types","description":"The file command is used to identify a particular file according to the type of data contained by the file. File can identify many different file types, including ELF binaries, system libraries, RPM packages, and different graphics formats.","build_epoch":1540923383,"build_epoch_utc":null},{"name":"libaio","version":"0.3.109","release":"13.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:19 AM PDT","group":"System Environment/Libraries","size":39182,"license":"LGPLv2+","signature":"RSA/SHA256, Wed 25 Nov 2015 06:50:55 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"libaio-0.3.109-13.el7.src.rpm","build_date":"Thu 19 Nov 2015 10:37:04 PM PST","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","summary":"Linux-native asynchronous I/O access library","description":"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, libaio, provides the Linux-native API for async I/O. The POSIX async I/O facility requires this library in order to provide kernel-accelerated async I/O capabilities, as do applications which require the Linux-native async I/O API.","build_epoch":1448001424,"build_epoch_utc":null},{"name":"cracklib-dicts","version":"2.9.0","release":"11.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:20 AM PDT","group":"System Environment/Libraries","size":9389116,"license":"LGPLv2+","signature":"RSA/SHA256, Thu 03 Jul 2014 06:02:17 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"cracklib-2.9.0-11.el7.src.rpm","build_date":"Mon 09 Jun 2014 10:42:13 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://sourceforge.net/projects/cracklib/","summary":"The standard CrackLib dictionaries","description":"The cracklib-dicts package includes the CrackLib dictionaries. CrackLib will need to use the dictionary appropriate to your system, which is normally put in /usr/share/dict/words. Cracklib-dicts also contains the utilities necessary for the creation of new dictionaries. If you are installing CrackLib, you should also install cracklib-dicts.","build_epoch":1402378933,"build_epoch_utc":null},{"name":"libpwquality","version":"1.2.3","release":"5.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:20 AM PDT","group":"System Environment/Base","size":332421,"license":"BSD or GPLv2+","signature":"RSA/SHA256, Wed 25 Apr 2018 04:17:46 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libpwquality-1.2.3-5.el7.src.rpm","build_date":"Tue 10 Apr 2018 08:58:19 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/libpwquality/libpwquality/","summary":"A library for password generation and password quality checking","description":"This is a library for password quality checks and generation of random passwords that pass the checks. This library uses the cracklib and cracklib dictionaries to perform some of the checks.","build_epoch":1523419099,"build_epoch_utc":null},{"name":"libassuan","version":"2.1.0","release":"3.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:20 AM PDT","group":"System Environment/Libraries","size":155391,"license":"LGPLv2+ and GPLv3+","signature":"RSA/SHA256, Thu 03 Jul 2014 07:35:59 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libassuan-2.1.0-3.el7.src.rpm","build_date":"Mon 09 Jun 2014 12:14:00 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnupg.org/","summary":"GnuPG IPC library","description":"This is the IPC library used by GnuPG 2, GPGME and a few other packages.","build_epoch":1402341240,"build_epoch_utc":null},{"name":"xz","version":"5.2.2","release":"1.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:20 AM PDT","group":"Applications/File","size":798130,"license":"LGPLv2+","signature":"RSA/SHA256, Sun 20 Nov 2016 01:02:27 PM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"xz-5.2.2-1.el7.src.rpm","build_date":"Sat 05 Nov 2016 08:28:07 AM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://tukaani.org/xz/","summary":"LZMA compression utilities","description":"XZ Utils are an attempt to make LZMA compression easy to use on free (as in freedom) operating systems. This is achieved by providing tools and libraries which are similar to use than the equivalents of the most popular existing compression algorithms. LZMA is a general purpose compression algorithm designed by Igor Pavlov as part of 7-Zip. It provides high compression ratio while keeping the decompression speed fast.","build_epoch":1478359687,"build_epoch_utc":null},{"name":"libidn","version":"1.28","release":"4.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:20 AM PDT","group":"System Environment/Libraries","size":630407,"license":"LGPLv2+ and GPLv3+ and GFDL","signature":"RSA/SHA256, Wed 25 Nov 2015 06:58:28 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"libidn-1.28-4.el7.src.rpm","build_date":"Sat 21 Nov 2015 09:00:48 AM PST","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnu.org/software/libidn/","summary":"Internationalized Domain Name support library","description":"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.","build_epoch":1448125248,"build_epoch_utc":null},{"name":"sysvinit-tools","version":"2.88","release":"14.dsf.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:21 AM PDT","group":"System Environment/Base","size":109118,"license":"GPLv2+","signature":"RSA/SHA256, Thu 03 Jul 2014 10:09:36 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"sysvinit-2.88-14.dsf.el7.src.rpm","build_date":"Mon 09 Jun 2014 04:16:44 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://savannah.nongnu.org/projects/sysvinit/","summary":"Tools used for process and utmp management.","description":"The sysvinit-tools package contains various tools used for process management.","build_epoch":1402355804,"build_epoch_utc":null},{"name":"tcp_wrappers-libs","version":"7.6","release":"77.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:21 AM PDT","group":"System Environment/Libraries","size":134602,"license":"BSD","signature":"RSA/SHA256, Thu 03 Jul 2014 10:11:07 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"tcp_wrappers-7.6-77.el7.src.rpm","build_date":"Mon 09 Jun 2014 09:41:54 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"ftp://ftp.porcupine.org/pub/security/index.html","summary":"Libraries for tcp_wrappers","description":"tcp_wrappers-libs contains the libraries of the tcp_wrappers package.","build_epoch":1402375314,"build_epoch_utc":null},{"name":"newt","version":"0.52.15","release":"4.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:21 AM PDT","group":"System Environment/Libraries","size":185196,"license":"LGPLv2","signature":"RSA/SHA256, Thu 03 Jul 2014 08:56:55 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"newt-0.52.15-4.el7.src.rpm","build_date":"Tue 10 Jun 2014 12:48:12 AM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://fedorahosted.org/newt/","summary":"A library for text mode user interfaces","description":"Newt is a programming library for color text mode, widget based user interfaces. Newt can be used to add stacked windows, entry widgets, checkboxes, radio buttons, labels, plain text fields, scrollbars, etc., to text mode user interfaces. This package also contains the shared library needed by programs built with newt, as well as a /usr/bin/dialog replacement called whiptail. Newt is based on the slang library.","build_epoch":1402386492,"build_epoch_utc":null},{"name":"lzo","version":"2.06","release":"8.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:21 AM PDT","group":"System Environment/Libraries","size":165360,"license":"GPLv2+","signature":"RSA/SHA256, Wed 25 Nov 2015 07:15:43 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"lzo-2.06-8.el7.src.rpm","build_date":"Thu 19 Nov 2015 11:26:41 PM PST","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.oberhumer.com/opensource/lzo/","summary":"Data compression library with very fast (de)compression","description":"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.","build_epoch":1448004401,"build_epoch_utc":null},{"name":"bind-libs","epoch":32,"version":"9.11.4","release":"9.P2.el7","architecture":"x86_64","install_date":"Wed 23 Oct 2019 10:53:22 AM PDT","group":"Unspecified","size":189424,"license":"MPLv2.0","signature":"RSA/SHA256, Thu 22 Aug 2019 02:20:48 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"bind-9.11.4-9.P2.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:20:30 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.isc.org/products/BIND/","summary":"Libraries used by the BIND DNS packages","description":"Contains heavyweight version of BIND suite libraries used by both named DNS server and utilities in bind-utils package.","build_epoch":1565266830,"build_epoch_utc":null},{"name":"dbus","epoch":1,"version":"1.10.24","release":"13.el7_6","architecture":"x86_64","install_date":"Thu 15 Aug 2019 12:01:17 PM PDT","group":"System Environment/Libraries","size":595216,"license":"(GPLv2+ or AFL) and GPLv2+","signature":"RSA/SHA256, Tue 19 Mar 2019 12:51:06 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"dbus-1.10.24-13.el7_6.src.rpm","build_date":"Thu 14 Mar 2019 03:18:13 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.freedesktop.org/Software/dbus/","summary":"D-BUS message bus","description":"D-BUS is a system for sending messages between applications. It is used both for the system-wide message bus service, and as a per-user-login-session messaging facility.","build_epoch":1552558693,"build_epoch_utc":null},{"name":"python-decorator","version":"3.4.0","release":"3.el7","architecture":"noarch","install_date":"Thu 15 Aug 2019 10:53:22 AM PDT","group":"Development/Languages","size":72291,"license":"BSD","signature":"RSA/SHA256, Thu 03 Jul 2014 09:38:41 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"python-decorator-3.4.0-3.el7.src.rpm","build_date":"Mon 09 Jun 2014 04:46:01 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://pypi.python.org/pypi/decorator/","summary":"Module to simplify usage of decorators","description":"The aim of the decorator module is to simplify the usage of decorators for the average programmer, and to popularize decorators usage giving examples of useful decorators, such as memoize, tracing, redirecting_stdout, locked, etc. The core of this module is a decorator factory called decorator.","build_epoch":1402357561,"build_epoch_utc":null},{"name":"lm_sensors-libs","version":"3.4.0","release":"8.20160601gitf9185e5.el7","architecture":"x86_64","install_date":"Tue 29 Oct 2019 11:35:07 PM PDT","group":"System Environment/Libraries","size":61608,"license":"LGPLv2+ and GPLv3+ and GPLv2+ and Verbatim and Public Domain","signature":"RSA/SHA256, Thu 22 Aug 2019 02:34:45 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"lm_sensors-3.4.0-8.20160601gitf9185e5.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:42:14 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://github.com/groeck/lm-sensors/","summary":"Lm_sensors core libraries","description":"Core libraries for lm_sensors applications","build_epoch":1565311334,"build_epoch_utc":null},{"name":"libnftnl","version":"1.0.8","release":"1.el7","architecture":"x86_64","install_date":"Sun 10 Nov 2019 07:55:14 AM PST","group":"Unspecified","size":222704,"license":"GPLv2+","signature":"RSA/SHA256, Wed 25 Apr 2018 04:16:36 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libnftnl-1.0.8-1.el7.src.rpm","build_date":"Tue 10 Apr 2018 06:42:24 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://netfilter.org/projects/libnftnl/","summary":"Library for low-level interaction with nftables Netlink's API over libmnl","description":"A library for low-level interaction with nftables Netlink's API over libmnl.","build_epoch":1523410944,"build_epoch_utc":null},{"name":"libselinux-python","version":"2.5","release":"14.1.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:22 AM PDT","group":"Development/Libraries","size":603236,"license":"Public Domain","signature":"RSA/SHA256, Mon 12 Nov 2018 06:37:29 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"libselinux-2.5-14.1.el7.src.rpm","build_date":"Tue 30 Oct 2018 02:43:06 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/SELinuxProject/selinux/wiki","summary":"SELinux python bindings for libselinux","description":"The libselinux-python package contains the python bindings for developing SELinux applications.","build_epoch":1540935786,"build_epoch_utc":null},{"name":"ruby-libs","version":"2.0.0.648","release":"36.el7","architecture":"x86_64","install_date":"Sat 16 Nov 2019 02:29:24 PM PST","group":"Development/Libraries","size":10883299,"license":"Ruby or BSD","signature":"RSA/SHA256, Thu 22 Aug 2019 02:43:01 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"ruby-2.0.0.648-36.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:30:13 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://ruby-lang.org/","summary":"Libraries necessary to run Ruby","description":"This package includes the libruby, necessary to run Ruby.","build_epoch":1565267413,"build_epoch_utc":null},{"name":"yum-metadata-parser","version":"1.1.4","release":"10.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:23 AM PDT","group":"Development/Libraries","size":58789,"license":"GPLv2","signature":"RSA/SHA256, Thu 03 Jul 2014 10:53:04 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"yum-metadata-parser-1.1.4-10.el7.src.rpm","build_date":"Tue 10 Jun 2014 01:39:48 AM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://linux.duke.edu/projects/yum/","summary":"A fast metadata parser for yum","description":"Fast metadata parser for yum implemented in C.","build_epoch":1402389588,"build_epoch_utc":null},{"name":"rubygem-json","version":"1.7.7","release":"36.el7","architecture":"x86_64","install_date":"Sat 16 Nov 2019 02:29:24 PM PST","group":"Development/Libraries","size":94878,"license":"Ruby or GPLv2","signature":"RSA/SHA256, Thu 22 Aug 2019 02:42:58 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"ruby-2.0.0.648-36.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:30:13 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://ruby-lang.org/","summary":"This is a JSON implementation as a Ruby extension in C","description":"This is a implementation of the JSON specification according to RFC 4627. You can think of it as a low fat alternative to XML, if you want to store data to disk or transmit it over a network rather than use a verbose markup language.","build_epoch":1565267413,"build_epoch_utc":null},{"name":"pyliblzma","version":"0.5.3","release":"11.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:23 AM PDT","group":"Unspecified","size":190112,"license":"LGPLv3+","signature":"RSA/SHA256, Thu 03 Jul 2014 09:37:13 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"pyliblzma-0.5.3-11.el7.src.rpm","build_date":"Mon 09 Jun 2014 10:20:49 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://launchpad.net/pyliblzma","summary":"Python bindings for lzma","description":"PylibLZMA provides a python interface for the liblzma library to read and write data that has been compressed or can be decompressed by Lasse Collin's lzma utils.","build_epoch":1402377649,"build_epoch_utc":null},{"name":"rubygem-rdoc","version":"4.0.0","release":"36.el7","architecture":"noarch","install_date":"Sat 16 Nov 2019 02:29:25 PM PST","group":"Development/Libraries","size":1271686,"license":"GPLv2 and Ruby and MIT","signature":"RSA/SHA256, Thu 22 Aug 2019 03:00:51 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"ruby-2.0.0.648-36.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:30:13 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://ruby-lang.org/","summary":"A tool to generate HTML and command-line documentation for Ruby projects","description":"RDoc produces HTML and command-line documentation for Ruby projects. RDoc includes the 'rdoc' and 'ri' tools for generating and displaying online documentation.","build_epoch":1565267413,"build_epoch_utc":null},{"name":"python-schedutils","version":"0.4","release":"6.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:23 AM PDT","group":"System Environment/Libraries","size":43123,"license":"GPLv2","signature":"RSA/SHA256, Sun 20 Nov 2016 12:17:26 PM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"python-schedutils-0.4-6.el7.src.rpm","build_date":"Sat 05 Nov 2016 02:51:47 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://git.kernel.org/?p=linux/kernel/git/acme/python-schedutils.git","summary":"Linux scheduler python bindings","description":"Python interface for the Linux scheduler sched_{get,set}{affinity,scheduler} functions and friends.","build_epoch":1478382707,"build_epoch_utc":null},{"name":"ruby","version":"2.0.0.648","release":"36.el7","architecture":"x86_64","install_date":"Sat 16 Nov 2019 02:29:25 PM PST","group":"Development/Languages","size":64795,"license":"(Ruby or BSD) and Public Domain","signature":"RSA/SHA256, Thu 22 Aug 2019 02:42:54 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"ruby-2.0.0.648-36.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:30:13 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://ruby-lang.org/","summary":"An interpreter of object-oriented scripting language","description":"Ruby is the interpreted scripting language for quick and easy object-oriented programming. It has many features to process text files and to do system management tasks (as in Perl). It is simple, straight-forward, and extensible.","build_epoch":1565267413,"build_epoch_utc":null},{"name":"rubygems","version":"2.0.14.1","release":"36.el7","architecture":"noarch","install_date":"Sat 16 Nov 2019 02:29:25 PM PST","group":"Development/Libraries","size":600230,"license":"Ruby or MIT","signature":"RSA/SHA256, Thu 22 Aug 2019 03:00:52 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"ruby-2.0.0.648-36.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:30:13 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://ruby-lang.org/","summary":"The Ruby standard for packaging ruby libraries","description":"RubyGems is the Ruby standard for publishing and managing third party libraries.","build_epoch":1565267413,"build_epoch_utc":null},{"name":"pyxattr","version":"0.5.1","release":"5.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:23 AM PDT","group":"Development/Libraries","size":63304,"license":"LGPLv2+","signature":"RSA/SHA256, Thu 03 Jul 2014 09:43:07 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"pyxattr-0.5.1-5.el7.src.rpm","build_date":"Mon 09 Jun 2014 03:24:57 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://pyxattr.sourceforge.net/","summary":"Extended attributes library wrapper for Python","description":"Python extension module wrapper for libattr. It allows to query, list, add and remove extended attributes from files and directories.","build_epoch":1402352697,"build_epoch_utc":null},{"name":"autogen-libopts","version":"5.18","release":"5.el7","architecture":"x86_64","install_date":"Tue 03 Mar 2020 06:02:09 PM PST","group":"System Environment/Libraries","size":145381,"license":"LGPLv3+","signature":"RSA/SHA256, Thu 03 Jul 2014 05:44:16 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"autogen-5.18-5.el7.src.rpm","build_date":"Mon 09 Jun 2014 08:19:30 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnu.org/software/autogen/","summary":"Automated option processing library based on autogen","description":"Libopts is very powerful command line option parser consisting of a set of AutoGen templates and a run time library that nearly eliminates the hassle of parsing and documenting command line options.","build_epoch":1402370370,"build_epoch_utc":null},{"name":"ntp","version":"4.2.6p5","release":"29.el7.centos","architecture":"x86_64","install_date":"Tue 03 Mar 2020 06:02:09 PM PST","group":"System Environment/Daemons","size":1434857,"license":"(MIT and BSD and BSD with advertising) and GPLv2","signature":"RSA/SHA256, Thu 22 Aug 2019 02:36:35 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"ntp-4.2.6p5-29.el7.centos.src.rpm","build_date":"Thu 08 Aug 2019 04:48:12 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.ntp.org","summary":"The NTP daemon and utilities","description":"The Network Time Protocol (NTP) is used to synchronize a computer's time with another reference time source. This package includes ntpd (a daemon which continuously adjusts system time) and utilities used to query and configure the ntpd daemon. Perl scripts ntp-wait and ntptrace are in the ntp-perl package, ntpdate is in the ntpdate package and sntp is in the sntp package. The documentation is in the ntp-doc package.","build_epoch":1565264892,"build_epoch_utc":null},{"name":"gettext-libs","version":"0.19.8.1","release":"2.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:23 AM PDT","group":"System Environment/Libraries","size":1546952,"license":"LGPLv2+ and GPLv3+","signature":"RSA/SHA256, Thu 10 Aug 2017 09:08:05 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"gettext-0.19.8.1-2.el7.src.rpm","build_date":"Wed 02 Aug 2017 07:28:14 PM PDT","build_host":"c1bm.rdu2.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnu.org/software/gettext/","summary":"Libraries for gettext","description":"This package contains libraries used internationalization support.","build_epoch":1501727294,"build_epoch_utc":null},{"name":"libmpc","version":"1.0.1","release":"3.el7","architecture":"x86_64","install_date":"Wed 08 Apr 2020 05:17:22 AM PDT","group":"Development/Tools","size":113833,"license":"LGPLv3+ and GFDL","signature":"RSA/SHA256, Thu 03 Jul 2014 07:59:41 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libmpc-1.0.1-3.el7.src.rpm","build_date":"Mon 09 Jun 2014 12:44:58 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.multiprecision.org/","summary":"C library for multiple precision complex arithmetic","description":"MPC is a C library for the arithmetic of complex numbers with arbitrarily high precision and correct rounding of the result. It is built upon and follows the same principles as Mpfr.","build_epoch":1402343098,"build_epoch_utc":null},{"name":"less","version":"458","release":"9.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:23 AM PDT","group":"Applications/Text","size":215376,"license":"GPLv3+","signature":"RSA/SHA256, Thu 30 Jul 2015 04:52:46 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"less-458-9.el7.src.rpm","build_date":"Thu 30 Jul 2015 04:50:42 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.greenwoodsoftware.com/less/","summary":"A text file browser similar to more, but better","description":"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.","build_epoch":1438300242,"build_epoch_utc":null},{"name":"kernel-headers","version":"3.10.0","release":"1062.18.1.el7","architecture":"x86_64","install_date":"Wed 08 Apr 2020 05:17:24 AM PDT","group":"Development/System","size":3898858,"license":"GPLv2","signature":"RSA/SHA256, Wed 18 Mar 2020 09:50:23 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"kernel-3.10.0-1062.18.1.el7.src.rpm","build_date":"Tue 17 Mar 2020 05:04:12 PM PDT","build_host":"kbuilder.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.kernel.org/","summary":"Header files for the Linux kernel for use by glibc","description":"Kernel-headers includes the C header files that specify the interface between the Linux kernel and userspace libraries and programs. The header files define structures and constants that are needed for building most standard programs and are also needed for rebuilding the glibc package.","build_epoch":1584489852,"build_epoch_utc":null},{"name":"glibc-devel","version":"2.17","release":"292.el7","architecture":"x86_64","install_date":"Wed 08 Apr 2020 05:17:25 AM PDT","group":"Development/Libraries","size":1066078,"license":"LGPLv2+ and LGPLv2+ with exceptions and GPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:24:44 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"glibc-2.17-292.el7.src.rpm","build_date":"Tue 06 Aug 2019 04:23:44 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnu.org/software/glibc/","summary":"Object files for development using standard C libraries.","description":"The glibc-devel package contains the object files necessary for developing programs which use the standard C libraries (which are used by nearly all programs). If you are developing programs which will use the standard C libraries, your system needs to have these standard object files available in order to create the executables. Install glibc-devel if you are going to develop programs which will use the standard C libraries.","build_epoch":1565133824,"build_epoch_utc":null},{"name":"keyutils-libs-devel","version":"1.5.8","release":"3.el7","architecture":"x86_64","install_date":"Wed 08 Apr 2020 05:24:42 AM PDT","group":"System Environment/Base","size":29186,"license":"GPLv2+ and LGPLv2+","signature":"RSA/SHA256, Thu 03 Jul 2014 07:31:03 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"keyutils-1.5.8-3.el7.src.rpm","build_date":"Mon 09 Jun 2014 07:17:55 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://people.redhat.com/~dhowells/keyutils/","summary":"Development package for building Linux key management utilities","description":"This package provides headers and libraries for building key utilities.","build_epoch":1402366675,"build_epoch_utc":null},{"name":"pkgconfig","epoch":1,"version":"0.27.1","release":"4.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:24 AM PDT","group":"Development/Tools","size":105522,"license":"GPLv2+","signature":"RSA/SHA256, Thu 03 Jul 2014 09:28:33 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"pkgconfig-0.27.1-4.el7.src.rpm","build_date":"Mon 09 Jun 2014 03:05:48 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://pkgconfig.freedesktop.org","summary":"A tool for determining compilation options","description":"The pkgconfig tool determines compilation options. For each required library, it reads the configuration file and outputs the necessary compiler and linker flags.","build_epoch":1402351548,"build_epoch_utc":null},{"name":"pcre-devel","version":"8.32","release":"17.el7","architecture":"x86_64","install_date":"Wed 08 Apr 2020 05:24:42 AM PDT","group":"Development/Libraries","size":1505771,"license":"BSD","signature":"RSA/SHA256, Thu 10 Aug 2017 12:04:40 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"pcre-8.32-17.el7.src.rpm","build_date":"Tue 01 Aug 2017 08:08:12 PM PDT","build_host":"c1bm.rdu2.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.pcre.org/","summary":"Development files for pcre","description":"Development files (Headers, libraries for dynamic linking, etc) for pcre.","build_epoch":1501643292,"build_epoch_utc":null},{"name":"python-gobject-base","version":"3.22.0","release":"1.el7_4.1","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:24 AM PDT","group":"Unspecified","size":1123114,"license":"LGPLv2+ and MIT","signature":"RSA/SHA256, Tue 21 Nov 2017 06:17:15 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"pygobject3-3.22.0-1.el7_4.1.src.rpm","build_date":"Tue 21 Nov 2017 04:44:25 AM PST","build_host":"c1bm.rdu2.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://wiki.gnome.org/Projects/PyGObject","summary":"Python 2 bindings for GObject Introspection base package","description":"This package provides the non-cairo specific bits of the GObject Introspection library.","build_epoch":1511268265,"build_epoch_utc":null},{"name":"libkadm5","version":"1.15.1","release":"37.el7_7.2","architecture":"x86_64","install_date":"Wed 08 Apr 2020 05:24:42 AM PDT","group":"System Environment/Base","size":221000,"license":"MIT","signature":"RSA/SHA256, Sat 14 Sep 2019 04:48:50 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"krb5-1.15.1-37.el7_7.2.src.rpm","build_date":"Fri 13 Sep 2019 11:07:42 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://web.mit.edu/kerberos/www/","summary":"Kerberos 5 Administrative libraries","description":"Kerberos is a network authentication system. The libkadm5 package contains the libkadm5clnt and libkadm5serv shared objects, for use ONLY by kerberos itself. Do not depend on this package.","build_epoch":1568398062,"build_epoch_utc":null},{"name":"zlib-devel","version":"1.2.7","release":"18.el7","architecture":"x86_64","install_date":"Wed 08 Apr 2020 05:24:42 AM PDT","group":"Development/Libraries","size":135536,"license":"zlib and Boost","signature":"RSA/SHA256, Mon 12 Nov 2018 06:49:54 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"zlib-1.2.7-18.el7.src.rpm","build_date":"Tue 30 Oct 2018 01:24:40 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.zlib.net/","summary":"Header files and libraries for Zlib development","description":"The zlib-devel package contains the header files and libraries needed to develop programs that use the zlib compression and decompression library.","build_epoch":1540931080,"build_epoch_utc":null},{"name":"fipscheck","version":"1.4.1","release":"6.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:24 AM PDT","group":"System Environment/Libraries","size":38839,"license":"BSD","signature":"RSA/SHA256, Thu 10 Aug 2017 08:53:42 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"fipscheck-1.4.1-6.el7.src.rpm","build_date":"Wed 02 Aug 2017 05:47:49 AM PDT","build_host":"c1bm.rdu2.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://fedorahosted.org/fipscheck/","summary":"A library for integrity verification of FIPS validated modules","description":"FIPSCheck is a library for integrity verification of FIPS validated modules. The package also provides helper binaries for creation and verification of the HMAC-SHA256 checksum files.","build_epoch":1501678069,"build_epoch_utc":null},{"name":"krb5-devel","version":"1.15.1","release":"37.el7_7.2","architecture":"x86_64","install_date":"Wed 08 Apr 2020 05:24:43 AM PDT","group":"Development/Libraries","size":796381,"license":"MIT","signature":"RSA/SHA256, Sat 14 Sep 2019 04:48:30 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"krb5-1.15.1-37.el7_7.2.src.rpm","build_date":"Fri 13 Sep 2019 11:07:42 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://web.mit.edu/kerberos/www/","summary":"Development files needed to compile Kerberos 5 programs","description":"Kerberos is a network authentication system. The krb5-devel package contains the header files and libraries needed for compiling Kerberos 5 programs. If you want to develop Kerberos-aware programs, you need to install this package.","build_epoch":1568398062,"build_epoch_utc":null},{"name":"gmp-devel","epoch":1,"version":"6.0.0","release":"15.el7","architecture":"x86_64","install_date":"Tue 14 Apr 2020 08:10:08 AM PDT","group":"Development/Libraries","size":348562,"license":"LGPLv3+ or GPLv2+","signature":"RSA/SHA256, Thu 10 Aug 2017 09:14:34 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"gmp-6.0.0-15.el7.src.rpm","build_date":"Wed 02 Aug 2017 06:13:15 PM PDT","build_host":"c1bm.rdu2.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://gmplib.org/","summary":"Development tools for the GNU MP arbitrary precision library","description":"The libraries, header files and documentation for using the GNU MP arbitrary precision library in applications. If you want to develop applications which will use the GNU MP library, you'll need to install the gmp-devel package. You'll also need to install the gmp package.","build_epoch":1501722795,"build_epoch_utc":null},{"name":"libmpc-devel","version":"1.0.1","release":"3.el7","architecture":"x86_64","install_date":"Tue 14 Apr 2020 08:10:08 AM PDT","group":"Development/Libraries","size":35779,"license":"LGPLv3+ and GFDL","signature":"RSA/SHA256, Thu 03 Jul 2014 07:59:52 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libmpc-1.0.1-3.el7.src.rpm","build_date":"Mon 09 Jun 2014 12:44:58 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.multiprecision.org/","summary":"Header and shared development libraries for MPC","description":"Header files and shared object symlinks for MPC is a C library.","build_epoch":1402343098,"build_epoch_utc":null},{"name":"centos-release-scl-rh","version":"2","release":"3.el7.centos","architecture":"noarch","install_date":"Tue 14 Apr 2020 08:41:32 AM PDT","group":"Unspecified","size":20015,"license":"GPLv2","signature":"RSA/SHA256, Mon 01 Apr 2019 05:41:53 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"centos-release-scl-rh-2-3.el7.centos.src.rpm","build_date":"Mon 29 Oct 2018 02:15:47 AM PDT","build_host":"c1bd.rdu2.centos.org","relocations":"(not relocatable)","packager":"CBS ","vendor":"CentOS","url":"http://wiki.centos.org/SpecialInterestGroup/SCLo","summary":"Software collections from the CentOS SCLo SIG (upstream scl only)","description":"yum Configs and basic docs for Software Collections as delivered via the CentOS SCLo SIG.","build_epoch":1540804547,"build_epoch_utc":null},{"name":"scl-utils","version":"20130529","release":"19.el7","architecture":"x86_64","install_date":"Tue 14 Apr 2020 08:42:05 AM PDT","group":"Applications/File","size":25141,"license":"GPLv2+","signature":"RSA/SHA256, Mon 12 Nov 2018 06:46:32 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"scl-utils-20130529-19.el7.src.rpm","build_date":"Tue 30 Oct 2018 12:17:57 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://fedorahosted.org/released/scl-utils/","summary":"Utilities for alternative packaging","description":"Run-time utility for alternative packaging.","build_epoch":1540927077,"build_epoch_utc":null},{"name":"python-pycurl","version":"7.19.0","release":"19.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:25 AM PDT","group":"Development/Languages","size":241513,"license":"LGPLv2+ or MIT","signature":"RSA/SHA256, Sun 20 Nov 2016 12:16:58 PM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"python-pycurl-7.19.0-19.el7.src.rpm","build_date":"Sat 05 Nov 2016 08:10:54 AM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://pycurl.sourceforge.net/","summary":"A Python interface to libcurl","description":"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.","build_epoch":1478358654,"build_epoch_utc":null},{"name":"devtoolset-3-gcc","version":"4.9.2","release":"6.el7","architecture":"x86_64","install_date":"Tue 14 Apr 2020 08:42:08 AM PDT","group":"Development/Languages","size":53037442,"license":"GPLv3+ and GPLv3+ with exceptions and GPLv2+ with exceptions and LGPLv2+ and BSD","signature":"RSA/SHA1, Sat 28 Nov 2015 06:50:43 AM PST, Key ID 4eb84e71f2ee9d55","source_rpm":"devtoolset-3-gcc-4.9.2-6.el7.src.rpm","build_date":"Sat 03 Oct 2015 08:15:45 AM PDT","build_host":"c1bj.rdu2.centos.org","relocations":"(not relocatable)","packager":"CBS ","vendor":"CentOS","url":"http://gcc.gnu.org","summary":"GCC version 4.9","description":"The devtoolset-3-gcc package contains the GNU Compiler Collection version 4.9.","build_epoch":1443885345,"build_epoch_utc":null},{"name":"net-tools","version":"2.0","release":"0.25.20131004git.el7","architecture":"x86_64","install_date":"Tue 15 Oct 2019 10:40:39 AM PDT","group":"System Environment/Base","size":938978,"license":"GPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:36:04 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"net-tools-2.0-0.25.20131004git.el7.src.rpm","build_date":"Thu 08 Aug 2019 06:10:26 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://sourceforge.net/projects/net-tools/","summary":"Basic networking tools","description":"The net-tools package contains basic networking tools, including ifconfig, netstat, route, and others. Most of them are obsolete. For replacement check iproute package.","build_epoch":1565313026,"build_epoch_utc":null},{"name":"logrotate","version":"3.8.6","release":"17.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:25 AM PDT","group":"System Environment/Base","size":107156,"license":"GPL+","signature":"RSA/SHA256, Mon 12 Nov 2018 06:39:25 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"logrotate-3.8.6-17.el7.src.rpm","build_date":"Tue 30 Oct 2018 12:13:00 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/logrotate/logrotate","summary":"Rotates, compresses, removes and mails system log files","description":"The logrotate utility is designed to simplify the administration of log files on a system which generates a lot of log files. Logrotate allows for the automatic rotation compression, removal and mailing of log files. Logrotate can be set to handle a log file daily, weekly, monthly or when the log file gets to a certain size. Normally, logrotate runs as a daily cron job. Install the logrotate package if you need a utility to deal with the log files on your system.","build_epoch":1540926780,"build_epoch_utc":null},{"name":"devtoolset-3-gcc-c++","version":"4.9.2","release":"6.el7","architecture":"x86_64","install_date":"Wed 15 Apr 2020 12:39:17 PM PDT","group":"Development/Languages","size":21072579,"license":"GPLv3+ and GPLv3+ with exceptions and GPLv2+ with exceptions and LGPLv2+ and BSD","signature":"RSA/SHA1, Sat 28 Nov 2015 06:50:43 AM PST, Key ID 4eb84e71f2ee9d55","source_rpm":"devtoolset-3-gcc-4.9.2-6.el7.src.rpm","build_date":"Sat 03 Oct 2015 08:15:45 AM PDT","build_host":"c1bj.rdu2.centos.org","relocations":"(not relocatable)","packager":"CBS ","vendor":"CentOS","url":"http://gcc.gnu.org","summary":"C++ support for GCC version 4.9","description":"This package adds C++ support to the GNU Compiler Collection version 4.9. It includes support for most of the current C++ specification and a lot of support for the upcoming C++ specification.","build_epoch":1443885345,"build_epoch_utc":null},{"name":"python3-setuptools","version":"39.2.0","release":"10.el7","architecture":"noarch","install_date":"Tue 15 Oct 2019 11:09:07 AM PDT","group":"Applications/System","size":3815469,"license":"MIT and (BSD or ASL 2.0)","signature":"RSA/SHA256, Thu 22 Aug 2019 02:59:50 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"python3-setuptools-39.2.0-10.el7.src.rpm","build_date":"Wed 07 Aug 2019 09:59:57 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://pypi.python.org/pypi/setuptools","summary":"Easily build and distribute Python 3 packages","description":"Setuptools is a collection of enhancements to the Python 3 distutils that allow you to more easily build and distribute Python 3 packages, especially ones that have dependencies on other packages. This package also contains the runtime components of setuptools, necessary to execute the software that requires pkg_resources.py.","build_epoch":1565197197,"build_epoch_utc":null},{"name":"centos-logos","version":"70.0.6","release":"3.el7.centos","architecture":"noarch","install_date":"Thu 15 Aug 2019 10:53:27 AM PDT","group":"System Environment/Base","size":22548401,"license":"Copyright © 2014 The CentOS Project. All rights reserved.","signature":"RSA/SHA256, Wed 30 Sep 2015 01:10:39 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"centos-logos-70.0.6-3.el7.centos.src.rpm","build_date":"Wed 30 Sep 2015 12:58:32 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.centos.org","summary":"CentOS-related icons and pictures","description":"The redhat-logos package (the \"Package\") contains files created by the CentOS Project to replace the Red Hat \"Shadow Man\" logo and RPM logo. The Red Hat \"Shadow Man\" logo, RPM, and the RPM logo are trademarks or registered trademarks of Red Hat, Inc. The Package and CentOS logos (the \"Marks\") can only used as outlined in the included COPYING file. Please see that file for information on copying and redistribution of the CentOS Marks.","build_epoch":1443643112,"build_epoch_utc":null},{"name":"python3","version":"3.6.8","release":"10.el7","architecture":"x86_64","install_date":"Tue 15 Oct 2019 11:09:08 AM PDT","group":"Unspecified","size":39976,"license":"Python","signature":"RSA/SHA256, Thu 22 Aug 2019 02:40:07 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"python3-3.6.8-10.el7.src.rpm","build_date":"Wed 07 Aug 2019 11:09:49 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://www.python.org/","summary":"Interpreter of the Python programming language","the_python3_package_provides_the_\"python3\"_executable":"the reference","description":"Python is an accessible, high-level, dynamically typed, interpreted programming language, designed with an emphasis on code readability. It includes an extensive standard library, and has a vast ecosystem of third-party libraries. The python3 package provides the \"python3\" executable: the reference interpreter for the Python language, version 3. The majority of its standard library is provided in the python3-libs package, which should be installed automatically along with python3. The remaining parts of the Python standard library are broken out into the python3-tkinter and python3-test packages, which may need to be installed separately. Documentation for Python is provided in the python3-docs package. Packages containing additional libraries for Python are generally named with the \"python3-\" prefix.","build_epoch":1565201389,"build_epoch_utc":null},{"name":"libselinux-utils","version":"2.5","release":"14.1.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:27 AM PDT","group":"Development/Libraries","size":172645,"license":"Public Domain","signature":"RSA/SHA256, Mon 12 Nov 2018 06:37:31 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"libselinux-2.5-14.1.el7.src.rpm","build_date":"Tue 30 Oct 2018 02:43:06 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/SELinuxProject/selinux/wiki","summary":"SELinux libselinux utilies","description":"The libselinux-utils package contains the utilities","build_epoch":1540935786,"build_epoch_utc":null},{"name":"epel-release","version":"7","release":"11","architecture":"noarch","install_date":"Mon 04 Jan 2021 12:31:39 PM PST","group":"System Environment/Base","size":24834,"license":"GPLv2","signature":"RSA/SHA256, Fri 11 May 2018 05:21:29 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"epel-release-7-11.src.rpm","build_date":"Mon 02 Oct 2017 10:45:58 AM PDT","build_host":"buildvm-ppc64le-05.ppc.fedoraproject.org","relocations":"(not relocatable)","packager":"Fedora Project","vendor":"Fedora Project","url":"http://download.fedoraproject.org/pub/epel","summary":"Extra Packages for Enterprise Linux repository configuration","description":"This package contains the Extra Packages for Enterprise Linux (EPEL) repository GPG key as well as configuration for yum.","build_epoch":1506966358,"build_epoch_utc":null},{"name":"perl-parent","epoch":1,"version":"0.225","release":"244.el7","architecture":"noarch","install_date":"Tue 15 Oct 2019 11:27:57 AM PDT","group":"Development/Libraries","size":8141,"license":"GPL+ or Artistic","signature":"RSA/SHA256, Thu 03 Jul 2014 09:21:55 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"perl-parent-0.225-244.el7.src.rpm","build_date":"Tue 10 Jun 2014 12:15:20 AM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://search.cpan.org/dist/parent/","summary":"Establish an ISA relationship with base classes at compile time","description":"Allows you to both load one or more modules, while setting up inheritance from those modules at the same time. Mostly similar in effect to: \tpackage Baz; \tBEGIN { \t\trequire Foo; \t\trequire Bar; \t\tpush @ISA, qw(Foo Bar); \t}","build_epoch":1402384520,"build_epoch_utc":null},{"name":"libnl","version":"1.1.4","release":"3.el7","architecture":"x86_64","install_date":"Mon 04 Jan 2021 12:32:02 PM PST","group":"Development/Libraries","size":373662,"license":"LGPLv2","signature":"RSA/SHA256, Thu 03 Jul 2014 08:02:21 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libnl-1.1.4-3.el7.src.rpm","build_date":"Tue 10 Jun 2014 01:58:17 AM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.infradead.org/~tgr/libnl/","summary":"Convenience library for kernel netlink sockets","description":"This package contains a convenience library to simplify using the Linux kernel's netlink sockets interface for network manipulation","build_epoch":1402390697,"build_epoch_utc":null},{"name":"perl-podlators","version":"2.5.1","release":"3.el7","architecture":"noarch","install_date":"Tue 15 Oct 2019 11:27:57 AM PDT","group":"Development/Libraries","size":287679,"license":"GPL+ or Artistic","signature":"RSA/SHA256, Thu 03 Jul 2014 09:22:34 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"perl-podlators-2.5.1-3.el7.src.rpm","build_date":"Mon 09 Jun 2014 12:56:16 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://search.cpan.org/dist/podlators/","summary":"Format POD source into various output formats","description":"This package contains Pod::Man and Pod::Text modules which convert POD input to *roff source output, suitable for man pages, or plain text. It also includes several sub-classes of Pod::Text for formatted output to terminals with various capabilities.","build_epoch":1402343776,"build_epoch_utc":null},{"name":"crda","version":"3.18_2018.05.31","release":"4.el7","architecture":"x86_64","install_date":"Mon 04 Jan 2021 12:32:02 PM PST","group":"System Environment/Base","size":67470,"license":"ISC","signature":"RSA/SHA256, Mon 12 Nov 2018 06:22:57 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"crda-3.18_2018.05.31-4.el7.src.rpm","build_date":"Tue 30 Oct 2018 03:32:16 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://wireless.kernel.org/en/developers/Regulatory/CRDA","summary":"Regulatory compliance daemon for 802.11 wireless networking","description":"CRDA acts as the udev helper for communication between the kernel and userspace for regulatory compliance. It relies on nl80211 for communication. CRDA is intended to be run only through udev communication from the kernel.","build_epoch":1540938736,"build_epoch_utc":null},{"name":"perl-Pod-Escapes","epoch":1,"version":"1.04","release":"294.el7_6","architecture":"noarch","install_date":"Tue 15 Oct 2019 11:27:57 AM PDT","group":"Development/Libraries","size":21091,"license":"GPL+ or Artistic","signature":"RSA/SHA256, Thu 24 Jan 2019 05:22:34 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"perl-5.16.3-294.el7_6.src.rpm","build_date":"Mon 21 Jan 2019 02:17:44 PM PST","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.perl.org/","summary":"Perl module for resolving POD escape sequences","description":"This module provides things that are useful in decoding Pod E<...> sequences. Presumably, it should be used only by Pod parsers and/or formatters.","build_epoch":1548109064,"build_epoch_utc":null},{"name":"pinentry","version":"0.8.1","release":"17.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:27 AM PDT","group":"Applications/System","size":159929,"license":"GPLv2+","signature":"RSA/SHA256, Sun 20 Nov 2016 12:05:16 PM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"pinentry-0.8.1-17.el7.src.rpm","build_date":"Sat 05 Nov 2016 08:49:27 AM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnupg.org/aegypten/","summary":"Collection of simple PIN or passphrase entry dialogs","description":"Pinentry is a collection of simple PIN or passphrase entry dialogs which utilize the Assuan protocol as described by the aegypten project; see http://www.gnupg.org/aegypten/ for details. This package contains the curses (text) based version of the PIN entry dialog.","build_epoch":1478360967,"build_epoch_utc":null},{"name":"libicu","version":"50.2","release":"4.el7_7","architecture":"x86_64","install_date":"Tue 09 Feb 2021 08:57:09 AM PST","group":"System Environment/Libraries","size":25221945,"license":"MIT and UCD and Public Domain","signature":"RSA/SHA256, Tue 24 Mar 2020 09:17:45 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"icu-50.2-4.el7_7.src.rpm","build_date":"Fri 20 Mar 2020 05:51:27 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.icu-project.org/","summary":"International Components for Unicode - libraries","description":"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.","build_epoch":1584751887,"build_epoch_utc":null},{"name":"perl-Text-ParseWords","version":"3.29","release":"4.el7","architecture":"noarch","install_date":"Tue 15 Oct 2019 11:27:58 AM PDT","group":"Development/Libraries","size":16431,"license":"GPL+ or Artistic","signature":"RSA/SHA256, Thu 03 Jul 2014 09:25:15 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"perl-Text-ParseWords-3.29-4.el7.src.rpm","build_date":"Mon 09 Jun 2014 02:14:46 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://search.cpan.org/dist/Text-ParseWords/","summary":"Parse text into an array of tokens or array of arrays","description":"The nested_quotewords() and quotewords() functions accept a delimiter (which can be a regular expression) and a list of lines and then breaks those lines up into a list of words ignoring delimiters that appear inside quotes. quotewords() returns all of the tokens in a single long list, while nested_quotewords() returns a list of token lists corresponding to the elements of @lines. parse_line() does tokenizing on a single string. The quotewords() functions simply call &parse_line(), so if you're only splitting one line you can call parse_line() directly and save a function call.","build_epoch":1402348486,"build_epoch_utc":null},{"name":"snappy","version":"1.1.0","release":"3.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:28 AM PDT","group":"System Environment/Libraries","size":119521,"license":"BSD","signature":"RSA/SHA256, Thu 03 Jul 2014 10:02:19 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"snappy-1.1.0-3.el7.src.rpm","build_date":"Tue 10 Jun 2014 12:40:34 AM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://code.google.com/p/snappy/","summary":"Fast compression and decompression library","description":"Snappy is a compression/decompression library. It does not aim for maximum compression, or compatibility with any other compression library; instead, it aims for very high speeds and reasonable compression. For instance, compared to the fastest mode of zlib, Snappy is an order of magnitude faster for most inputs, but the resulting compressed files are anywhere from 20% to 100% bigger.","build_epoch":1402386034,"build_epoch_utc":null},{"name":"bluez","version":"5.44","release":"7.el7","architecture":"x86_64","install_date":"Tue 09 Feb 2021 08:57:09 AM PST","group":"Applications/System","size":4933985,"license":"GPLv2+","signature":"RSA/SHA256, Wed 14 Oct 2020 11:47:03 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"bluez-5.44-7.el7.src.rpm","build_date":"Wed 30 Sep 2020 08:50:00 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.bluez.org/","summary":"Bluetooth utilities","description":"Utilities for use in Bluetooth applications: \t- hcitool \t- hciattach \t- hciconfig \t- bluetoothd \t- l2ping \t- rfcomm \t- sdptool \t- bccmd \t- bluetoothctl \t- btmon \t- hcidump \t- l2test \t- rctest \t- gatttool \t- start scripts (Red Hat) \t- pcmcia configuration files The BLUETOOTH trademarks are owned by Bluetooth SIG, Inc., U.S.A.","build_epoch":1601481000,"build_epoch_utc":null},{"name":"perl-libs","epoch":4,"version":"5.16.3","release":"294.el7_6","architecture":"x86_64","install_date":"Tue 15 Oct 2019 11:27:58 AM PDT","group":"Development/Languages","size":1647344,"license":"GPL+ or Artistic","signature":"RSA/SHA256, Thu 24 Jan 2019 05:22:16 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"perl-5.16.3-294.el7_6.src.rpm","build_date":"Mon 21 Jan 2019 02:12:20 PM PST","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.perl.org/","summary":"The libraries for the perl runtime","description":"The libraries for the perl runtime","build_epoch":1548108740,"build_epoch_utc":null},{"name":"jq","version":"1.6","release":"2.el7","architecture":"x86_64","install_date":"Wed 31 Mar 2021 06:30:29 PM PDT","group":"Unspecified","size":390033,"license":"MIT and ASL 2.0 and CC-BY and GPLv3","signature":"RSA/SHA256, Thu 28 May 2020 10:31:39 AM PDT, Key ID 6a2faea2352c64e5","source_rpm":"jq-1.6-2.el7.src.rpm","build_date":"Wed 27 May 2020 02:48:09 PM PDT","build_host":"buildvm-14.phx2.fedoraproject.org","relocations":"(not relocatable)","packager":"Fedora Project","vendor":"Fedora Project","url":"http://stedolan.github.io/jq/","bug_url":"https://bugz.fedoraproject.org/jq","summary":"Command-line JSON processor","description":"lightweight and flexible command-line JSON processor jq is like sed for JSON data – you can use it to slice and filter and map and transform structured data with the same ease that sed, awk, grep and friends let you play with text. It is written in portable C, and it has zero runtime dependencies. jq can mangle the data format that you have into the one that you want with very little effort, and the program to do so is often shorter and simpler than you'd expect.","build_epoch":1590616089,"build_epoch_utc":null},{"name":"perl-Time-HiRes","epoch":4,"version":"1.9725","release":"3.el7","architecture":"x86_64","install_date":"Tue 15 Oct 2019 11:27:58 AM PDT","group":"Development/Libraries","size":94069,"license":"GPL+ or Artistic","signature":"RSA/SHA256, Thu 03 Jul 2014 09:25:35 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"perl-Time-HiRes-1.9725-3.el7.src.rpm","build_date":"Mon 09 Jun 2014 12:57:24 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://search.cpan.org/dist/Time-HiRes/","summary":"High resolution alarm, sleep, gettimeofday, interval timers","description":"The Time::HiRes module implements a Perl interface to the usleep, nanosleep, ualarm, gettimeofday, and setitimer/getitimer system calls, in other words, high resolution time and timers.","build_epoch":1402343844,"build_epoch_utc":null},{"name":"libpng","epoch":2,"version":"1.5.13","release":"7.el7_2","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:28 AM PDT","group":"System Environment/Libraries","size":616101,"license":"zlib","signature":"RSA/SHA256, Wed 09 Dec 2015 09:02:06 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"libpng-1.5.13-7.el7_2.src.rpm","build_date":"Wed 09 Dec 2015 08:31:20 AM PST","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.libpng.org/pub/png/","summary":"A library of functions for manipulating PNG image format files","description":"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.","build_epoch":1449678680,"build_epoch_utc":null},{"name":"perl-constant","version":"1.27","release":"2.el7","architecture":"noarch","install_date":"Tue 15 Oct 2019 11:27:58 AM PDT","group":"Development/Libraries","size":26364,"license":"GPL+ or Artistic","signature":"RSA/SHA256, Thu 03 Jul 2014 09:15:39 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"perl-constant-1.27-2.el7.src.rpm","build_date":"Mon 09 Jun 2014 07:51:22 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://search.cpan.org/dist/constant/","summary":"Perl pragma to declare constants","description":"This pragma allows you to declare constants at compile-time: use constant PI => 4 * atan2(1, 1); When you declare a constant such as \"PI\" using the method shown above, each machine your script runs upon can have as many digits of accuracy as it can use. Also, your program will be easier to read, more likely to be maintained (and maintained correctly), and far less likely to send a space probe to the wrong planet because nobody noticed the one equation in which you wrote 3.14195. When a constant is used in an expression, Perl replaces it with its value at compile time, and may then optimize the expression further. In particular, any code in an \"if (CONSTANT)\" block will be optimized away if the constant is false.","build_epoch":1402368682,"build_epoch_utc":null},{"name":"perl-Socket","version":"2.010","release":"4.el7","architecture":"x86_64","install_date":"Tue 15 Oct 2019 11:27:58 AM PDT","group":"Development/Libraries","size":114497,"license":"GPL+ or Artistic","signature":"RSA/SHA256, Sun 20 Nov 2016 12:02:40 PM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"perl-Socket-2.010-4.el7.src.rpm","build_date":"Sat 05 Nov 2016 08:24:51 AM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://search.cpan.org/dist/Socket/","summary":"Networking constants and support functions","description":"This module provides a variety of constants, structure manipulators and other functions related to socket-based networking. The values and functions provided are useful when used in conjunction with Perl core functions such as socket(), setsockopt() and bind(). It also provides several other support functions, mostly for dealing with conversions of network addresses between human-readable and native binary forms, and for hostname resolver operations.","build_epoch":1478359491,"build_epoch_utc":null},{"name":"ustr","version":"1.0.4","release":"16.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:28 AM PDT","group":"System Environment/Libraries","size":285943,"license":"MIT or LGPLv2+ or BSD","signature":"RSA/SHA256, Thu 03 Jul 2014 10:39:11 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"ustr-1.0.4-16.el7.src.rpm","build_date":"Mon 09 Jun 2014 01:12:46 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.and.org/ustr/","summary":"String library, very low memory overhead, simple to import","description":" Micro string library, very low overhead from plain strdup() (Ave. 44% for 0-20B strings). Very easy to use in existing C code. At it's simplest you can just include a single header file into your .c and start using it. This package also distributes pre-built shared libraries.","build_epoch":1402344766,"build_epoch_utc":null},{"name":"perl-Storable","version":"2.45","release":"3.el7","architecture":"x86_64","install_date":"Tue 15 Oct 2019 11:27:58 AM PDT","group":"Development/Libraries","size":181031,"license":"GPL+ or Artistic","signature":"RSA/SHA256, Thu 03 Jul 2014 09:23:18 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"perl-Storable-2.45-3.el7.src.rpm","build_date":"Mon 09 Jun 2014 07:29:58 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://search.cpan.org/dist/Storable/","summary":"Persistence for Perl data structures","description":"The Storable package brings persistence to your Perl data structures containing scalar, array, hash or reference objects, i.e. anything that can be conveniently stored to disk and retrieved at a later time.","build_epoch":1402367398,"build_epoch_utc":null},{"name":"perl-Scalar-List-Utils","version":"1.27","release":"248.el7","architecture":"x86_64","install_date":"Tue 15 Oct 2019 11:27:58 AM PDT","group":"Development/Libraries","size":67994,"license":"GPL+ or Artistic","signature":"RSA/SHA256, Thu 03 Jul 2014 09:23:05 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"perl-Scalar-List-Utils-1.27-248.el7.src.rpm","build_date":"Mon 09 Jun 2014 04:57:00 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://search.cpan.org/dist/Scalar-List-Utils/","summary":"A selection of general-utility scalar and list subroutines","description":"This package contains a selection of subroutines that people have expressed would be nice to have in the perl core, but the usage would not really be high enough to warrant the use of a keyword, and the size so small such that being individual extensions would be wasteful.","build_epoch":1402358220,"build_epoch_utc":null},{"name":"perl-File-Path","version":"2.09","release":"2.el7","architecture":"noarch","install_date":"Tue 15 Oct 2019 11:27:58 AM PDT","group":"Development/Libraries","size":50067,"license":"GPL+ or Artistic","signature":"RSA/SHA256, Thu 03 Jul 2014 09:18:06 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"perl-File-Path-2.09-2.el7.src.rpm","build_date":"Mon 09 Jun 2014 05:48:09 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://search.cpan.org/dist/File-Path/","summary":"Create or remove directory trees","description":"This module provides a convenient way to create directories of arbitrary depth and to delete an entire directory subtree from the file system.","build_epoch":1402361289,"build_epoch_utc":null},{"name":"hardlink","epoch":1,"version":"1.0","release":"19.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:29 AM PDT","group":"System Environment/Base","size":16545,"license":"GPL+","signature":"RSA/SHA256, Thu 03 Jul 2014 06:53:40 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"hardlink-1.0-19.el7.src.rpm","build_date":"Mon 09 Jun 2014 11:26:04 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://pkgs.fedoraproject.org/gitweb/?p=hardlink.git","summary":"Create a tree of hardlinks","description":"hardlink is used to create a tree of hard links. It's used by kernel installation to dramatically reduce the amount of diskspace used by each kernel package installed.","build_epoch":1402381564,"build_epoch_utc":null},{"name":"perl-threads","version":"1.87","release":"4.el7","architecture":"x86_64","install_date":"Tue 15 Oct 2019 11:27:58 AM PDT","group":"Development/Libraries","size":98615,"license":"GPL+ or Artistic","signature":"RSA/SHA256, Thu 03 Jul 2014 09:25:24 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"perl-threads-1.87-4.el7.src.rpm","build_date":"Mon 09 Jun 2014 10:22:14 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://search.cpan.org/dist/threads/","summary":"Perl interpreter-based threads","description":"Since Perl 5.8, thread programming has been available using a model called interpreter threads which provides a new Perl interpreter for each thread, and, by default, results in no data or state information being shared between threads. (Prior to Perl 5.8, 5005threads was available through the \"Thread.pm\" API. This threading model has been deprecated, and was removed as of Perl 5.10.0.)","build_epoch":1402377734,"build_epoch_utc":null},{"name":"libseccomp","version":"2.3.1","release":"3.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:29 AM PDT","group":"System Environment/Libraries","size":304131,"license":"LGPLv2","signature":"RSA/SHA256, Thu 10 Aug 2017 10:50:45 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libseccomp-2.3.1-3.el7.src.rpm","build_date":"Wed 02 Aug 2017 06:38:21 AM PDT","build_host":"c1bm.rdu2.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/seccomp/libseccomp","summary":"Enhanced seccomp library","description":"The libseccomp library provides an easy to use interface to the Linux Kernel's syscall filtering mechanism, seccomp. The libseccomp API allows an application to specify which syscalls, and optionally which syscall arguments, the application is allowed to execute, all of which are enforced by the Linux Kernel.","build_epoch":1501681101,"build_epoch_utc":null},{"name":"perl-Filter","version":"1.49","release":"3.el7","architecture":"x86_64","install_date":"Tue 15 Oct 2019 11:27:59 AM PDT","group":"Development/Libraries","size":148475,"license":"GPL+ or Artistic","signature":"RSA/SHA256, Thu 03 Jul 2014 09:18:19 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"perl-Filter-1.49-3.el7.src.rpm","build_date":"Mon 09 Jun 2014 03:45:54 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://search.cpan.org/dist/Filter/","summary":"Perl source filters","description":"Source filters alter the program text of a module before Perl sees it, much as a C preprocessor alters the source text of a C program before the compiler sees it.","build_epoch":1402353954,"build_epoch_utc":null},{"name":"qrencode-libs","version":"3.4.1","release":"3.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:29 AM PDT","group":"Unspecified","size":126732,"license":"LGPLv2+","signature":"RSA/SHA256, Thu 03 Jul 2014 09:44:21 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"qrencode-3.4.1-3.el7.src.rpm","build_date":"Mon 09 Jun 2014 12:45:31 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://megaui.net/fukuchi/works/qrencode/index.en.html","summary":"QR Code encoding library - Shared libraries","description":"The qrencode-libs package contains the shared libraries and header files for applications that use qrencode.","build_epoch":1402343131,"build_epoch_utc":null},{"name":"perl","epoch":4,"version":"5.16.3","release":"294.el7_6","architecture":"x86_64","install_date":"Tue 15 Oct 2019 11:28:01 AM PDT","group":"Development/Languages","size":23552128,"license":"(GPL+ or Artistic) and (GPLv2+ or Artistic) and Copyright Only and MIT and Public Domain and UCD","signature":"RSA/SHA256, Thu 24 Jan 2019 05:22:14 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"perl-5.16.3-294.el7_6.src.rpm","build_date":"Mon 21 Jan 2019 02:12:20 PM PST","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.perl.org/","summary":"Practical Extraction and Report Language","description":"Perl is a high-level programming language with roots in C, sed, awk and shell scripting. Perl is good at handling processes and files, and is especially good at handling text. Perl's hallmarks are practicality and efficiency. While it is used to do a lot of different things, Perl's most common applications are system administration utilities and web programming. A large proportion of the CGI scripts on the web are written in Perl. You need the perl package installed on your system so that your system can handle Perl scripts. Install this package if you want to program in Perl or enable your system to handle Perl scripts.","build_epoch":1548108740,"build_epoch_utc":null},{"name":"libpipeline","version":"1.2.3","release":"3.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:29 AM PDT","group":"Development/Libraries","size":142521,"license":"GPLv3+","signature":"RSA/SHA256, Thu 03 Jul 2014 08:05:55 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libpipeline-1.2.3-3.el7.src.rpm","build_date":"Mon 09 Jun 2014 10:46:23 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://libpipeline.nongnu.org/","summary":"A pipeline manipulation library","description":"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).","build_epoch":1402379183,"build_epoch_utc":null},{"name":"perl-TermReadKey","version":"2.30","release":"20.el7","architecture":"x86_64","install_date":"Tue 15 Oct 2019 11:28:01 AM PDT","group":"Development/Libraries","size":59999,"license":"(Copyright only) and (Artistic or GPL+)","signature":"RSA/SHA256, Thu 03 Jul 2014 09:23:54 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"perl-TermReadKey-2.30-20.el7.src.rpm","build_date":"Tue 10 Jun 2014 12:29:32 AM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://search.cpan.org/~jstowe/TermReadKey/","summary":"A perl module for simple terminal control","description":"Term::ReadKey is a compiled perl module dedicated to providing simple control over terminal driver modes (cbreak, raw, cooked, etc.) support for non-blocking reads, if the architecture allows, and some generalized handy functions for working with terminals. One of the main goals is to have the functions as portable as possible, so you can just plug in \"use Term::ReadKey\" on any architecture and have a good likelyhood of it working.","build_epoch":1402385372,"build_epoch_utc":null},{"name":"lsscsi","version":"0.27","release":"6.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:29 AM PDT","group":"Applications/System","size":90475,"license":"GPLv2+","signature":"RSA/SHA256, Thu 10 Aug 2017 11:15:48 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"lsscsi-0.27-6.el7.src.rpm","build_date":"Wed 02 Aug 2017 07:11:06 PM PDT","build_host":"c1bm.rdu2.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://sg.danny.cz/scsi/lsscsi.html","summary":"List SCSI devices (or hosts) and associated information","description":"Uses information provided by the sysfs pseudo file system in Linux kernel 2.6 series to list SCSI devices or all SCSI hosts. Includes a \"classic\" option to mimic the output of \"cat /proc/scsi/scsi\" that has been widely used prior to the lk 2.6 series. Author: -------- Doug Gilbert ","build_epoch":1501726266,"build_epoch_utc":null},{"name":"perl-Git","version":"1.8.3.1","release":"20.el7","architecture":"noarch","install_date":"Tue 15 Oct 2019 11:28:01 AM PDT","group":"Development/Libraries","size":58567,"license":"GPLv2","signature":"RSA/SHA256, Tue 20 Nov 2018 12:42:15 PM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"git-1.8.3.1-20.el7.src.rpm","build_date":"Mon 19 Nov 2018 08:23:15 AM PST","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://git-scm.com/","summary":"Perl interface to Git","description":"Perl interface to Git.","build_epoch":1542644595,"build_epoch_utc":null},{"name":"libgcc","version":"4.8.5","release":"39.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:15 AM PDT","group":"System Environment/Libraries","size":179328,"license":"GPLv3+ and GPLv3+ with exceptions and GPLv2+ with exceptions and LGPLv2+ and BSD","signature":"RSA/SHA256, Thu 22 Aug 2019 02:29:34 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"gcc-4.8.5-39.el7.src.rpm","build_date":"Tue 06 Aug 2019 10:15:38 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://gcc.gnu.org","summary":"GCC version 4.8 shared support library","description":"This package contains GCC shared support library which is needed e.g. for exception handling support.","build_epoch":1565111738,"build_epoch_utc":null},{"name":"centos-release","version":"7","release":"7.1908.0.el7.centos","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:16 AM PDT","group":"System Environment/Base","size":42295,"license":"GPLv2","signature":"RSA/SHA256, Thu 05 Sep 2019 06:19:24 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"centos-release-7-7.1908.0.el7.centos.src.rpm","build_date":"Thu 05 Sep 2019 06:05:40 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","summary":"CentOS Linux release file","description":"CentOS Linux release files","build_epoch":1567688740,"build_epoch_utc":null},{"name":"subscription-manager-rhsm-certificates","version":"1.24.13","release":"3.el7.centos","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:17 AM PDT","group":"Development/Libraries","size":0,"license":"GPLv2","signature":"RSA/SHA256, Sat 14 Sep 2019 04:50:33 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"subscription-manager-1.24.13-3.el7.centos.src.rpm","build_date":"Fri 13 Sep 2019 11:16:03 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.candlepinproject.org/","summary":"Certificates required to communicate with a Red Hat Unified Entitlement Platform","description":"This package contains certificates required for communicating with the REST interface of a Red Hat Unified Entitlement Platform, used for the management of system entitlements and to receive access to content.","build_epoch":1568398563,"build_epoch_utc":null},{"name":"firewalld-filesystem","version":"0.6.3","release":"2.el7_7.1","architecture":"noarch","install_date":"Wed 16 Oct 2019 09:21:17 AM PDT","group":"Unspecified","size":239,"license":"GPLv2+","signature":"RSA/SHA256, Sat 14 Sep 2019 04:52:52 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"firewalld-0.6.3-2.el7_7.1.src.rpm","build_date":"Fri 13 Sep 2019 11:02:20 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.firewalld.org","summary":"Firewalld directory layout and rpm macros","description":"This package provides directories and rpm macros which are required by other packages that add firewalld configuration files.","build_epoch":1568397740,"build_epoch_utc":null},{"name":"tzdata","version":"2019c","release":"1.el7","architecture":"noarch","install_date":"Wed 16 Oct 2019 09:21:18 AM PDT","group":"System Environment/Base","size":2018657,"license":"Public Domain","signature":"RSA/SHA256, Thu 26 Sep 2019 05:20:57 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"tzdata-2019c-1.el7.src.rpm","build_date":"Thu 26 Sep 2019 04:34:13 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://www.iana.org/time-zones","summary":"Timezone data","description":"This package contains data files with rules for various timezones around the world.","build_epoch":1569497653,"build_epoch_utc":null},{"name":"nss-softokn-freebl","version":"3.44.0","release":"5.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:18 AM PDT","group":"System Environment/Base","size":569644,"license":"MPLv2.0","signature":"RSA/SHA256, Thu 22 Aug 2019 02:36:30 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"nss-softokn-3.44.0-5.el7.src.rpm","build_date":"Mon 12 Aug 2019 07:47:20 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.mozilla.org/projects/security/pki/nss/","summary":"Freebl library for the Network Security Services","description":"NSS Softoken Cryptographic Module Freebl Library Install the nss-softokn-freebl package if you need the freebl library.","build_epoch":1565621240,"build_epoch_utc":null},{"name":"glibc","version":"2.17","release":"292.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:26 AM PDT","group":"System Environment/Libraries","size":14101347,"license":"LGPLv2+ and LGPLv2+ with exceptions and GPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:24:41 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"glibc-2.17-292.el7.src.rpm","build_date":"Tue 06 Aug 2019 04:23:44 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnu.org/software/glibc/","summary":"The GNU libc libraries","contains_the_most_important_sets_of_shared_libraries":"the standard C","description":"The glibc package contains standard libraries which are used by multiple programs on the system. In order to save disk space and memory, as well as to make upgrading easier, common system code is kept in one place and shared between programs. This particular package contains the most important sets of shared libraries: the standard C library and the standard math library. Without these two libraries, a Linux system will not function.","build_epoch":1565133824,"build_epoch_utc":null},{"name":"nss-util","version":"3.44.0","release":"3.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:26 AM PDT","group":"System Environment/Libraries","size":198960,"license":"MPLv2.0","signature":"RSA/SHA256, Thu 22 Aug 2019 02:36:34 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"nss-util-3.44.0-3.el7.src.rpm","build_date":"Fri 09 Aug 2019 07:14:13 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.mozilla.org/projects/security/pki/nss/","summary":"Network Security Services Utilities Library","description":"Utilities for Network Security Services and the Softoken module","build_epoch":1565360053,"build_epoch_utc":null},{"name":"libcom_err","version":"1.42.9","release":"16.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:26 AM PDT","group":"Development/Libraries","size":60489,"license":"MIT","signature":"RSA/SHA256, Thu 22 Aug 2019 02:29:14 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"e2fsprogs-1.42.9-16.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:19:51 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://e2fsprogs.sourceforge.net/","summary":"Common error description library","description":"This is the common error description library, part of e2fsprogs. libcom_err is an attempt to present a common error-handling mechanism.","build_epoch":1565306391,"build_epoch_utc":null},{"name":"openssl-libs","epoch":1,"version":"1.0.2k","release":"19.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:27 AM PDT","group":"System Environment/Libraries","size":3208684,"license":"OpenSSL","signature":"RSA/SHA256, Thu 22 Aug 2019 02:37:33 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"openssl-1.0.2k-19.el7.src.rpm","build_date":"Thu 08 Aug 2019 06:40:02 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.openssl.org/","summary":"A general purpose cryptography library with TLS implementation","description":"OpenSSL is a toolkit for supporting cryptography. The openssl-libs package contains the libraries that are used by various applications which support cryptographic algorithms and protocols.","build_epoch":1565314802,"build_epoch_utc":null},{"name":"krb5-libs","version":"1.15.1","release":"37.el7_7.2","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:28 AM PDT","group":"System Environment/Libraries","size":2201033,"license":"MIT","signature":"RSA/SHA256, Sat 14 Sep 2019 04:48:31 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"krb5-1.15.1-37.el7_7.2.src.rpm","build_date":"Fri 13 Sep 2019 11:07:42 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://web.mit.edu/kerberos/www/","summary":"The non-admin shared libraries used by Kerberos 5","description":"Kerberos is a network authentication system. The krb5-libs package contains the shared libraries needed by Kerberos 5. If you are using Kerberos, you need to install this package.","build_epoch":1568398062,"build_epoch_utc":null},{"name":"wpa_supplicant","epoch":1,"version":"2.6","release":"12.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:33 AM PDT","group":"System Environment/Base","size":4411751,"license":"BSD","signature":"RSA/SHA256, Mon 12 Nov 2018 06:49:13 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"wpa_supplicant-2.6-12.el7.src.rpm","build_date":"Tue 30 Oct 2018 04:03:45 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://w1.fi/wpa_supplicant/","summary":"WPA/WPA2/IEEE 802.1X Supplicant","description":"wpa_supplicant is a WPA Supplicant for Linux, BSD and Windows with support for WPA and WPA2 (IEEE 802.11i / RSN). Supplicant is the IEEE 802.1X/WPA component that is used 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.","build_epoch":1540940625,"build_epoch_utc":null},{"name":"libblkid","version":"2.23.2","release":"61.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:28 AM PDT","group":"Development/Libraries","size":265949,"license":"LGPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:28:42 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"util-linux-2.23.2-61.el7.src.rpm","build_date":"Thu 08 Aug 2019 08:10:20 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://en.wikipedia.org/wiki/Util-linux","summary":"Block device ID library","description":"This is block device identification library, part of util-linux.","build_epoch":1565320220,"build_epoch_utc":null},{"name":"elfutils-libelf","version":"0.176","release":"2.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:29 AM PDT","group":"Development/Tools","size":916230,"license":"GPLv2+ or LGPLv3+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:22:50 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"elfutils-0.176-2.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:16:25 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://elfutils.org/","summary":"Library to read and write ELF files","description":"The elfutils-libelf package provides a DSO which allows reading and writing ELF files on a high level. Third party programs depend on this package to read internals of ELF files. The programs of the elfutils package use it also to generate new ELF files.","build_epoch":1565306185,"build_epoch_utc":null},{"name":"readline","version":"6.2","release":"11.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:30 AM PDT","group":"System Environment/Libraries","size":460424,"license":"GPLv3+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:42:22 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"readline-6.2-11.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:07:39 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://cnswww.cns.cwru.edu/php/chet/readline/rltop.html","summary":"A library for editing typed command lines","description":"The Readline library provides a set of functions that allow users to edit command lines. Both Emacs and vi editing modes are available. The Readline library includes additional functions for maintaining a list of previously-entered command lines for recalling or editing those lines, and for performing csh-like history expansion on previous commands.","build_epoch":1565266059,"build_epoch_utc":null},{"name":"python","version":"2.7.5","release":"86.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:32 AM PDT","group":"Development/Languages","size":80907,"license":"Python","signature":"RSA/SHA256, Thu 22 Aug 2019 02:40:03 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"python-2.7.5-86.el7.src.rpm","build_date":"Tue 06 Aug 2019 06:15:38 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.python.org/","summary":"An interpreted, interactive, object-oriented programming language","description":"Python is an interpreted, interactive, object-oriented programming language often compared to Tcl, Perl, Scheme or Java. Python includes modules, classes, exceptions, very high level dynamic data types and dynamic typing. Python supports interfaces to many system calls and libraries, as well as to various windowing systems (X11, Motif, Tk, Mac and MFC). Programmers can write new built-in modules for Python in C or C++. Python can be used as an extension language for applications that need a programmable interface. Note that documentation for Python is provided in the python-docs package. This package provides the \"python\" executable; most of the actual implementation is within the \"python-libs\" package.","build_epoch":1565140538,"build_epoch_utc":null},{"name":"libmount","version":"2.23.2","release":"61.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:32 AM PDT","group":"Development/Libraries","size":278157,"license":"LGPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:30:26 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"util-linux-2.23.2-61.el7.src.rpm","build_date":"Thu 08 Aug 2019 08:10:20 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://en.wikipedia.org/wiki/Util-linux","summary":"Device mounting library","description":"This is the device mounting library, part of util-linux.","build_epoch":1565320220,"build_epoch_utc":null},{"name":"nss-softokn","version":"3.44.0","release":"5.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:33 AM PDT","group":"System Environment/Libraries","size":1188606,"license":"MPLv2.0","signature":"RSA/SHA256, Thu 22 Aug 2019 02:36:29 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"nss-softokn-3.44.0-5.el7.src.rpm","build_date":"Mon 12 Aug 2019 07:47:20 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.mozilla.org/projects/security/pki/nss/","summary":"Network Security Services Softoken Module","description":"Network Security Services Softoken Cryptographic Module","build_epoch":1565621240,"build_epoch_utc":null},{"name":"fxload","version":"2002_04_11","release":"16.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:36 AM PDT","group":"System Environment/Kernel","size":42589,"license":"GPLv2+","signature":"RSA/SHA256, Thu 03 Jul 2014 06:25:35 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"fxload-2002_04_11-16.el7.src.rpm","build_date":"Mon 09 Jun 2014 09:45:39 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://linux-hotplug.sourceforge.net/","summary":"A helper program to download firmware into FX and FX2 EZ-USB devices","description":"This program is conveniently able to download firmware into FX and FX2 EZ-USB devices, as well as the original AnchorChips EZ-USB. It is intended to be invoked by udev scripts when the unprogrammed device appears on the bus.","build_epoch":1402375539,"build_epoch_utc":null},{"name":"alsa-tools-firmware","version":"1.1.0","release":"1.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:36 AM PDT","group":"Applications/System","size":86387,"license":"GPLv2+","signature":"RSA/SHA256, Sun 20 Nov 2016 09:07:19 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"alsa-tools-1.1.0-1.el7.src.rpm","build_date":"Sat 05 Nov 2016 11:34:05 AM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.alsa-project.org/","summary":"ALSA tools for uploading firmware to some soundcards","description":"This package contains tools for flashing firmware into certain sound cards. The following tools are available: * hdsploader - for RME Hammerfall DSP cards * mixartloader - for Digigram miXart soundcards * vxloader - for Digigram VX soundcards * usx2yloader - second phase firmware loader for Tascam USX2Y USB soundcards","build_epoch":1478370845,"build_epoch_utc":null},{"name":"dbus-glib","version":"0.100","release":"7.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:36 AM PDT","group":"System Environment/Libraries","size":301237,"license":"AFL and GPLv2+","signature":"RSA/SHA256, Thu 03 Jul 2014 06:06:03 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"dbus-glib-0.100-7.el7.src.rpm","build_date":"Mon 09 Jun 2014 09:06:04 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.freedesktop.org/software/dbus/","summary":"GLib bindings for D-Bus","description":"D-Bus add-on library to integrate the standard D-Bus library with the GLib thread abstraction and main loop.","build_epoch":1402373164,"build_epoch_utc":null},{"name":"python-slip-dbus","version":"0.4.0","release":"4.el7","architecture":"noarch","install_date":"Thu 15 Aug 2019 10:53:36 AM PDT","group":"System Environment/Libraries","size":76410,"license":"GPLv2+","signature":"RSA/SHA256, Wed 25 Apr 2018 04:39:06 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"python-slip-0.4.0-4.el7.src.rpm","build_date":"Tue 10 Apr 2018 06:49:00 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/nphilipp/python-slip","summary":"Convenience functions for dbus services","description":"The Simple Library for Python packages contain miscellaneous code for convenience, extension and workaround purposes. This package provides slip.dbus.service.Object, which is a dbus.service.Object derivative that ends itself after a certain time without being used and/or if there are no clients anymore on the message bus, as well as convenience functions and decorators for integrating a dbus service with PolicyKit.","build_epoch":1523411340,"build_epoch_utc":null},{"name":"python-pyudev","version":"0.15","release":"9.el7","architecture":"noarch","install_date":"Thu 15 Aug 2019 10:53:36 AM PDT","group":"Development/Languages","size":241404,"license":"LGPLv2+","signature":"RSA/SHA256, Thu 10 Aug 2017 12:22:56 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"python-pyudev-0.15-9.el7.src.rpm","build_date":"Wed 02 Aug 2017 10:51:26 PM PDT","build_host":"c1bm.rdu2.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://pypi.python.org/pypi/pyudev","summary":"A libudev binding","description":"pyudev is a LGPL licensed, pure Python binding for libudev, the device and hardware management and information library for Linux. It supports almost all libudev functionality, you can enumerate devices, query device properties and attributes or monitor devices, including asynchronous monitoring with threads, or within the event loops of Qt, Glib or wxPython. The binding supports CPython_ 2 (2.6 or newer) and 3 (3.1 or newer), and PyPy_ 1.5 or newer. It is tested against udev 151 or newer, earlier versions of udev as found on dated Linux systems may work, but are not officially supported.","build_epoch":1501739486,"build_epoch_utc":null},{"name":"virt-what","version":"1.18","release":"4.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:36 AM PDT","group":"Unspecified","size":45720,"license":"GPLv2+","signature":"RSA/SHA256, Wed 25 Apr 2018 04:51:38 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"virt-what-1.18-4.el7.src.rpm","build_date":"Tue 10 Apr 2018 06:51:05 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://people.redhat.com/~rjones/virt-what/","summary":"Detect if we are running in a virtual machine","description":"virt-what is a shell script which can be used to detect if the program is running in a virtual machine. The program prints out a list of \"facts\" about the virtual machine, derived from heuristics. One fact is printed per line. If nothing is printed and the script exits with code 0 (no error), then it can mean either that the program is running on bare-metal or the program is running inside a type of virtual machine which we don't know about or can't detect. Current types of virtualization detected: - aws Amazon Web Services cloud guest - bhyve FreeBSD hypervisor - docker Docker container - hyperv Microsoft Hyper-V - ibm_power-kvm IBM POWER KVM - ibm_power-lpar_shared - ibm_power-lpar_dedicated IBM POWER LPAR (hardware partition) - ibm_systemz-* IBM SystemZ Direct / LPAR / z/VM / KVM - ldoms Oracle VM Server for SPARC Logical Domains - linux_vserver Linux VServer container - lxc Linux LXC container - kvm Linux Kernel Virtual Machine (KVM) - lkvm LKVM / kvmtool - openvz OpenVZ or Virtuozzo - ovirt oVirt node - parallels Parallels Virtual Platform - powervm_lx86 IBM PowerVM Lx86 Linux/x86 emulator - qemu QEMU (unaccelerated) - rhev Red Hat Enterprise Virtualization - uml User-Mode Linux (UML) - virtage Hitachi Virtualization Manager (HVM) Virtage LPAR - virtualbox VirtualBox - virtualpc Microsoft VirtualPC - vmm vmm OpenBSD hypervisor - vmware VMware - xen Xen - xen-dom0 Xen dom0 (privileged domain) - xen-domU Xen domU (paravirtualized guest domain) - xen-hvm Xen guest fully virtualized (HVM)","build_epoch":1523411465,"build_epoch_utc":null},{"name":"gnupg2","version":"2.0.22","release":"5.el7_5","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:37 AM PDT","group":"Applications/System","size":6637796,"license":"GPLv3+","signature":"RSA/SHA256, Fri 13 Jul 2018 08:56:02 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"gnupg2-2.0.22-5.el7_5.src.rpm","build_date":"Fri 13 Jul 2018 06:06:54 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnupg.org/","summary":"Utility for secure communication and data storage","description":"GnuPG is GNU's tool for secure communication and data storage. It can be used to encrypt data and to create digital signatures. It includes an advanced key management facility and is compliant with the proposed OpenPGP Internet standard as described in RFC2440 and the S/MIME standard as described by several RFCs. GnuPG 2.0 is a newer version of GnuPG with additional support for S/MIME. It has a different design philosophy that splits functionality up into several modules. The S/MIME and smartcard functionality is provided by the gnupg2-smime package.","build_epoch":1531487214,"build_epoch_utc":null},{"name":"pygpgme","version":"0.3","release":"9.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:37 AM PDT","group":"Development/Languages","size":197501,"license":"LGPLv2+","signature":"RSA/SHA256, Thu 03 Jul 2014 09:36:27 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"pygpgme-0.3-9.el7.src.rpm","build_date":"Mon 09 Jun 2014 04:30:47 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://cheeseshop.python.org/pypi/pygpgme","summary":"Python module for working with OpenPGP messages","description":"PyGPGME is a Python module that lets you sign, verify, encrypt and decrypt files using the OpenPGP format. It is built on top of GNU Privacy Guard and the GPGME library.","build_epoch":1402356647,"build_epoch_utc":null},{"name":"kbd-misc","version":"1.15.5","release":"15.el7","architecture":"noarch","install_date":"Thu 15 Aug 2019 10:53:46 AM PDT","group":"System Environment/Base","size":2419757,"license":"GPLv2+","signature":"RSA/SHA256, Mon 12 Nov 2018 07:17:50 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"kbd-1.15.5-15.el7.src.rpm","build_date":"Tue 30 Oct 2018 03:40:00 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://ftp.altlinux.org/pub/people/legion/kbd","summary":"Data for kbd package","description":"The kbd-misc package contains data for kbd package - console fonts, keymaps etc. Please note that kbd-misc is not helpful without kbd.","build_epoch":1540939200,"build_epoch_utc":null},{"name":"kernel","version":"3.10.0","release":"957.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:50 AM PDT","group":"System Environment/Kernel","size":66192729,"license":"GPLv2","signature":"RSA/SHA256, Mon 12 Nov 2018 06:30:44 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"kernel-3.10.0-957.el7.src.rpm","build_date":"Thu 08 Nov 2018 04:08:59 PM PST","build_host":"kbuilder.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.kernel.org/","summary":"The Linux kernel","of_the_operating_system":"memory allocation, process allocation, device","description":"The kernel package contains the Linux kernel (vmlinuz), the core of any Linux operating system. The kernel handles the basic functions of the operating system: memory allocation, process allocation, device input and output, etc.","build_epoch":1541722139,"build_epoch_utc":null},{"name":"libndp","version":"1.2","release":"9.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:42 AM PDT","group":"System Environment/Libraries","size":75708,"license":"LGPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:30:31 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libndp-1.2-9.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:25:58 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.libndp.org/","summary":"Library for Neighbor Discovery Protocol","description":"This package contains a library which provides a wrapper for IPv6 Neighbor Discovery Protocol. It also provides a tool named ndptool for sending and receiving NDP messages.","build_epoch":1565310358,"build_epoch_utc":null},{"name":"vim-minimal","epoch":2,"version":"7.4.629","release":"6.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:42 AM PDT","group":"Applications/Editors","size":935752,"license":"Vim","signature":"RSA/SHA256, Thu 22 Aug 2019 02:45:14 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"vim-7.4.629-6.el7.src.rpm","build_date":"Thu 08 Aug 2019 08:17:37 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.vim.org/","summary":"A minimal version of the VIM editor","present._note":"The online help is only available when the vim-common","description":"VIM (VIsual editor iMproved) is an updated and improved version of the vi editor. Vi was the first real screen-based editor for UNIX, and is still very popular. VIM improves on vi by adding new features: multiple windows, multi-level undo, block highlighting and more. The vim-minimal package includes a minimal version of VIM, which is installed into /bin/vi for use when only the root partition is present. NOTE: The online help is only available when the vim-common package is installed.","build_epoch":1565320657,"build_epoch_utc":null},{"name":"ipset","version":"7.1","release":"1.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:42 AM PDT","group":"Unspecified","size":62030,"license":"GPLv2","signature":"RSA/SHA256, Thu 22 Aug 2019 02:26:17 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"ipset-7.1-1.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:55:38 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://ipset.netfilter.org/","summary":"Manage Linux IP sets","description":"IP sets are a framework inside the Linux kernel since version 2.4.x, which can be administered by the ipset utility. Depending on the type, currently an IP set may store IP addresses, (TCP/UDP) port numbers or IP addresses with MAC addresses in a way, which ensures lightning speed when matching an entry against a set. If you want to: - store multiple IP addresses or port numbers and match against the collection by iptables at one swoop; - dynamically update iptables rules against IP addresses or ports without performance penalty; - express complex IP address and ports based rulesets with one single iptables rule and benefit from the speed of IP sets then ipset may be the proper tool for you.","build_epoch":1565308538,"build_epoch_utc":null},{"name":"util-linux","version":"2.23.2","release":"61.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:43 AM PDT","group":"System Environment/Base","size":8482880,"license":"GPLv2 and GPLv2+ and LGPLv2+ and BSD with advertising and Public Domain","signature":"RSA/SHA256, Thu 22 Aug 2019 02:45:03 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"util-linux-2.23.2-61.el7.src.rpm","build_date":"Thu 08 Aug 2019 08:10:20 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://en.wikipedia.org/wiki/Util-linux","summary":"A collection of basic system utilities","description":"The util-linux package contains a large variety of low-level system utilities that are necessary for a Linux system to function. Among others, Util-linux contains the fdisk configuration tool and the login program.","build_epoch":1565320220,"build_epoch_utc":null},{"name":"device-mapper","epoch":7,"version":"1.02.158","release":"2.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:43 AM PDT","group":"System Environment/Base","size":340425,"license":"GPLv2","signature":"RSA/SHA256, Thu 22 Aug 2019 02:22:06 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"lvm2-2.02.185-2.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:44:27 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://sources.redhat.com/dm","summary":"Device mapper utility","description":"This package contains the supporting userspace utility, dmsetup, for the kernel device-mapper.","build_epoch":1565311467,"build_epoch_utc":null},{"name":"device-mapper-libs","epoch":7,"version":"1.02.158","release":"2.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:43 AM PDT","group":"System Environment/Libraries","size":400543,"license":"LGPLv2","signature":"RSA/SHA256, Thu 22 Aug 2019 02:22:11 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"lvm2-2.02.185-2.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:44:27 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://sources.redhat.com/lvm2","summary":"Device-mapper shared library","description":"This package contains the device-mapper shared library, libdevmapper.","build_epoch":1565311467,"build_epoch_utc":null},{"name":"dracut","version":"033","release":"564.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:44 AM PDT","group":"System Environment/Base","size":904892,"license":"GPLv2+ and LGPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:22:24 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"dracut-033-564.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:14:34 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://dracut.wiki.kernel.org/","summary":"Initramfs generator using udev","description":"dracut contains tools to create a bootable initramfs for 2.6 Linux kernels. Unlike existing implementations, dracut does hard-code as little as possible into the initramfs. dracut contains various modules which are driven by the event-based udev. Having root on MD, DM, LVM2, LUKS is supported as well as NFS, iSCSI, NBD, FCoE with the dracut-network package.","build_epoch":1565306074,"build_epoch_utc":null},{"name":"systemd-libs","version":"219","release":"67.el7_7.1","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:44 AM PDT","group":"Unspecified","size":1258408,"license":"LGPLv2+ and MIT","signature":"RSA/SHA256, Sat 14 Sep 2019 04:50:37 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"systemd-219-67.el7_7.1.src.rpm","build_date":"Fri 13 Sep 2019 11:21:31 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.freedesktop.org/wiki/Software/systemd","summary":"systemd libraries","description":"Libraries for systemd and udev, as well as the systemd PAM module.","build_epoch":1568398891,"build_epoch_utc":null},{"name":"systemd","version":"219","release":"67.el7_7.1","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:46 AM PDT","group":"Unspecified","size":24404590,"license":"LGPLv2+ and MIT and GPLv2+","signature":"RSA/SHA256, Sat 14 Sep 2019 04:50:34 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"systemd-219-67.el7_7.1.src.rpm","build_date":"Fri 13 Sep 2019 11:21:31 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.freedesktop.org/wiki/Software/systemd","summary":"A System and Service Manager","description":"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.","build_epoch":1568398891,"build_epoch_utc":null},{"name":"policycoreutils","version":"2.5","release":"33.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:48 AM PDT","group":"System Environment/Base","size":5329482,"license":"GPLv2","signature":"RSA/SHA256, Thu 22 Aug 2019 02:39:35 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"policycoreutils-2.5-33.el7.src.rpm","build_date":"Thu 08 Aug 2019 06:47:35 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.selinuxproject.org","summary":"SELinux policy core utilities","description":"Security-enhanced Linux is a feature of the Linux® kernel and a number of utilities with enhanced security functionality designed to add mandatory access controls to Linux. The Security-enhanced Linux kernel contains new architectural components originally developed to improve the security of the Flask operating system. These architectural components provide general support for the enforcement of many kinds of mandatory access control policies, including those based on the concepts of Type Enforcement®, Role-based Access Control, and Multi-level Security. policycoreutils contains the policy core utilities that are required for basic operation of a SELinux system. These utilities include load_policy to load policies, setfiles to label filesystems, newrole to switch roles.","build_epoch":1565315255,"build_epoch_utc":null},{"name":"device-mapper-event-libs","epoch":7,"version":"1.02.158","release":"2.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:48 AM PDT","group":"System Environment/Libraries","size":50564,"license":"LGPLv2","signature":"RSA/SHA256, Thu 22 Aug 2019 02:22:10 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"lvm2-2.02.185-2.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:44:27 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://sources.redhat.com/lvm2","summary":"Device-mapper event daemon shared library","description":"This package contains the device-mapper event daemon shared library, libdevmapper-event.","build_epoch":1565311467,"build_epoch_utc":null},{"name":"grub2-tools","epoch":1,"version":"2.02","release":"0.80.el7.centos","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:49 AM PDT","group":"System Environment/Base","size":10080365,"license":"GPLv3+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:25:16 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"grub2-2.02-0.80.el7.centos.src.rpm","build_date":"Thu 08 Aug 2019 04:31:11 AM PDT","build_host":"kbuilder.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnu.org/software/grub/","summary":"Support tools for GRUB.","description":"The GRand Unified Bootloader (GRUB) is a highly configurable and customizable bootloader with modular architecture. It supports a rich variety of kernel formats, file systems, computer architectures and hardware devices. This subpackage provides tools for support of all platforms.","build_epoch":1565263871,"build_epoch_utc":null},{"name":"polkit","version":"0.112","release":"22.el7_7.1","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:59 AM PDT","group":"System Environment/Libraries","size":487618,"license":"LGPLv2+","signature":"RSA/SHA256, Sat 14 Sep 2019 04:49:51 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"polkit-0.112-22.el7_7.1.src.rpm","build_date":"Fri 13 Sep 2019 11:10:10 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.freedesktop.org/wiki/Software/polkit","summary":"An authorization framework","description":"polkit is a toolkit for defining and handling authorizations. It is used for allowing unprivileged processes to speak to privileged processes.","build_epoch":1568398210,"build_epoch_utc":null},{"name":"NetworkManager-libnm","epoch":1,"version":"1.18.0","release":"5.el7_7.1","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:00 AM PDT","group":"Development/Libraries","size":9130076,"license":"GPLv2+","signature":"RSA/SHA256, Sat 14 Sep 2019 04:49:28 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"NetworkManager-1.18.0-5.el7_7.1.src.rpm","build_date":"Fri 13 Sep 2019 11:05:30 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnome.org/projects/NetworkManager/","summary":"Libraries for adding NetworkManager support to applications (new API).","description":"This package contains the libraries that make it easier to use some NetworkManager functionality from applications. This is the new NetworkManager API. See also NetworkManager-glib.","build_epoch":1568397930,"build_epoch_utc":null},{"name":"openssh","version":"7.4p1","release":"21.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:01 AM PDT","group":"Applications/Internet","size":1991172,"license":"BSD","signature":"RSA/SHA256, Thu 22 Aug 2019 02:37:23 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"openssh-7.4p1-21.el7.src.rpm","build_date":"Thu 08 Aug 2019 06:40:49 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.openssh.com/portable.html","summary":"An open source implementation of SSH protocol versions 1 and 2","description":"SSH (Secure SHell) is a program for logging into and executing commands on a remote machine. SSH is intended to replace rlogin and rsh, and to provide secure encrypted communications between two untrusted hosts over an insecure network. X11 connections and arbitrary TCP/IP ports can also be forwarded over the secure channel. OpenSSH is OpenBSD's version of the last free version of SSH, bringing it up to date in terms of security and features. This package includes the core files necessary for both the OpenSSH client and server. To make this package useful, you should also install openssh-clients, openssh-server, or both.","build_epoch":1565314849,"build_epoch_utc":null},{"name":"dhclient","epoch":12,"version":"4.2.5","release":"77.el7.centos","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:02 AM PDT","group":"System Environment/Base","size":486079,"license":"ISC","signature":"RSA/SHA256, Thu 22 Aug 2019 02:22:16 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"dhcp-4.2.5-77.el7.centos.src.rpm","build_date":"Thu 08 Aug 2019 04:10:22 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://isc.org/products/DHCP/","summary":"Provides the ISC DHCP client daemon and dhclient-script","description":"DHCP (Dynamic Host Configuration Protocol) is a protocol which allows individual devices on an IP network to get their own network configuration information (IP address, subnetmask, broadcast address, etc.) from a DHCP server. The overall purpose of DHCP is to make it easier to administer a large network. To use DHCP on your network, install a DHCP service (or relay agent), and on clients run a DHCP client daemon. The dhclient package provides the ISC DHCP client daemon.","build_epoch":1565305822,"build_epoch_utc":null},{"name":"selinux-policy-targeted","version":"3.13.1","release":"252.el7.1","architecture":"noarch","install_date":"Wed 16 Oct 2019 09:22:04 AM PDT","group":"System Environment/Base","size":20080630,"license":"GPLv2+","signature":"RSA/SHA256, Sat 14 Sep 2019 10:10:22 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"selinux-policy-3.13.1-252.el7.1.src.rpm","build_date":"Tue 10 Sep 2019 08:01:56 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://oss.tresys.com/repos/refpolicy/","summary":"SELinux targeted base policy","description":"SELinux Reference policy targeted base module.","build_epoch":1568127716,"build_epoch_utc":null},{"name":"grub2-pc","epoch":1,"version":"2.02","release":"0.80.el7.centos","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:14 AM PDT","group":"System Environment/Base","size":0,"license":"GPLv3+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:25:15 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"grub2-2.02-0.80.el7.centos.src.rpm","build_date":"Thu 08 Aug 2019 04:31:11 AM PDT","build_host":"kbuilder.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnu.org/software/grub/","summary":"Bootloader with support for Linux, Multiboot, and more","description":"The GRand Unified Bootloader (GRUB) is a highly configurable and customizable bootloader with modular architecture. It supports a rich variety of kernel formats, file systems, computer architectures and hardware devices. This subpackage provides support for pc systems.","build_epoch":1565263871,"build_epoch_utc":null},{"name":"lvm2-libs","epoch":7,"version":"2.02.185","release":"2.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:15 AM PDT","group":"System Environment/Libraries","size":3791460,"license":"LGPLv2","signature":"RSA/SHA256, Thu 22 Aug 2019 02:34:53 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"lvm2-2.02.185-2.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:44:27 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://sources.redhat.com/lvm2","summary":"Shared libraries for lvm2","description":"This package contains shared lvm2 libraries for applications.","build_epoch":1565311467,"build_epoch_utc":null},{"name":"libdrm","version":"2.4.97","release":"2.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:15 AM PDT","group":"System Environment/Libraries","size":367605,"license":"MIT","signature":"RSA/SHA256, Thu 22 Aug 2019 02:29:31 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libdrm-2.4.97-2.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:15:34 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://dri.sourceforge.net","summary":"Direct Rendering Manager runtime library","description":"Direct Rendering Manager runtime library","build_epoch":1565309734,"build_epoch_utc":null},{"name":"cronie","version":"1.4.11","release":"23.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:15 AM PDT","group":"System Environment/Base","size":220592,"license":"MIT and BSD and ISC and GPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:21:40 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"cronie-1.4.11-23.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:07:25 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/cronie-crond/cronie","summary":"Cron daemon for executing programs at set times","description":"Cronie contains the standard UNIX daemon crond that runs specified programs at scheduled times and related tools. It is a fork of the original vixie-cron and has security and configuration enhancements like the ability to use pam and SELinux.","build_epoch":1565305645,"build_epoch_utc":null},{"name":"libcgroup","version":"0.41","release":"21.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:16 AM PDT","group":"Development/Libraries","size":137130,"license":"LGPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:29:11 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libcgroup-0.41-21.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:14:24 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://libcg.sourceforge.net/","summary":"Library to control and monitor control groups","description":"Control groups infrastructure. The library helps manipulate, control, administrate and monitor control groups and the associated controllers.","build_epoch":1565309664,"build_epoch_utc":null},{"name":"container-selinux","epoch":2,"version":"2.107","release":"3.el7","architecture":"noarch","install_date":"Wed 16 Oct 2019 09:22:16 AM PDT","group":"Unspecified","size":41133,"license":"GPLv2","signature":"RSA/SHA256, Mon 16 Sep 2019 05:34:22 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"container-selinux-2.107-3.el7.src.rpm","build_date":"Sun 15 Sep 2019 07:05:16 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/containers/container-selinux","summary":"SELinux policies for container runtimes","description":"SELinux policy modules for use with container runtimes.","build_epoch":1568556316,"build_epoch_utc":null},{"name":"docker-client","epoch":2,"version":"1.13.1","release":"103.git7f2769b.el7.centos","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:27 AM PDT","group":"Unspecified","size":13168359,"license":"ASL 2.0","signature":"RSA/SHA256, Mon 16 Sep 2019 05:33:24 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"docker-1.13.1-103.git7f2769b.el7.centos.src.rpm","build_date":"Sun 15 Sep 2019 07:07:52 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/docker/docker","summary":"Client side files for Docker","description":"Client side files for Docker","build_epoch":1568556472,"build_epoch_utc":null},{"name":"plymouth-scripts","version":"0.8.9","release":"0.32.20140113.el7.centos","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:27 AM PDT","group":"Applications/System","size":22795,"license":"GPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:39:27 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"plymouth-0.8.9-0.32.20140113.el7.centos.src.rpm","build_date":"Thu 08 Aug 2019 04:51:46 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.freedesktop.org/wiki/Software/Plymouth","summary":"Plymouth related scripts","description":"This package contains scripts that help integrate Plymouth with the system.","build_epoch":1565265106,"build_epoch_utc":null},{"name":"numactl-libs","version":"2.0.12","release":"3.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:27 AM PDT","group":"System Environment/Libraries","size":46608,"license":"LGPLv2 and GPLv2","signature":"RSA/SHA256, Thu 22 Aug 2019 02:36:39 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"numactl-2.0.12-3.el7.src.rpm","build_date":"Thu 08 Aug 2019 06:23:34 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/numactl/numactl","summary":"libnuma libraries","description":"numactl-libs provides libnuma, a library to do allocations with NUMA policy in applications.","build_epoch":1565313814,"build_epoch_utc":null},{"name":"kernel","version":"3.10.0","release":"1062.1.2.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:43 AM PDT","group":"System Environment/Kernel","size":67075707,"license":"GPLv2","signature":"RSA/SHA256, Wed 02 Oct 2019 07:15:46 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"kernel-3.10.0-1062.1.2.el7.src.rpm","build_date":"Mon 30 Sep 2019 07:39:55 AM PDT","build_host":"kbuilder.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.kernel.org/","summary":"The Linux kernel","of_the_operating_system":"memory allocation, process allocation, device","description":"The kernel package contains the Linux kernel (vmlinuz), the core of any Linux operating system. The kernel handles the basic functions of the operating system: memory allocation, process allocation, device input and output, etc.","build_epoch":1569854395,"build_epoch_utc":null},{"name":"docker","epoch":2,"version":"1.13.1","release":"103.git7f2769b.el7.centos","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:48 AM PDT","group":"Unspecified","size":67678219,"license":"ASL 2.0","signature":"RSA/SHA256, Mon 16 Sep 2019 05:33:23 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"docker-1.13.1-103.git7f2769b.el7.centos.src.rpm","build_date":"Sun 15 Sep 2019 07:07:52 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/docker/docker","summary":"Automates deployment of containerized applications","description":"Docker is an open-source engine that automates the deployment of any application as a lightweight, portable, self-sufficient container that will run virtually anywhere. Docker containers can encapsulate any payload, and will run consistently on and between virtually any server. The same container that a developer builds and tests on a laptop will run at scale, in production*, on VMs, bare-metal servers, OpenStack clusters, public instances, or combinations of the above.","build_epoch":1568556472,"build_epoch_utc":null},{"name":"grub2","epoch":1,"version":"2.02","release":"0.80.el7.centos","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:48 AM PDT","group":"System Environment/Base","size":0,"license":"GPLv3+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:25:10 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"grub2-2.02-0.80.el7.centos.src.rpm","build_date":"Thu 08 Aug 2019 04:31:11 AM PDT","build_host":"kbuilder.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnu.org/software/grub/","summary":"Bootloader with support for Linux, Multiboot and more","description":"The GRand Unified Bootloader (GRUB) is a highly configurable and customizable bootloader with modular architecture. It supports a rich variety of kernel formats, file systems, computer architectures and hardware devices.","build_epoch":1565263871,"build_epoch_utc":null},{"name":"openssh-server","version":"7.4p1","release":"21.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:49 AM PDT","group":"System Environment/Daemons","size":993586,"license":"BSD","signature":"RSA/SHA256, Thu 22 Aug 2019 02:37:29 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"openssh-7.4p1-21.el7.src.rpm","build_date":"Thu 08 Aug 2019 06:40:49 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.openssh.com/portable.html","summary":"An open source SSH server daemon","description":"OpenSSH is a free version of SSH (Secure SHell), a program for logging into and executing commands on a remote machine. This package contains the secure shell daemon (sshd). The sshd daemon allows SSH clients to securely connect to your SSH server.","build_epoch":1565314849,"build_epoch_utc":null},{"name":"NetworkManager-team","epoch":1,"version":"1.18.0","release":"5.el7_7.1","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:49 AM PDT","group":"System Environment/Base","size":41352,"license":"GPLv2+","signature":"RSA/SHA256, Sat 14 Sep 2019 04:49:32 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"NetworkManager-1.18.0-5.el7_7.1.src.rpm","build_date":"Fri 13 Sep 2019 11:05:30 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnome.org/projects/NetworkManager/","summary":"Team device plugin for NetworkManager","description":"This package contains NetworkManager support for team devices.","build_epoch":1568397930,"build_epoch_utc":null},{"name":"NetworkManager-wifi","epoch":1,"version":"1.18.0","release":"5.el7_7.1","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:49 AM PDT","group":"System Environment/Base","size":152272,"license":"GPLv2+","signature":"RSA/SHA256, Sat 14 Sep 2019 04:49:33 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"NetworkManager-1.18.0-5.el7_7.1.src.rpm","build_date":"Fri 13 Sep 2019 11:05:30 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnome.org/projects/NetworkManager/","summary":"Wifi plugin for NetworkManager","description":"This package contains NetworkManager support for Wifi and OLPC devices.","build_epoch":1568397930,"build_epoch_utc":null},{"name":"biosdevname","version":"0.7.3","release":"2.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:50 AM PDT","group":"System Environment/Base","size":59254,"license":"GPLv2","signature":"RSA/SHA256, Thu 22 Aug 2019 02:21:00 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"biosdevname-0.7.3-2.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:01:34 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/dell/biosdevname","summary":"Udev helper for naming devices per BIOS names","description":"biosdevname in its simplest form takes a kernel device name as an argument, and returns the BIOS-given name it \"should\" be. This is necessary on systems where the BIOS name for a given device (e.g. the label on the chassis is \"Gb1\") doesn't map directly and obviously to the kernel name (e.g. eth0).","build_epoch":1565305294,"build_epoch_utc":null},{"name":"hwdata","version":"0.252","release":"9.3.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:51 AM PDT","group":"System Environment/Base","size":14178032,"license":"GPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:25:37 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"hwdata-0.252-9.3.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:47:24 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/vcrhonek/hwdata","summary":"Hardware identification and configuration data","description":"hwdata contains various hardware identification and configuration data, such as the pci.ids and usb.ids databases.","build_epoch":1565308044,"build_epoch_utc":null},{"name":"rsyslog","version":"8.24.0","release":"41.el7_7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:53 AM PDT","group":"System Environment/Daemons","size":2002492,"license":"(GPLv3+ and ASL 2.0)","signature":"RSA/SHA256, Sat 14 Sep 2019 04:50:07 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"rsyslog-8.24.0-41.el7_7.src.rpm","build_date":"Fri 13 Sep 2019 11:14:54 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.rsyslog.com/","summary":"Enhanced system logging and kernel message trapping daemon","description":"Rsyslog is an enhanced, multi-threaded syslog daemon. It supports MySQL, syslog/TCP, RFC 3195, permitted sender lists, filtering on any message part, and fine grain output format control. It is compatible with stock sysklogd and can be used as a drop-in replacement. Rsyslog is simple to set up, with advanced features suitable for enterprise-class, encryption-protected syslog relay chains.","build_epoch":1568398494,"build_epoch_utc":null},{"name":"dracut-config-rescue","version":"033","release":"564.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:57 AM PDT","group":"System Environment/Base","size":4067,"license":"GPLv2+ and LGPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:22:27 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"dracut-033-564.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:14:34 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://dracut.wiki.kernel.org/","summary":"dracut configuration to turn on rescue image generation","description":"This package provides the configuration to turn on the rescue initramfs generation with dracut.","build_epoch":1565306074,"build_epoch_utc":null},{"name":"sudo","version":"1.8.23","release":"4.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:58 AM PDT","group":"Applications/System","size":3195829,"license":"ISC","signature":"RSA/SHA256, Thu 22 Aug 2019 02:44:10 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"sudo-1.8.23-4.el7.src.rpm","build_date":"Thu 08 Aug 2019 07:58:23 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.courtesan.com/sudo/","summary":"Allows restricted root access for specified users","include":"the ability to restrict what commands a user may run on a","description":"Sudo (superuser do) allows a system administrator to give certain users (or groups of users) the ability to run some (or all) commands as root while logging all commands and arguments. Sudo operates on a per-command basis. It is not a replacement for the shell. Features include: the ability to restrict what commands a user may run on a per-host basis, copious logging of each command (providing a clear audit trail of who did what), a configurable timeout of the sudo command, and the ability to use the same configuration file (sudoers) on many different machines.","build_epoch":1565319503,"build_epoch_utc":null},{"name":"kernel-tools","version":"3.10.0","release":"1062.1.2.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:59 AM PDT","group":"Development/System","size":299146,"license":"GPLv2","signature":"RSA/SHA256, Wed 02 Oct 2019 07:15:58 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"kernel-3.10.0-1062.1.2.el7.src.rpm","build_date":"Mon 30 Sep 2019 07:39:55 AM PDT","build_host":"kbuilder.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.kernel.org/","summary":"Assortment of tools for the Linux kernel","description":"This package contains the tools/ directory from the kernel source and the supporting documentation.","build_epoch":1569854395,"build_epoch_utc":null},{"name":"bind-libs-lite","epoch":32,"version":"9.11.4","release":"9.P2.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:59 AM PDT","group":"Unspecified","size":3091672,"license":"MPLv2.0","signature":"RSA/SHA256, Thu 22 Aug 2019 02:20:49 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"bind-9.11.4-9.P2.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:20:30 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.isc.org/products/BIND/","summary":"Libraries for working with the DNS protocol","description":"Contains lite version of BIND suite libraries which are used by various programs to work with DNS protocol.","build_epoch":1565266830,"build_epoch_utc":null},{"name":"nss-tools","version":"3.44.0","release":"4.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:23:00 AM PDT","group":"System Environment/Base","size":2106883,"license":"MPLv2.0","signature":"RSA/SHA256, Thu 22 Aug 2019 02:36:33 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"nss-3.44.0-4.el7.src.rpm","build_date":"Mon 12 Aug 2019 10:02:37 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.mozilla.org/projects/security/pki/nss/","summary":"Tools for the Network Security Services","description":"Network Security Services (NSS) is a set of libraries designed to support cross-platform development of security-enabled client and 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. Install the nss-tools package if you need command-line tools to manipulate the NSS certificate and key database.","build_epoch":1565629357,"build_epoch_utc":null},{"name":"alsa-lib","version":"1.1.8","release":"1.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:23:01 AM PDT","group":"System Environment/Libraries","size":1433144,"license":"LGPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:20:17 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"alsa-lib-1.1.8-1.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:01:06 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.alsa-project.org/","summary":"The Advanced Linux Sound Architecture (ALSA) library","description":"The Advanced Linux Sound Architecture (ALSA) provides audio and MIDI functionality to the Linux operating system. This package includes the ALSA runtime libraries to simplify application programming and provide higher level functionality as well as support for the older OSS API, providing binary compatibility for most OSS programs.","build_epoch":1565265666,"build_epoch_utc":null},{"name":"iprutils","version":"2.4.17.1","release":"2.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:23:01 AM PDT","group":"System Environment/Base","size":955829,"license":"CPL","signature":"RSA/SHA256, Thu 22 Aug 2019 02:26:16 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"iprutils-2.4.17.1-2.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:59:00 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://sourceforge.net/projects/iprdd/","summary":"Utilities for the IBM Power Linux RAID adapters","description":"Provides a suite of utilities to manage and configure SCSI devices supported by the ipr SCSI storage device driver.","build_epoch":1565308740,"build_epoch_utc":null},{"name":"iwl100-firmware","version":"39.31.5.1","release":"72.el7","architecture":"noarch","install_date":"Wed 16 Oct 2019 09:23:01 AM PDT","group":"System Environment/Kernel","size":474702,"license":"Redistributable, no modification permitted","signature":"RSA/SHA256, Thu 22 Aug 2019 02:58:01 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"linux-firmware-20190429-72.gitddde598.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:22:46 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/","summary":"Firmware for Intel(R) Wireless WiFi Link 100 Series Adapters","description":"This package contains the firmware required by the iwlagn driver for Linux to support the iwl100 hardware. Usage of the firmware is subject to the terms and conditions contained inside the provided LICENSE file. Please read it carefully.","build_epoch":1565266966,"build_epoch_utc":null},{"name":"iwl6000g2b-firmware","version":"17.168.5.2","release":"72.el7","architecture":"noarch","install_date":"Wed 16 Oct 2019 09:23:02 AM PDT","group":"System Environment/Kernel","size":1276802,"license":"Redistributable, no modification permitted","signature":"RSA/SHA256, Thu 22 Aug 2019 02:58:13 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"linux-firmware-20190429-72.gitddde598.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:22:46 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/","summary":"Firmware for Intel(R) Wireless WiFi Link 6030 Series Adapters","description":"This package contains the firmware required by the iwlagn driver for Linux. Usage of the firmware is subject to the terms and conditions contained inside the provided LICENSE file. Please read it carefully.","build_epoch":1565266966,"build_epoch_utc":null},{"name":"iwl1000-firmware","epoch":1,"version":"39.31.5.1","release":"72.el7","architecture":"noarch","install_date":"Wed 16 Oct 2019 09:23:02 AM PDT","group":"System Environment/Kernel","size":809706,"license":"Redistributable, no modification permitted","signature":"RSA/SHA256, Thu 22 Aug 2019 02:58:00 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"linux-firmware-20190429-72.gitddde598.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:22:46 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/","summary":"Firmware for Intel® PRO/Wireless 1000 B/G/N network adaptors","description":"This package contains the firmware required by the iwlagn driver for Linux to support the iwl1000 hardware. Usage of the firmware is subject to the terms and conditions contained inside the provided LICENSE file. Please read it carefully.","build_epoch":1565266966,"build_epoch_utc":null},{"name":"iwl105-firmware","version":"18.168.6.1","release":"72.el7","architecture":"noarch","install_date":"Wed 16 Oct 2019 09:23:02 AM PDT","group":"System Environment/Kernel","size":826810,"license":"Redistributable, no modification permitted","signature":"RSA/SHA256, Thu 22 Aug 2019 02:58:02 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"linux-firmware-20190429-72.gitddde598.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:22:46 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/","summary":"Firmware for Intel(R) Centrino Wireless-N 105 Series Adapters","description":"This package contains the firmware required by the iwlagn driver for Linux to support the iwl105 hardware. Usage of the firmware is subject to the terms and conditions contained inside the provided LICENSE file. Please read it carefully.","build_epoch":1565266966,"build_epoch_utc":null},{"name":"iwl4965-firmware","version":"228.61.2.24","release":"72.el7","architecture":"noarch","install_date":"Wed 16 Oct 2019 09:23:02 AM PDT","group":"System Environment/Kernel","size":325102,"license":"Redistributable, no modification permitted","signature":"RSA/SHA256, Thu 22 Aug 2019 02:58:08 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"linux-firmware-20190429-72.gitddde598.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:22:46 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/","summary":"Firmware for Intel® PRO/Wireless 4965 A/G/N network adaptors","description":"This package contains the firmware required by the iwl4965 driver for Linux. Usage of the firmware is subject to the terms and conditions contained inside the provided LICENSE file. Please read it carefully.","build_epoch":1565266966,"build_epoch_utc":null},{"name":"iwl6050-firmware","version":"41.28.5.1","release":"72.el7","architecture":"noarch","install_date":"Wed 16 Oct 2019 09:23:02 AM PDT","group":"System Environment/Kernel","size":1070602,"license":"Redistributable, no modification permitted","signature":"RSA/SHA256, Thu 22 Aug 2019 02:58:14 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"linux-firmware-20190429-72.gitddde598.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:22:46 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/","summary":"Firmware for Intel(R) Wireless WiFi Link 6050 Series Adapters","description":"This package contains the firmware required by the iwlagn driver for Linux. Usage of the firmware is subject to the terms and conditions contained inside the provided LICENSE file. Please read it carefully.","build_epoch":1565266966,"build_epoch_utc":null},{"name":"iwl5000-firmware","version":"8.83.5.1_1","release":"72.el7","architecture":"noarch","install_date":"Wed 16 Oct 2019 09:23:05 AM PDT","group":"System Environment/Kernel","size":1176074,"license":"Redistributable, no modification permitted","signature":"RSA/SHA256, Thu 22 Aug 2019 02:58:09 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"linux-firmware-20190429-72.gitddde598.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:22:46 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/","summary":"Firmware for Intel® PRO/Wireless 5000 A/G/N network adaptors","description":"This package contains the firmware required by the iwl5000 driver for Linux. Usage of the firmware is subject to the terms and conditions contained inside the provided LICENSE file. Please read it carefully.","build_epoch":1565266966,"build_epoch_utc":null},{"name":"iwl2000-firmware","version":"18.168.6.1","release":"72.el7","architecture":"noarch","install_date":"Wed 16 Oct 2019 09:23:05 AM PDT","group":"System Environment/Kernel","size":833006,"license":"Redistributable, no modification permitted","signature":"RSA/SHA256, Thu 22 Aug 2019 02:58:04 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"linux-firmware-20190429-72.gitddde598.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:22:46 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/","summary":"Firmware for Intel(R) Centrino Wireless-N 2000 Series Adapters","description":"This package contains the firmware required by the iwlagn driver for Linux to support the iwl2000 hardware. Usage of the firmware is subject to the terms and conditions contained inside the provided LICENSE file. Please read it carefully.","build_epoch":1565266966,"build_epoch_utc":null},{"name":"iwl3160-firmware","version":"22.0.7.0","release":"72.el7","architecture":"noarch","install_date":"Wed 16 Oct 2019 09:23:07 AM PDT","group":"System Environment/Kernel","size":10445414,"license":"Redistributable, no modification permitted","signature":"RSA/SHA256, Thu 22 Aug 2019 02:58:06 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"linux-firmware-20190429-72.gitddde598.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:22:46 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/","summary":"Firmware for Intel(R) Dual Band Wireless-AC 3160 Series Adapters","description":"This package contains the firmware required by the iwlagn driver for Linux to support the iwl3160 hardware. Usage of the firmware is subject to the terms and conditions contained inside the provided LICENSE file. Please read it carefully.","build_epoch":1565266966,"build_epoch_utc":null},{"name":"nss-sysinit","version":"3.44.0","release":"4.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:33 AM PDT","group":"System Environment/Base","size":14111,"license":"MPLv2.0","signature":"RSA/SHA256, Thu 22 Aug 2019 02:36:32 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"nss-3.44.0-4.el7.src.rpm","build_date":"Mon 12 Aug 2019 10:02:37 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.mozilla.org/projects/security/pki/nss/","summary":"System NSS Initialization","description":"Default Operating 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.","build_epoch":1565629357,"build_epoch_utc":null},{"name":"lz4","version":"1.7.5","release":"3.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:34 AM PDT","group":"Unspecified","size":366856,"license":"GPLv2+ and BSD","signature":"RSA/SHA256, Thu 22 Aug 2019 02:34:57 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"lz4-1.7.5-3.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:45:35 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://lz4.github.io/lz4/","summary":"Extremely fast compression algorithm","description":"LZ4 is an extremely fast loss-less compression algorithm, providing compression speed at 400 MB/s per core, scalable with multi-core CPU. It also features an extremely fast decoder, with speed in multiple GB/s per core, typically reaching RAM speed limits on multi-core systems.","build_epoch":1565311535,"build_epoch_utc":null},{"name":"iproute","version":"4.11.0","release":"25.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:35 AM PDT","group":"Applications/System","size":1901353,"license":"GPLv2+ and Public Domain","signature":"RSA/SHA256, Thu 22 Aug 2019 02:26:13 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"iproute-4.11.0-25.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:55:19 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://kernel.org/pub/linux/utils/net/iproute2/","summary":"Advanced IP routing and network device configuration tools","description":"The iproute package contains networking utilities (ip and rtmon, for example) which are designed to use the advanced networking capabilities of the Linux kernel.","build_epoch":1565308519,"build_epoch_utc":null},{"name":"libstdc++","version":"4.8.5","release":"39.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:35 AM PDT","group":"System Environment/Libraries","size":1077442,"license":"GPLv3+ and GPLv3+ with exceptions and GPLv2+ with exceptions and LGPLv2+ and BSD","signature":"RSA/SHA256, Thu 22 Aug 2019 02:33:21 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"gcc-4.8.5-39.el7.src.rpm","build_date":"Tue 06 Aug 2019 10:15:38 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://gcc.gnu.org","summary":"GNU Standard C++ Library","description":"The libstdc++ package contains a rewritten standard compliant GCC Standard C++ Library.","build_epoch":1565111738,"build_epoch_utc":null},{"name":"atomic-registries","epoch":1,"version":"1.22.1","release":"29.gitb507039.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:35 AM PDT","group":"Unspecified","size":43244,"license":"LGPLv2+","signature":"RSA/SHA256, Mon 16 Sep 2019 05:33:09 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"atomic-1.22.1-29.gitb507039.el7.src.rpm","build_date":"Sun 15 Sep 2019 07:10:06 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/projectatomic/atomic","summary":"Parses a global YAML registry file","description":"Utility that parses a global YAML registry file for container runtimes.","build_epoch":1568556606,"build_epoch_utc":null},{"name":"python-perf","version":"3.10.0","release":"1062.1.2.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:35 AM PDT","group":"Development/Libraries","size":340133,"license":"GPLv2","signature":"RSA/SHA256, Wed 02 Oct 2019 07:16:06 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"kernel-3.10.0-1062.1.2.el7.src.rpm","build_date":"Mon 30 Sep 2019 07:39:55 AM PDT","build_host":"kbuilder.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.kernel.org/","summary":"Python bindings for apps which will manipulate perf events","description":"The python-perf package contains a module that permits applications written in the Python programming language to use the interface to manipulate perf events.","build_epoch":1569854395,"build_epoch_utc":null},{"name":"python-firewall","version":"0.6.3","release":"2.el7_7.1","architecture":"noarch","install_date":"Wed 16 Oct 2019 09:21:36 AM PDT","group":"Unspecified","size":1971540,"license":"GPLv2+","signature":"RSA/SHA256, Sat 14 Sep 2019 04:53:09 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"firewalld-0.6.3-2.el7_7.1.src.rpm","build_date":"Fri 13 Sep 2019 11:02:20 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.firewalld.org","summary":"Python2 bindings for firewalld","description":"Python2 bindings for firewalld.","build_epoch":1568397740,"build_epoch_utc":null},{"name":"libdb-utils","version":"5.3.21","release":"25.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:37 AM PDT","group":"Applications/Databases","size":322471,"license":"BSD and LGPLv2 and Sleepycat","signature":"RSA/SHA256, Thu 22 Aug 2019 02:29:28 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libdb-5.3.21-25.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:18:38 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.oracle.com/database/berkeley-db/","summary":"Command line tools for managing Berkeley DB databases","description":"The Berkeley Database (Berkeley DB) is a programmatic toolkit that provides embedded database support for both traditional and client/server applications. Berkeley DB includes B+tree, Extended Linear Hashing, Fixed and Variable-length record access methods, transactions, locking, logging, shared memory caching, and database recovery. DB supports C, C++, Java and Perl APIs.","build_epoch":1565309918,"build_epoch_utc":null},{"name":"bind-export-libs","epoch":32,"version":"9.11.4","release":"9.P2.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:37 AM PDT","group":"Unspecified","size":3007945,"license":"MPLv2.0","signature":"RSA/SHA256, Thu 22 Aug 2019 02:20:47 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"bind-9.11.4-9.P2.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:20:30 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.isc.org/products/BIND/","summary":"ISC libs for DHCP application","description":"BIND (Berkeley Internet Name Domain) is an implementation of the DNS (Domain Name System) protocols. This package set contains only export version of BIND libraries, that are used for building ISC DHCP.","build_epoch":1565266830,"build_epoch_utc":null},{"name":"libssh2","version":"1.8.0","release":"3.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:38 AM PDT","group":"System Environment/Libraries","size":191464,"license":"BSD","signature":"RSA/SHA256, Thu 22 Aug 2019 02:33:10 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libssh2-1.8.0-3.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:31:49 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.libssh2.org/","summary":"A library implementing the SSH2 protocol","internet_drafts":"SECSH-TRANS(22), SECSH-USERAUTH(25),","description":"libssh2 is a library implementing the SSH2 protocol as defined by Internet Drafts: SECSH-TRANS(22), SECSH-USERAUTH(25), SECSH-CONNECTION(23), SECSH-ARCH(20), SECSH-FILEXFER(06)*, SECSH-DHGEX(04), and SECSH-NUMBERS(10).","build_epoch":1565310709,"build_epoch_utc":null},{"name":"geoipupdate","version":"2.5.0","release":"1.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:39 AM PDT","group":"Unspecified","size":62806,"license":"GPLv2","signature":"RSA/SHA256, Thu 22 Aug 2019 02:24:33 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"geoipupdate-2.5.0-1.el7.src.rpm","build_date":"Mon 12 Aug 2019 01:21:19 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://dev.maxmind.com/geoip/geoipupdate/","summary":"Update GeoIP2 and GeoIP Legacy binary databases from MaxMind","description":"The GeoIP Update program performs automatic updates of GeoIP2 and GeoIP Legacy binary databases.","build_epoch":1565641279,"build_epoch_utc":null},{"name":"curl","version":"7.29.0","release":"54.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:39 AM PDT","group":"Applications/Internet","size":540460,"license":"MIT","signature":"RSA/SHA256, Thu 22 Aug 2019 02:21:58 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"curl-7.29.0-54.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:02:11 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://curl.haxx.se/","summary":"A utility for getting files from remote servers (FTP, HTTP, and others)","description":"curl is a command line tool for transferring data with URL syntax, supporting FTP, FTPS, HTTP, HTTPS, SCP, SFTP, TFTP, TELNET, DICT, LDAP, LDAPS, FILE, IMAP, SMTP, POP3 and RTSP. curl supports SSL certificates, HTTP POST, HTTP PUT, FTP uploading, HTTP form based upload, proxies, cookies, user+password authentication (Basic, Digest, NTLM, Negotiate, kerberos...), file transfer resume, proxy tunneling and a busload of other useful tricks.","build_epoch":1565265731,"build_epoch_utc":null},{"name":"rpm-libs","version":"4.11.3","release":"40.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:40 AM PDT","group":"Development/Libraries","size":611456,"license":"GPLv2+ and LGPLv2+ with exceptions","signature":"RSA/SHA256, Thu 22 Aug 2019 02:42:37 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"rpm-4.11.3-40.el7.src.rpm","build_date":"Tue 06 Aug 2019 03:50:54 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.rpm.org/","summary":"Libraries for manipulating RPM packages","description":"This package contains the RPM shared libraries.","build_epoch":1565131854,"build_epoch_utc":null},{"name":"rpm-python","version":"4.11.3","release":"40.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:40 AM PDT","group":"Development/Libraries","size":149898,"license":"GPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:42:38 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"rpm-4.11.3-40.el7.src.rpm","build_date":"Tue 06 Aug 2019 03:50:54 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.rpm.org/","summary":"Python bindings for apps which will manipulate RPM packages","description":"The rpm-python 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.","build_epoch":1565131854,"build_epoch_utc":null},{"name":"yum","version":"3.4.3","release":"163.el7.centos","architecture":"noarch","install_date":"Wed 16 Oct 2019 09:21:41 AM PDT","group":"System Environment/Base","size":5827255,"license":"GPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 03:01:55 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"yum-3.4.3-163.el7.centos.src.rpm","build_date":"Thu 08 Aug 2019 04:57:56 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://yum.baseurl.org/","summary":"RPM package installer/updater/manager","description":"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.","build_epoch":1565265476,"build_epoch_utc":null},{"name":"e2fsprogs-libs","version":"1.42.9","release":"16.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:41 AM PDT","group":"Development/Libraries","size":363697,"license":"GPLv2 and LGPLv2","signature":"RSA/SHA256, Thu 22 Aug 2019 02:22:41 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"e2fsprogs-1.42.9-16.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:19:51 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://e2fsprogs.sourceforge.net/","summary":"Ext2/3/4 filesystem-specific shared libraries","description":"E2fsprogs-libs contains libe2p and libext2fs, the libraries of the e2fsprogs package. These libraries are used to directly acccess ext2/3/4 filesystems from userspace.","build_epoch":1565306391,"build_epoch_utc":null},{"name":"kmod-libs","version":"20","release":"25.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:41 AM PDT","group":"System Environment/Libraries","size":91800,"license":"LGPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:28:24 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"kmod-20-25.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:05:58 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://git.kernel.org/?p=utils/kernel/kmod/kmod.git;a=summary","summary":"Libraries to handle kernel module loading and unloading","description":"The kmod-libs package provides runtime libraries for any application that wishes to load or unload Linux kernel modules from the running system.","build_epoch":1565309158,"build_epoch_utc":null},{"name":"freetype","version":"2.8","release":"14.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:41 AM PDT","group":"System Environment/Libraries","size":824481,"license":"(FTL or GPLv2+) and BSD and MIT and Public Domain and zlib with acknowledgement","signature":"RSA/SHA256, Thu 22 Aug 2019 02:24:12 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"freetype-2.8-14.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:30:28 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.freetype.org","summary":"A free and portable font rendering engine","description":"The FreeType engine is a free and portable font rendering engine, developed to provide advanced font support for a variety of platforms and environments. FreeType is a library which can open and manages font files as well as efficiently load, hint and render individual glyphs. FreeType is not a font server or a complete text-rendering library.","build_epoch":1565307028,"build_epoch_utc":null},{"name":"teamd","version":"1.27","release":"9.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:41 AM PDT","group":"System Environment/Daemons","size":277924,"license":"LGPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:44:34 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libteam-1.27-9.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:33:37 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.libteam.org","summary":"Team network device control daemon","description":"The teamd package contains team network device control daemon.","build_epoch":1565310817,"build_epoch_utc":null},{"name":"ipset-libs","version":"7.1","release":"1.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:42 AM PDT","group":"Unspecified","size":206400,"license":"GPLv2","signature":"RSA/SHA256, Thu 22 Aug 2019 02:26:18 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"ipset-7.1-1.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:55:38 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://ipset.netfilter.org/","summary":"Shared library providing the IP sets functionality","description":"This package contains the libraries which provide the IP sets funcionality.","build_epoch":1565308538,"build_epoch_utc":null},{"name":"kpartx","version":"0.4.9","release":"127.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:43 AM PDT","group":"System Environment/Base","size":41363,"license":"GPL+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:28:26 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"device-mapper-multipath-0.4.9-127.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:08:46 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://christophe.varoqui.free.fr/","summary":"Partition device manager for device-mapper devices","description":"kpartx manages partition creation and removal for device-mapper devices.","build_epoch":1565305726,"build_epoch_utc":null},{"name":"authconfig","version":"6.2.8","release":"30.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:53 AM PDT","group":"System Environment/Base","size":2316601,"license":"GPLv2+","signature":"RSA/SHA256, Thu 10 Aug 2017 08:00:45 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"authconfig-6.2.8-30.el7.src.rpm","build_date":"Fri 04 Aug 2017 02:05:38 AM PDT","build_host":"c1bm.rdu2.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://fedorahosted.org/authconfig","summary":"Command line tool for setting up authentication from network services","description":"Authconfig is a command line utility which can configure a workstation to use shadow (more secure) passwords. Authconfig can also configure a system to be a client for certain networked user information and authentication schemes.","build_epoch":1501837538,"build_epoch_utc":null},{"name":"chkconfig","version":"1.7.4","release":"1.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:08 AM PDT","group":"System Environment/Base","size":779531,"license":"GPLv2","signature":"RSA/SHA256, Thu 10 Aug 2017 08:17:48 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"chkconfig-1.7.4-1.el7.src.rpm","build_date":"Fri 04 Aug 2017 06:45:51 AM PDT","build_host":"c1bm.rdu2.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/fedora-sysv/chkconfig","summary":"A system tool for maintaining the /etc/rc*.d hierarchy","description":"Chkconfig is a basic system utility. It updates and queries runlevel information for system services. Chkconfig manipulates the numerous symbolic links in /etc/rc.d, to relieve system administrators of some of the drudgery of manually editing the symbolic links.","build_epoch":1501854351,"build_epoch_utc":null},{"name":"cryptsetup-libs","version":"2.0.3","release":"5.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:44 AM PDT","group":"System Environment/Libraries","size":1219599,"license":"GPLv2+ and LGPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:21:44 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"cryptsetup-2.0.3-5.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:07:41 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://gitlab.com/cryptsetup/cryptsetup","summary":"Cryptsetup shared library","description":"This package contains the cryptsetup shared library, libcryptsetup.","build_epoch":1565305661,"build_epoch_utc":null},{"name":"setup","version":"2.8.71","release":"10.el7","architecture":"noarch","install_date":"Thu 15 Aug 2019 10:53:12 AM PDT","group":"System Environment/Base","size":696893,"license":"Public Domain","signature":"RSA/SHA256, Mon 12 Nov 2018 07:19:37 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"setup-2.8.71-10.el7.src.rpm","build_date":"Tue 30 Oct 2018 12:48:11 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://pagure.io/setup/","summary":"A set of system configuration and setup files","description":"The setup package contains a set of important system configuration and setup files, such as passwd, group, and profile.","build_epoch":1540928891,"build_epoch_utc":null},{"name":"elfutils-libs","version":"0.176","release":"2.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:45 AM PDT","group":"Development/Tools","size":809871,"license":"GPLv2+ or LGPLv3+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:22:53 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"elfutils-0.176-2.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:16:25 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://elfutils.org/","summary":"Libraries to handle compiled objects","description":"The elfutils-libs package contains libraries which implement DWARF, ELF, and machine-specific ELF handling. These libraries are used by the programs in the elfutils package. The elfutils-devel package enables building other programs using these libraries.","build_epoch":1565306185,"build_epoch_utc":null},{"name":"zlib","version":"1.2.7","release":"18.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:15 AM PDT","group":"System Environment/Libraries","size":185294,"license":"zlib and Boost","signature":"RSA/SHA256, Mon 12 Nov 2018 06:49:53 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"zlib-1.2.7-18.el7.src.rpm","build_date":"Tue 30 Oct 2018 01:24:40 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.zlib.net/","summary":"The compression and decompression library","description":"Zlib is a general-purpose, patent-free, lossless data compression library which is used by many different programs.","build_epoch":1540931080,"build_epoch_utc":null},{"name":"initscripts","version":"9.49.47","release":"1.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:48 AM PDT","group":"System Environment/Base","size":1523210,"license":"GPLv2 and GPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:26:07 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"initscripts-9.49.47-1.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:52:43 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/fedora-sysv/initscripts","summary":"The inittab file and the /etc/init.d scripts","description":"The initscripts package contains basic system scripts used during a boot of the system. It also contains scripts which activate and deactivate most network interfaces.","build_epoch":1565308363,"build_epoch_utc":null},{"name":"man-db","version":"2.6.3","release":"11.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:56 AM PDT","group":"System Environment/Base","size":2138837,"license":"GPLv2+ and GPLv3+","signature":"RSA/SHA256, Mon 12 Nov 2018 06:39:38 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"man-db-2.6.3-11.el7.src.rpm","build_date":"Tue 30 Oct 2018 01:26:54 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.nongnu.org/man-db/","summary":"Tools for searching and reading man pages","description":"The man-db package includes five tools for browsing man-pages: man, whatis, apropos, manpath and lexgrog. man formats and displays manual pages. whatis searches the manual page names. apropos searches the manual page names and descriptions. manpath determines search path for manual pages. lexgrog directly reads header information in manual pages.","build_epoch":1540931214,"build_epoch_utc":null},{"name":"popt","version":"1.13","release":"16.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:16 AM PDT","group":"System Environment/Libraries","size":88516,"license":"MIT","signature":"RSA/SHA256, Thu 03 Jul 2014 09:33:04 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"popt-1.13-16.el7.src.rpm","build_date":"Mon 09 Jun 2014 09:03:23 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.rpm5.org/","summary":"C library for parsing command line parameters","description":"Popt is a C library for parsing command line parameters. Popt was heavily influenced by the getopt() and getopt_long() functions, but 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.","build_epoch":1402373003,"build_epoch_utc":null},{"name":"selinux-policy","version":"3.13.1","release":"252.el7.1","architecture":"noarch","install_date":"Wed 16 Oct 2019 09:21:49 AM PDT","group":"System Environment/Base","size":6909,"license":"GPLv2+","signature":"RSA/SHA256, Sat 14 Sep 2019 10:10:14 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"selinux-policy-3.13.1-252.el7.1.src.rpm","build_date":"Tue 10 Sep 2019 08:01:56 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://oss.tresys.com/repos/refpolicy/","summary":"SELinux policy configuration","based_off_of_reference_policy":"Checked out revision 2.20091117","description":"SELinux Reference Policy - modular. Based off of reference policy: Checked out revision 2.20091117","build_epoch":1568127716,"build_epoch_utc":null},{"name":"gawk","version":"4.0.2","release":"4.el7_3.1","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:16 AM PDT","group":"Applications/Text","size":2435978,"license":"GPLv3+ and GPL and LGPLv3+ and LGPL and BSD","signature":"RSA/SHA256, Thu 29 Jun 2017 05:40:38 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"gawk-4.0.2-4.el7_3.1.src.rpm","build_date":"Wed 28 Jun 2017 02:52:50 PM PDT","build_host":"c1bm.rdu2.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnu.org/software/gawk/gawk.html","summary":"The GNU version of the awk text processing utility","description":"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.","build_epoch":1498686770,"build_epoch_utc":null},{"name":"NetworkManager","epoch":1,"version":"1.18.0","release":"5.el7_7.1","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:01 AM PDT","group":"System Environment/Base","size":5360883,"license":"GPLv2+","signature":"RSA/SHA256, Sat 14 Sep 2019 04:49:22 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"NetworkManager-1.18.0-5.el7_7.1.src.rpm","build_date":"Fri 13 Sep 2019 11:05:30 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnome.org/projects/NetworkManager/","summary":"Network connection manager and user applications","description":"NetworkManager is a system service that manages network interfaces and connections based on user or automatic configuration. It supports Ethernet, Bridge, Bond, VLAN, Team, InfiniBand, Wi-Fi, mobile broadband (WWAN), PPPoE and other devices, and supports a variety of different VPN services.","build_epoch":1568397930,"build_epoch_utc":null},{"name":"libacl","version":"2.2.51","release":"14.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:16 AM PDT","group":"System Environment/Libraries","size":37056,"license":"LGPLv2+","signature":"RSA/SHA256, Wed 25 Apr 2018 04:10:52 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"acl-2.2.51-14.el7.src.rpm","build_date":"Tue 10 Apr 2018 05:41:24 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://acl.bestbits.at/","summary":"Dynamic library for access control list support","description":"This package contains the libacl.so dynamic library which contains the POSIX 1003.1e draft standard 17 functions for manipulating access control lists.","build_epoch":1523407284,"build_epoch_utc":null},{"name":"dracut-network","version":"033","release":"564.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:02 AM PDT","group":"System Environment/Base","size":148891,"license":"GPLv2+ and LGPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:22:29 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"dracut-033-564.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:14:34 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://dracut.wiki.kernel.org/","summary":"dracut modules to build a dracut initramfs with network support","description":"This package requires everything which is needed to build a generic all purpose initramfs with network support with dracut.","build_epoch":1565306074,"build_epoch_utc":null},{"name":"sed","version":"4.2.2","release":"5.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:16 AM PDT","group":"Applications/Text","size":601208,"license":"GPLv3+","signature":"RSA/SHA256, Thu 03 Jul 2014 09:58:02 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"sed-4.2.2-5.el7.src.rpm","build_date":"Mon 09 Jun 2014 06:01:55 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://sed.sourceforge.net/","summary":"A GNU stream text editor","description":"The sed (Stream EDitor) editor is a stream or batch (non-interactive) editor. Sed takes text as input, performs an operation or set of operations on the text and outputs the modified text. The operations that sed performs (substitutions, deletions, insertions, etc.) can be specified in a script file or from the command line.","build_epoch":1402362115,"build_epoch_utc":null},{"name":"device-mapper-event","epoch":7,"version":"1.02.158","release":"2.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:14 AM PDT","group":"System Environment/Base","size":42707,"license":"GPLv2","signature":"RSA/SHA256, Thu 22 Aug 2019 02:22:08 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"lvm2-2.02.185-2.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:44:27 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://sources.redhat.com/lvm2","summary":"Device-mapper event daemon","description":"This package contains the dmeventd daemon for monitoring the state of device-mapper devices.","build_epoch":1565311467,"build_epoch_utc":null},{"name":"gmp","epoch":1,"version":"6.0.0","release":"15.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:16 AM PDT","group":"System Environment/Libraries","size":657046,"license":"LGPLv3+ or GPLv2+","signature":"RSA/SHA256, Thu 10 Aug 2017 09:14:25 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"gmp-6.0.0-15.el7.src.rpm","build_date":"Wed 02 Aug 2017 06:13:15 PM PDT","build_host":"c1bm.rdu2.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://gmplib.org/","summary":"A GNU arbitrary precision library","description":"The gmp package contains GNU MP, a library for arbitrary precision arithmetic, signed integers operations, rational numbers and floating point numbers. GNU MP is designed for speed, for both small and very large operands. GNU MP is fast because it uses fullwords as the basic arithmetic type, it uses fast algorithms, it carefully optimizes assembly code for many CPUs' most common inner loops, and it generally emphasizes speed over simplicity/elegance in its operations. Install the gmp package if you need a fast arbitrary precision library.","build_epoch":1501722795,"build_epoch_utc":null},{"name":"cronie-anacron","version":"1.4.11","release":"23.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:15 AM PDT","group":"System Environment/Base","size":41683,"license":"MIT and BSD and ISC and GPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:21:41 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"cronie-1.4.11-23.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:07:25 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/cronie-crond/cronie","summary":"Utility for running regular jobs","description":"Anacron is part of cronie that is used for running jobs with regular periodicity which do not have exact time of day of execution. The default settings of anacron execute the daily, weekly, and monthly jobs, but anacron allows setting arbitrary periodicity of jobs. Using anacron allows running the periodic jobs even if the system is often powered off and it also allows randomizing the time of the job execution for better utilization of resources shared among multiple systems.","build_epoch":1565305645,"build_epoch_utc":null},{"name":"ca-certificates","version":"2018.2.22","release":"70.0.el7_5","architecture":"noarch","install_date":"Thu 15 Aug 2019 10:53:17 AM PDT","group":"System Environment/Base","size":973960,"license":"Public Domain","signature":"RSA/SHA256, Thu 17 May 2018 06:16:26 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"ca-certificates-2018.2.22-70.0.el7_5.src.rpm","build_date":"Tue 15 May 2018 09:36:08 PM PDT","build_host":"c1bm.rdu2.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.mozilla.org/","summary":"The Mozilla CA root certificate bundle","description":"This package contains the set of CA certificates chosen by the Mozilla Foundation for use with the Internet PKI.","build_epoch":1526445368,"build_epoch_utc":null},{"name":"policycoreutils-python","version":"2.5","release":"33.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:16 AM PDT","group":"System Environment/Base","size":1304826,"license":"GPLv2","signature":"RSA/SHA256, Thu 22 Aug 2019 02:39:39 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"policycoreutils-2.5-33.el7.src.rpm","build_date":"Thu 08 Aug 2019 06:47:35 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.selinuxproject.org","summary":"SELinux policy core python utilities","description":"The policycoreutils-python package contains the management tools use to manage an SELinux environment.","build_epoch":1565315255,"build_epoch_utc":null},{"name":"plymouth-core-libs","version":"0.8.9","release":"0.32.20140113.el7.centos","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:27 AM PDT","group":"Development/Libraries","size":222840,"license":"GPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:39:20 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"plymouth-0.8.9-0.32.20140113.el7.centos.src.rpm","build_date":"Thu 08 Aug 2019 04:51:46 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.freedesktop.org/wiki/Software/Plymouth","summary":"Plymouth core libraries","description":"This package contains the libply and libply-splash-core libraries used by Plymouth.","build_epoch":1565265106,"build_epoch_utc":null},{"name":"yajl","version":"2.0.4","release":"4.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 12:00:18 PM PDT","group":"Development/Libraries","size":116450,"license":"ISC","signature":"RSA/SHA256, Thu 03 Jul 2014 10:52:29 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"yajl-2.0.4-4.el7.src.rpm","build_date":"Mon 09 Jun 2014 10:00:29 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://lloyd.github.com/yajl/","summary":"Yet Another JSON Library (YAJL)","description":"Yet Another JSON Library. YAJL is a small event-driven (SAX-style) JSON parser written in ANSI C, and a small validating JSON generator.","build_epoch":1402376429,"build_epoch_utc":null},{"name":"bzip2-libs","version":"1.0.6","release":"13.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:18 AM PDT","group":"System Environment/Libraries","size":70093,"license":"BSD","signature":"RSA/SHA256, Wed 25 Nov 2015 06:18:43 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"bzip2-1.0.6-13.el7.src.rpm","build_date":"Thu 19 Nov 2015 09:04:52 PM PST","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.bzip.org/","summary":"Libraries for applications using bzip2","description":"Libraries for applications using the bzip2 compression format.","build_epoch":1447995892,"build_epoch_utc":null},{"name":"linux-firmware","version":"20190429","release":"72.gitddde598.el7","architecture":"noarch","install_date":"Wed 16 Oct 2019 09:22:38 AM PDT","group":"System Environment/Kernel","size":340702338,"license":"GPL+ and GPLv2+ and MIT and Redistributable, no modification permitted","signature":"RSA/SHA256, Thu 22 Aug 2019 02:59:09 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"linux-firmware-20190429-72.gitddde598.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:22:46 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/","summary":"Firmware files used by the Linux kernel","description":"Kernel-firmware includes firmware files required for some devices to operate.","build_epoch":1565266966,"build_epoch_utc":null},{"name":"container-storage-setup","version":"0.11.0","release":"2.git5eaf76c.el7","architecture":"noarch","install_date":"Thu 15 Aug 2019 12:00:19 PM PDT","group":"Unspecified","size":101782,"license":"ASL 2.0","signature":"RSA/SHA256, Tue 21 Aug 2018 12:48:30 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"container-storage-setup-0.11.0-2.git5eaf76c.el7.src.rpm","build_date":"Tue 21 Aug 2018 07:41:44 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/projectatomic/container-storage-setup","summary":"A simple service to setup container storage devices","description":"This is a simple service to configure Container Runtimes to use an LVM-managed thin pool. It also supports auto-growing both the pool as well as the root logical volume and partition table.","build_epoch":1534862504,"build_epoch_utc":null},{"name":"libxml2","version":"2.9.1","release":"6.el7_2.3","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:18 AM PDT","group":"Development/Libraries","size":1710062,"license":"MIT","signature":"RSA/SHA256, Thu 23 Jun 2016 01:07:58 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libxml2-2.9.1-6.el7_2.3.src.rpm","build_date":"Thu 23 Jun 2016 07:36:41 AM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://xmlsoft.org/","summary":"Library providing XML and HTML support","description":"This library allows to manipulate XML files. It includes support to read, modify and write XML and HTML files. There is DTDs support this includes parsing and validation even with complex DtDs, either at parse time or later once the document has been modified. The output can be a simple SAX stream or and in-memory DOM like representations. In this case one can use the built-in XPath and XPointer implementation to select sub nodes or ranges. A flexible Input/Output mechanism is available, with existing HTTP and FTP modules and combined to an URI library.","build_epoch":1466692601,"build_epoch_utc":null},{"name":"audit","version":"2.8.5","release":"4.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:48 AM PDT","group":"System Environment/Daemons","size":660117,"license":"GPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:20:29 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"audit-2.8.5-4.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:06:20 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://people.redhat.com/sgrubb/audit/","summary":"User space tools for 2.6 kernel auditing","description":"The audit package contains the user space utilities for storing and searching the audit records generated by the audit subsystem in the Linux 2.6 and later kernels.","build_epoch":1565265980,"build_epoch_utc":null},{"name":"PyYAML","version":"3.10","release":"11.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 12:00:19 PM PDT","group":"Development/Libraries","size":645110,"license":"MIT","signature":"RSA/SHA256, Thu 03 Jul 2014 09:43:09 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"PyYAML-3.10-11.el7.src.rpm","build_date":"Mon 09 Jun 2014 08:53:05 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://pyyaml.org/","summary":"YAML parser and emitter for Python","description":"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.","build_epoch":1402372385,"build_epoch_utc":null},{"name":"libgcrypt","version":"1.5.3","release":"14.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:18 AM PDT","group":"System Environment/Libraries","size":597727,"license":"LGPLv2+","signature":"RSA/SHA256, Thu 10 Aug 2017 10:08:59 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libgcrypt-1.5.3-14.el7.src.rpm","build_date":"Wed 02 Aug 2017 08:55:07 AM PDT","build_host":"c1bm.rdu2.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnupg.org/","summary":"A general-purpose cryptography library","description":"Libgcrypt is a general purpose crypto library based on the code used in GNU Privacy Guard. This is a development version.","build_epoch":1501689307,"build_epoch_utc":null},{"name":"openssh-clients","version":"7.4p1","release":"21.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:49 AM PDT","group":"Applications/Internet","size":2643176,"license":"BSD","signature":"RSA/SHA256, Thu 22 Aug 2019 02:37:26 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"openssh-7.4p1-21.el7.src.rpm","build_date":"Thu 08 Aug 2019 06:40:49 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.openssh.com/portable.html","summary":"An open source SSH client applications","description":"OpenSSH is a free version of SSH (Secure SHell), a program for logging into and executing commands on a remote machine. This package includes the clients necessary to make encrypted connections to SSH servers.","build_epoch":1565314849,"build_epoch_utc":null},{"name":"python-setuptools","version":"0.9.8","release":"7.el7","architecture":"noarch","install_date":"Thu 15 Aug 2019 12:00:19 PM PDT","group":"Applications/System","size":2040815,"license":"Python or ZPLv2.0","signature":"RSA/SHA256, Thu 10 Aug 2017 12:23:40 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"python-setuptools-0.9.8-7.el7.src.rpm","build_date":"Wed 02 Aug 2017 03:18:29 AM PDT","build_host":"c1bm.rdu2.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://pypi.python.org/pypi/setuptools","summary":"Easily build and distribute Python packages","description":"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. This package contains the distribute fork of setuptools.","build_epoch":1501669109,"build_epoch_utc":null},{"name":"lua","version":"5.1.4","release":"15.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:18 AM PDT","group":"Development/Languages","size":640319,"license":"MIT","signature":"RSA/SHA256, Sun 20 Nov 2016 11:22:39 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"lua-5.1.4-15.el7.src.rpm","build_date":"Sat 05 Nov 2016 07:47:35 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.lua.org/","summary":"Powerful light-weight programming language","description":"Lua is a powerful light-weight programming language designed for extending applications. Lua is also frequently used as a general-purpose, stand-alone language. Lua is free software. Lua combines simple procedural syntax with powerful data description constructs based on associative arrays and extensible semantics. Lua is dynamically typed, interpreted from bytecodes, and has automatic memory management with garbage collection, making it ideal for configuration, scripting, and rapid prototyping.","build_epoch":1478400455,"build_epoch_utc":null},{"name":"tuned","version":"2.11.0","release":"5.el7_7.1","architecture":"noarch","install_date":"Wed 16 Oct 2019 09:22:50 AM PDT","group":"Unspecified","size":815395,"license":"GPLv2+","signature":"RSA/SHA256, Sat 14 Sep 2019 04:53:14 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"tuned-2.11.0-5.el7_7.1.src.rpm","build_date":"Fri 13 Sep 2019 11:16:55 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.tuned-project.org/","summary":"A dynamic adaptive system tuning daemon","description":"The tuned package contains a daemon that tunes system settings dynamically. It does so by monitoring the usage of several system components periodically. Based on that information components will then be put into lower or higher power saving modes to adapt to the current usage. Currently only ethernet network and ATA harddisk devices are implemented.","build_epoch":1568398615,"build_epoch_utc":null},{"name":"setools-libs","version":"3.3.8","release":"4.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 12:00:20 PM PDT","group":"System Environment/Libraries","size":1917790,"license":"LGPLv2","signature":"RSA/SHA256, Mon 12 Nov 2018 06:46:38 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"setools-3.3.8-4.el7.src.rpm","build_date":"Fri 02 Nov 2018 08:53:43 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://oss.tresys.com/projects/setools","summary":"Policy analysis support libraries for SELinux","description":"SETools is a collection of graphical tools, command-line tools, and libraries designed to facilitate SELinux policy analysis. This package includes the following run-time libraries: libapol policy analysis library libpoldiff semantic policy difference library libqpol library that abstracts policy internals libseaudit parse and filter SELinux audit messages in log files libsefs SELinux file contexts library","build_epoch":1541174023,"build_epoch_utc":null},{"name":"libnl3","version":"3.2.28","release":"4.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:19 AM PDT","group":"Development/Libraries","size":864984,"license":"LGPLv2","signature":"RSA/SHA256, Thu 10 Aug 2017 10:22:44 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libnl3-3.2.28-4.el7.src.rpm","build_date":"Thu 03 Aug 2017 12:49:03 PM PDT","build_host":"c1bm.rdu2.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.infradead.org/~tgr/libnl/","summary":"Convenience library for kernel netlink sockets","description":"This package contains a convenience library to simplify using the Linux kernel's netlink sockets interface for network manipulation","build_epoch":1501789743,"build_epoch_utc":null},{"name":"firewalld","version":"0.6.3","release":"2.el7_7.1","architecture":"noarch","install_date":"Wed 16 Oct 2019 09:22:52 AM PDT","group":"Unspecified","size":1943890,"license":"GPLv2+","signature":"RSA/SHA256, Sat 14 Sep 2019 04:52:50 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"firewalld-0.6.3-2.el7_7.1.src.rpm","build_date":"Fri 13 Sep 2019 11:02:20 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.firewalld.org","summary":"A firewall daemon with D-Bus interface providing a dynamic firewall","description":"firewalld is a firewall service daemon that provides a dynamic customizable firewall with a D-Bus interface.","build_epoch":1568397740,"build_epoch_utc":null},{"name":"parted","version":"3.1","release":"31.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:57 AM PDT","group":"Applications/System","size":2336844,"license":"GPLv3+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:37:52 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"parted-3.1-31.el7.src.rpm","build_date":"Thu 08 Aug 2019 06:41:49 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnu.org/software/parted","summary":"The GNU disk partition manipulation program","description":"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.","build_epoch":1565314909,"build_epoch_utc":null},{"name":"libmnl","version":"1.0.3","release":"7.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:19 AM PDT","group":"System Environment/Libraries","size":51847,"license":"LGPLv2+","signature":"RSA/SHA256, Thu 03 Jul 2014 07:59:14 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libmnl-1.0.3-7.el7.src.rpm","build_date":"Tue 17 Jun 2014 08:49:02 AM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://netfilter.org/projects/libmnl","summary":"A minimalistic Netlink library","description":"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.","build_epoch":1403020142,"build_epoch_utc":null},{"name":"e2fsprogs","version":"1.42.9","release":"16.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:59 AM PDT","group":"System Environment/Base","size":2548941,"license":"GPLv2","signature":"RSA/SHA256, Thu 22 Aug 2019 02:22:40 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"e2fsprogs-1.42.9-16.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:19:51 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://e2fsprogs.sourceforge.net/","summary":"Utilities for managing ext2, ext3, and ext4 filesystems","description":"The e2fsprogs package contains a number of utilities for creating, checking, modifying, and correcting any inconsistencies in second, third and fourth extended (ext2/ext3/ext4) filesystems. E2fsprogs contains e2fsck (used to repair filesystem inconsistencies after an unclean shutdown), mke2fs (used to initialize a partition to contain an empty ext2 filesystem), debugfs (used to examine the internal structure of a filesystem, to manually repair a corrupted filesystem, or to create test cases for e2fsck), tune2fs (used to modify filesystem parameters), and most of the other core ext2fs filesystem utilities. You should install the e2fsprogs package if you need to manage the performance of an ext2, ext3, or ext4 filesystem.","build_epoch":1565306391,"build_epoch_utc":null},{"name":"passwd","version":"0.79","release":"5.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:23:01 AM PDT","group":"System Environment/Base","size":430226,"license":"BSD or GPL+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:37:53 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"passwd-0.79-5.el7.src.rpm","build_date":"Thu 08 Aug 2019 06:39:01 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://pagure.io/passwd","summary":"An utility for setting or changing passwords using PAM","description":"This package contains a system utility (passwd) which sets or changes passwords, using PAM (Pluggable Authentication Modules) library.","build_epoch":1565314741,"build_epoch_utc":null},{"name":"pam","version":"1.1.8","release":"22.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:20 AM PDT","group":"System Environment/Base","size":2630324,"license":"BSD and GPLv2+","signature":"RSA/SHA256, Wed 25 Apr 2018 04:33:49 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"pam-1.1.8-22.el7.src.rpm","build_date":"Tue 10 Apr 2018 08:22:15 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.linux-pam.org/","summary":"An extensible library which provides authentication for applications","description":"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.","build_epoch":1523416935,"build_epoch_utc":null},{"name":"dmidecode","epoch":1,"version":"3.2","release":"3.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:23:01 AM PDT","group":"System Environment/Base","size":216235,"license":"GPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:22:22 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"dmidecode-3.2-3.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:12:09 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.nongnu.org/dmidecode/","summary":"Tool to analyse BIOS DMI data","description":"dmidecode reports information about x86 & ia64 hardware as described in the system BIOS according to the SMBIOS/DMI standard. This information typically includes system manufacturer, model name, serial number, BIOS version, asset tag as well as a lot of other details of varying level of interest and reliability depending on the manufacturer. This will often include usage status for the CPU sockets, expansion slots (e.g. AGP, PCI, ISA) and memory module slots, and the list of I/O ports (e.g. serial, parallel, USB).","build_epoch":1565305929,"build_epoch_utc":null},{"name":"cyrus-sasl-lib","version":"2.1.26","release":"23.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:20 AM PDT","group":"System Environment/Libraries","size":396911,"license":"BSD with advertising","signature":"RSA/SHA256, Wed 25 Apr 2018 03:56:48 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"cyrus-sasl-2.1.26-23.el7.src.rpm","build_date":"Tue 10 Apr 2018 09:20:59 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://asg.web.cmu.edu/sasl/sasl-library.html","summary":"Shared libraries needed by applications which use Cyrus SASL","description":"The cyrus-sasl-lib package contains shared libraries which are needed by applications which use the Cyrus SASL library.","build_epoch":1523420459,"build_epoch_utc":null},{"name":"iwl135-firmware","version":"18.168.6.1","release":"72.el7","architecture":"noarch","install_date":"Wed 16 Oct 2019 09:23:02 AM PDT","group":"System Environment/Kernel","size":838358,"license":"Redistributable, no modification permitted","signature":"RSA/SHA256, Thu 22 Aug 2019 02:58:03 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"linux-firmware-20190429-72.gitddde598.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:22:46 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/","summary":"Firmware for Intel(R) Centrino Wireless-N 135 Series Adapters","description":"This package contains the firmware required by the iwlagn driver for Linux to support the iwl135 hardware. Usage of the firmware is subject to the terms and conditions contained inside the provided LICENSE file. Please read it carefully.","build_epoch":1565266966,"build_epoch_utc":null},{"name":"libunistring","version":"0.9.3","release":"9.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:20 AM PDT","group":"System Environment/Libraries","size":1145761,"license":"LGPLv3+","signature":"RSA/SHA256, Thu 03 Jul 2014 08:22:35 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libunistring-0.9.3-9.el7.src.rpm","build_date":"Mon 09 Jun 2014 03:52:46 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnu.org/software/libunistring/","summary":"GNU Unicode string library","description":"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).","build_epoch":1402354366,"build_epoch_utc":null},{"name":"iwl6000-firmware","version":"9.221.4.1","release":"72.el7","architecture":"noarch","install_date":"Wed 16 Oct 2019 09:23:02 AM PDT","group":"System Environment/Kernel","size":591738,"license":"Redistributable, no modification permitted","signature":"RSA/SHA256, Thu 22 Aug 2019 02:58:11 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"linux-firmware-20190429-72.gitddde598.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:22:46 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/","summary":"Firmware for Intel(R) Wireless WiFi Link 6000 AGN Adapter","description":"This package contains the firmware required by the iwlagn driver for Linux. Usage of the firmware is subject to the terms and conditions contained inside the provided LICENSE file. Please read it carefully.","build_epoch":1565266966,"build_epoch_utc":null},{"name":"jansson","version":"2.10","release":"1.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:21 AM PDT","group":"System Environment/Libraries","size":74998,"license":"MIT","signature":"RSA/SHA256, Thu 10 Aug 2017 09:50:09 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"jansson-2.10-1.el7.src.rpm","build_date":"Wed 02 Aug 2017 05:32:08 PM PDT","build_host":"c1bm.rdu2.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.digip.org/jansson/","summary":"C library for encoding, decoding and manipulating JSON data","description":"Small library for parsing and writing JSON documents.","build_epoch":1501720328,"build_epoch_utc":null},{"name":"iwl7265-firmware","version":"22.0.7.0","release":"72.el7","architecture":"noarch","install_date":"Wed 16 Oct 2019 09:23:05 AM PDT","group":"System Environment/Kernel","size":73429474,"license":"Redistributable, no modification permitted","signature":"RSA/SHA256, Thu 22 Aug 2019 02:58:16 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"linux-firmware-20190429-72.gitddde598.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:22:46 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/","summary":"Firmware for Intel(R) Dual Band Wireless-AC 7265 Series Adapters","description":"This package contains the firmware required by the iwlagn driver for Linux. Usage of the firmware is subject to the terms and conditions contained inside the provided LICENSE file. Please read it carefully.","build_epoch":1565266966,"build_epoch_utc":null},{"name":"dbus-libs","epoch":1,"version":"1.10.24","release":"13.el7_6","architecture":"x86_64","install_date":"Thu 15 Aug 2019 12:01:15 PM PDT","group":"Development/Libraries","size":362560,"license":"(GPLv2+ or AFL) and GPLv2+","signature":"RSA/SHA256, Tue 19 Mar 2019 12:51:08 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"dbus-1.10.24-13.el7_6.src.rpm","build_date":"Thu 14 Mar 2019 03:18:13 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.freedesktop.org/Software/dbus/","summary":"Libraries for accessing D-BUS","description":"This package contains lowlevel libraries for accessing D-BUS.","build_epoch":1552558693,"build_epoch_utc":null},{"name":"slang","version":"2.2.4","release":"11.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:21 AM PDT","group":"System Environment/Libraries","size":1881912,"license":"GPLv2+","signature":"RSA/SHA256, Thu 03 Jul 2014 10:01:18 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"slang-2.2.4-11.el7.src.rpm","build_date":"Mon 09 Jun 2014 03:12:57 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.jedsoft.org/slang/","summary":"The shared library for the S-Lang extension language","description":"S-Lang is an interpreted language and a programming library. The S-Lang language was designed so that it can be easily embedded into a program to provide the program with a powerful extension language. The S-Lang library, provided in this package, provides the S-Lang extension language. S-Lang's syntax resembles C, which makes it easy to recode S-Lang procedures in C if you need to.","build_epoch":1402351977,"build_epoch_utc":null},{"name":"iwl7260-firmware","version":"22.0.7.0","release":"72.el7","architecture":"noarch","install_date":"Wed 16 Oct 2019 09:23:06 AM PDT","group":"System Environment/Kernel","size":6520850,"license":"Redistributable, no modification permitted","signature":"RSA/SHA256, Thu 22 Aug 2019 02:58:14 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"linux-firmware-20190429-72.gitddde598.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:22:46 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/","summary":"Firmware for Intel(R) Dual Band Wireless-AC 7260 Series Adapters","description":"This package contains the firmware required by the iwlagn driver for Linux. Usage of the firmware is subject to the terms and conditions contained inside the provided LICENSE file. Please read it carefully.","build_epoch":1565266966,"build_epoch_utc":null},{"name":"gdbm","version":"1.10","release":"8.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:21 AM PDT","group":"System Environment/Libraries","size":184322,"license":"GPLv3+","signature":"RSA/SHA256, Thu 03 Jul 2014 06:27:27 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"gdbm-1.10-8.el7.src.rpm","build_date":"Mon 09 Jun 2014 02:39:08 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnu.org/software/gdbm/","summary":"A GNU set of database routines which use extensible hashing","description":"Gdbm is a GNU database indexing library, including routines which use extensible hashing. Gdbm works in a similar way to standard UNIX dbm routines. Gdbm is useful for developers who write C applications and need access to a simple and efficient database or who are building C applications which will use such a database. If you're a C developer and your programs need access to simple database routines, you should install gdbm. You'll also need to install gdbm-devel.","build_epoch":1402349948,"build_epoch_utc":null},{"name":"bind-utils","epoch":32,"version":"9.11.4","release":"9.P2.el7","architecture":"x86_64","install_date":"Wed 23 Oct 2019 10:53:22 AM PDT","group":"Unspecified","size":598521,"license":"MPLv2.0","signature":"RSA/SHA256, Thu 22 Aug 2019 02:20:56 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"bind-9.11.4-9.P2.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:20:30 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.isc.org/products/BIND/","summary":"Utilities for querying DNS name servers","description":"Bind-utils contains a collection of utilities for querying DNS (Domain Name System) name servers to find out information about Internet hosts. These tools will provide you with the IP addresses for given host names, as well as other information about registered domains and network addresses. You should install bind-utils if you need to get information from DNS name servers.","build_epoch":1565266830,"build_epoch_utc":null},{"name":"hostname","version":"3.13","release":"3.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:22 AM PDT","group":"System Environment/Base","size":19449,"license":"GPLv2+","signature":"RSA/SHA256, Thu 03 Jul 2014 06:54:35 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"hostname-3.13-3.el7.src.rpm","build_date":"Mon 09 Jun 2014 02:48:44 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://packages.qa.debian.org/h/hostname.html","summary":"Utility to set/show the host name or domain name","description":"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.","build_epoch":1402350524,"build_epoch_utc":null},{"name":"nftables","epoch":1,"version":"0.8","release":"14.el7","architecture":"x86_64","install_date":"Sun 10 Nov 2019 07:55:14 AM PST","group":"Unspecified","size":500068,"license":"GPLv2","signature":"RSA/SHA256, Thu 22 Aug 2019 02:36:19 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"nftables-0.8-14.el7.src.rpm","build_date":"Thu 08 Aug 2019 06:13:15 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://netfilter.org/projects/nftables/","summary":"Netfilter Tables userspace utillites","description":"Netfilter Tables userspace utilities.","build_epoch":1565313195,"build_epoch_utc":null},{"name":"python-slip","version":"0.4.0","release":"4.el7","architecture":"noarch","install_date":"Thu 15 Aug 2019 10:53:23 AM PDT","group":"System Environment/Libraries","size":61353,"license":"GPLv2+","signature":"RSA/SHA256, Wed 25 Apr 2018 04:39:05 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"python-slip-0.4.0-4.el7.src.rpm","build_date":"Tue 10 Apr 2018 06:49:00 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/nphilipp/python-slip","summary":"Miscellaneous convenience, extension and workaround code for Python","description":"The Simple Library for Python packages contain miscellaneous code for convenience, extension and workaround purposes. This package provides the \"slip\" and the \"slip.util\" modules.","build_epoch":1523411340,"build_epoch_utc":null},{"name":"rubygem-io-console","version":"0.4.2","release":"36.el7","architecture":"x86_64","install_date":"Sat 16 Nov 2019 02:29:24 PM PST","group":"Development/Libraries","size":16751,"license":"(Ruby or BSD) and Public Domain","signature":"RSA/SHA256, Thu 22 Aug 2019 02:42:57 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"ruby-2.0.0.648-36.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:30:13 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://ruby-lang.org/","summary":"IO/Console is a simple console utilizing library","description":"IO/Console provides very simple and portable access to console. It doesn't provide higher layer features, such like curses and readline.","build_epoch":1565267413,"build_epoch_utc":null},{"name":"newt-python","version":"0.52.15","release":"4.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:23 AM PDT","group":"Development/Libraries","size":116916,"license":"LGPLv2","signature":"RSA/SHA256, Thu 03 Jul 2014 08:57:00 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"newt-0.52.15-4.el7.src.rpm","build_date":"Tue 10 Jun 2014 12:48:12 AM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://fedorahosted.org/newt/","summary":"Python bindings for newt","description":"The newt-python package contains the Python bindings for the newt library providing a python API for creating text mode ionterfaces.","build_epoch":1402386492,"build_epoch_utc":null},{"name":"rubygem-psych","version":"2.0.0","release":"36.el7","architecture":"x86_64","install_date":"Sat 16 Nov 2019 02:29:25 PM PST","group":"Development/Libraries","size":113146,"license":"MIT","signature":"RSA/SHA256, Thu 22 Aug 2019 02:42:59 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"ruby-2.0.0.648-36.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:30:13 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://ruby-lang.org/","summary":"A libyaml wrapper for Ruby","description":"Psych is a YAML parser and emitter. Psych leverages libyaml[http://pyyaml.org/wiki/LibYAML] for its YAML parsing and emitting capabilities. In addition to wrapping libyaml, Psych also knows how to serialize and de-serialize most Ruby objects to and from the YAML format.","build_epoch":1565267413,"build_epoch_utc":null},{"name":"python-iniparse","version":"0.4","release":"9.el7","architecture":"noarch","install_date":"Thu 15 Aug 2019 10:53:23 AM PDT","group":"Development/Libraries","size":115166,"license":"MIT","signature":"RSA/SHA256, Thu 03 Jul 2014 09:39:14 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"python-iniparse-0.4-9.el7.src.rpm","build_date":"Mon 09 Jun 2014 03:04:54 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://code.google.com/p/iniparse/","summary":"Python Module for Accessing and Modifying Configuration Data in INI files","description":"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.","build_epoch":1402351494,"build_epoch_utc":null},{"name":"ntpdate","version":"4.2.6p5","release":"29.el7.centos","architecture":"x86_64","install_date":"Tue 03 Mar 2020 06:02:09 PM PST","group":"Applications/System","size":123845,"license":"(MIT and BSD and BSD with advertising) and GPLv2","signature":"RSA/SHA256, Thu 22 Aug 2019 02:36:36 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"ntp-4.2.6p5-29.el7.centos.src.rpm","build_date":"Thu 08 Aug 2019 04:48:12 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.ntp.org","summary":"Utility to set the date and time via NTP","description":"ntpdate is a program for retrieving the date and time from NTP servers.","build_epoch":1565264892,"build_epoch_utc":null},{"name":"cpp","version":"4.8.5","release":"39.el7","architecture":"x86_64","install_date":"Wed 08 Apr 2020 05:17:23 AM PDT","group":"Development/Languages","size":15653045,"license":"GPLv3+ and GPLv3+ with exceptions and GPLv2+ with exceptions and LGPLv2+ and BSD","signature":"RSA/SHA256, Thu 22 Aug 2019 02:21:35 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"gcc-4.8.5-39.el7.src.rpm","build_date":"Tue 06 Aug 2019 10:15:38 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://gcc.gnu.org","summary":"The C Preprocessor","the_c_preprocessor_provides_four_separate_functionalities":"the","description":"Cpp is the GNU C-Compatible Compiler Preprocessor. Cpp is a macro processor which is used automatically by the C compiler to transform your program before actual compilation. It is called a macro processor because it allows you to define macros, abbreviations for longer constructs. The C preprocessor provides four separate functionalities: the inclusion of header files (files of declarations that can be substituted into your program); macro expansion (you can define macros, and the C preprocessor will replace the macros with their definitions throughout the program); conditional compilation (using special preprocessing directives, you can include or exclude parts of the program according to various conditions); and line control (if you use a program to combine or rearrange source files into an intermediate file which is then compiled, you can use line control to inform the compiler about where each source line originated). You should install this package if you are a C programmer and you use macros.","build_epoch":1565111738,"build_epoch_utc":null},{"name":"gcc","version":"4.8.5","release":"39.el7","architecture":"x86_64","install_date":"Wed 08 Apr 2020 05:17:27 AM PDT","group":"Development/Languages","size":39238933,"license":"GPLv3+ and GPLv3+ with exceptions and GPLv2+ with exceptions and LGPLv2+ and BSD","signature":"RSA/SHA256, Thu 22 Aug 2019 02:24:15 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"gcc-4.8.5-39.el7.src.rpm","build_date":"Tue 06 Aug 2019 10:15:38 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://gcc.gnu.org","summary":"Various compilers (C, C++, Objective-C, Java, ...)","description":"The gcc package contains the GNU Compiler Collection version 4.8. You'll need this package in order to compile C code.","build_epoch":1565111738,"build_epoch_utc":null},{"name":"libselinux-devel","version":"2.5","release":"14.1.el7","architecture":"x86_64","install_date":"Wed 08 Apr 2020 05:24:42 AM PDT","group":"Development/Libraries","size":194101,"license":"Public Domain","signature":"RSA/SHA256, Mon 12 Nov 2018 06:37:28 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"libselinux-2.5-14.1.el7.src.rpm","build_date":"Tue 30 Oct 2018 02:43:06 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/SELinuxProject/selinux/wiki","summary":"Header files and libraries used to build SELinux","description":"The libselinux-devel package contains the libraries and header files needed for developing SELinux applications.","build_epoch":1540935786,"build_epoch_utc":null},{"name":"libverto-devel","version":"0.2.5","release":"4.el7","architecture":"x86_64","install_date":"Wed 08 Apr 2020 05:24:43 AM PDT","group":"Unspecified","size":25871,"license":"MIT","signature":"RSA/SHA256, Thu 03 Jul 2014 08:23:52 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libverto-0.2.5-4.el7.src.rpm","build_date":"Tue 10 Jun 2014 12:44:21 AM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://fedorahosted.org/libverto/","summary":"Development files for libverto","description":"The libverto-devel package contains libraries and header files for developing applications that use libverto.","build_epoch":1402386261,"build_epoch_utc":null},{"name":"fipscheck-lib","version":"1.4.1","release":"6.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:24 AM PDT","group":"System Environment/Libraries","size":11466,"license":"BSD","signature":"RSA/SHA256, Thu 10 Aug 2017 08:53:57 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"fipscheck-1.4.1-6.el7.src.rpm","build_date":"Wed 02 Aug 2017 05:47:49 AM PDT","build_host":"c1bm.rdu2.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://fedorahosted.org/fipscheck/","summary":"Library files for fipscheck","description":"This package contains the FIPSCheck library.","build_epoch":1501678069,"build_epoch_utc":null},{"name":"mpfr-devel","version":"3.1.1","release":"4.el7","architecture":"x86_64","install_date":"Tue 14 Apr 2020 08:10:08 AM PDT","group":"Development/Libraries","size":108827,"license":"LGPLv3+ and GPLv3+ and GFDL","signature":"RSA/SHA256, Thu 03 Jul 2014 08:49:49 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"mpfr-3.1.1-4.el7.src.rpm","build_date":"Mon 09 Jun 2014 06:11:54 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.mpfr.org/","summary":"Development tools A C library for mpfr library","description":"Header files and documentation for using the MPFR multiple-precision floating-point library in applications. If you want to develop applications which will use the MPFR library, you'll need to install the mpfr-devel package. You'll also need to install the mpfr package.","build_epoch":1402362714,"build_epoch_utc":null},{"name":"gpg-pubkey","version":"rpm-4.11.3 (NSS-3)","release":"560cfc0a","architecture":"(none)","install_date":"Tue 14 Apr 2020 08:41:57 AM PDT","group":"Public Keys","size":0,"license":"pubkey","signature":"(none)","source_rpm":"(none)","build_date":"Thu 01 Oct 2015 02:25:30 AM PDT","build_host":"localhost","relocations":"(not relocatable)","packager":"CentOS SoftwareCollections SIG (https://wiki.centos.org/SpecialInterestGroup/SCLo) ","summary":"gpg(CentOS SoftwareCollections SIG (https://wiki.centos.org/SpecialInterestGroup/SCLo) )","description":"-----BEGIN PGP PUBLIC KEY BLOCK----- Version: rpm-4.11.3 (NSS-3) mQENBFYM/AoBCADR9Q5cb+H5ndx+QkzNBQ88wcD+g112yvnHNlSiBMOnNEGHuKPJ tujZ+eWXP3K6ucJckT91WxfQ2fxPr9jQ0xpZytcHcZdTfn3vKL9+OwR0npp+qmcz rK8/EzVz/SWSgBQ5xT/HUvaeoVAbzBHSng0r2njnBAqABKAoTxgyRGKSCWduKD32 7PF2ZpqeDFFhd99Ykt6ar8SlV8ToqH6F7An0ILeejINVbHUxd6+wsbpcOwQ4mGAa /CPXeqqLGj62ASBv36xQr34hlN/9zQMViaKkacl8zkuvwhuHf4b4VlGVCe6VILpQ 8ytKMV/lcg7YpMfRq4KVWBjCwkvk6zg6KxaHABEBAAG0aENlbnRPUyBTb2Z0d2Fy ZUNvbGxlY3Rpb25zIFNJRyAoaHR0cHM6Ly93aWtpLmNlbnRvcy5vcmcvU3BlY2lh bEludGVyZXN0R3JvdXAvU0NMbykgPHNlY3VyaXR5QGNlbnRvcy5vcmc+iQE5BBMB AgAjBQJWDPwKAhsDBwsJCAcDAgEGFQgCCQoLBBYCAwECHgECF4AACgkQTrhOcfLu nVXNewgAg7RVclomjTY4w80XiztUuUaFlCHyR76KazdaGfx/8XckWH2GdQtwii+3 Tg7+PT2H0Xyuj1aod+jVTPXTPVUr+rEHAjuNDY+xyAJrNljoOHiz111zs9pk7PLX CPwKWQLnmrcKIi8v/51L79FFsUMvhClTBdLUQ51lkCwbcXQi+bOhPvZTVbRhjoB/ a9z0d8t65X16zEzE7fBhnVoj4xye/MPMbTH41Mv+FWVciBTuAepOLmgJ9oxODliv rgZa28IEWkvHQ8m9GLJ0y9mI6olh0cGFybnd5y4Ss1cMttlRGR4qthLhN2gHZpO9 2y4WgkeVXCj1BK1fzVrDMLPbuNNCZQ== =UtPD -----END PGP PUBLIC KEY BLOCK-----","build_epoch":1443691530,"build_epoch_utc":null},{"name":"libuser","version":"0.60","release":"9.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:25 AM PDT","group":"System Environment/Base","size":1952592,"license":"LGPLv2+","signature":"RSA/SHA256, Wed 25 Apr 2018 04:23:52 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libuser-0.60-9.el7.src.rpm","build_date":"Thu 12 Apr 2018 11:44:54 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://fedorahosted.org/libuser/","summary":"A user and group account administration library","description":"The libuser library implements a standardized interface for manipulating and administering user and group accounts. The library uses pluggable back-ends to interface to its data sources. Sample applications modeled after those included with the shadow password suite are included.","build_epoch":1523558694,"build_epoch_utc":null},{"name":"devtoolset-3-libstdc++-devel","version":"4.9.2","release":"6.el7","architecture":"x86_64","install_date":"Wed 15 Apr 2020 12:39:16 PM PDT","group":"Development/Libraries","size":12197721,"license":"GPLv3+ and GPLv3+ with exceptions and GPLv2+ with exceptions and LGPLv2+ and BSD","signature":"RSA/SHA1, Sat 28 Nov 2015 06:50:50 AM PST, Key ID 4eb84e71f2ee9d55","source_rpm":"devtoolset-3-gcc-4.9.2-6.el7.src.rpm","build_date":"Sat 03 Oct 2015 08:15:45 AM PDT","build_host":"c1bj.rdu2.centos.org","relocations":"(not relocatable)","packager":"CBS ","vendor":"CentOS","url":"http://gcc.gnu.org","summary":"Header files and libraries for C++ development","description":"This is the GNU implementation of the standard C++ libraries. This package includes the header files and libraries needed for C++ development. This includes rewritten implementation of STL.","build_epoch":1443885345,"build_epoch_utc":null},{"name":"libtirpc","version":"0.2.4","release":"0.16.el7","architecture":"x86_64","install_date":"Tue 15 Oct 2019 11:09:07 AM PDT","group":"System Environment/Libraries","size":187279,"license":"SISSL and BSD","signature":"RSA/SHA256, Thu 22 Aug 2019 02:33:41 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libtirpc-0.2.4-0.16.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:35:23 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://git.linux-nfs.org/?p=steved/libtirpc.git;a=summary","summary":"Transport Independent RPC Library","description":"This package contains SunLib's implementation of transport-independent RPC (TI-RPC) documentation. This library forms a piece of the base of Open Network Computing (ONC), and is derived directly from the Solaris 2.3 source. TI-RPC is an enhanced version of TS-RPC that requires the UNIX System V Transport Layer Interface (TLI) or an equivalent X/Open Transport Interface (XTI). TI-RPC is on-the-wire compatible with the TS-RPC, which is supported by almost 70 vendors on all major operating systems. TS-RPC source code (RPCSRC 4.0) remains available from several internet sites.","build_epoch":1565310923,"build_epoch_utc":null},{"name":"traceroute","epoch":3,"version":"2.0.22","release":"2.el7","architecture":"x86_64","install_date":"Tue 21 Jul 2020 12:18:31 PM PDT","group":"Applications/Internet","size":93925,"license":"GPLv2+","signature":"RSA/SHA256, Sun 20 Nov 2016 12:54:56 PM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"traceroute-2.0.22-2.el7.src.rpm","build_date":"Sat 05 Nov 2016 08:27:17 AM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://traceroute.sourceforge.net","summary":"Traces the route taken by packets over an IPv4/IPv6 network","description":"The traceroute utility displays the route used by IP packets on their way to a specified network (or Internet) host. Traceroute displays the IP number and host name (if possible) of the machines along the route taken by the packets. Traceroute is used as a network debugging tool. If you're having network connectivity problems, traceroute will show you where the trouble is coming from along the route. Install traceroute if you need a tool for diagnosing network connectivity problems.","build_epoch":1478359637,"build_epoch_utc":null},{"name":"python3-libs","version":"3.6.8","release":"10.el7","architecture":"x86_64","install_date":"Tue 15 Oct 2019 11:09:10 AM PDT","group":"Unspecified","size":36350099,"license":"Python","signature":"RSA/SHA256, Thu 22 Aug 2019 02:40:11 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"python3-3.6.8-10.el7.src.rpm","build_date":"Wed 07 Aug 2019 11:09:49 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://www.python.org/","summary":"Python runtime libraries","description":"This package contains runtime libraries for use by Python: - the majority of the Python standard library - a dynamically linked library for use by applications that embed Python as a scripting language, and by the main \"python3\" executable","build_epoch":1565201389,"build_epoch_utc":null},{"name":"tar","epoch":2,"version":"1.26","release":"35.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:27 AM PDT","group":"Applications/Archiving","size":2838510,"license":"GPLv3+","signature":"RSA/SHA256, Mon 12 Nov 2018 06:47:46 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"tar-1.26-35.el7.src.rpm","build_date":"Tue 30 Oct 2018 01:29:09 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnu.org/software/tar/","summary":"A GNU file archiving program","description":"The GNU tar program saves many files together in one archive and can restore individual files (or all of the files) from that archive. Tar can also be used to add supplemental files to an archive and to update or list files in the archive. Tar includes multivolume support, automatic archive compression/decompression, the ability to perform remote archives, and the ability to perform incremental and full backups. If you want to use tar for remote backups, you also need to install the rmt package on the remote box.","build_epoch":1540931349,"build_epoch_utc":null},{"name":"iw","version":"4.3","release":"2.el7","architecture":"x86_64","install_date":"Mon 04 Jan 2021 12:32:02 PM PST","group":"System Environment/Base","size":163217,"license":"ISC","signature":"RSA/SHA256, Mon 12 Nov 2018 06:29:23 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"iw-4.3-2.el7.src.rpm","build_date":"Tue 30 Oct 2018 11:10:33 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://wireless.kernel.org/en/users/Documentation/iw","summary":"A nl80211 based wireless configuration tool","description":"iw is a new nl80211 based CLI configuration utility for wireless devices. Currently you can only use this utility to configure devices which use a mac80211 driver as these are the new drivers being written - only because most new wireless devices being sold are now SoftMAC.","build_epoch":1540923033,"build_epoch_utc":null},{"name":"perl-Pod-Perldoc","version":"3.20","release":"4.el7","architecture":"noarch","install_date":"Tue 15 Oct 2019 11:27:57 AM PDT","group":"Development/Libraries","size":166910,"license":"GPL+ or Artistic","signature":"RSA/SHA256, Thu 03 Jul 2014 09:22:38 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"perl-Pod-Perldoc-3.20-4.el7.src.rpm","build_date":"Tue 10 Jun 2014 01:17:50 AM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://search.cpan.org/dist/Pod-Perldoc/","summary":"Look up Perl documentation in Pod format","description":"perldoc looks up a piece of documentation in .pod format that is embedded in the perl installation tree or in a perl script, and displays it via \"groff -man | $PAGER\". This is primarily used for the documentation for the perl library modules.","build_epoch":1402388270,"build_epoch_utc":null},{"name":"libical","version":"3.0.3","release":"2.el7","architecture":"x86_64","install_date":"Tue 09 Feb 2021 08:57:09 AM PST","group":"Unspecified","size":1665385,"license":"LGPLv2 or MPLv2.0","signature":"RSA/SHA256, Mon 12 Nov 2018 06:33:03 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"libical-3.0.3-2.el7.src.rpm","build_date":"Tue 30 Oct 2018 12:25:21 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://libical.github.io/libical/","summary":"Reference implementation of the iCalendar data type and serialization format","description":"Reference implementation of the iCalendar data type and serialization format used in dozens of calendaring and scheduling products.","build_epoch":1540927521,"build_epoch_utc":null},{"name":"perl-Pod-Usage","version":"1.63","release":"3.el7","architecture":"noarch","install_date":"Tue 15 Oct 2019 11:27:58 AM PDT","group":"Development/Libraries","size":44671,"license":"GPL+ or Artistic","signature":"RSA/SHA256, Thu 03 Jul 2014 09:22:48 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"perl-Pod-Usage-1.63-3.el7.src.rpm","build_date":"Tue 10 Jun 2014 01:56:19 AM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://search.cpan.org/dist/Pod-Usage/","summary":"Print a usage message from embedded POD documentation","\"verboseness\"":"If the verbose level is 0, then only a synopsis is printed.","description":"pod2usage will print a usage message for the invoking script (using its embedded POD documentation) and then exit the script with the desired exit status. The usage message printed may have any one of three levels of \"verboseness\": If the verbose level is 0, then only a synopsis is printed. If the verbose level is 1, then the synopsis is printed along with a description (if present) of the command line options and arguments. If the verbose level is 2, then the entire manual page is printed.","build_epoch":1402390579,"build_epoch_utc":null},{"name":"finger","version":"0.17","release":"52.el7","architecture":"x86_64","install_date":"Tue 06 Apr 2021 11:13:28 AM PDT","group":"Applications/Internet","size":32929,"license":"BSD","signature":"RSA/SHA256, Fri 29 Aug 2014 02:57:31 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"finger-0.17-52.el7.src.rpm","build_date":"Fri 29 Aug 2014 02:49:47 AM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","summary":"The finger client","description":"Finger is a utility which allows users to see information about system users (login name, home directory, name, how long they've been logged in to the system, etc.). The finger package includes a standard finger client. You should install finger if you'd like to retrieve finger information from other systems.","build_epoch":1409305787,"build_epoch_utc":null},{"name":"perl-Exporter","version":"5.68","release":"3.el7","architecture":"noarch","install_date":"Tue 15 Oct 2019 11:27:58 AM PDT","group":"Development/Libraries","size":56612,"license":"GPL+ or Artistic","signature":"RSA/SHA256, Thu 03 Jul 2014 09:17:36 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"perl-Exporter-5.68-3.el7.src.rpm","build_date":"Mon 09 Jun 2014 09:09:10 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://search.cpan.org/dist/Exporter/","summary":"Implements default import method for modules","description":"The Exporter module implements an import method which allows a module to export functions and variables to its users' name spaces. Many modules use Exporter rather than implementing their own import method because Exporter provides a highly flexible interface, with an implementation optimized for the common case.","build_epoch":1402373350,"build_epoch_utc":null},{"name":"perl-Carp","version":"1.26","release":"244.el7","architecture":"noarch","install_date":"Tue 15 Oct 2019 11:27:58 AM PDT","group":"Development/Libraries","size":28276,"license":"GPL+ or Artistic","signature":"RSA/SHA256, Thu 03 Jul 2014 09:15:11 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"perl-Carp-1.26-244.el7.src.rpm","build_date":"Mon 09 Jun 2014 06:12:39 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://search.cpan.org/dist/Carp/","summary":"Alternative warn and die for modules","description":"The Carp routines are useful in your own modules because they act like die() or warn(), but with a message which is more likely to be useful to a user of your module. In the case of cluck, confess, and longmess that context is a summary of every call in the call-stack. For a shorter message you can use carp or croak which report the error as being from where your module was called. There is no guarantee that that is where the error was, but it is a good educated guess.","build_epoch":1402362759,"build_epoch_utc":null},{"name":"libsemanage","version":"2.5","release":"14.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:28 AM PDT","group":"System Environment/Libraries","size":302329,"license":"LGPLv2+","signature":"RSA/SHA256, Mon 12 Nov 2018 06:37:32 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"libsemanage-2.5-14.el7.src.rpm","build_date":"Tue 30 Oct 2018 04:44:33 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/SELinuxProject/selinux/wiki","summary":"SELinux binary policy manipulation library","description":"Security-enhanced Linux is a feature of the Linux® kernel and a number of utilities with enhanced security functionality designed to add mandatory access controls to Linux. The Security-enhanced Linux kernel contains new architectural components originally developed to improve the security of the Flask operating system. These architectural components provide general support for the enforcement of many kinds of mandatory access control policies, including those based on the concepts of Type Enforcement®, Role-based Access Control, and Multi-level Security. libsemanage provides an API for the manipulation of SELinux binary policies. It is used by checkpolicy (the policy compiler) and similar tools, as well as by programs like load_policy that need to perform specific transformations on binary policies such as customizing policy boolean settings.","build_epoch":1540943073,"build_epoch_utc":null},{"name":"perl-File-Temp","version":"0.23.01","release":"3.el7","architecture":"noarch","install_date":"Tue 15 Oct 2019 11:27:58 AM PDT","group":"Development/Libraries","size":158781,"license":"GPL+ or Artistic","signature":"RSA/SHA256, Thu 03 Jul 2014 09:18:15 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"perl-File-Temp-0.23.01-3.el7.src.rpm","build_date":"Tue 10 Jun 2014 12:03:09 AM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://search.cpan.org/dist/File-Temp/","summary":"Return name and handle of a temporary file safely","description":"File::Temp can be used to create and open temporary files in a safe way. There is both a function interface and an object-oriented interface. The File::Temp constructor or the tempfile() function can be used to return the name and the open file handle of a temporary file. The tempdir() function can be used to create a temporary directory.","build_epoch":1402383789,"build_epoch_utc":null},{"name":"libfastjson","version":"0.99.4","release":"3.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:29 AM PDT","group":"Unspecified","size":57273,"license":"MIT","signature":"RSA/SHA256, Mon 12 Nov 2018 06:32:07 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"libfastjson-0.99.4-3.el7.src.rpm","build_date":"Tue 30 Oct 2018 01:01:55 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/rsyslog/libfastjson","summary":"A JSON implementation in C","description":"LIBFASTJSON implements a reference counting object model that allows you to easily construct JSON objects in C, output them as JSON formatted strings and parse JSON formatted strings back into the C representation of JSON objects.","build_epoch":1540929715,"build_epoch_utc":null},{"name":"perl-Pod-Simple","epoch":1,"version":"3.28","release":"4.el7","architecture":"noarch","install_date":"Tue 15 Oct 2019 11:27:58 AM PDT","group":"Development/Libraries","size":538320,"license":"GPL+ or Artistic","signature":"RSA/SHA256, Thu 03 Jul 2014 09:22:44 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"perl-Pod-Simple-3.28-4.el7.src.rpm","build_date":"Mon 09 Jun 2014 07:00:13 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://search.cpan.org/dist/Pod-Simple/","summary":"Framework for parsing POD documentation","description":"Pod::Simple is a Perl library for parsing text in the Pod (\"plain old documentation\") markup language that is typically used for writing documentation for Perl and for Perl modules.","build_epoch":1402365613,"build_epoch_utc":null},{"name":"libdaemon","version":"0.14","release":"7.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:29 AM PDT","group":"System Environment/Libraries","size":62045,"license":"LGPLv2+","signature":"RSA/SHA256, Thu 03 Jul 2014 07:41:19 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libdaemon-0.14-7.el7.src.rpm","build_date":"Mon 09 Jun 2014 09:26:48 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://0pointer.de/lennart/projects/libdaemon/","summary":"Library for writing UNIX daemons","description":"libdaemon is a lightweight C library which eases the writing of UNIX daemons. It consists of the following parts: * A wrapper around fork() which does the correct daemonization procedure of a process * A wrapper around syslog() for simpler and compatible log output to Syslog or STDERR * An API for writing PID files * An API for serializing UNIX signals into a pipe for usage with select() or poll() * An API for running subprocesses with STDOUT and STDERR redirected to syslog.","build_epoch":1402374408,"build_epoch_utc":null},{"name":"perl-Error","epoch":1,"version":"0.17020","release":"2.el7","architecture":"noarch","install_date":"Tue 15 Oct 2019 11:28:01 AM PDT","group":"Development/Libraries","size":50015,"license":"(GPL+ or Artistic) and MIT","signature":"RSA/SHA256, Thu 03 Jul 2014 09:17:32 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"perl-Error-0.17020-2.el7.src.rpm","build_date":"Mon 09 Jun 2014 01:19:49 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://search.cpan.org/dist/Error/","summary":"Error/exception handling in an OO-ish way","description":"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.","build_epoch":1402345189,"build_epoch_utc":null},{"name":"libestr","version":"0.1.9","release":"2.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:29 AM PDT","group":"Unspecified","size":44322,"license":"LGPLv2+","signature":"RSA/SHA256, Thu 03 Jul 2014 07:45:14 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libestr-0.1.9-2.el7.src.rpm","build_date":"Mon 09 Jun 2014 09:27:04 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://libestr.adiscon.com/","summary":"String handling essentials library","description":"This package compiles the string handling essentials library used by the Rsyslog daemon.","build_epoch":1402374424,"build_epoch_utc":null},{"name":"git","version":"1.8.3.1","release":"20.el7","architecture":"x86_64","install_date":"Tue 15 Oct 2019 11:28:02 AM PDT","group":"Development/Tools","size":23232282,"license":"GPLv2","signature":"RSA/SHA256, Tue 20 Nov 2018 12:34:30 PM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"git-1.8.3.1-20.el7.src.rpm","build_date":"Mon 19 Nov 2018 08:13:01 AM PST","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://git-scm.com/","summary":"Fast Version Control System","description":"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. The git rpm installs the core tools with minimal dependencies. To install all git packages, including tools for integrating with other SCMs, install the git-all meta-package.","build_epoch":1542643981,"build_epoch_utc":null},{"name":"grub2-pc-modules","epoch":1,"version":"2.02","release":"0.80.el7.centos","architecture":"noarch","install_date":"Wed 16 Oct 2019 09:21:17 AM PDT","group":"System Environment/Base","size":2309922,"license":"GPLv3+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:57:42 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"grub2-2.02-0.80.el7.centos.src.rpm","build_date":"Thu 08 Aug 2019 04:31:11 AM PDT","build_host":"kbuilder.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnu.org/software/grub/","summary":"Modules used to build custom grub images","description":"The GRand Unified Bootloader (GRUB) is a highly configurable and customizable bootloader with modular architecture. It supports a rich variety of kernel formats, file systems, computer architectures and hardware devices. This subpackage provides support for rebuilding your own grub.efi.","build_epoch":1565263871,"build_epoch_utc":null},{"name":"containers-common","epoch":1,"version":"0.1.37","release":"3.el7.centos","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:17 AM PDT","group":"Unspecified","size":20723,"license":"ASL 2.0","signature":"RSA/SHA256, Mon 16 Sep 2019 05:33:22 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"skopeo-0.1.37-3.el7.centos.src.rpm","build_date":"Sun 15 Sep 2019 07:07:25 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/containers/skopeo","summary":"Configuration files for working with image signature","description":"This package installs a default signature store configuration policy under `/etc/containers/`.","build_epoch":1568556445,"build_epoch_utc":null},{"name":"glibc-common","version":"2.17","release":"292.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:22 AM PDT","group":"System Environment/Base","size":120326282,"license":"LGPLv2+ and LGPLv2+ with exceptions and GPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:24:43 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"glibc-2.17-292.el7.src.rpm","build_date":"Tue 06 Aug 2019 04:23:44 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnu.org/software/glibc/","summary":"Common binaries and locale data for glibc","description":"The glibc-common package includes common binaries for the GNU libc libraries, as well as national language (locale) support.","build_epoch":1565133824,"build_epoch_utc":null},{"name":"audit-libs","version":"2.8.5","release":"4.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:26 AM PDT","group":"Development/Libraries","size":256386,"license":"LGPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:20:30 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"audit-2.8.5-4.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:06:20 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://people.redhat.com/sgrubb/audit/","summary":"Dynamic library for libaudit","description":"The audit-libs package contains the dynamic libraries needed for applications to use the audit framework.","build_epoch":1565265980,"build_epoch_utc":null},{"name":"iputils","version":"20160308","release":"10.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:32 AM PDT","group":"System Environment/Daemons","size":343497,"license":"BSD and GPLv2+","signature":"RSA/SHA256, Thu 10 Aug 2017 09:47:33 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"iputils-20160308-10.el7.src.rpm","build_date":"Fri 04 Aug 2017 01:01:04 AM PDT","build_host":"c1bm.rdu2.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/iputils/iputils","summary":"Network monitoring tools including ping","description":"The iputils package contains basic utilities for monitoring a network, including ping. The ping command sends a series of ICMP protocol ECHO_REQUEST packets to a specified network host to discover whether the target machine is alive and receiving network traffic.","build_epoch":1501833664,"build_epoch_utc":null},{"name":"coreutils","version":"8.22","release":"24.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:28 AM PDT","group":"System Environment/Base","size":14593469,"license":"GPLv3+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:21:30 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"coreutils-8.22-24.el7.src.rpm","build_date":"Mon 19 Aug 2019 11:27:26 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnu.org/software/coreutils/","summary":"A set of basic GNU tools commonly used in shell scripts","description":"These are the GNU core utilities. This package is the combination of the old GNU fileutils, sh-utils, and textutils packages.","build_epoch":1566282446,"build_epoch_utc":null},{"name":"libdb","version":"5.3.21","release":"25.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:29 AM PDT","group":"System Environment/Libraries","size":1858144,"license":"BSD and LGPLv2 and Sleepycat","signature":"RSA/SHA256, Thu 22 Aug 2019 02:29:18 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libdb-5.3.21-25.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:18:38 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.oracle.com/database/berkeley-db/","summary":"The Berkeley DB database library for C","description":"The Berkeley Database (Berkeley DB) is a programmatic toolkit that provides embedded database support for both traditional and client/server applications. The Berkeley DB includes B+tree, Extended Linear Hashing, Fixed and Variable-length record access methods, transactions, locking, logging, shared memory caching, and database recovery. The Berkeley DB supports C, C++, Java, and Perl APIs. It is used by many applications, including Python and Perl, so this should be installed on all systems.","build_epoch":1565309918,"build_epoch_utc":null},{"name":"python-libs","version":"2.7.5","release":"86.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:32 AM PDT","group":"Applications/System","size":24715873,"license":"Python","signature":"RSA/SHA256, Thu 22 Aug 2019 02:40:21 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"python-2.7.5-86.el7.src.rpm","build_date":"Tue 06 Aug 2019 06:15:38 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.python.org/","summary":"Runtime libraries for Python","description":"This package contains runtime libraries for use by Python: - the libpython dynamic library, for use by applications that embed Python as a scripting language, and by the main \"python\" executable - the Python standard library","build_epoch":1565140538,"build_epoch_utc":null},{"name":"glib2","version":"2.56.1","release":"5.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:33 AM PDT","group":"Unspecified","size":12170073,"license":"LGPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:24:36 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"glib2-2.56.1-5.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:38:20 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gtk.org","summary":"A library of handy utility functions","description":"GLib is the low-level core library that forms the basis for projects such as GTK+ and GNOME. It provides data structure handling for C, portability wrappers, and interfaces for such runtime functionality as an event loop, threads, dynamic loading, and an object system.","build_epoch":1565307500,"build_epoch_utc":null},{"name":"nss","version":"3.44.0","release":"4.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:34 AM PDT","group":"System Environment/Libraries","size":2475794,"license":"MPLv2.0","signature":"RSA/SHA256, Thu 22 Aug 2019 02:36:25 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"nss-3.44.0-4.el7.src.rpm","build_date":"Mon 12 Aug 2019 10:02:37 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.mozilla.org/projects/security/pki/nss/","summary":"Network Security Services","description":"Network Security Services (NSS) is a set of libraries designed to support cross-platform development of security-enabled client and 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.","build_epoch":1565629357,"build_epoch_utc":null},{"name":"ethtool","epoch":2,"version":"4.8","release":"10.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:35 AM PDT","group":"Applications/System","size":354299,"license":"GPLv2","signature":"RSA/SHA256, Thu 22 Aug 2019 02:22:57 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"ethtool-4.8-10.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:16:59 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://www.kernel.org/pub/software/network/ethtool/","summary":"Settings tool for Ethernet NICs","description":"This utility allows querying and changing settings such as speed, port, auto-negotiation, PCI locations and checksum offload on many network devices, especially of Ethernet devices.","build_epoch":1565306219,"build_epoch_utc":null},{"name":"libpciaccess","version":"0.14","release":"1.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:35 AM PDT","group":"System Environment/Libraries","size":45649,"license":"MIT","signature":"RSA/SHA256, Wed 25 Apr 2018 04:17:01 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libpciaccess-0.14-1.el7.src.rpm","build_date":"Tue 10 Apr 2018 07:32:03 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://gitweb.freedesktop.org/?p=xorg/lib/libpciaccess.git","summary":"PCI access library","description":"libpciaccess is a library for portable PCI access routines across multiple operating systems.","build_epoch":1523413923,"build_epoch_utc":null},{"name":"audit-libs-python","version":"2.8.5","release":"4.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:35 AM PDT","group":"Development/Libraries","size":323427,"license":"LGPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:20:32 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"audit-2.8.5-4.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:06:20 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://people.redhat.com/sgrubb/audit/","summary":"Python bindings for libaudit","description":"The audit-libs-python package contains the bindings so that libaudit and libauparse can be used by python.","build_epoch":1565265980,"build_epoch_utc":null},{"name":"alsa-firmware","version":"1.0.28","release":"2.el7","architecture":"noarch","install_date":"Thu 15 Aug 2019 10:53:36 AM PDT","group":"Applications/Multimedia","size":9572469,"license":"GPL+ and BSD and GPLv2+ and GPLv2 and LGPLv2+","signature":"RSA/SHA256, Sat 14 Mar 2015 12:36:28 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"alsa-firmware-1.0.28-2.el7.src.rpm","build_date":"Thu 05 Mar 2015 01:58:35 PM PST","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.alsa-project.org/","summary":"Firmware for several ALSA-supported sound cards","description":"This package contains the firmware binaries for a number of sound cards. Some (but not all of these) require firmware loaders which are included in the alsa-tools-firmware package.","build_epoch":1425592715,"build_epoch_utc":null},{"name":"xfsprogs","version":"4.5.0","release":"20.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:36 AM PDT","group":"System Environment/Base","size":4079279,"license":"GPL+ and LGPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:45:37 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"xfsprogs-4.5.0-20.el7.src.rpm","build_date":"Thu 08 Aug 2019 08:23:27 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://xfs.wiki.kernel.org","summary":"Utilities for managing the XFS filesystem","description":"A set of commands to use the XFS filesystem, including mkfs.xfs. XFS is a high performance journaling filesystem which originated on the SGI IRIX platform. It is completely multi-threaded, can support large files and large filesystems, extended attributes, variable block sizes, is extent based, and makes extensive use of Btrees (directories, extents, free space) to aid both performance and scalability.","build_epoch":1565321007,"build_epoch_utc":null},{"name":"dbus-python","version":"1.1.1","release":"9.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:36 AM PDT","group":"Unspecified","size":848122,"license":"MIT","signature":"RSA/SHA256, Thu 03 Jul 2014 06:06:25 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"dbus-python-1.1.1-9.el7.src.rpm","build_date":"Tue 10 Jun 2014 12:12:40 AM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.freedesktop.org/software/dbus-python","summary":"D-Bus Python Bindings","description":"D-Bus python bindings for use with python programs.","build_epoch":1402384360,"build_epoch_utc":null},{"name":"binutils","version":"2.27","release":"41.base.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:38 AM PDT","group":"Development/Tools","size":25150234,"license":"GPLv3+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:20:57 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"binutils-2.27-41.base.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:14:36 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://sources.redhat.com/binutils","summary":"A GNU collection of binary utilities","description":"Binutils is a collection of binary utilities, including ar (for creating, modifying and extracting from archives), as (a family of GNU assemblers), gprof (for displaying call graph profile data), ld (the GNU linker), nm (for listing symbols from object files), objcopy (for copying and translating object files), objdump (for displaying information from object files), ranlib (for generating an index for the contents of an archive), readelf (for displaying detailed information about binary files), size (for listing the section sizes of an object or archive file), strings (for listing printable strings from files), strip (for discarding symbols), and addr2line (for converting addresses to file and line).","build_epoch":1565306076,"build_epoch_utc":null},{"name":"GeoIP","version":"1.5.0","release":"14.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:39 AM PDT","group":"Development/Libraries","size":3865708,"license":"LGPLv2+ and GPLv2+ and CC-BY-SA","signature":"RSA/SHA256, Thu 22 Aug 2019 02:24:31 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"GeoIP-1.5.0-14.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:34:37 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.maxmind.com/app/c","summary":"Library for country/city/organization to IP address or hostname mapping","description":"GeoIP is a C library that enables the user to find the country that any IP address or hostname originates from. It uses a file based database that is accurate as of June 2007 and can optionally be updated on a weekly basis by installing the GeoIP-update package. This database simply contains IP blocks as keys, and countries as values. This database should be more complete and accurate than using reverse DNS lookups. This package includes GeoLite data created by MaxMind, available from http://www.maxmind.com/","build_epoch":1565307277,"build_epoch_utc":null},{"name":"pth","version":"2.0.7","release":"23.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:36 AM PDT","group":"System Environment/Libraries","size":267851,"license":"LGPLv2+","signature":"RSA/SHA256, Wed 25 Nov 2015 07:32:05 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"pth-2.0.7-23.el7.src.rpm","build_date":"Fri 20 Nov 2015 12:11:52 AM PST","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnu.org/software/pth/","summary":"The GNU Portable Threads library","description":"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.","build_epoch":1448007112,"build_epoch_utc":null},{"name":"rpm-build-libs","version":"4.11.3","release":"40.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:40 AM PDT","group":"Development/Libraries","size":166776,"license":"GPLv2+ and LGPLv2+ with exceptions","signature":"RSA/SHA256, Thu 22 Aug 2019 02:42:34 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"rpm-4.11.3-40.el7.src.rpm","build_date":"Tue 06 Aug 2019 03:50:54 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.rpm.org/","summary":"Libraries for building and signing RPM packages","description":"This package contains the RPM shared libraries for building and signing packages.","build_epoch":1565131854,"build_epoch_utc":null},{"name":"gpgme","version":"1.3.2","release":"5.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:37 AM PDT","group":"Applications/System","size":547534,"license":"LGPLv2+","signature":"RSA/SHA256, Thu 03 Jul 2014 06:44:14 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"gpgme-1.3.2-5.el7.src.rpm","build_date":"Mon 09 Jun 2014 06:03:04 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnupg.org/related_software/gpgme/","summary":"GnuPG Made Easy - high level crypto API","description":"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.","build_epoch":1402362184,"build_epoch_utc":null},{"name":"libss","version":"1.42.9","release":"16.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:41 AM PDT","group":"Development/Libraries","size":73089,"license":"MIT","signature":"RSA/SHA256, Thu 22 Aug 2019 02:33:08 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"e2fsprogs-1.42.9-16.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:19:51 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://e2fsprogs.sourceforge.net/","summary":"Command line interface parsing library","description":"This is libss, a command line interface parsing library, part of e2fsprogs. This package includes a tool that parses a command table to generate a simple command-line interface parser, the include files needed to compile and use it. It was originally inspired by the Multics SubSystem library.","build_epoch":1565306391,"build_epoch_utc":null},{"name":"kernel-tools-libs","version":"3.10.0","release":"1062.1.2.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:41 AM PDT","group":"Development/System","size":18640,"license":"GPLv2","signature":"RSA/SHA256, Wed 02 Oct 2019 07:16:00 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"kernel-3.10.0-1062.1.2.el7.src.rpm","build_date":"Mon 30 Sep 2019 07:39:55 AM PDT","build_host":"kbuilder.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.kernel.org/","summary":"Libraries for the kernels-tools","description":"This package contains the libraries built from the tools/ directory from the kernel source.","build_epoch":1569854395,"build_epoch_utc":null}] diff --git a/tests/fixtures/centos-7.7/rpm-qai.out b/tests/fixtures/centos-7.7/rpm-qai.out new file mode 100644 index 00000000..1ab4da8b --- /dev/null +++ b/tests/fixtures/centos-7.7/rpm-qai.out @@ -0,0 +1,9961 @@ +Name : make +Epoch : 1 +Version : 3.82 +Release : 24.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:42 AM PDT +Group : Development/Tools +Size : 1160660 +License : GPLv2+ +Signature : RSA/SHA256, Thu 22 Aug 2019 02:34:59 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : make-3.82-24.el7.src.rpm +Build Date : Thu 08 Aug 2019 05:47:25 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.gnu.org/software/make/ +Summary : A GNU tool which simplifies the build process for users +Description : +A GNU tool for controlling the generation of executables and other +non-source files of a program from the program's source files. Make +allows users to build and install packages without any significant +knowledge about the details of the build process. The details about +how the program should be built are provided for make in the program's +makefile. +Name : kbd-legacy +Version : 1.15.5 +Release : 15.el7 +Architecture: noarch +Install Date: Thu 15 Aug 2019 10:53:08 AM PDT +Group : System Environment/Base +Size : 503608 +License : GPLv2+ +Signature : RSA/SHA256, Mon 12 Nov 2018 07:17:49 AM PST, Key ID 24c6a8a7f4a80eb5 +Source RPM : kbd-1.15.5-15.el7.src.rpm +Build Date : Tue 30 Oct 2018 03:40:00 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://ftp.altlinux.org/pub/people/legion/kbd +Summary : Legacy data for kbd package +Description : +The kbd-legacy package contains original keymaps for kbd package. +Please note that kbd-legacy is not helpful without kbd. +Name : libsmartcols +Version : 2.23.2 +Release : 61.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:42 AM PDT +Group : Development/Libraries +Size : 168712 +License : LGPLv2+ +Signature : RSA/SHA256, Thu 22 Aug 2019 02:33:02 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : util-linux-2.23.2-61.el7.src.rpm +Build Date : Thu 08 Aug 2019 08:10:20 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://en.wikipedia.org/wiki/Util-linux +Summary : Formatting library for ls-like programs. +Description : +This is library for ls-like terminal programs, part of util-linux. +Name : ncurses-base +Version : 5.9 +Release : 14.20130511.el7_4 +Architecture: noarch +Install Date: Thu 15 Aug 2019 10:53:08 AM PDT +Group : System Environment/Base +Size : 223432 +License : MIT +Signature : RSA/SHA256, Thu 07 Sep 2017 05:43:15 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : ncurses-5.9-14.20130511.el7_4.src.rpm +Build Date : Wed 06 Sep 2017 03:08:29 PM PDT +Build Host : c1bm.rdu2.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://invisible-island.net/ncurses/ncurses.html +Summary : Descriptions of common terminals +Description : +This package contains descriptions of common terminals. Other terminal +descriptions are included in the ncurses-term package. +Name : procps-ng +Version : 3.3.10 +Release : 26.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:43 AM PDT +Group : Applications/System +Size : 759403 +License : GPL+ and GPLv2 and GPLv2+ and GPLv3+ and LGPLv2+ +Signature : RSA/SHA256, Thu 22 Aug 2019 02:39:53 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : procps-ng-3.3.10-26.el7.src.rpm +Build Date : Thu 08 Aug 2019 06:55:50 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://sourceforge.net/projects/procps-ng/ +Summary : System and process monitoring utilities +Description : +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. +Name : postfix +Epoch : 2 +Version : 2.10.1 +Release : 7.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:53 AM PDT +Group : System Environment/Daemons +Size : 12766329 +License : IBM and GPLv2+ +Signature : RSA/SHA256, Mon 12 Nov 2018 06:44:41 AM PST, Key ID 24c6a8a7f4a80eb5 +Source RPM : postfix-2.10.1-7.el7.src.rpm +Build Date : Tue 30 Oct 2018 09:50:35 AM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.postfix.org +Summary : Postfix Mail Transport Agent +Description : +Postfix is a Mail Transport Agent (MTA), supporting LDAP, SMTP AUTH (SASL), +TLS +Name : kmod +Version : 20 +Release : 25.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:44 AM PDT +Group : System Environment/Kernel +Size : 246109 +License : GPLv2+ +Signature : RSA/SHA256, Thu 22 Aug 2019 02:28:22 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : kmod-20-25.el7.src.rpm +Build Date : Thu 08 Aug 2019 05:05:58 PM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://git.kernel.org/?p=utils/kernel/kmod/kmod.git;a=summary +Summary : Linux kernel module management utilities +Description : +The kmod package provides various programs needed for automatic +loading and unloading of modules under 2.6, 3.x, and later kernels, as well +as other module management programs. Device drivers and filesystems are two +examples of loaded and unloaded modules. +Name : aic94xx-firmware +Version : 30 +Release : 6.el7 +Architecture: noarch +Install Date: Thu 15 Aug 2019 10:53:56 AM PDT +Group : System Environment/Kernel +Size : 30752 +License : Redistributable, no modification permitted +Signature : RSA/SHA256, Thu 03 Jul 2014 05:34:22 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : aic94xx-firmware-30-6.el7.src.rpm +Build Date : Mon 09 Jun 2014 11:57:07 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.adaptec.com/en-US/speed/scsi/linux/aic94xx-seq-30-1_tar_gz.htm +Summary : Adaptec SAS 44300, 48300, 58300 Sequencer Firmware for AIC94xx driver +Description : +Adaptec SAS 44300, 48300, 58300 Sequencer Firmware for Open-Source AIC94xx +Driver. +Name : basesystem +Version : 10.0 +Release : 7.el7.centos +Architecture: noarch +Install Date: Thu 15 Aug 2019 10:53:12 AM PDT +Group : System Environment/Base +Size : 0 +License : Public Domain +Signature : RSA/SHA256, Thu 03 Jul 2014 05:46:57 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : basesystem-10.0-7.el7.centos.src.rpm +Build Date : Fri 27 Jun 2014 03:37:10 AM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +Summary : The skeleton package which defines a simple CentOS Linux system +Description : +Basesystem defines the components of a basic CentOS Linux +system (for example, the package installation order to use during +bootstrapping). Basesystem should be in every installation of a system, +and it should never be removed. +Name : elfutils-default-yama-scope +Version : 0.176 +Release : 2.el7 +Architecture: noarch +Install Date: Wed 16 Oct 2019 09:21:47 AM PDT +Group : Development/Tools +Size : 1810 +License : GPLv2+ or LGPLv3+ +Signature : RSA/SHA256, Thu 22 Aug 2019 02:56:57 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : elfutils-0.176-2.el7.src.rpm +Build Date : Thu 08 Aug 2019 04:16:25 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://elfutils.org/ +Summary : Default yama attach scope sysctl setting +Description : +Yama sysctl setting to enable default attach scope settings +enabling programs to use ptrace attach, access to +/proc/PID/{mem,personality,stack,syscall}, and the syscalls +process_vm_readv and process_vm_writev which are used for +interprocess services, communication and introspection +(like synchronisation, signaling, debugging, tracing and +profiling) of processes. +Name : grub2-tools-minimal +Epoch : 1 +Version : 2.02 +Release : 0.80.el7.centos +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:49 AM PDT +Group : System Environment/Base +Size : 686003 +License : GPLv3+ +Signature : RSA/SHA256, Thu 22 Aug 2019 02:25:18 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : grub2-2.02-0.80.el7.centos.src.rpm +Build Date : Thu 08 Aug 2019 04:31:11 AM PDT +Build Host : kbuilder.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.gnu.org/software/grub/ +Summary : Support tools for GRUB. +Description : + +The GRand Unified Bootloader (GRUB) is a highly configurable and +customizable bootloader with modular architecture. It supports a rich +variety of kernel formats, file systems, computer architectures and +hardware devices. + +This subpackage provides tools for support of all platforms. +Name : ncurses-libs +Version : 5.9 +Release : 14.20130511.el7_4 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:16 AM PDT +Group : System Environment/Libraries +Size : 1028216 +License : MIT +Signature : RSA/SHA256, Thu 07 Sep 2017 05:43:31 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : ncurses-5.9-14.20130511.el7_4.src.rpm +Build Date : Wed 06 Sep 2017 03:08:29 PM PDT +Build Host : c1bm.rdu2.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://invisible-island.net/ncurses/ncurses.html +Summary : Ncurses libraries +Description : +The curses library routines are a terminal-independent method of +updating character screens with reasonable optimization. The ncurses +(new curses) library is a freely distributable replacement for the +discontinued 4.4 BSD classic curses library. + +This package contains the ncurses libraries. +Name : dhcp-libs +Epoch : 12 +Version : 4.2.5 +Release : 77.el7.centos +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:59 AM PDT +Group : System Environment/Base +Size : 149200 +License : ISC +Signature : RSA/SHA256, Thu 22 Aug 2019 02:22:20 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : dhcp-4.2.5-77.el7.centos.src.rpm +Build Date : Thu 08 Aug 2019 04:10:22 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://isc.org/products/DHCP/ +Summary : Shared libraries used by ISC dhcp client and server +Description : +This package contains shared libraries used by ISC dhcp client and server +Name : libffi +Version : 3.0.13 +Release : 18.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:16 AM PDT +Group : System Environment/Libraries +Size : 47766 +License : MIT and Public Domain +Signature : RSA/SHA256, Sun 20 Nov 2016 10:39:28 AM PST, Key ID 24c6a8a7f4a80eb5 +Source RPM : libffi-3.0.13-18.el7.src.rpm +Build Date : Sat 05 Nov 2016 09:30:28 AM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://sourceware.org/libffi +Summary : A portable foreign function interface library +Description : +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. +Name : dhcp-common +Epoch : 12 +Version : 4.2.5 +Release : 77.el7.centos +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:22:01 AM PDT +Group : System Environment/Base +Size : 245529 +License : ISC +Signature : RSA/SHA256, Thu 22 Aug 2019 02:22:18 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : dhcp-4.2.5-77.el7.centos.src.rpm +Build Date : Thu 08 Aug 2019 04:10:22 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://isc.org/products/DHCP/ +Summary : Common files used by ISC dhcp client and server +Description : +DHCP (Dynamic Host Configuration Protocol) is a protocol which allows +individual devices on an IP network to get their own network +configuration information (IP address, subnetmask, broadcast address, +etc.) from a DHCP server. The overall purpose of DHCP is to make it +easier to administer a large network. + +This package provides common files used by dhcp and dhclient package. +Name : pcre +Version : 8.32 +Release : 17.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:16 AM PDT +Group : System Environment/Libraries +Size : 1475532 +License : BSD +Signature : RSA/SHA256, Thu 10 Aug 2017 12:04:31 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : pcre-8.32-17.el7.src.rpm +Build Date : Tue 01 Aug 2017 08:08:12 PM PDT +Build Host : c1bm.rdu2.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.pcre.org/ +Summary : Perl-compatible regular expression library +Description : +Perl-compatible regular expression library. +PCRE has its own native API, but a set of "wrapper" functions that are based on +the POSIX API are also supplied in the library libpcreposix. Note that this +just provides a POSIX calling interface to PCRE: the regular expressions +themselves still follow Perl syntax and semantics. The header file +for the POSIX-style functions is called pcreposix.h. +Name : grub2-tools-extra +Epoch : 1 +Version : 2.02 +Release : 0.80.el7.centos +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:22:14 AM PDT +Group : System Environment/Base +Size : 6342188 +License : GPLv3+ +Signature : RSA/SHA256, Thu 22 Aug 2019 02:25:17 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : grub2-2.02-0.80.el7.centos.src.rpm +Build Date : Thu 08 Aug 2019 04:31:11 AM PDT +Build Host : kbuilder.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.gnu.org/software/grub/ +Summary : Support tools for GRUB. +Description : + +The GRand Unified Bootloader (GRUB) is a highly configurable and +customizable bootloader with modular architecture. It supports a rich +variety of kernel formats, file systems, computer architectures and +hardware devices. + +This subpackage provides tools for support of all platforms. +Name : p11-kit +Version : 0.23.5 +Release : 3.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:16 AM PDT +Group : Unspecified +Size : 1337825 +License : BSD +Signature : RSA/SHA256, Thu 10 Aug 2017 11:44:31 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : p11-kit-0.23.5-3.el7.src.rpm +Build Date : Fri 04 Aug 2017 04:37:00 PM PDT +Build Host : c1bm.rdu2.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://p11-glue.freedesktop.org/p11-kit.html +Summary : Library for loading and sharing PKCS#11 modules +Description : +p11-kit provides a way to load and enumerate PKCS#11 modules, as well +as a standard configuration setup for installing PKCS#11 modules in +such a way that they're discoverable. +Name : lvm2 +Epoch : 7 +Version : 2.02.185 +Release : 2.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:22:15 AM PDT +Group : System Environment/Base +Size : 3117026 +License : GPLv2 +Signature : RSA/SHA256, Thu 22 Aug 2019 02:34:51 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : lvm2-2.02.185-2.el7.src.rpm +Build Date : Thu 08 Aug 2019 05:44:27 PM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://sources.redhat.com/lvm2 +Summary : Userland logical volume management tools +Description : +LVM2 includes all of the support for handling read/write operations on +physical volumes (hard disks, RAID-Systems, magneto optical, etc., +multiple devices (MD), see mdadm(8) or even loop devices, see +losetup(8)), creating volume groups (kind of virtual disks) from one +or more physical volumes and creating one or more logical volumes +(kind of logical partitions) in volume groups. +Name : libtasn1 +Version : 4.10 +Release : 1.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:16 AM PDT +Group : System Environment/Libraries +Size : 424486 +License : GPLv3+ and LGPLv2+ +Signature : RSA/SHA256, Thu 10 Aug 2017 10:58:43 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : libtasn1-4.10-1.el7.src.rpm +Build Date : Tue 01 Aug 2017 05:21:37 PM PDT +Build Host : c1bm.rdu2.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.gnu.org/software/libtasn1/ +Summary : The ASN.1 library used in GNUTLS +Description : +A library that provides Abstract Syntax Notation One (ASN.1, as specified +by the X.680 ITU-T recommendation) parsing and structures management, and +Distinguished Encoding Rules (DER, as per X.690) encoding and decoding functions. +Name : systemd-sysv +Version : 219 +Release : 67.el7_7.1 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:22:16 AM PDT +Group : Unspecified +Size : 3979 +License : LGPLv2+ +Signature : RSA/SHA256, Sat 14 Sep 2019 04:50:41 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : systemd-219-67.el7_7.1.src.rpm +Build Date : Fri 13 Sep 2019 11:21:31 AM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.freedesktop.org/wiki/Software/systemd +Summary : SysV tools for systemd +Description : +SysV compatibility tools for systemd +Name : docker-common +Epoch : 2 +Version : 1.13.1 +Release : 103.git7f2769b.el7.centos +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:22:26 AM PDT +Group : Unspecified +Size : 4481 +License : ASL 2.0 +Signature : RSA/SHA256, Mon 16 Sep 2019 05:33:25 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : docker-1.13.1-103.git7f2769b.el7.centos.src.rpm +Build Date : Sun 15 Sep 2019 07:07:52 AM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://github.com/docker/docker +Summary : Common files for docker and docker-latest +Description : +This package contains the common files /usr/bin/docker which will point to +/usr/bin/docker-current or /usr/bin/docker-latest configurable via +/etc/sysconfig/docker +Name : plymouth +Version : 0.8.9 +Release : 0.32.20140113.el7.centos +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:22:27 AM PDT +Group : System Environment/Base +Size : 233304 +License : GPLv2+ +Signature : RSA/SHA256, Thu 22 Aug 2019 02:39:19 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : plymouth-0.8.9-0.32.20140113.el7.centos.src.rpm +Build Date : Thu 08 Aug 2019 04:51:46 AM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.freedesktop.org/wiki/Software/Plymouth +Summary : Graphical Boot Animation and Logger +Description : +Plymouth provides an attractive graphical boot animation in +place of the text messages that normally get shown. Text +messages are instead redirected to a log file for viewing +after boot. +Name : irqbalance +Epoch : 3 +Version : 1.0.7 +Release : 12.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:22:45 AM PDT +Group : System Environment/Base +Size : 71212 +License : GPLv2 +Signature : RSA/SHA256, Thu 22 Aug 2019 02:26:22 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : irqbalance-1.0.7-12.el7.src.rpm +Build Date : Thu 08 Aug 2019 04:57:59 PM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://github.com/Irqbalance/irqbalance +Summary : IRQ balancing daemon +Description : +irqbalance is a daemon that evenly distributes IRQ load across +multiple CPUs for enhanced performance. +Name : libcap-ng +Version : 0.7.5 +Release : 4.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:18 AM PDT +Group : System Environment/Libraries +Size : 50510 +License : LGPLv2+ +Signature : RSA/SHA256, Wed 25 Nov 2015 06:52:00 AM PST, Key ID 24c6a8a7f4a80eb5 +Source RPM : libcap-ng-0.7.5-4.el7.src.rpm +Build Date : Thu 19 Nov 2015 10:38:30 PM PST +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://people.redhat.com/sgrubb/libcap-ng +Summary : An alternate posix capabilities library +Description : +Libcap-ng is a library that makes using posix capabilities easier +Name : kexec-tools +Version : 2.0.15 +Release : 33.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:22:49 AM PDT +Group : Applications/System +Size : 779247 +License : GPLv2 +Signature : RSA/SHA256, Thu 22 Aug 2019 02:28:13 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : kexec-tools-2.0.15-33.el7.src.rpm +Build Date : Thu 08 Aug 2019 04:41:23 AM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +Summary : The kexec/kdump userspace component. +Description : +kexec-tools provides /sbin/kexec binary that facilitates a new +kernel to boot using the kernel's kexec feature either on a +normal or a panic reboot. This package contains the /sbin/kexec +binary and ancillary utilities that together form the userspace +component of the kernel's kexec feature. +Name : python-backports +Version : 1.0 +Release : 8.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 12:00:19 PM PDT +Group : Unspecified +Size : 638 +License : Public Domain +Signature : RSA/SHA256, Sat 14 Mar 2015 01:30:55 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : python-backports-1.0-8.el7.src.rpm +Build Date : Thu 05 Mar 2015 09:10:25 PM PST +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://pypi.python.org/pypi/backports +Summary : Namespace for backported Python features +Description : +The backports namespace is a namespace reserved for features backported from +the Python standard library to older versions of Python 2. + +Packages that exist in the backports namespace in Fedora should not provide +their own backports/__init__.py, but instead require this package. + +Backports to earlier versions of Python 3, if they exist, do not need this +package because of changes made in Python 3.3 in PEP 420 +(http://www.python.org/dev/peps/pep-0420/). +Name : cpio +Version : 2.11 +Release : 27.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:18 AM PDT +Group : Applications/Archiving +Size : 689335 +License : GPLv3+ +Signature : RSA/SHA256, Wed 25 Apr 2018 03:56:03 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : cpio-2.11-27.el7.src.rpm +Build Date : Tue 10 Apr 2018 04:51:52 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.gnu.org/software/cpio/ +Summary : A GNU archiving program +Description : +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. +Name : NetworkManager-tui +Epoch : 1 +Version : 1.18.0 +Release : 5.el7_7.1 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:22:49 AM PDT +Group : System Environment/Base +Size : 659215 +License : GPLv2+ +Signature : RSA/SHA256, Sat 14 Sep 2019 04:49:32 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : NetworkManager-1.18.0-5.el7_7.1.src.rpm +Build Date : Fri 13 Sep 2019 11:05:30 AM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.gnome.org/projects/NetworkManager/ +Summary : NetworkManager curses-based UI +Description : +This adds a curses-based "TUI" (Text User Interface) to +NetworkManager, to allow performing some of the operations supported +by nm-connection-editor and nm-applet in a non-graphical environment. +Name : oci-register-machine +Epoch : 1 +Version : 0 +Release : 6.git2b44233.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 12:00:20 PM PDT +Group : Unspecified +Size : 3372952 +License : ASL 2.0 +Signature : RSA/SHA256, Fri 09 Mar 2018 04:57:06 AM PST, Key ID 24c6a8a7f4a80eb5 +Source RPM : oci-register-machine-0-6.git2b44233.el7.src.rpm +Build Date : Wed 07 Mar 2018 09:09:27 AM PST +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://github.com/projectatomic/oci-register-machine +Summary : Golang binary to register OCI containers with systemd-machined +Description : +Golang binary to register OCI containers with systemd-machined +Name : which +Version : 2.20 +Release : 7.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:18 AM PDT +Group : Applications/System +Size : 76962 +License : GPLv3 +Signature : RSA/SHA256, Thu 03 Jul 2014 10:43:07 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : which-2.20-7.el7.src.rpm +Build Date : Mon 09 Jun 2014 07:25:22 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.xs4all.nl/~carlo17/which/ +Summary : Displays where a particular program in your path is located +Description : +The which command shows the full pathname of a specified program, if +the specified program is in your PATH. +Name : chrony +Version : 3.4 +Release : 1.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:22:50 AM PDT +Group : System Environment/Daemons +Size : 502859 +License : GPLv2 +Signature : RSA/SHA256, Thu 22 Aug 2019 02:21:16 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : chrony-3.4-1.el7.src.rpm +Build Date : Thu 08 Aug 2019 04:42:19 AM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://chrony.tuxfamily.org +Summary : An NTP client/server +Description : +A client/server for the Network Time Protocol, this program keeps your +computer's clock accurate. It was specially designed to support +systems with intermittent internet connections, but it also works well +in permanently connected environments. It can use also hardware reference +clocks, system real-time clock or manual input as time references. +Name : sqlite +Version : 3.7.17 +Release : 8.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:19 AM PDT +Group : Applications/Databases +Size : 814231 +License : Public Domain +Signature : RSA/SHA256, Wed 25 Nov 2015 07:40:39 AM PST, Key ID 24c6a8a7f4a80eb5 +Source RPM : sqlite-3.7.17-8.el7.src.rpm +Build Date : Fri 20 Nov 2015 12:45:59 AM PST +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.sqlite.org/ +Summary : Library that implements an embeddable SQL database engine +Description : +SQLite is a C library that implements an SQL database engine. A large +subset of SQL92 is supported. A complete database is stored in a +single disk file. The API is designed for convenience and ease of use. +Applications that link against SQLite can enjoy the power and +flexibility of an SQL database without the administrative hassles of +supporting a separate database server. Version 2 and version 3 binaries +are named to permit each to be installed on a single host +Name : microcode_ctl +Epoch : 2 +Version : 2.1 +Release : 53.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:22:53 AM PDT +Group : System Environment/Base +Size : 2651210 +License : GPLv2+ and Redistributable, no modification permitted +Signature : RSA/SHA256, Thu 22 Aug 2019 02:35:33 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : microcode_ctl-2.1-53.el7.src.rpm +Build Date : Thu 08 Aug 2019 05:58:14 PM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://pagure.io/microcode_ctl +Summary : Tool to transform and deploy CPU microcode update for x86. +Description : +The microcode_ctl utility is a companion to the microcode driver written +by Tigran Aivazian . + +The microcode update is volatile and needs to be uploaded on each system +boot i.e. it doesn't reflash your cpu permanently, reboot and it reverts +back to the old microcode. +Name : file-libs +Version : 5.11 +Release : 35.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:19 AM PDT +Group : Applications/File +Size : 3076831 +License : BSD +Signature : RSA/SHA256, Mon 12 Nov 2018 06:25:10 AM PST, Key ID 24c6a8a7f4a80eb5 +Source RPM : file-5.11-35.el7.src.rpm +Build Date : Tue 30 Oct 2018 11:16:23 AM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.darwinsys.com/file/ +Summary : Libraries for applications using libmagic +Description : + +Libraries for applications using libmagic. +Name : openssl +Epoch : 1 +Version : 1.0.2k +Release : 19.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:22:58 AM PDT +Group : System Environment/Libraries +Size : 833707 +License : OpenSSL +Signature : RSA/SHA256, Thu 22 Aug 2019 02:37:31 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : openssl-1.0.2k-19.el7.src.rpm +Build Date : Thu 08 Aug 2019 06:40:02 PM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.openssl.org/ +Summary : Utilities from the general purpose cryptography library with TLS implementation +Description : +The OpenSSL toolkit provides support for secure communications between +machines. OpenSSL includes a certificate management tool and shared +libraries which provide various cryptographic algorithms and +protocols. +Name : libcroco +Version : 0.6.12 +Release : 4.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:19 AM PDT +Group : System Environment/Libraries +Size : 320955 +License : LGPLv2 +Signature : RSA/SHA256, Mon 12 Nov 2018 06:31:55 AM PST, Key ID 24c6a8a7f4a80eb5 +Source RPM : libcroco-0.6.12-4.el7.src.rpm +Build Date : Tue 30 Oct 2018 11:03:18 AM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +Summary : A CSS2 parsing library +Description : +CSS2 parsing and manipulation library for GNOME +Name : mariadb-libs +Epoch : 1 +Version : 5.5.64 +Release : 1.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:23:00 AM PDT +Group : Applications/Databases +Size : 4615213 +License : GPLv2 with exceptions and LGPLv2 and BSD +Signature : RSA/SHA256, Thu 22 Aug 2019 02:35:07 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : mariadb-5.5.64-1.el7.src.rpm +Build Date : Thu 08 Aug 2019 07:29:56 AM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://mariadb.org +Summary : The shared libraries required for MariaDB/MySQL clients +Description : +The mariadb-libs package provides the essential shared libraries for any +MariaDB/MySQL client program or interface. You will need to install this +package to use any other MariaDB package or any clients that need to connect +to a MariaDB/MySQL server. MariaDB is a community developed branch of MySQL. +Name : libgomp +Version : 4.8.5 +Release : 39.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:23:01 AM PDT +Group : System Environment/Libraries +Size : 212184 +License : GPLv3+ and GPLv3+ with exceptions and GPLv2+ with exceptions and LGPLv2+ and BSD +Signature : RSA/SHA256, Thu 22 Aug 2019 02:29:46 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : gcc-4.8.5-39.el7.src.rpm +Build Date : Tue 06 Aug 2019 10:15:38 AM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://gcc.gnu.org +Summary : GCC OpenMP v3.0 shared support library +Description : +This package contains GCC shared support library which is needed +for OpenMP v3.0 support. +Name : libnl3-cli +Version : 3.2.28 +Release : 4.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:20 AM PDT +Group : Development/Libraries +Size : 706246 +License : LGPLv2 +Signature : RSA/SHA256, Thu 10 Aug 2017 10:22:53 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : libnl3-3.2.28-4.el7.src.rpm +Build Date : Thu 03 Aug 2017 12:49:03 PM PDT +Build Host : c1bm.rdu2.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.infradead.org/~tgr/libnl/ +Summary : Command line interface utils for libnl3 +Description : +This package contains various libnl3 utils and additional +libraries on which they depend +Name : iwl3945-firmware +Version : 15.32.2.9 +Release : 72.el7 +Architecture: noarch +Install Date: Wed 16 Oct 2019 09:23:01 AM PDT +Group : System Environment/Kernel +Size : 287230 +License : Redistributable, no modification permitted +Signature : RSA/SHA256, Thu 22 Aug 2019 02:58:07 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : linux-firmware-20190429-72.gitddde598.el7.src.rpm +Build Date : Thu 08 Aug 2019 05:22:46 AM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/ +Summary : Firmware for Intel® PRO/Wireless 3945 A/B/G network adaptors +Description : +This package contains the firmware required by the iwl3945 driver +for Linux. Usage of the firmware is subject to the terms and conditions +contained inside the provided LICENSE file. Please read it carefully. +Name : groff-base +Version : 1.22.2 +Release : 8.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:20 AM PDT +Group : Applications/Publishing +Size : 3453946 +License : GPLv3+ and GFDL and BSD and MIT +Signature : RSA/SHA256, Thu 03 Jul 2014 06:45:51 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : groff-1.22.2-8.el7.src.rpm +Build Date : Mon 09 Jun 2014 01:17:26 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.gnu.org/software/groff/ +Summary : Parts of the groff formatting system required to display manual pages +Description : +The groff-base package contains only necessary parts of groff formatting +system which are required to display manual pages, and the groff's default +display device (PostScript). +Name : iwl5150-firmware +Version : 8.24.2.2 +Release : 72.el7 +Architecture: noarch +Install Date: Wed 16 Oct 2019 09:23:02 AM PDT +Group : System Environment/Kernel +Size : 474530 +License : Redistributable, no modification permitted +Signature : RSA/SHA256, Thu 22 Aug 2019 02:58:10 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : linux-firmware-20190429-72.gitddde598.el7.src.rpm +Build Date : Thu 08 Aug 2019 05:22:46 AM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/ +Summary : Firmware for Intel® PRO/Wireless 5150 A/G/N network adaptors +Description : +This package contains the firmware required by the iwl5150 driver +for Linux. Usage of the firmware is subject to the terms and conditions +contained inside the provided LICENSE file. Please read it carefully. +Name : libedit +Version : 3.0 +Release : 12.20121213cvs.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:20 AM PDT +Group : System Environment/Libraries +Size : 244257 +License : BSD +Signature : RSA/SHA256, Thu 03 Jul 2014 07:44:30 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : libedit-3.0-12.20121213cvs.el7.src.rpm +Build Date : Mon 09 Jun 2014 03:33:10 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.thrysoee.dk/editline/ +Summary : The NetBSD Editline library +Description : +Libedit is an autotool- and libtoolized port of the NetBSD Editline library. +It provides generic line editing, history, and tokenization functions, similar +to those found in GNU Readline. +Name : iwl6000g2a-firmware +Version : 17.168.5.3 +Release : 72.el7 +Architecture: noarch +Install Date: Wed 16 Oct 2019 09:23:02 AM PDT +Group : System Environment/Kernel +Size : 1258554 +License : Redistributable, no modification permitted +Signature : RSA/SHA256, Thu 22 Aug 2019 02:58:12 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : linux-firmware-20190429-72.gitddde598.el7.src.rpm +Build Date : Thu 08 Aug 2019 05:22:46 AM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/ +Summary : Firmware for Intel(R) Wireless WiFi Link 6005 Series Adapters +Description : +This package contains the firmware required by the iwlagn driver +for Linux. Usage of the firmware is subject to the terms and conditions +contained inside the provided LICENSE file. Please read it carefully. +Name : libnfnetlink +Version : 1.0.1 +Release : 4.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:21 AM PDT +Group : System Environment/Libraries +Size : 47123 +License : GPLv2+ +Signature : RSA/SHA256, Thu 03 Jul 2014 08:01:58 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : libnfnetlink-1.0.1-4.el7.src.rpm +Build Date : Mon 09 Jun 2014 05:21:22 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://netfilter.org +Summary : Netfilter netlink userspace library +Description : +libnfnetlink is a userspace library that provides some low-level +nfnetlink handling functions. It is used as a foundation for other, netfilter +subsystem specific libraries such as libnfnetlink_conntrack, libnfnetlink_log +and libnfnetlink_queue. +Name : iwl2030-firmware +Version : 18.168.6.1 +Release : 72.el7 +Architecture: noarch +Install Date: Wed 16 Oct 2019 09:23:05 AM PDT +Group : System Environment/Kernel +Size : 844522 +License : Redistributable, no modification permitted +Signature : RSA/SHA256, Thu 22 Aug 2019 02:58:05 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : linux-firmware-20190429-72.gitddde598.el7.src.rpm +Build Date : Thu 08 Aug 2019 05:22:46 AM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/ +Summary : Firmware for Intel(R) Centrino Wireless-N 2030 Series Adapters +Description : +This package contains the firmware required by the iwlagn driver +for Linux to support the iwl2030 hardware. Usage of the firmware +is subject to the terms and conditions contained inside the provided +LICENSE file. Please read it carefully. +Name : openldap +Version : 2.4.44 +Release : 21.el7_6 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 12:01:15 PM PDT +Group : System Environment/Daemons +Size : 1037424 +License : OpenLDAP +Signature : RSA/SHA256, Fri 01 Feb 2019 08:21:40 AM PST, Key ID 24c6a8a7f4a80eb5 +Source RPM : openldap-2.4.44-21.el7_6.src.rpm +Build Date : Tue 29 Jan 2019 09:43:41 AM PST +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.openldap.org/ +Summary : LDAP support libraries +Description : +OpenLDAP is an open source suite of LDAP (Lightweight Directory Access +Protocol) applications and development tools. LDAP is a set of +protocols for accessing directory services (usually phone book style +information, but other information is possible) over the Internet, +similar to the way DNS (Domain Name System) information is propagated +over the Internet. The openldap package contains configuration files, +libraries, and documentation for OpenLDAP. +Name : lsof +Version : 4.87 +Release : 6.el7 +Architecture: x86_64 +Install Date: Tue 22 Oct 2019 03:59:58 PM PDT +Group : Development/Debuggers +Size : 949035 +License : zlib and Sendmail and LGPLv2+ +Signature : RSA/SHA256, Mon 12 Nov 2018 06:39:26 AM PST, Key ID 24c6a8a7f4a80eb5 +Source RPM : lsof-4.87-6.el7.src.rpm +Build Date : Tue 30 Oct 2018 09:28:20 AM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://people.freebsd.org/~abe/ +Summary : A utility which lists open files on a Linux/UNIX system +Description : +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. +Name : sysstat +Version : 10.1.5 +Release : 18.el7 +Architecture: x86_64 +Install Date: Tue 29 Oct 2019 11:35:07 PM PDT +Group : Applications/System +Size : 1172464 +License : GPLv2+ +Signature : RSA/SHA256, Thu 22 Aug 2019 02:44:12 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : sysstat-10.1.5-18.el7.src.rpm +Build Date : Thu 08 Aug 2019 07:54:59 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://sebastien.godard.pagesperso-orange.fr/ +Summary : Collection of performance monitoring tools for Linux +Description : +The sysstat package contains sar, sadf, mpstat, iostat, pidstat, nfsiostat-sysstat, +tapestat, cifsiostat and sa tools for Linux. +The sar command collects and reports system activity information. This +information can be saved in a file in a binary format for future inspection. The +statistics reported by sar concern I/O transfer rates, paging activity, +process-related activities, interrupts, network activity, memory and swap space +utilization, CPU utilization, kernel activities and TTY statistics, among +others. Both UP and SMP machines are fully supported. +The sadf command may be used to display data collected by sar in various formats +(CSV, XML, etc.). +The iostat command reports CPU utilization and I/O statistics for disks. +The tapestat command reports statistics for tapes connected to the system. +The mpstat command reports global and per-processor statistics. +The pidstat command reports statistics for Linux tasks (processes). +The nfsiostat-sysstat command reports I/O statistics for network file systems. +The cifsiostat command reports I/O statistics for CIFS file systems. +Name : pciutils-libs +Version : 3.5.1 +Release : 3.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:22 AM PDT +Group : System Environment/Libraries +Size : 72691 +License : GPLv2+ +Signature : RSA/SHA256, Wed 25 Apr 2018 04:34:19 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : pciutils-3.5.1-3.el7.src.rpm +Build Date : Tue 10 Apr 2018 07:50:42 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://atrey.karlin.mff.cuni.cz/~mj/pciutils.shtml +Summary : Linux PCI library +Description : +This package contains a library for inspecting and setting +devices connected to the PCI bus. +Name : rubygem-bigdecimal +Version : 1.2.0 +Release : 36.el7 +Architecture: x86_64 +Install Date: Sat 16 Nov 2019 02:29:24 PM PST +Group : Development/Libraries +Size : 84611 +License : GPL+ or Artistic +Signature : RSA/SHA256, Thu 22 Aug 2019 02:42:56 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : ruby-2.0.0.648-36.el7.src.rpm +Build Date : Thu 08 Aug 2019 05:30:13 AM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://ruby-lang.org/ +Summary : BigDecimal provides arbitrary-precision floating point decimal arithmetic +Description : +Ruby provides built-in support for arbitrary precision integer arithmetic. +For example: + +42**13 -> 1265437718438866624512 + +BigDecimal provides similar support for very large or very accurate floating +point numbers. Decimal arithmetic is also useful for general calculation, +because it provides the correct answers people expect–whereas normal binary +floating point arithmetic often introduces subtle errors because of the +conversion between base 10 and base 2. +Name : ruby-irb +Version : 2.0.0.648 +Release : 36.el7 +Architecture: noarch +Install Date: Sat 16 Nov 2019 02:29:25 PM PST +Group : Development/Libraries +Size : 160544 +License : (Ruby or BSD) and Public Domain +Signature : RSA/SHA256, Thu 22 Aug 2019 03:00:54 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : ruby-2.0.0.648-36.el7.src.rpm +Build Date : Thu 08 Aug 2019 05:30:13 AM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://ruby-lang.org/ +Summary : The Interactive Ruby +Description : +The irb is acronym for Interactive Ruby. It evaluates ruby expression +from the terminal. +Name : python-configobj +Version : 4.7.2 +Release : 7.el7 +Architecture: noarch +Install Date: Thu 15 Aug 2019 10:53:23 AM PDT +Group : System Environment/Libraries +Size : 611855 +License : BSD +Signature : RSA/SHA256, Thu 03 Jul 2014 09:38:24 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : python-configobj-4.7.2-7.el7.src.rpm +Build Date : Mon 09 Jun 2014 11:57:08 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.voidspace.org.uk/python/configobj.html +Summary : Config file reading, writing, and validation +Description : +ConfigObj is a simple but powerful config file reader and writer: an ini file +round tripper. Its main feature is that it is very easy to use, with a +straightforward programmer's interface and a simple syntax for config files. +It has lots of other features though: + * Nested sections (subsections), to any level + * List values + * Multiple line values + * String interpolation (substitution) + * Integrated with a powerful validation system + o including automatic type checking/conversion + o repeated sections + o and allowing default values + * All comments in the file are preserved + * The order of keys/sections is preserved + * No external dependencies + * Full Unicode support + * A powerful unrepr mode for storing basic datatypes +Name : unzip +Version : 6.0 +Release : 20.el7 +Architecture: x86_64 +Install Date: Mon 13 Jan 2020 05:29:48 PM PST +Group : Applications/Archiving +Size : 373994 +License : BSD +Signature : RSA/SHA256, Thu 22 Aug 2019 02:44:59 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : unzip-6.0-20.el7.src.rpm +Build Date : Thu 08 Aug 2019 08:09:03 PM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.info-zip.org/UnZip.html +Summary : A utility for unpacking zip files +Description : +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. +Name : libnetfilter_conntrack +Version : 1.0.6 +Release : 1.el7_3 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:23 AM PDT +Group : System Environment/Libraries +Size : 143566 +License : GPLv2+ +Signature : RSA/SHA256, Thu 25 May 2017 04:23:10 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : libnetfilter_conntrack-1.0.6-1.el7_3.src.rpm +Build Date : Thu 25 May 2017 12:59:45 PM PDT +Build Host : c1bm.rdu2.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://netfilter.org +Summary : Netfilter conntrack userspace library +Description : +libnetfilter_conntrack is a userspace library providing a programming +interface (API) to the in-kernel connection tracking state table. +Name : mpfr +Version : 3.1.1 +Release : 4.el7 +Architecture: x86_64 +Install Date: Wed 08 Apr 2020 05:17:22 AM PDT +Group : System Environment/Libraries +Size : 554279 +License : LGPLv3+ and GPLv3+ and GFDL +Signature : RSA/SHA256, Thu 03 Jul 2014 08:49:45 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : mpfr-3.1.1-4.el7.src.rpm +Build Date : Mon 09 Jun 2014 06:11:54 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.mpfr.org/ +Summary : A C library for multiple-precision floating-point computations +Description : +The MPFR library is a C library for multiple-precision floating-point +computations with "correct rounding". The MPFR is efficient and +also has a well-defined semantics. It copies the good ideas from the +ANSI/IEEE-754 standard for double-precision floating-point arithmetic +(53-bit mantissa). MPFR is based on the GMP multiple-precision library. +Name : gettext +Version : 0.19.8.1 +Release : 2.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:23 AM PDT +Group : Development/Tools +Size : 5029340 +License : GPLv3+ and LGPLv2+ +Signature : RSA/SHA256, Thu 10 Aug 2017 09:07:43 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : gettext-0.19.8.1-2.el7.src.rpm +Build Date : Wed 02 Aug 2017 07:28:14 PM PDT +Build Host : c1bm.rdu2.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.gnu.org/software/gettext/ +Summary : GNU libraries and utilities for producing multi-lingual messages +Description : +The GNU gettext package provides a set of tools and documentation for +producing multi-lingual messages in programs. Tools include a set of +conventions about how programs should be written to support message +catalogs, a directory and file naming organization for the message +catalogs, a runtime library which supports the retrieval of translated +messages, and stand-alone programs for handling the translatable and +the already translated strings. Gettext provides an easy to use +library and tools for creating, using, and modifying natural language +catalogs and is a powerful and simple method for internationalizing +programs. +Name : glibc-headers +Version : 2.17 +Release : 292.el7 +Architecture: x86_64 +Install Date: Wed 08 Apr 2020 05:17:25 AM PDT +Group : Development/Libraries +Size : 2339702 +License : LGPLv2+ and LGPLv2+ with exceptions and GPLv2+ +Signature : RSA/SHA256, Thu 22 Aug 2019 02:24:45 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : glibc-2.17-292.el7.src.rpm +Build Date : Tue 06 Aug 2019 04:23:44 PM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.gnu.org/software/glibc/ +Summary : Header files for development using standard C libraries. +Description : +The glibc-headers package contains the header files necessary +for developing programs which use the standard C libraries (which are +used by nearly all programs). If you are developing programs which +will use the standard C libraries, your system needs to have these +standard header files available in order to create the +executables. + +Install glibc-headers if you are going to develop programs which will +use the standard C libraries. +Name : libsepol-devel +Version : 2.5 +Release : 10.el7 +Architecture: x86_64 +Install Date: Wed 08 Apr 2020 05:24:42 AM PDT +Group : Development/Libraries +Size : 126580 +License : LGPLv2+ +Signature : RSA/SHA256, Mon 12 Nov 2018 06:37:36 AM PST, Key ID 24c6a8a7f4a80eb5 +Source RPM : libsepol-2.5-10.el7.src.rpm +Build Date : Tue 30 Oct 2018 02:36:15 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://github.com/SELinuxProject/selinux/wiki +Summary : Header files and libraries used to build policy manipulation tools +Description : +The libsepol-devel package contains the libraries and header files +needed for developing applications that manipulate binary policies. +Name : gobject-introspection +Version : 1.56.1 +Release : 1.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:24 AM PDT +Group : Unspecified +Size : 854207 +License : GPLv2+, LGPLv2+, MIT +Signature : RSA/SHA256, Mon 12 Nov 2018 06:28:00 AM PST, Key ID 24c6a8a7f4a80eb5 +Source RPM : gobject-introspection-1.56.1-1.el7.src.rpm +Build Date : Fri 02 Nov 2018 08:25:09 AM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://wiki.gnome.org/Projects/GObjectIntrospection +Summary : Introspection system for GObject-based libraries +Description : +GObject Introspection can scan C header and source files in order to +generate introspection "typelib" files. It also provides an API to examine +typelib files, useful for creating language bindings among other +things. +Name : libcom_err-devel +Version : 1.42.9 +Release : 16.el7 +Architecture: x86_64 +Install Date: Wed 08 Apr 2020 05:24:42 AM PDT +Group : Development/Libraries +Size : 17196 +License : MIT +Signature : RSA/SHA256, Thu 22 Aug 2019 02:29:15 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : e2fsprogs-1.42.9-16.el7.src.rpm +Build Date : Thu 08 Aug 2019 04:19:51 PM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://e2fsprogs.sourceforge.net/ +Summary : Common error description library +Description : +This is the common error description development library and headers, +part of e2fsprogs. It contains the compile_et commmand, used +to convert a table listing error-code names and associated messages +messages into a C source file suitable for use with the library. + +libcom_err is an attempt to present a common error-handling mechanism. +Name : openssl-devel +Epoch : 1 +Version : 1.0.2k +Release : 19.el7 +Architecture: x86_64 +Install Date: Wed 08 Apr 2020 05:24:44 AM PDT +Group : Development/Libraries +Size : 3268775 +License : OpenSSL +Signature : RSA/SHA256, Thu 22 Aug 2019 02:37:32 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : openssl-1.0.2k-19.el7.src.rpm +Build Date : Thu 08 Aug 2019 06:40:02 PM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.openssl.org/ +Summary : Files for development of applications which will use OpenSSL +Description : +OpenSSL is a toolkit for supporting cryptography. The openssl-devel +package contains include files needed to develop applications which +support various cryptographic algorithms and protocols. +Name : bzip2 +Version : 1.0.6 +Release : 13.el7 +Architecture: x86_64 +Install Date: Tue 14 Apr 2020 08:13:29 AM PDT +Group : Applications/File +Size : 83791 +License : BSD +Signature : RSA/SHA256, Wed 25 Nov 2015 06:18:37 AM PST, Key ID 24c6a8a7f4a80eb5 +Source RPM : bzip2-1.0.6-13.el7.src.rpm +Build Date : Thu 19 Nov 2015 09:04:52 PM PST +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.bzip.org/ +Summary : A file compression utility +Description : +Bzip2 is a freely available, patent-free, high quality data compressor. +Bzip2 compresses files to within 10 to 15 percent of the capabilities +of the best techniques available. However, bzip2 has the added benefit +of being approximately two times faster at compression and six times +faster at decompression than those techniques. Bzip2 is not the +fastest compression utility, but it does strike a balance between speed +and compression capability. + +Install bzip2 if you need a compression utility. +Name : devtoolset-3-runtime +Version : 3.1 +Release : 12.el7 +Architecture: x86_64 +Install Date: Tue 14 Apr 2020 08:42:05 AM PDT +Group : Applications/File +Size : 6212 +License : GPLv2+ +Signature : RSA/SHA1, Sat 28 Nov 2015 06:50:56 AM PST, Key ID 4eb84e71f2ee9d55 +Source RPM : devtoolset-3-3.1-12.el7.src.rpm +Build Date : Mon 05 Oct 2015 03:10:53 PM PDT +Build Host : c1bj.rdu2.centos.org +Relocations : (not relocatable) +Packager : CBS +Vendor : CentOS +Summary : Package that handles devtoolset-3 Software Collection. +Description : +Package shipping essential scripts to work with devtoolset-3 Software Collection. +Name : kernel +Version : 3.10.0 +Release : 957.27.2.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 12:01:42 PM PDT +Group : System Environment/Kernel +Size : 66226363 +License : GPLv2 +Signature : RSA/SHA256, Wed 31 Jul 2019 12:52:32 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : kernel-3.10.0-957.27.2.el7.src.rpm +Build Date : Mon 29 Jul 2019 11:13:51 AM PDT +Build Host : kbuilder.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.kernel.org/ +Summary : The Linux kernel +Description : +The kernel package contains the Linux kernel (vmlinuz), the core of any +Linux operating system. The kernel handles the basic functions +of the operating system: memory allocation, process allocation, device +input and output, etc. +Name : python-urlgrabber +Version : 3.10 +Release : 9.el7 +Architecture: noarch +Install Date: Thu 15 Aug 2019 10:53:25 AM PDT +Group : Development/Libraries +Size : 503349 +License : LGPLv2+ +Signature : RSA/SHA256, Mon 12 Nov 2018 07:19:19 AM PST, Key ID 24c6a8a7f4a80eb5 +Source RPM : python-urlgrabber-3.10-9.el7.src.rpm +Build Date : Tue 30 Oct 2018 10:15:12 AM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://urlgrabber.baseurl.org/ +Summary : A high-level cross-protocol url-grabber +Description : +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. +Name : python3-pip +Version : 9.0.3 +Release : 5.el7 +Architecture: noarch +Install Date: Tue 15 Oct 2019 11:09:08 AM PDT +Group : Development/Libraries +Size : 9787341 +License : MIT and Python and ASL 2.0 and BSD and ISC and LGPLv2 and MPLv2.0 and (ASL 2.0 or BSD) +Signature : RSA/SHA256, Thu 22 Aug 2019 02:59:47 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : python-pip-9.0.3-5.el7.src.rpm +Build Date : Wed 07 Aug 2019 10:05:45 AM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.pip-installer.org +Summary : A tool for installing and managing Python3 packages +Description : +pip is a package management system used to install and manage software packages +written in Python. Many packages can be found in the Python Package Index +(PyPI). pip is a recursive acronym that can stand for either "Pip Installs +Packages" or "Pip Installs Python". +Name : gpg-pubkey +Version : 352c64e5 +Release : 52ae6884 +Architecture: (none) +Install Date: Mon 04 Jan 2021 12:31:55 PM PST +Group : Public Keys +Size : 0 +License : pubkey +Signature : (none) +Source RPM : (none) +Build Date : Sun 15 Dec 2013 06:42:12 PM PST +Build Host : localhost +Relocations : (not relocatable) +Packager : Fedora EPEL (7) +Summary : gpg(Fedora EPEL (7) ) +Description : +-----BEGIN PGP PUBLIC KEY BLOCK----- +Version: rpm-4.11.3 (NSS-3) + +mQINBFKuaIQBEAC1UphXwMqCAarPUH/ZsOFslabeTVO2pDk5YnO96f+rgZB7xArB +OSeQk7B90iqSJ85/c72OAn4OXYvT63gfCeXpJs5M7emXkPsNQWWSju99lW+AqSNm +jYWhmRlLRGl0OO7gIwj776dIXvcMNFlzSPj00N2xAqjMbjlnV2n2abAE5gq6VpqP +vFXVyfrVa/ualogDVmf6h2t4Rdpifq8qTHsHFU3xpCz+T6/dGWKGQ42ZQfTaLnDM +jToAsmY0AyevkIbX6iZVtzGvanYpPcWW4X0RDPcpqfFNZk643xI4lsZ+Y2Er9Yu5 +S/8x0ly+tmmIokaE0wwbdUu740YTZjCesroYWiRg5zuQ2xfKxJoV5E+Eh+tYwGDJ +n6HfWhRgnudRRwvuJ45ztYVtKulKw8QQpd2STWrcQQDJaRWmnMooX/PATTjCBExB +9dkz38Druvk7IkHMtsIqlkAOQMdsX1d3Tov6BE2XDjIG0zFxLduJGbVwc/6rIc95 +T055j36Ez0HrjxdpTGOOHxRqMK5m9flFbaxxtDnS7w77WqzW7HjFrD0VeTx2vnjj +GqchHEQpfDpFOzb8LTFhgYidyRNUflQY35WLOzLNV+pV3eQ3Jg11UFwelSNLqfQf +uFRGc+zcwkNjHh5yPvm9odR1BIfqJ6sKGPGbtPNXo7ERMRypWyRz0zi0twARAQAB +tChGZWRvcmEgRVBFTCAoNykgPGVwZWxAZmVkb3JhcHJvamVjdC5vcmc+iQI4BBMB +AgAiBQJSrmiEAhsPBgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAAKCRBqL66iNSxk +5cfGD/4spqpsTjtDM7qpytKLHKruZtvuWiqt5RfvT9ww9GUUFMZ4ZZGX4nUXg49q +ixDLayWR8ddG/s5kyOi3C0uX/6inzaYyRg+Bh70brqKUK14F1BrrPi29eaKfG+Gu +MFtXdBG2a7OtPmw3yuKmq9Epv6B0mP6E5KSdvSRSqJWtGcA6wRS/wDzXJENHp5re +9Ism3CYydpy0GLRA5wo4fPB5uLdUhLEUDvh2KK//fMjja3o0L+SNz8N0aDZyn5Ax +CU9RB3EHcTecFgoy5umRj99BZrebR1NO+4gBrivIfdvD4fJNfNBHXwhSH9ACGCNv +HnXVjHQF9iHWApKkRIeh8Fr2n5dtfJEF7SEX8GbX7FbsWo29kXMrVgNqHNyDnfAB +VoPubgQdtJZJkVZAkaHrMu8AytwT62Q4eNqmJI1aWbZQNI5jWYqc6RKuCK6/F99q +thFT9gJO17+yRuL6Uv2/vgzVR1RGdwVLKwlUjGPAjYflpCQwWMAASxiv9uPyYPHc +ErSrbRG0wjIfAR3vus1OSOx3xZHZpXFfmQTsDP7zVROLzV98R3JwFAxJ4/xqeON4 +vCPFU6OsT3lWQ8w7il5ohY95wmujfr6lk89kEzJdOTzcn7DBbUru33CQMGKZ3Evt +RjsC7FDbL017qxS+ZVA/HGkyfiu4cpgV8VUnbql5eAZ+1Ll6Dw== +=hdPa +-----END PGP PUBLIC KEY BLOCK----- + +Name : perl-HTTP-Tiny +Version : 0.033 +Release : 3.el7 +Architecture: noarch +Install Date: Tue 15 Oct 2019 11:27:57 AM PDT +Group : Development/Libraries +Size : 97210 +License : GPL+ or Artistic +Signature : RSA/SHA256, Thu 03 Jul 2014 09:19:08 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : perl-HTTP-Tiny-0.033-3.el7.src.rpm +Build Date : Mon 09 Jun 2014 01:53:37 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://search.cpan.org/dist/HTTP-Tiny/ +Summary : Small, simple, correct HTTP/1.1 client +Description : +This is a very simple HTTP/1.1 client, designed for doing simple GET requests +without the overhead of a large framework like LWP::UserAgent. + +It is more correct and more complete than HTTP::Lite. It supports proxies +(currently only non-authenticating ones) and redirection. It also correctly +resumes after EINTR. +Name : acl +Version : 2.2.51 +Release : 14.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:27 AM PDT +Group : System Environment/Base +Size : 201225 +License : GPLv2+ +Signature : RSA/SHA256, Wed 25 Apr 2018 03:52:22 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : acl-2.2.51-14.el7.src.rpm +Build Date : Tue 10 Apr 2018 05:41:24 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://acl.bestbits.at/ +Summary : Access control list utilities +Description : +This package contains the getfacl and setfacl utilities needed for +manipulating access control lists. +Name : wireless-tools +Epoch : 1 +Version : 29 +Release : 13.el7 +Architecture: x86_64 +Install Date: Mon 04 Jan 2021 12:32:02 PM PST +Group : System Environment/Base +Size : 242259 +License : GPL+ +Signature : RSA/SHA256, Tue 16 Dec 2014 01:47:54 PM PST, Key ID 6a2faea2352c64e5 +Source RPM : wireless-tools-29-13.el7.src.rpm +Build Date : Mon 15 Dec 2014 01:39:37 PM PST +Build Host : buildhw-09.phx2.fedoraproject.org +Relocations : (not relocatable) +Packager : Fedora Project +Vendor : Fedora Project +URL : http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/Tools.html +Summary : Wireless ethernet configuration tools +Description : +This package contain the Wireless tools, used to manipulate +the Wireless Extensions. The Wireless Extension is an interface +allowing you to set Wireless LAN specific parameters and get the +specific stats for wireless networking equipment. +Name : perl-Encode +Version : 2.51 +Release : 7.el7 +Architecture: x86_64 +Install Date: Tue 15 Oct 2019 11:27:58 AM PDT +Group : Development/Libraries +Size : 10176350 +License : GPL+ or Artistic +Signature : RSA/SHA256, Thu 03 Jul 2014 09:17:22 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : perl-Encode-2.51-7.el7.src.rpm +Build Date : Mon 09 Jun 2014 07:49:45 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://search.cpan.org/dist/Encode/ +Summary : Character encodings in Perl +Description : +The Encode module provides the interface between Perl strings and the rest +of the system. Perl strings are sequences of characters. +Name : mozjs17 +Version : 17.0.0 +Release : 20.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:28 AM PDT +Group : Development/Languages +Size : 4045213 +License : GPLv2+ or LGPLv2+ or MPLv1.1 +Signature : RSA/SHA256, Wed 25 Apr 2018 04:27:32 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : mozjs17-17.0.0-20.el7.src.rpm +Build Date : Tue 10 Apr 2018 05:33:07 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.mozilla.org/js/ +Summary : JavaScript interpreter and libraries +Description : +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. +Name : oniguruma +Version : 6.8.2 +Release : 1.el7 +Architecture: x86_64 +Install Date: Wed 31 Mar 2021 06:30:28 PM PDT +Group : System Environment/Libraries +Size : 688419 +License : BSD +Signature : RSA/SHA256, Thu 28 May 2020 09:51:06 AM PDT, Key ID 6a2faea2352c64e5 +Source RPM : oniguruma-6.8.2-1.el7.src.rpm +Build Date : Tue 26 May 2020 12:24:56 PM PDT +Build Host : buildhw-03.phx2.fedoraproject.org +Relocations : (not relocatable) +Packager : Fedora Project +Vendor : Fedora Project +URL : https://github.com/kkos/oniguruma/ +Bug URL : https://bugz.fedoraproject.org/oniguruma +Summary : Regular expressions library +Description : +Oniguruma is a regular expressions library. +The characteristics of this library is that different character encoding +for every regular expression object can be specified. +(supported APIs: GNU regex, POSIX and Oniguruma native) +Name : perl-macros +Epoch : 4 +Version : 5.16.3 +Release : 294.el7_6 +Architecture: x86_64 +Install Date: Tue 15 Oct 2019 11:27:58 AM PDT +Group : Development/Languages +Size : 5134 +License : GPL+ or Artistic +Signature : RSA/SHA256, Thu 24 Jan 2019 05:22:17 AM PST, Key ID 24c6a8a7f4a80eb5 +Source RPM : perl-5.16.3-294.el7_6.src.rpm +Build Date : Mon 21 Jan 2019 02:12:20 PM PST +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.perl.org/ +Summary : Macros for rpmbuild +Description : +Macros for rpmbuild are needed during build of srpm in koji. This +sub-package must be installed into buildroot, so it will be needed +by perl. Perl is needed because of git. +Name : perl-Time-Local +Version : 1.2300 +Release : 2.el7 +Architecture: noarch +Install Date: Tue 15 Oct 2019 11:27:58 AM PDT +Group : Development/Libraries +Size : 44062 +License : GPL+ or Artistic +Signature : RSA/SHA256, Thu 03 Jul 2014 09:25:36 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : perl-Time-Local-1.2300-2.el7.src.rpm +Build Date : Mon 09 Jun 2014 12:31:30 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://search.cpan.org/dist/Time-Local/ +Summary : Efficiently compute time from local and GMT time +Description : +This module provides functions that are the inverse of built-in perl functions +localtime() and gmtime(). They accept a date as a six-element array, and +return the corresponding time(2) value in seconds since the system epoch +(Midnight, January 1, 1970 GMT on Unix, for example). This value can be +positive or negative, though POSIX only requires support for positive values, +so dates before the system's epoch may not work on all operating systems. +Name : perl-PathTools +Version : 3.40 +Release : 5.el7 +Architecture: x86_64 +Install Date: Tue 15 Oct 2019 11:27:58 AM PDT +Group : Development/Libraries +Size : 174131 +License : (GPL+ or Artistic) and BSD +Signature : RSA/SHA256, Thu 03 Jul 2014 09:22:03 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : perl-PathTools-3.40-5.el7.src.rpm +Build Date : Mon 09 Jun 2014 09:11:16 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://search.cpan.org/dist/PathTools/ +Summary : PathTools Perl module (Cwd, File::Spec) +Description : +This is the combined distribution for the File::Spec and Cwd modules. +Name : libutempter +Version : 1.1.6 +Release : 4.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:29 AM PDT +Group : System Environment/Libraries +Size : 49749 +License : LGPLv2+ +Signature : RSA/SHA256, Thu 03 Jul 2014 08:23:25 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : libutempter-1.1.6-4.el7.src.rpm +Build Date : Mon 09 Jun 2014 07:03:46 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : ftp://ftp.altlinux.org/pub/people/ldv/utempter +Summary : A privileged helper for utmp/wtmp updates +Description : +This library provides interface for terminal emulators such as +screen and xterm to record user sessions to utmp and wtmp files. +Name : perl-threads-shared +Version : 1.43 +Release : 6.el7 +Architecture: x86_64 +Install Date: Tue 15 Oct 2019 11:27:58 AM PDT +Group : Development/Libraries +Size : 73972 +License : GPL+ or Artistic +Signature : RSA/SHA256, Thu 03 Jul 2014 09:25:27 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : perl-threads-shared-1.43-6.el7.src.rpm +Build Date : Mon 09 Jun 2014 11:07:27 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://search.cpan.org/dist/threads-shared/ +Summary : Perl extension for sharing data structures between threads +Description : +By default, variables are private to each thread, and each newly created +thread gets a private copy of each existing variable. This module allows +you to share variables across different threads (and pseudo-forks on +Win32). It is used together with the threads module. +Name : perl-Getopt-Long +Version : 2.40 +Release : 3.el7 +Architecture: noarch +Install Date: Tue 15 Oct 2019 11:27:59 AM PDT +Group : Development/Libraries +Size : 134846 +License : GPLv2+ or Artistic +Signature : RSA/SHA256, Wed 25 Apr 2018 04:36:10 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : perl-Getopt-Long-2.40-3.el7.src.rpm +Build Date : Tue 10 Apr 2018 05:34:16 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://search.cpan.org/dist/Getopt-Long/ +Summary : Extended processing of command line options +Description : +The Getopt::Long module implements an extended getopt function called +GetOptions(). It parses the command line from @ARGV, recognizing and removing +specified options and their possible values. It adheres to the POSIX syntax +for command line options, with GNU extensions. In general, this means that +options have long names instead of single letters, and are introduced with +a double dash "--". Support for bundling of command line options, as was the +case with the more traditional single-letter approach, is provided but not +enabled by default. +Name : rsync +Version : 3.1.2 +Release : 6.el7_6.1 +Architecture: x86_64 +Install Date: Tue 15 Oct 2019 11:28:01 AM PDT +Group : Applications/Internet +Size : 834674 +License : GPLv3+ +Signature : RSA/SHA256, Mon 29 Apr 2019 08:47:46 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : rsync-3.1.2-6.el7_6.1.src.rpm +Build Date : Thu 25 Apr 2019 10:18:00 AM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://rsync.samba.org/ +Summary : A program for synchronizing files over a network +Description : +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. +Name : json-c +Version : 0.11 +Release : 4.el7_0 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:29 AM PDT +Group : Development/Libraries +Size : 65593 +License : MIT +Signature : RSA/SHA256, Sat 05 Jul 2014 08:25:00 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : json-c-0.11-4.el7_0.src.rpm +Build Date : Tue 24 Jun 2014 05:18:58 AM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://github.com/json-c/json-c/wiki +Summary : A JSON implementation in C +Description : +JSON-C implements a reference counting object model that allows you to easily +construct JSON objects in C, output them as JSON formatted strings and parse +JSON formatted strings back into the C representation of JSON objects. +Name : grub2-common +Epoch : 1 +Version : 2.02 +Release : 0.80.el7.centos +Architecture: noarch +Install Date: Wed 16 Oct 2019 09:21:16 AM PDT +Group : System Environment/Base +Size : 3915366 +License : GPLv3+ +Signature : RSA/SHA256, Thu 22 Aug 2019 02:57:37 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : grub2-2.02-0.80.el7.centos.src.rpm +Build Date : Thu 08 Aug 2019 04:31:11 AM PDT +Build Host : kbuilder.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.gnu.org/software/grub/ +Summary : grub2 common layout +Description : +This package provides some directories which are required by various grub2 +subpackages. +Name : bind-license +Epoch : 32 +Version : 9.11.4 +Release : 9.P2.el7 +Architecture: noarch +Install Date: Wed 16 Oct 2019 09:21:17 AM PDT +Group : Unspecified +Size : 29711 +License : MPLv2.0 +Signature : RSA/SHA256, Thu 22 Aug 2019 02:56:52 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : bind-9.11.4-9.P2.el7.src.rpm +Build Date : Thu 08 Aug 2019 05:20:30 AM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.isc.org/products/BIND/ +Summary : License of the BIND DNS suite +Description : +Contains license of the BIND DNS suite. +Name : bash +Version : 4.2.46 +Release : 33.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:18 AM PDT +Group : System Environment/Shells +Size : 3667788 +License : GPLv3+ +Signature : RSA/SHA256, Thu 22 Aug 2019 02:20:37 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : bash-4.2.46-33.el7.src.rpm +Build Date : Thu 08 Aug 2019 05:09:21 AM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.gnu.org/software/bash +Summary : The GNU Bourne Again shell +Description : +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. +Name : nspr +Version : 4.21.0 +Release : 1.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:26 AM PDT +Group : System Environment/Libraries +Size : 287576 +License : MPLv2.0 +Signature : RSA/SHA256, Thu 22 Aug 2019 02:36:23 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : nspr-4.21.0-1.el7.src.rpm +Build Date : Thu 08 Aug 2019 06:16:40 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.mozilla.org/projects/nspr/ +Summary : Netscape Portable Runtime +Description : +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. +Name : polkit-pkla-compat +Version : 0.1 +Release : 4.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:32 AM PDT +Group : Unspecified +Size : 82409 +License : LGPLv2+ +Signature : RSA/SHA256, Thu 03 Jul 2014 09:32:08 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : polkit-pkla-compat-0.1-4.el7.src.rpm +Build Date : Mon 09 Jun 2014 03:08:34 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://fedorahosted.org/polkit-pkla-compat/ +Summary : Rules for polkit to add compatibility with pklocalauthority +Description : +A polkit JavaScript rule and associated helpers that mostly provide +compatibility with the .pkla file format supported in polkit <= 0.105 for users +of later polkit releases. +Name : libcap +Version : 2.22 +Release : 10.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:27 AM PDT +Group : System Environment/Libraries +Size : 107365 +License : LGPLv2+ +Signature : RSA/SHA256, Thu 22 Aug 2019 02:29:10 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : libcap-2.22-10.el7.src.rpm +Build Date : Thu 08 Aug 2019 05:12:45 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://ftp.kernel.org/pub/linux/libs/security/linux-privs/kernel-2.6/ +Summary : Library for getting and setting POSIX.1e capabilities +Description : +libcap is a library for getting and setting POSIX.1e (formerly POSIX 6) +draft 15 capabilities. +Name : libuuid +Version : 2.23.2 +Release : 61.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:28 AM PDT +Group : Development/Libraries +Size : 20278 +License : BSD +Signature : RSA/SHA256, Thu 22 Aug 2019 02:33:45 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : util-linux-2.23.2-61.el7.src.rpm +Build Date : Thu 08 Aug 2019 08:10:20 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://en.wikipedia.org/wiki/Util-linux +Summary : Universally unique ID library +Description : +This is the universally unique ID library, part of util-linux. + +The libuuid library generates and parses 128-bit universally unique +id's (UUID's). A UUID is an identifier that is unique across both +space and time, with respect to the space of all UUIDs. A UUID can +be used for multiple purposes, from tagging objects with an extremely +short lifetime, to reliably identifying very persistent objects +across a network. + +See also the "uuid" package, which is a separate implementation. +Name : os-prober +Version : 1.58 +Release : 9.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:33 AM PDT +Group : System Environment/Base +Size : 97946 +License : GPLv2+ and GPL+ +Signature : RSA/SHA256, Sun 20 Nov 2016 11:50:19 AM PST, Key ID 24c6a8a7f4a80eb5 +Source RPM : os-prober-1.58-9.el7.src.rpm +Build Date : Sat 05 Nov 2016 08:30:02 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://kitenet.net/~joey/code/os-prober/ +Summary : Probes disks on the system for installed operating systems +Description : +This package detects other OSes available on a system and outputs the results +in a generic machine-readable format. Support for new OSes and Linux +distributions can be added easily. +Name : shadow-utils +Epoch : 2 +Version : 4.6 +Release : 5.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:29 AM PDT +Group : System Environment/Base +Size : 3887289 +License : BSD and GPLv2+ +Signature : RSA/SHA256, Thu 22 Aug 2019 02:43:30 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : shadow-utils-4.6-5.el7.src.rpm +Build Date : Thu 08 Aug 2019 07:51:03 PM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://pkg-shadow.alioth.debian.org/ +Summary : Utilities for managing accounts and shadow password files +Description : +The shadow-utils 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 a passwd 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. +Name : crontabs +Version : 1.11 +Release : 6.20121102git.el7 +Architecture: noarch +Install Date: Thu 15 Aug 2019 10:53:33 AM PDT +Group : System Environment/Base +Size : 3700 +License : Public Domain and GPLv2 +Signature : RSA/SHA256, Thu 03 Jul 2014 06:02:43 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : crontabs-1.11-6.20121102git.el7.src.rpm +Build Date : Mon 09 Jun 2014 03:14:31 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://fedorahosted.org/crontabs +Summary : Root crontab files used to schedule the execution of programs +Description : +This package is used by Fedora mainly for executing files by cron. + +The crontabs package contains root crontab files and directories. +You will need to install cron daemon to run the jobs from the crontabs. +The cron daemon such as cronie or fcron checks the crontab files to +see when particular commands are scheduled to be executed. If commands +are scheduled, it executes them. + +Crontabs handles a basic system function, so it should be installed on +your system. +Name : diffutils +Version : 3.3 +Release : 5.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:32 AM PDT +Group : Applications/Text +Size : 1065607 +License : GPLv3+ +Signature : RSA/SHA256, Thu 22 Aug 2019 02:22:21 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : diffutils-3.3-5.el7.src.rpm +Build Date : Thu 08 Aug 2019 04:11:40 PM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.gnu.org/software/diffutils/diffutils.html +Summary : A GNU collection of diff utilities +Description : +Diffutils includes four utilities: diff, cmp, diff3 and sdiff. Diff +compares two files and shows the differences, line by line. The cmp +command shows the offset and line numbers where two files differ, or +cmp can show the characters that differ between the two files. The +diff3 command shows the differences between three files. Diff3 can be +used when two people have made independent changes to a common +original; diff3 can produce a merged file that contains both sets of +changes and warnings about conflicts. The sdiff command can be used +to merge two files interactively. + +Install diffutils if you need to compare text files. +Name : nss-pem +Version : 1.0.3 +Release : 7.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:33 AM PDT +Group : Unspecified +Size : 205531 +License : MPLv1.1 +Signature : RSA/SHA256, Thu 22 Aug 2019 02:36:27 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : nss-pem-1.0.3-7.el7.src.rpm +Build Date : Thu 08 Aug 2019 06:16:30 PM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://github.com/kdudka/nss-pem +Summary : PEM file reader for Network Security Services (NSS) +Description : +PEM file reader for Network Security Services (NSS), implemented as a PKCS#11 +module. +Name : iptables +Version : 1.4.21 +Release : 33.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:34 AM PDT +Group : System Environment/Base +Size : 1555528 +License : GPLv2 +Signature : RSA/SHA256, Thu 22 Aug 2019 02:26:19 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : iptables-1.4.21-33.el7.src.rpm +Build Date : Thu 08 Aug 2019 04:42:19 AM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.netfilter.org/ +Summary : Tools for managing Linux kernel packet filtering capabilities +Description : +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. +Name : device-mapper-persistent-data +Version : 0.8.5 +Release : 1.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:35 AM PDT +Group : System Environment/Base +Size : 1344378 +License : GPLv3+ +Signature : RSA/SHA256, Thu 22 Aug 2019 02:22:15 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : device-mapper-persistent-data-0.8.5-1.el7.src.rpm +Build Date : Thu 08 Aug 2019 04:09:02 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://github.com/jthornber/thin-provisioning-tools +Summary : Device-mapper Persistent Data Tools +Description : +thin-provisioning-tools contains check,dump,restore,repair,rmap +and metadata_size tools to manage device-mapper thin provisioning +target metadata devices; cache check,dump,metadata_size,restore +and repair tools to manage device-mapper cache metadata devices +are included and era check, dump, restore and invalidate to manage +snapshot eras +Name : ebtables +Version : 2.0.10 +Release : 16.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:36 AM PDT +Group : System Environment/Base +Size : 350763 +License : GPLv2+ +Signature : RSA/SHA256, Wed 25 Apr 2018 03:57:57 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : ebtables-2.0.10-16.el7.src.rpm +Build Date : Tue 10 Apr 2018 07:44:57 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://ebtables.sourceforge.net/ +Summary : Ethernet Bridge frame table administration tool +Description : +Ethernet bridge tables is a firewalling tool to transparently filter network +traffic passing a bridge. The filtering possibilities are limited to link +layer filtering and some basic filtering on higher network layers. + +This tool is the userspace control for the bridge and ebtables kernel +components. + +The ebtables tool can be used together with the other Linux filtering tools, +like iptables. There are no known incompatibility issues. +Name : python-linux-procfs +Version : 0.4.11 +Release : 4.el7 +Architecture: noarch +Install Date: Wed 16 Oct 2019 09:21:36 AM PDT +Group : System Environment/Libraries +Size : 96890 +License : GPLv2 +Signature : RSA/SHA256, Thu 22 Aug 2019 03:00:02 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : python-linux-procfs-0.4.11-4.el7.src.rpm +Build Date : Thu 08 Aug 2019 07:08:25 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://git.kernel.org/pub/scm/libs/python/python-linux-procfs/python-linux-procfs.git +Summary : Linux /proc abstraction classes +Description : +Abstractions to extract information from the Linux kernel /proc files. +Name : grubby +Version : 8.28 +Release : 26.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:37 AM PDT +Group : System Environment/Base +Size : 131502 +License : GPLv2+ +Signature : RSA/SHA256, Thu 22 Aug 2019 02:25:19 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : grubby-8.28-26.el7.src.rpm +Build Date : Thu 08 Aug 2019 04:41:34 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://git.fedorahosted.org/git/grubby.git +Summary : Command line tool for updating bootloader configs +Description : +grubby is a command line tool for updating and displaying information about +the configuration files for the grub, lilo, elilo (ia64), yaboot (powerpc) +and zipl (s390) boot loaders. It is primarily designed to be used from scripts +which install new kernels and need to find information about the current boot +environment. +Name : libcurl +Version : 7.29.0 +Release : 54.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:39 AM PDT +Group : Development/Libraries +Size : 439320 +License : MIT +Signature : RSA/SHA256, Thu 22 Aug 2019 02:29:16 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : curl-7.29.0-54.el7.src.rpm +Build Date : Thu 08 Aug 2019 05:02:11 AM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://curl.haxx.se/ +Summary : A library for getting files from web servers +Description : +libcurl is a free and easy-to-use client-side URL transfer library, supporting +FTP, FTPS, HTTP, HTTPS, SCP, SFTP, TFTP, TELNET, DICT, LDAP, LDAPS, FILE, IMAP, +SMTP, POP3 and RTSP. libcurl supports SSL certificates, HTTP POST, HTTP PUT, +FTP uploading, HTTP form based upload, proxies, cookies, user+password +authentication (Basic, Digest, NTLM, Negotiate, Kerberos4), file transfer +resume, http proxy tunneling and more. +Name : rpm +Version : 4.11.3 +Release : 40.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:40 AM PDT +Group : System Environment/Base +Size : 2622933 +License : GPLv2+ +Signature : RSA/SHA256, Thu 22 Aug 2019 02:42:32 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : rpm-4.11.3-40.el7.src.rpm +Build Date : Tue 06 Aug 2019 03:50:54 PM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.rpm.org/ +Summary : The RPM package management system +Description : +The RPM Package Manager (RPM) is a powerful command line driven +package management system capable of installing, uninstalling, +verifying, querying, and updating software packages. Each software +package consists of an archive of files along with information about +the package like its version, a description, etc. +Name : yum-plugin-fastestmirror +Version : 1.1.31 +Release : 52.el7 +Architecture: noarch +Install Date: Wed 16 Oct 2019 09:21:40 AM PDT +Group : System Environment/Base +Size : 53895 +License : GPLv2+ +Signature : RSA/SHA256, Thu 22 Aug 2019 03:02:01 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : yum-utils-1.1.31-52.el7.src.rpm +Build Date : Thu 08 Aug 2019 08:26:47 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://yum.baseurl.org/download/yum-utils/ +Summary : Yum plugin which chooses fastest repository from a mirrorlist +Description : +This plugin sorts each repository's mirrorlist by connection speed +prior to downloading packages. +Name : oci-umount +Epoch : 2 +Version : 2.5 +Release : 3.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:41 AM PDT +Group : Applications/Text +Size : 67399 +License : GPLv3+ +Signature : RSA/SHA256, Mon 16 Sep 2019 05:33:35 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : oci-umount-2.5-3.el7.src.rpm +Build Date : Sun 15 Sep 2019 07:05:17 AM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://github.com/containers/oci-umount +Summary : OCI umount hook for docker +Description : +OCI umount hooks umount potential leaked mount points in a containers +mount name-spaces +Name : kbd +Version : 1.15.5 +Release : 15.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:46 AM PDT +Group : System Environment/Base +Size : 1383499 +License : GPLv2+ +Signature : RSA/SHA256, Mon 12 Nov 2018 06:30:42 AM PST, Key ID 24c6a8a7f4a80eb5 +Source RPM : kbd-1.15.5-15.el7.src.rpm +Build Date : Tue 30 Oct 2018 03:40:00 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://ftp.altlinux.org/pub/people/legion/kbd +Summary : Tools for configuring the console (keyboard, virtual terminals, etc.) +Description : +The kbd package contains tools for managing a Linux +system's console's behavior, including the keyboard, the screen +fonts, the virtual terminals and font files. +Name : libteam +Version : 1.27 +Release : 9.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:41 AM PDT +Group : System Environment/Libraries +Size : 100748 +License : LGPLv2+ +Signature : RSA/SHA256, Thu 22 Aug 2019 02:33:33 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : libteam-1.27-9.el7.src.rpm +Build Date : Thu 08 Aug 2019 05:33:37 PM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.libteam.org +Summary : Library for controlling team network device +Description : +This package contains a library which is a user-space +counterpart for team network driver. It provides an API +to control team network devices. +Name : ncurses +Version : 5.9 +Release : 14.20130511.el7_4 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:08 AM PDT +Group : System Environment/Base +Size : 439378 +License : MIT +Signature : RSA/SHA256, Thu 07 Sep 2017 05:43:11 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : ncurses-5.9-14.20130511.el7_4.src.rpm +Build Date : Wed 06 Sep 2017 03:08:29 PM PDT +Build Host : c1bm.rdu2.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://invisible-island.net/ncurses/ncurses.html +Summary : Ncurses support utilities +Description : +The curses library routines are a terminal-independent method of +updating character screens with reasonable optimization. The ncurses +(new curses) library is a freely distributable replacement for the +discontinued 4.4 BSD classic curses library. + +This package contains support utilities, including a terminfo compiler +tic, a decompiler infocmp, clear, tput, tset, and a termcap conversion +tool captoinfo. +Name : filesystem +Version : 3.2 +Release : 25.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:12 AM PDT +Group : System Environment/Base +Size : 0 +License : Public Domain +Signature : RSA/SHA256, Wed 25 Apr 2018 03:59:36 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : filesystem-3.2-25.el7.src.rpm +Build Date : Tue 10 Apr 2018 10:00:29 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://pagure.io/filesystem +Summary : The basic directory layout for a Linux system +Description : +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. +Name : info +Version : 5.1 +Release : 5.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:16 AM PDT +Group : System Environment/Base +Size : 494630 +License : GPLv3+ +Signature : RSA/SHA256, Wed 25 Apr 2018 04:05:32 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : texinfo-5.1-5.el7.src.rpm +Build Date : Tue 10 Apr 2018 06:03:36 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.gnu.org/software/texinfo/ +Summary : A stand-alone TTY-based reader for GNU texinfo documentation +Description : +The GNU project uses the texinfo file format for much of its +documentation. The info package provides a standalone TTY-based +browser program for viewing texinfo files. +Name : btrfs-progs +Version : 4.9.1 +Release : 1.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:57 AM PDT +Group : System Environment/Base +Size : 4142307 +License : GPLv2 +Signature : RSA/SHA256, Thu 10 Aug 2017 08:15:01 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : btrfs-progs-4.9.1-1.el7.src.rpm +Build Date : Sun 06 Aug 2017 09:32:37 AM PDT +Build Host : c1bm.rdu2.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://btrfs.wiki.kernel.org/index.php/Main_Page +Summary : Userspace programs for btrfs +Description : +The btrfs-progs package provides all the userspace programs needed to create, +check, modify and correct any inconsistencies in the btrfs filesystem. +Name : libsepol +Version : 2.5 +Release : 10.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:16 AM PDT +Group : System Environment/Libraries +Size : 686640 +License : LGPLv2+ +Signature : RSA/SHA256, Mon 12 Nov 2018 06:37:35 AM PST, Key ID 24c6a8a7f4a80eb5 +Source RPM : libsepol-2.5-10.el7.src.rpm +Build Date : Tue 30 Oct 2018 02:36:15 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://github.com/SELinuxProject/selinux/wiki +Summary : SELinux binary policy manipulation library +Description : +Security-enhanced Linux is a feature of the Linux® kernel and a number +of utilities with enhanced security functionality designed to add +mandatory access controls to Linux. The Security-enhanced Linux +kernel contains new architectural components originally developed to +improve the security of the Flask operating system. These +architectural components provide general support for the enforcement +of many kinds of mandatory access control policies, including those +based on the concepts of Type Enforcement®, Role-based Access +Control, and Multi-level Security. + +libsepol provides an API for the manipulation of SELinux binary policies. +It is used by checkpolicy (the policy compiler) and similar tools, as well +as by programs like load_policy that need to perform specific transformations +on binary policies such as customizing policy boolean settings. +Name : libsysfs +Version : 2.1.0 +Release : 16.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:57 AM PDT +Group : System Environment/Libraries +Size : 149365 +License : LGPLv2+ +Signature : RSA/SHA256, Thu 03 Jul 2014 08:20:01 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : sysfsutils-2.1.0-16.el7.src.rpm +Build Date : Mon 09 Jun 2014 05:06:19 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://sourceforge.net/projects/linux-diag/ +Summary : Shared library for interfacing with sysfs +Description : +Library used in handling linux kernel sysfs mounts and their various files. +Name : libattr +Version : 2.4.46 +Release : 13.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:16 AM PDT +Group : System Environment/Libraries +Size : 19896 +License : LGPLv2+ +Signature : RSA/SHA256, Wed 25 Apr 2018 04:11:11 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : attr-2.4.46-13.el7.src.rpm +Build Date : Tue 10 Apr 2018 05:40:44 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://acl.bestbits.at/ +Summary : Dynamic library for extended attribute support +Description : +This package contains the libattr.so dynamic library which contains +the extended attribute system calls and library functions. +Name : rootfiles +Version : 8.1 +Release : 11.el7 +Architecture: noarch +Install Date: Thu 15 Aug 2019 10:53:57 AM PDT +Group : System Environment/Base +Size : 599 +License : Public Domain +Signature : RSA/SHA256, Thu 03 Jul 2014 09:50:28 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : rootfiles-8.1-11.el7.src.rpm +Build Date : Mon 09 Jun 2014 01:11:33 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +Summary : The basic required files for the root user's directory +Description : +The rootfiles package contains basic required files that are placed +in the root user's account. These files are basically the same +as those in /etc/skel, which are placed in regular +users' home directories. +Name : libselinux +Version : 2.5 +Release : 14.1.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:16 AM PDT +Group : System Environment/Libraries +Size : 217874 +License : Public Domain +Signature : RSA/SHA256, Mon 12 Nov 2018 06:37:27 AM PST, Key ID 24c6a8a7f4a80eb5 +Source RPM : libselinux-2.5-14.1.el7.src.rpm +Build Date : Tue 30 Oct 2018 02:43:06 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://github.com/SELinuxProject/selinux/wiki +Summary : SELinux library and simple utilities +Description : +Security-enhanced Linux is a feature of the Linux® kernel and a number +of utilities with enhanced security functionality designed to add +mandatory access controls to Linux. The Security-enhanced Linux +kernel contains new architectural components originally developed to +improve the security of the Flask operating system. These +architectural components provide general support for the enforcement +of many kinds of mandatory access control policies, including those +based on the concepts of Type Enforcement®, Role-based Access +Control, and Multi-level Security. + +libselinux provides an API for SELinux applications to get and set +process and file security contexts and to obtain security policy +decisions. Required for any applications that use the SELinux API. +Name : grep +Version : 2.20 +Release : 3.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:16 AM PDT +Group : Applications/Text +Size : 1195131 +License : GPLv3+ +Signature : RSA/SHA256, Thu 10 Aug 2017 09:26:26 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : grep-2.20-3.el7.src.rpm +Build Date : Wed 02 Aug 2017 11:58:44 PM PDT +Build Host : c1bm.rdu2.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.gnu.org/software/grep/ +Summary : Pattern matching utilities +Description : +The GNU versions of commonly used grep utilities. Grep searches through +textual input for lines which contain a match to a specified pattern and then +prints the matching lines. GNU's grep utilities include grep, egrep and fgrep. + +GNU grep is needed by many scripts, so it shall be installed on every system. +Name : keyutils-libs +Version : 1.5.8 +Release : 3.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:16 AM PDT +Group : System Environment/Base +Size : 42138 +License : GPLv2+ and LGPLv2+ +Signature : RSA/SHA256, Thu 03 Jul 2014 07:30:59 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : keyutils-1.5.8-3.el7.src.rpm +Build Date : Mon 09 Jun 2014 07:17:55 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://people.redhat.com/~dhowells/keyutils/ +Summary : Key utilities library +Description : +This package provides a wrapper library for the key management facility system +calls. +Name : libverto +Version : 0.2.5 +Release : 4.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:16 AM PDT +Group : Unspecified +Size : 23060 +License : MIT +Signature : RSA/SHA256, Thu 03 Jul 2014 08:23:48 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : libverto-0.2.5-4.el7.src.rpm +Build Date : Tue 10 Jun 2014 12:44:21 AM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://fedorahosted.org/libverto/ +Summary : Main loop abstraction library +Description : +libverto provides a way for libraries to expose asynchronous interfaces +without having to choose a particular event loop, offloading this +decision to the end application which consumes the library. + +If you are packaging an application, not library, based on libverto, +you should depend either on a specific implementation module or you +can depend on the virtual provides 'libverto-module-base'. This will +ensure that you have at least one module installed that provides io, +timeout and signal functionality. Currently glib is the only module +that does not provide these three because it lacks signal. However, +glib will support signal in the future. +Name : p11-kit-trust +Version : 0.23.5 +Release : 3.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:16 AM PDT +Group : Unspecified +Size : 437261 +License : BSD +Signature : RSA/SHA256, Thu 10 Aug 2017 11:44:51 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : p11-kit-0.23.5-3.el7.src.rpm +Build Date : Fri 04 Aug 2017 04:37:00 PM PDT +Build Host : c1bm.rdu2.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://p11-glue.freedesktop.org/p11-kit.html +Summary : System trust module from p11-kit +Description : +The p11-kit-trust package contains a system trust PKCS#11 module which +contains certificate anchors and black lists. +Name : ivtv-firmware +Epoch : 2 +Version : 20080701 +Release : 26.el7 +Architecture: noarch +Install Date: Thu 15 Aug 2019 10:54:00 AM PDT +Group : System Environment/Kernel +Size : 857256 +License : Redistributable, no modification permitted +Signature : RSA/SHA256, Thu 03 Jul 2014 07:10:03 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : ivtv-firmware-20080701-26.el7.src.rpm +Build Date : Mon 09 Jun 2014 05:06:24 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://dl.ivtvdriver.org/ivtv/firmware/ +Summary : Firmware for the Hauppauge PVR 250/350/150/500/USB2 model series +Description : +This package contains the firmware for WinTV Hauppauge PVR +250/350/150/500/USB2 cards. +Name : xz-libs +Version : 5.2.2 +Release : 1.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:18 AM PDT +Group : System Environment/Libraries +Size : 239967 +License : LGPLv2+ +Signature : RSA/SHA256, Sun 20 Nov 2016 01:02:51 PM PST, Key ID 24c6a8a7f4a80eb5 +Source RPM : xz-5.2.2-1.el7.src.rpm +Build Date : Sat 05 Nov 2016 08:28:07 AM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://tukaani.org/xz/ +Summary : Libraries for decoding LZMA compression +Description : +Libraries for decoding files compressed with LZMA or XZ utils. +Name : gpg-pubkey +Version : f4a80eb5 +Release : 53a7ff4b +Architecture: (none) +Install Date: Thu 15 Aug 2019 12:00:08 PM PDT +Group : Public Keys +Size : 0 +License : pubkey +Signature : (none) +Source RPM : (none) +Build Date : Mon 23 Jun 2014 03:19:55 AM PDT +Build Host : localhost +Relocations : (not relocatable) +Packager : CentOS-7 Key (CentOS 7 Official Signing Key) +Summary : gpg(CentOS-7 Key (CentOS 7 Official Signing Key) ) +Description : +-----BEGIN PGP PUBLIC KEY BLOCK----- +Version: rpm-4.11.3 (NSS-3) + +mQINBFOn/0sBEADLDyZ+DQHkcTHDQSE0a0B2iYAEXwpPvs67cJ4tmhe/iMOyVMh9 +Yw/vBIF8scm6T/vPN5fopsKiW9UsAhGKg0epC6y5ed+NAUHTEa6pSOdo7CyFDwtn +4HF61Esyb4gzPT6QiSr0zvdTtgYBRZjAEPFVu3Dio0oZ5UQZ7fzdZfeixMQ8VMTQ +4y4x5vik9B+cqmGiq9AW71ixlDYVWasgR093fXiD9NLT4DTtK+KLGYNjJ8eMRqfZ +Ws7g7C+9aEGHfsGZ/SxLOumx/GfiTloal0dnq8TC7XQ/JuNdB9qjoXzRF+faDUsj +WuvNSQEqUXW1dzJjBvroEvgTdfCJfRpIgOrc256qvDMp1SxchMFltPlo5mbSMKu1 +x1p4UkAzx543meMlRXOgx2/hnBm6H6L0FsSyDS6P224yF+30eeODD4Ju4BCyQ0jO +IpUxmUnApo/m0eRelI6TRl7jK6aGqSYUNhFBuFxSPKgKYBpFhVzRM63Jsvib82rY +438q3sIOUdxZY6pvMOWRkdUVoz7WBExTdx5NtGX4kdW5QtcQHM+2kht6sBnJsvcB +JYcYIwAUeA5vdRfwLKuZn6SgAUKdgeOtuf+cPR3/E68LZr784SlokiHLtQkfk98j +NXm6fJjXwJvwiM2IiFyg8aUwEEDX5U+QOCA0wYrgUQ/h8iathvBJKSc9jQARAQAB +tEJDZW50T1MtNyBLZXkgKENlbnRPUyA3IE9mZmljaWFsIFNpZ25pbmcgS2V5KSA8 +c2VjdXJpdHlAY2VudG9zLm9yZz6JAjUEEwECAB8FAlOn/0sCGwMGCwkIBwMCBBUC +CAMDFgIBAh4BAheAAAoJECTGqKf0qA61TN0P/2730Th8cM+d1pEON7n0F1YiyxqG +QzwpC2Fhr2UIsXpi/lWTXIG6AlRvrajjFhw9HktYjlF4oMG032SnI0XPdmrN29lL +F+ee1ANdyvtkw4mMu2yQweVxU7Ku4oATPBvWRv+6pCQPTOMe5xPG0ZPjPGNiJ0xw +4Ns+f5Q6Gqm927oHXpylUQEmuHKsCp3dK/kZaxJOXsmq6syY1gbrLj2Anq0iWWP4 +Tq8WMktUrTcc+zQ2pFR7ovEihK0Rvhmk6/N4+4JwAGijfhejxwNX8T6PCuYs5Jiv +hQvsI9FdIIlTP4XhFZ4N9ndnEwA4AH7tNBsmB3HEbLqUSmu2Rr8hGiT2Plc4Y9AO +aliW1kOMsZFYrX39krfRk2n2NXvieQJ/lw318gSGR67uckkz2ZekbCEpj/0mnHWD +3R6V7m95R6UYqjcw++Q5CtZ2tzmxomZTf42IGIKBbSVmIS75WY+cBULUx3PcZYHD +ZqAbB0Dl4MbdEH61kOI8EbN/TLl1i077r+9LXR1mOnlC3GLD03+XfY8eEBQf7137 +YSMiW5r/5xwQk7xEcKlbZdmUJp3ZDTQBXT06vavvp3jlkqqH9QOE8ViZZ6aKQLqv +pL+4bs52jzuGwTMT7gOR5MzD+vT0fVS7Xm8MjOxvZgbHsAgzyFGlI1ggUQmU7lu3 +uPNL0eRx4S1G4Jn5 +=OGYX +-----END PGP PUBLIC KEY BLOCK----- + +Name : oci-systemd-hook +Epoch : 1 +Version : 0.2.0 +Release : 1.git05e6923.el7_6 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 12:00:19 PM PDT +Group : Applications/Text +Size : 72608 +License : GPLv3+ +Signature : RSA/SHA256, Tue 18 Jun 2019 11:59:33 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : oci-systemd-hook-0.2.0-1.git05e6923.el7_6.src.rpm +Build Date : Thu 13 Jun 2019 09:12:26 AM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://github.com/projectatomic/oci-systemd-hook +Summary : OCI systemd hook for docker +Description : +OCI systemd hooks enable running systemd in a OCI runc/docker container. +Name : python-ipaddress +Version : 1.0.16 +Release : 2.el7 +Architecture: noarch +Install Date: Thu 15 Aug 2019 12:00:19 PM PDT +Group : Unspecified +Size : 232357 +License : Python +Signature : RSA/SHA256, Sun 20 Nov 2016 12:15:58 PM PST, Key ID 24c6a8a7f4a80eb5 +Source RPM : python-ipaddress-1.0.16-2.el7.src.rpm +Build Date : Sat 05 Nov 2016 09:37:10 AM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://pypi.python.org/pypi/ipaddress/1.0.16 +Summary : Port of the python 3.3+ ipaddress module to 2.6+ +Description : +ipaddress provides the capabilities to create, manipulate and operate +on IPv4 and IPv6 addresses and networks. + +The functions and classes in this module make it straightforward to +handle various tasks related to IP addresses, including checking +whether or not two hosts are on the same subnet, iterating over all +hosts in a particular subnet, checking whether or not a string +represents a valid IP address or network definition, and so on. +Name : libgpg-error +Version : 1.12 +Release : 3.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:18 AM PDT +Group : System Environment/Libraries +Size : 350865 +License : LGPLv2+ +Signature : RSA/SHA256, Thu 03 Jul 2014 07:49:22 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : libgpg-error-1.12-3.el7.src.rpm +Build Date : Tue 10 Jun 2014 01:46:48 AM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : ftp://ftp.gnupg.org/gcrypt/libgpg-error/ +Summary : Library for error values used by GnuPG components +Description : +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. +Name : libyaml +Version : 0.1.4 +Release : 11.el7_0 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 12:00:19 PM PDT +Group : System Environment/Libraries +Size : 132993 +License : MIT +Signature : RSA/SHA256, Thu 29 Jan 2015 03:55:31 PM PST, Key ID 24c6a8a7f4a80eb5 +Source RPM : libyaml-0.1.4-11.el7_0.src.rpm +Build Date : Thu 29 Jan 2015 03:44:10 PM PST +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://pyyaml.org/ +Summary : YAML 1.1 parser and emitter written in C +Description : +YAML is a data serialization format designed for human readability and +interaction with scripting languages. LibYAML is a YAML parser and +emitter written in C. +Name : gzip +Version : 1.5 +Release : 10.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:18 AM PDT +Group : Applications/File +Size : 250440 +License : GPLv3+ and GFDL +Signature : RSA/SHA256, Wed 25 Apr 2018 04:04:30 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : gzip-1.5-10.el7.src.rpm +Build Date : Tue 10 Apr 2018 05:01:18 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.gzip.org/ +Summary : The GNU data compression program +Description : +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. +Name : python-backports-ssl_match_hostname +Version : 3.5.0.1 +Release : 1.el7 +Architecture: noarch +Install Date: Thu 15 Aug 2019 12:00:19 PM PDT +Group : Unspecified +Size : 18824 +License : Python +Signature : RSA/SHA256, Wed 25 Apr 2018 04:38:25 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : python-backports-ssl_match_hostname-3.5.0.1-1.el7.src.rpm +Build Date : Tue 10 Apr 2018 07:25:31 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://bitbucket.org/brandon/backports.ssl_match_hostname +Summary : The ssl.match_hostname() function from Python 3 +Description : +The Secure Sockets layer is only actually secure if you check the hostname in +the certificate returned by the server to which you are connecting, and verify +that it matches to hostname that you are trying to reach. + +But the matching logic, defined in RFC2818, can be a bit tricky to implement on +your own. So the ssl package in the Standard Library of Python 3.2 now includes +a match_hostname() function for performing this check instead of requiring +every application to implement the check separately. + +This backport brings match_hostname() to users of earlier versions of Python. +The actual code is only slightly modified from Python 3.5. +Name : expat +Version : 2.1.0 +Release : 10.el7_3 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:18 AM PDT +Group : System Environment/Libraries +Size : 208315 +License : MIT +Signature : RSA/SHA256, Mon 28 Nov 2016 02:32:05 PM PST, Key ID 24c6a8a7f4a80eb5 +Source RPM : expat-2.1.0-10.el7_3.src.rpm +Build Date : Mon 28 Nov 2016 02:27:00 PM PST +Build Host : c1bm.rdu2.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.libexpat.org/ +Summary : An XML parser library +Description : +This is expat, the C library for parsing XML, written by James Clark. Expat +is a stream oriented XML parser. This means that you register handlers with +the parser prior to starting the parse. These handlers are called when the +parser discovers the associated structures in the document being parsed. A +start tag is an example of the kind of structures for which you may +register handlers. +Name : checkpolicy +Version : 2.5 +Release : 8.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 12:00:20 PM PDT +Group : Development/System +Size : 1288327 +License : GPLv2 +Signature : RSA/SHA256, Mon 12 Nov 2018 06:22:21 AM PST, Key ID 24c6a8a7f4a80eb5 +Source RPM : checkpolicy-2.5-8.el7.src.rpm +Build Date : Tue 30 Oct 2018 02:48:39 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +Summary : SELinux policy compiler +Description : +Security-enhanced Linux is a feature of the Linux® kernel and a number +of utilities with enhanced security functionality designed to add +mandatory access controls to Linux. The Security-enhanced Linux +kernel contains new architectural components originally developed to +improve the security of the Flask operating system. These +architectural components provide general support for the enforcement +of many kinds of mandatory access control policies, including those +based on the concepts of Type Enforcement®, Role-based Access +Control, and Multi-level Security. + +This package contains checkpolicy, the SELinux policy compiler. +Only required for building policies. +Name : findutils +Epoch : 1 +Version : 4.5.11 +Release : 6.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:18 AM PDT +Group : Applications/File +Size : 1855882 +License : GPLv3+ +Signature : RSA/SHA256, Mon 12 Nov 2018 06:25:15 AM PST, Key ID 24c6a8a7f4a80eb5 +Source RPM : findutils-4.5.11-6.el7.src.rpm +Build Date : Tue 30 Oct 2018 09:43:54 AM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.gnu.org/software/findutils/ +Summary : The GNU versions of find utilities (find and xargs) +Description : +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. +Name : libsemanage-python +Version : 2.5 +Release : 14.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 12:00:20 PM PDT +Group : Development/Libraries +Size : 451817 +License : LGPLv2+ +Signature : RSA/SHA256, Mon 12 Nov 2018 06:37:33 AM PST, Key ID 24c6a8a7f4a80eb5 +Source RPM : libsemanage-2.5-14.el7.src.rpm +Build Date : Tue 30 Oct 2018 04:44:33 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://github.com/SELinuxProject/selinux/wiki +Summary : semanage python bindings for libsemanage +Description : +The libsemanage-python package contains the python bindings for developing +SELinux management applications. +Name : python-pytoml +Version : 0.1.14 +Release : 1.git7dea353.el7 +Architecture: noarch +Install Date: Thu 15 Aug 2019 12:00:20 PM PDT +Group : Unspecified +Size : 37995 +License : MIT +Signature : RSA/SHA256, Tue 28 Nov 2017 01:46:33 PM PST, Key ID 24c6a8a7f4a80eb5 +Source RPM : python-pytoml-0.1.14-1.git7dea353.el7.src.rpm +Build Date : Tue 28 Nov 2017 01:35:01 PM PST +Build Host : c1bm.rdu2.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://github.com/avakar/pytoml +Summary : Parser for TOML +Description : +A parser for TOML-0.4.0 +Name : cracklib +Version : 2.9.0 +Release : 11.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:19 AM PDT +Group : System Environment/Libraries +Size : 209610 +License : LGPLv2+ +Signature : RSA/SHA256, Thu 03 Jul 2014 06:02:11 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : cracklib-2.9.0-11.el7.src.rpm +Build Date : Mon 09 Jun 2014 10:42:13 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://sourceforge.net/projects/cracklib/ +Summary : A password-checking library +Description : +CrackLib tests passwords to determine whether they match certain +security-oriented characteristics, with the purpose of stopping users +from choosing passwords that are easy to guess. CrackLib performs +several tests on passwords: it tries to generate words from a username +and gecos entry and checks those words against the password; it checks +for simplistic patterns in passwords; and it checks for the password +in a dictionary. + +CrackLib is actually a library containing a particular C function +which is used to check the password, as well as other C +functions. CrackLib is not a replacement for a passwd program; it must +be used in conjunction with an existing passwd program. + +Install the cracklib package if you need a program to check users' +passwords to see if they are at least minimally secure. If you install +CrackLib, you will also want to install the cracklib-dicts package. +Name : python-IPy +Version : 0.75 +Release : 6.el7 +Architecture: noarch +Install Date: Thu 15 Aug 2019 12:00:20 PM PDT +Group : System Environment/Libraries +Size : 121946 +License : BSD +Signature : RSA/SHA256, Thu 03 Jul 2014 09:39:22 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : python-IPy-0.75-6.el7.src.rpm +Build Date : Tue 10 Jun 2014 12:18:29 AM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://github.com/haypo/python-ipy +Summary : Python module for handling IPv4 and IPv6 Addresses and Networks +Description : +IPy is a Python module for handling IPv4 and IPv6 Addresses and Networks +in a fashion similar to perl's Net::IP and friends. The IP class allows +a comfortable parsing and handling for most notations in use for IPv4 +and IPv6 Addresses and Networks. +Name : shared-mime-info +Version : 1.8 +Release : 4.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:19 AM PDT +Group : System Environment/Base +Size : 2379317 +License : GPLv2+ +Signature : RSA/SHA256, Wed 25 Apr 2018 04:46:39 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : shared-mime-info-1.8-4.el7.src.rpm +Build Date : Tue 10 Apr 2018 05:37:03 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://freedesktop.org/Software/shared-mime-info +Summary : Shared MIME information database +Description : +This is the freedesktop.org shared MIME info database. + +Many programs and desktops use the MIME system to represent the types of +files. Frequently, it is necessary to work out the correct MIME type for +a file. This is generally done by examining the file's name or contents, +and looking up the correct MIME type in a database. +Name : file +Version : 5.11 +Release : 35.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:19 AM PDT +Group : Applications/File +Size : 67448 +License : BSD +Signature : RSA/SHA256, Mon 12 Nov 2018 06:25:08 AM PST, Key ID 24c6a8a7f4a80eb5 +Source RPM : file-5.11-35.el7.src.rpm +Build Date : Tue 30 Oct 2018 11:16:23 AM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.darwinsys.com/file/ +Summary : A utility for determining file types +Description : +The file command is used to identify a particular file according to the +type of data contained by the file. File can identify many different +file types, including ELF binaries, system libraries, RPM packages, and +different graphics formats. +Name : libaio +Version : 0.3.109 +Release : 13.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:19 AM PDT +Group : System Environment/Libraries +Size : 39182 +License : LGPLv2+ +Signature : RSA/SHA256, Wed 25 Nov 2015 06:50:55 AM PST, Key ID 24c6a8a7f4a80eb5 +Source RPM : libaio-0.3.109-13.el7.src.rpm +Build Date : Thu 19 Nov 2015 10:37:04 PM PST +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +Summary : Linux-native asynchronous I/O access library +Description : +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, libaio, provides the Linux-native API for async I/O. +The POSIX async I/O facility requires this library in order to provide +kernel-accelerated async I/O capabilities, as do applications which +require the Linux-native async I/O API. +Name : cracklib-dicts +Version : 2.9.0 +Release : 11.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:20 AM PDT +Group : System Environment/Libraries +Size : 9389116 +License : LGPLv2+ +Signature : RSA/SHA256, Thu 03 Jul 2014 06:02:17 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : cracklib-2.9.0-11.el7.src.rpm +Build Date : Mon 09 Jun 2014 10:42:13 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://sourceforge.net/projects/cracklib/ +Summary : The standard CrackLib dictionaries +Description : +The cracklib-dicts package includes the CrackLib dictionaries. +CrackLib will need to use the dictionary appropriate to your system, +which is normally put in /usr/share/dict/words. Cracklib-dicts also +contains the utilities necessary for the creation of new dictionaries. + +If you are installing CrackLib, you should also install cracklib-dicts. +Name : libpwquality +Version : 1.2.3 +Release : 5.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:20 AM PDT +Group : System Environment/Base +Size : 332421 +License : BSD or GPLv2+ +Signature : RSA/SHA256, Wed 25 Apr 2018 04:17:46 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : libpwquality-1.2.3-5.el7.src.rpm +Build Date : Tue 10 Apr 2018 08:58:19 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://github.com/libpwquality/libpwquality/ +Summary : A library for password generation and password quality checking +Description : +This is a library for password quality checks and generation +of random passwords that pass the checks. +This library uses the cracklib and cracklib dictionaries +to perform some of the checks. +Name : libassuan +Version : 2.1.0 +Release : 3.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:20 AM PDT +Group : System Environment/Libraries +Size : 155391 +License : LGPLv2+ and GPLv3+ +Signature : RSA/SHA256, Thu 03 Jul 2014 07:35:59 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : libassuan-2.1.0-3.el7.src.rpm +Build Date : Mon 09 Jun 2014 12:14:00 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.gnupg.org/ +Summary : GnuPG IPC library +Description : +This is the IPC library used by GnuPG 2, GPGME and a few other +packages. +Name : xz +Version : 5.2.2 +Release : 1.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:20 AM PDT +Group : Applications/File +Size : 798130 +License : LGPLv2+ +Signature : RSA/SHA256, Sun 20 Nov 2016 01:02:27 PM PST, Key ID 24c6a8a7f4a80eb5 +Source RPM : xz-5.2.2-1.el7.src.rpm +Build Date : Sat 05 Nov 2016 08:28:07 AM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://tukaani.org/xz/ +Summary : LZMA compression utilities +Description : +XZ Utils are an attempt to make LZMA compression easy to use on free (as in +freedom) operating systems. This is achieved by providing tools and libraries +which are similar to use than the equivalents of the most popular existing +compression algorithms. + +LZMA is a general purpose compression algorithm designed by Igor Pavlov as +part of 7-Zip. It provides high compression ratio while keeping the +decompression speed fast. +Name : libidn +Version : 1.28 +Release : 4.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:20 AM PDT +Group : System Environment/Libraries +Size : 630407 +License : LGPLv2+ and GPLv3+ and GFDL +Signature : RSA/SHA256, Wed 25 Nov 2015 06:58:28 AM PST, Key ID 24c6a8a7f4a80eb5 +Source RPM : libidn-1.28-4.el7.src.rpm +Build Date : Sat 21 Nov 2015 09:00:48 AM PST +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.gnu.org/software/libidn/ +Summary : Internationalized Domain Name support library +Description : +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. +Name : sysvinit-tools +Version : 2.88 +Release : 14.dsf.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:21 AM PDT +Group : System Environment/Base +Size : 109118 +License : GPLv2+ +Signature : RSA/SHA256, Thu 03 Jul 2014 10:09:36 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : sysvinit-2.88-14.dsf.el7.src.rpm +Build Date : Mon 09 Jun 2014 04:16:44 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://savannah.nongnu.org/projects/sysvinit/ +Summary : Tools used for process and utmp management. +Description : +The sysvinit-tools package contains various tools used for process +management. +Name : tcp_wrappers-libs +Version : 7.6 +Release : 77.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:21 AM PDT +Group : System Environment/Libraries +Size : 134602 +License : BSD +Signature : RSA/SHA256, Thu 03 Jul 2014 10:11:07 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : tcp_wrappers-7.6-77.el7.src.rpm +Build Date : Mon 09 Jun 2014 09:41:54 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : ftp://ftp.porcupine.org/pub/security/index.html +Summary : Libraries for tcp_wrappers +Description : +tcp_wrappers-libs contains the libraries of the tcp_wrappers package. +Name : newt +Version : 0.52.15 +Release : 4.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:21 AM PDT +Group : System Environment/Libraries +Size : 185196 +License : LGPLv2 +Signature : RSA/SHA256, Thu 03 Jul 2014 08:56:55 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : newt-0.52.15-4.el7.src.rpm +Build Date : Tue 10 Jun 2014 12:48:12 AM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://fedorahosted.org/newt/ +Summary : A library for text mode user interfaces +Description : +Newt is a programming library for color text mode, widget based user +interfaces. Newt can be used to add stacked windows, entry widgets, +checkboxes, radio buttons, labels, plain text fields, scrollbars, +etc., to text mode user interfaces. This package also contains the +shared library needed by programs built with newt, as well as a +/usr/bin/dialog replacement called whiptail. Newt is based on the +slang library. +Name : lzo +Version : 2.06 +Release : 8.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:21 AM PDT +Group : System Environment/Libraries +Size : 165360 +License : GPLv2+ +Signature : RSA/SHA256, Wed 25 Nov 2015 07:15:43 AM PST, Key ID 24c6a8a7f4a80eb5 +Source RPM : lzo-2.06-8.el7.src.rpm +Build Date : Thu 19 Nov 2015 11:26:41 PM PST +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.oberhumer.com/opensource/lzo/ +Summary : Data compression library with very fast (de)compression +Description : +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. +Name : bind-libs +Epoch : 32 +Version : 9.11.4 +Release : 9.P2.el7 +Architecture: x86_64 +Install Date: Wed 23 Oct 2019 10:53:22 AM PDT +Group : Unspecified +Size : 189424 +License : MPLv2.0 +Signature : RSA/SHA256, Thu 22 Aug 2019 02:20:48 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : bind-9.11.4-9.P2.el7.src.rpm +Build Date : Thu 08 Aug 2019 05:20:30 AM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.isc.org/products/BIND/ +Summary : Libraries used by the BIND DNS packages +Description : +Contains heavyweight version of BIND suite libraries used by both named DNS +server and utilities in bind-utils package. +Name : dbus +Epoch : 1 +Version : 1.10.24 +Release : 13.el7_6 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 12:01:17 PM PDT +Group : System Environment/Libraries +Size : 595216 +License : (GPLv2+ or AFL) and GPLv2+ +Signature : RSA/SHA256, Tue 19 Mar 2019 12:51:06 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : dbus-1.10.24-13.el7_6.src.rpm +Build Date : Thu 14 Mar 2019 03:18:13 AM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.freedesktop.org/Software/dbus/ +Summary : D-BUS message bus +Description : +D-BUS is a system for sending messages between applications. It is +used both for the system-wide message bus service, and as a +per-user-login-session messaging facility. +Name : python-decorator +Version : 3.4.0 +Release : 3.el7 +Architecture: noarch +Install Date: Thu 15 Aug 2019 10:53:22 AM PDT +Group : Development/Languages +Size : 72291 +License : BSD +Signature : RSA/SHA256, Thu 03 Jul 2014 09:38:41 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : python-decorator-3.4.0-3.el7.src.rpm +Build Date : Mon 09 Jun 2014 04:46:01 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://pypi.python.org/pypi/decorator/ +Summary : Module to simplify usage of decorators +Description : +The aim of the decorator module is to simplify the usage of decorators for +the average programmer, and to popularize decorators usage giving examples +of useful decorators, such as memoize, tracing, redirecting_stdout, locked, +etc. The core of this module is a decorator factory called decorator. +Name : lm_sensors-libs +Version : 3.4.0 +Release : 8.20160601gitf9185e5.el7 +Architecture: x86_64 +Install Date: Tue 29 Oct 2019 11:35:07 PM PDT +Group : System Environment/Libraries +Size : 61608 +License : LGPLv2+ and GPLv3+ and GPLv2+ and Verbatim and Public Domain +Signature : RSA/SHA256, Thu 22 Aug 2019 02:34:45 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : lm_sensors-3.4.0-8.20160601gitf9185e5.el7.src.rpm +Build Date : Thu 08 Aug 2019 05:42:14 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://github.com/groeck/lm-sensors/ +Summary : Lm_sensors core libraries +Description : +Core libraries for lm_sensors applications +Name : libnftnl +Version : 1.0.8 +Release : 1.el7 +Architecture: x86_64 +Install Date: Sun 10 Nov 2019 07:55:14 AM PST +Group : Unspecified +Size : 222704 +License : GPLv2+ +Signature : RSA/SHA256, Wed 25 Apr 2018 04:16:36 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : libnftnl-1.0.8-1.el7.src.rpm +Build Date : Tue 10 Apr 2018 06:42:24 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://netfilter.org/projects/libnftnl/ +Summary : Library for low-level interaction with nftables Netlink's API over libmnl +Description : +A library for low-level interaction with nftables Netlink's API over libmnl. +Name : libselinux-python +Version : 2.5 +Release : 14.1.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:22 AM PDT +Group : Development/Libraries +Size : 603236 +License : Public Domain +Signature : RSA/SHA256, Mon 12 Nov 2018 06:37:29 AM PST, Key ID 24c6a8a7f4a80eb5 +Source RPM : libselinux-2.5-14.1.el7.src.rpm +Build Date : Tue 30 Oct 2018 02:43:06 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://github.com/SELinuxProject/selinux/wiki +Summary : SELinux python bindings for libselinux +Description : +The libselinux-python package contains the python bindings for developing +SELinux applications. +Name : ruby-libs +Version : 2.0.0.648 +Release : 36.el7 +Architecture: x86_64 +Install Date: Sat 16 Nov 2019 02:29:24 PM PST +Group : Development/Libraries +Size : 10883299 +License : Ruby or BSD +Signature : RSA/SHA256, Thu 22 Aug 2019 02:43:01 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : ruby-2.0.0.648-36.el7.src.rpm +Build Date : Thu 08 Aug 2019 05:30:13 AM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://ruby-lang.org/ +Summary : Libraries necessary to run Ruby +Description : +This package includes the libruby, necessary to run Ruby. +Name : yum-metadata-parser +Version : 1.1.4 +Release : 10.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:23 AM PDT +Group : Development/Libraries +Size : 58789 +License : GPLv2 +Signature : RSA/SHA256, Thu 03 Jul 2014 10:53:04 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : yum-metadata-parser-1.1.4-10.el7.src.rpm +Build Date : Tue 10 Jun 2014 01:39:48 AM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://linux.duke.edu/projects/yum/ +Summary : A fast metadata parser for yum +Description : +Fast metadata parser for yum implemented in C. +Name : rubygem-json +Version : 1.7.7 +Release : 36.el7 +Architecture: x86_64 +Install Date: Sat 16 Nov 2019 02:29:24 PM PST +Group : Development/Libraries +Size : 94878 +License : Ruby or GPLv2 +Signature : RSA/SHA256, Thu 22 Aug 2019 02:42:58 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : ruby-2.0.0.648-36.el7.src.rpm +Build Date : Thu 08 Aug 2019 05:30:13 AM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://ruby-lang.org/ +Summary : This is a JSON implementation as a Ruby extension in C +Description : +This is a implementation of the JSON specification according to RFC 4627. +You can think of it as a low fat alternative to XML, if you want to store +data to disk or transmit it over a network rather than use a verbose +markup language. +Name : pyliblzma +Version : 0.5.3 +Release : 11.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:23 AM PDT +Group : Unspecified +Size : 190112 +License : LGPLv3+ +Signature : RSA/SHA256, Thu 03 Jul 2014 09:37:13 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : pyliblzma-0.5.3-11.el7.src.rpm +Build Date : Mon 09 Jun 2014 10:20:49 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://launchpad.net/pyliblzma +Summary : Python bindings for lzma +Description : +PylibLZMA provides a python interface for the liblzma library +to read and write data that has been compressed or can be decompressed +by Lasse Collin's lzma utils. +Name : rubygem-rdoc +Version : 4.0.0 +Release : 36.el7 +Architecture: noarch +Install Date: Sat 16 Nov 2019 02:29:25 PM PST +Group : Development/Libraries +Size : 1271686 +License : GPLv2 and Ruby and MIT +Signature : RSA/SHA256, Thu 22 Aug 2019 03:00:51 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : ruby-2.0.0.648-36.el7.src.rpm +Build Date : Thu 08 Aug 2019 05:30:13 AM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://ruby-lang.org/ +Summary : A tool to generate HTML and command-line documentation for Ruby projects +Description : +RDoc produces HTML and command-line documentation for Ruby projects. RDoc +includes the 'rdoc' and 'ri' tools for generating and displaying online +documentation. +Name : python-schedutils +Version : 0.4 +Release : 6.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:23 AM PDT +Group : System Environment/Libraries +Size : 43123 +License : GPLv2 +Signature : RSA/SHA256, Sun 20 Nov 2016 12:17:26 PM PST, Key ID 24c6a8a7f4a80eb5 +Source RPM : python-schedutils-0.4-6.el7.src.rpm +Build Date : Sat 05 Nov 2016 02:51:47 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://git.kernel.org/?p=linux/kernel/git/acme/python-schedutils.git +Summary : Linux scheduler python bindings +Description : +Python interface for the Linux scheduler sched_{get,set}{affinity,scheduler} +functions and friends. +Name : ruby +Version : 2.0.0.648 +Release : 36.el7 +Architecture: x86_64 +Install Date: Sat 16 Nov 2019 02:29:25 PM PST +Group : Development/Languages +Size : 64795 +License : (Ruby or BSD) and Public Domain +Signature : RSA/SHA256, Thu 22 Aug 2019 02:42:54 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : ruby-2.0.0.648-36.el7.src.rpm +Build Date : Thu 08 Aug 2019 05:30:13 AM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://ruby-lang.org/ +Summary : An interpreter of object-oriented scripting language +Description : +Ruby is the interpreted scripting language for quick and easy +object-oriented programming. It has many features to process text +files and to do system management tasks (as in Perl). It is simple, +straight-forward, and extensible. +Name : rubygems +Version : 2.0.14.1 +Release : 36.el7 +Architecture: noarch +Install Date: Sat 16 Nov 2019 02:29:25 PM PST +Group : Development/Libraries +Size : 600230 +License : Ruby or MIT +Signature : RSA/SHA256, Thu 22 Aug 2019 03:00:52 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : ruby-2.0.0.648-36.el7.src.rpm +Build Date : Thu 08 Aug 2019 05:30:13 AM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://ruby-lang.org/ +Summary : The Ruby standard for packaging ruby libraries +Description : +RubyGems is the Ruby standard for publishing and managing third party +libraries. +Name : pyxattr +Version : 0.5.1 +Release : 5.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:23 AM PDT +Group : Development/Libraries +Size : 63304 +License : LGPLv2+ +Signature : RSA/SHA256, Thu 03 Jul 2014 09:43:07 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : pyxattr-0.5.1-5.el7.src.rpm +Build Date : Mon 09 Jun 2014 03:24:57 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://pyxattr.sourceforge.net/ +Summary : Extended attributes library wrapper for Python +Description : +Python extension module wrapper for libattr. It allows to query, list, +add and remove extended attributes from files and directories. +Name : autogen-libopts +Version : 5.18 +Release : 5.el7 +Architecture: x86_64 +Install Date: Tue 03 Mar 2020 06:02:09 PM PST +Group : System Environment/Libraries +Size : 145381 +License : LGPLv3+ +Signature : RSA/SHA256, Thu 03 Jul 2014 05:44:16 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : autogen-5.18-5.el7.src.rpm +Build Date : Mon 09 Jun 2014 08:19:30 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.gnu.org/software/autogen/ +Summary : Automated option processing library based on autogen +Description : +Libopts is very powerful command line option parser consisting of a set of +AutoGen templates and a run time library that nearly eliminates the hassle of +parsing and documenting command line options. +Name : ntp +Version : 4.2.6p5 +Release : 29.el7.centos +Architecture: x86_64 +Install Date: Tue 03 Mar 2020 06:02:09 PM PST +Group : System Environment/Daemons +Size : 1434857 +License : (MIT and BSD and BSD with advertising) and GPLv2 +Signature : RSA/SHA256, Thu 22 Aug 2019 02:36:35 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : ntp-4.2.6p5-29.el7.centos.src.rpm +Build Date : Thu 08 Aug 2019 04:48:12 AM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.ntp.org +Summary : The NTP daemon and utilities +Description : +The Network Time Protocol (NTP) is used to synchronize a computer's +time with another reference time source. This package includes ntpd +(a daemon which continuously adjusts system time) and utilities used +to query and configure the ntpd daemon. + +Perl scripts ntp-wait and ntptrace are in the ntp-perl package, +ntpdate is in the ntpdate package and sntp is in the sntp package. +The documentation is in the ntp-doc package. +Name : gettext-libs +Version : 0.19.8.1 +Release : 2.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:23 AM PDT +Group : System Environment/Libraries +Size : 1546952 +License : LGPLv2+ and GPLv3+ +Signature : RSA/SHA256, Thu 10 Aug 2017 09:08:05 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : gettext-0.19.8.1-2.el7.src.rpm +Build Date : Wed 02 Aug 2017 07:28:14 PM PDT +Build Host : c1bm.rdu2.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.gnu.org/software/gettext/ +Summary : Libraries for gettext +Description : +This package contains libraries used internationalization support. +Name : libmpc +Version : 1.0.1 +Release : 3.el7 +Architecture: x86_64 +Install Date: Wed 08 Apr 2020 05:17:22 AM PDT +Group : Development/Tools +Size : 113833 +License : LGPLv3+ and GFDL +Signature : RSA/SHA256, Thu 03 Jul 2014 07:59:41 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : libmpc-1.0.1-3.el7.src.rpm +Build Date : Mon 09 Jun 2014 12:44:58 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.multiprecision.org/ +Summary : C library for multiple precision complex arithmetic +Description : + +MPC is a C library for the arithmetic of complex numbers with +arbitrarily high precision and correct rounding of the result. It is +built upon and follows the same principles as Mpfr. +Name : less +Version : 458 +Release : 9.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:23 AM PDT +Group : Applications/Text +Size : 215376 +License : GPLv3+ +Signature : RSA/SHA256, Thu 30 Jul 2015 04:52:46 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : less-458-9.el7.src.rpm +Build Date : Thu 30 Jul 2015 04:50:42 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.greenwoodsoftware.com/less/ +Summary : A text file browser similar to more, but better +Description : +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. +Name : kernel-headers +Version : 3.10.0 +Release : 1062.18.1.el7 +Architecture: x86_64 +Install Date: Wed 08 Apr 2020 05:17:24 AM PDT +Group : Development/System +Size : 3898858 +License : GPLv2 +Signature : RSA/SHA256, Wed 18 Mar 2020 09:50:23 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : kernel-3.10.0-1062.18.1.el7.src.rpm +Build Date : Tue 17 Mar 2020 05:04:12 PM PDT +Build Host : kbuilder.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.kernel.org/ +Summary : Header files for the Linux kernel for use by glibc +Description : +Kernel-headers includes the C header files that specify the interface +between the Linux kernel and userspace libraries and programs. The +header files define structures and constants that are needed for +building most standard programs and are also needed for rebuilding the +glibc package. +Name : glibc-devel +Version : 2.17 +Release : 292.el7 +Architecture: x86_64 +Install Date: Wed 08 Apr 2020 05:17:25 AM PDT +Group : Development/Libraries +Size : 1066078 +License : LGPLv2+ and LGPLv2+ with exceptions and GPLv2+ +Signature : RSA/SHA256, Thu 22 Aug 2019 02:24:44 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : glibc-2.17-292.el7.src.rpm +Build Date : Tue 06 Aug 2019 04:23:44 PM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.gnu.org/software/glibc/ +Summary : Object files for development using standard C libraries. +Description : +The glibc-devel package contains the object files necessary +for developing programs which use the standard C libraries (which are +used by nearly all programs). If you are developing programs which +will use the standard C libraries, your system needs to have these +standard object files available in order to create the +executables. + +Install glibc-devel if you are going to develop programs which will +use the standard C libraries. +Name : keyutils-libs-devel +Version : 1.5.8 +Release : 3.el7 +Architecture: x86_64 +Install Date: Wed 08 Apr 2020 05:24:42 AM PDT +Group : System Environment/Base +Size : 29186 +License : GPLv2+ and LGPLv2+ +Signature : RSA/SHA256, Thu 03 Jul 2014 07:31:03 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : keyutils-1.5.8-3.el7.src.rpm +Build Date : Mon 09 Jun 2014 07:17:55 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://people.redhat.com/~dhowells/keyutils/ +Summary : Development package for building Linux key management utilities +Description : +This package provides headers and libraries for building key utilities. +Name : pkgconfig +Epoch : 1 +Version : 0.27.1 +Release : 4.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:24 AM PDT +Group : Development/Tools +Size : 105522 +License : GPLv2+ +Signature : RSA/SHA256, Thu 03 Jul 2014 09:28:33 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : pkgconfig-0.27.1-4.el7.src.rpm +Build Date : Mon 09 Jun 2014 03:05:48 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://pkgconfig.freedesktop.org +Summary : A tool for determining compilation options +Description : +The pkgconfig tool determines compilation options. For each required +library, it reads the configuration file and outputs the necessary +compiler and linker flags. +Name : pcre-devel +Version : 8.32 +Release : 17.el7 +Architecture: x86_64 +Install Date: Wed 08 Apr 2020 05:24:42 AM PDT +Group : Development/Libraries +Size : 1505771 +License : BSD +Signature : RSA/SHA256, Thu 10 Aug 2017 12:04:40 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : pcre-8.32-17.el7.src.rpm +Build Date : Tue 01 Aug 2017 08:08:12 PM PDT +Build Host : c1bm.rdu2.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.pcre.org/ +Summary : Development files for pcre +Description : +Development files (Headers, libraries for dynamic linking, etc) for pcre. +Name : python-gobject-base +Version : 3.22.0 +Release : 1.el7_4.1 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:24 AM PDT +Group : Unspecified +Size : 1123114 +License : LGPLv2+ and MIT +Signature : RSA/SHA256, Tue 21 Nov 2017 06:17:15 AM PST, Key ID 24c6a8a7f4a80eb5 +Source RPM : pygobject3-3.22.0-1.el7_4.1.src.rpm +Build Date : Tue 21 Nov 2017 04:44:25 AM PST +Build Host : c1bm.rdu2.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://wiki.gnome.org/Projects/PyGObject +Summary : Python 2 bindings for GObject Introspection base package +Description : +This package provides the non-cairo specific bits of the GObject Introspection +library. +Name : libkadm5 +Version : 1.15.1 +Release : 37.el7_7.2 +Architecture: x86_64 +Install Date: Wed 08 Apr 2020 05:24:42 AM PDT +Group : System Environment/Base +Size : 221000 +License : MIT +Signature : RSA/SHA256, Sat 14 Sep 2019 04:48:50 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : krb5-1.15.1-37.el7_7.2.src.rpm +Build Date : Fri 13 Sep 2019 11:07:42 AM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://web.mit.edu/kerberos/www/ +Summary : Kerberos 5 Administrative libraries +Description : +Kerberos is a network authentication system. The libkadm5 package +contains the libkadm5clnt and libkadm5serv shared objects, for use +ONLY by kerberos itself. Do not depend on this package. +Name : zlib-devel +Version : 1.2.7 +Release : 18.el7 +Architecture: x86_64 +Install Date: Wed 08 Apr 2020 05:24:42 AM PDT +Group : Development/Libraries +Size : 135536 +License : zlib and Boost +Signature : RSA/SHA256, Mon 12 Nov 2018 06:49:54 AM PST, Key ID 24c6a8a7f4a80eb5 +Source RPM : zlib-1.2.7-18.el7.src.rpm +Build Date : Tue 30 Oct 2018 01:24:40 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.zlib.net/ +Summary : Header files and libraries for Zlib development +Description : +The zlib-devel package contains the header files and libraries needed +to develop programs that use the zlib compression and decompression +library. +Name : fipscheck +Version : 1.4.1 +Release : 6.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:24 AM PDT +Group : System Environment/Libraries +Size : 38839 +License : BSD +Signature : RSA/SHA256, Thu 10 Aug 2017 08:53:42 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : fipscheck-1.4.1-6.el7.src.rpm +Build Date : Wed 02 Aug 2017 05:47:49 AM PDT +Build Host : c1bm.rdu2.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://fedorahosted.org/fipscheck/ +Summary : A library for integrity verification of FIPS validated modules +Description : +FIPSCheck is a library for integrity verification of FIPS validated +modules. The package also provides helper binaries for creation and +verification of the HMAC-SHA256 checksum files. +Name : krb5-devel +Version : 1.15.1 +Release : 37.el7_7.2 +Architecture: x86_64 +Install Date: Wed 08 Apr 2020 05:24:43 AM PDT +Group : Development/Libraries +Size : 796381 +License : MIT +Signature : RSA/SHA256, Sat 14 Sep 2019 04:48:30 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : krb5-1.15.1-37.el7_7.2.src.rpm +Build Date : Fri 13 Sep 2019 11:07:42 AM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://web.mit.edu/kerberos/www/ +Summary : Development files needed to compile Kerberos 5 programs +Description : +Kerberos is a network authentication system. The krb5-devel package +contains the header files and libraries needed for compiling Kerberos +5 programs. If you want to develop Kerberos-aware programs, you need +to install this package. +Name : gmp-devel +Epoch : 1 +Version : 6.0.0 +Release : 15.el7 +Architecture: x86_64 +Install Date: Tue 14 Apr 2020 08:10:08 AM PDT +Group : Development/Libraries +Size : 348562 +License : LGPLv3+ or GPLv2+ +Signature : RSA/SHA256, Thu 10 Aug 2017 09:14:34 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : gmp-6.0.0-15.el7.src.rpm +Build Date : Wed 02 Aug 2017 06:13:15 PM PDT +Build Host : c1bm.rdu2.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://gmplib.org/ +Summary : Development tools for the GNU MP arbitrary precision library +Description : +The libraries, header files and documentation for using the GNU MP +arbitrary precision library in applications. + +If you want to develop applications which will use the GNU MP library, +you'll need to install the gmp-devel package. You'll also need to +install the gmp package. +Name : libmpc-devel +Version : 1.0.1 +Release : 3.el7 +Architecture: x86_64 +Install Date: Tue 14 Apr 2020 08:10:08 AM PDT +Group : Development/Libraries +Size : 35779 +License : LGPLv3+ and GFDL +Signature : RSA/SHA256, Thu 03 Jul 2014 07:59:52 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : libmpc-1.0.1-3.el7.src.rpm +Build Date : Mon 09 Jun 2014 12:44:58 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.multiprecision.org/ +Summary : Header and shared development libraries for MPC +Description : +Header files and shared object symlinks for MPC is a C library. +Name : centos-release-scl-rh +Version : 2 +Release : 3.el7.centos +Architecture: noarch +Install Date: Tue 14 Apr 2020 08:41:32 AM PDT +Group : Unspecified +Size : 20015 +License : GPLv2 +Signature : RSA/SHA256, Mon 01 Apr 2019 05:41:53 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : centos-release-scl-rh-2-3.el7.centos.src.rpm +Build Date : Mon 29 Oct 2018 02:15:47 AM PDT +Build Host : c1bd.rdu2.centos.org +Relocations : (not relocatable) +Packager : CBS +Vendor : CentOS +URL : http://wiki.centos.org/SpecialInterestGroup/SCLo +Summary : Software collections from the CentOS SCLo SIG (upstream scl only) +Description : +yum Configs and basic docs for Software Collections as delivered via the CentOS SCLo SIG. +Name : scl-utils +Version : 20130529 +Release : 19.el7 +Architecture: x86_64 +Install Date: Tue 14 Apr 2020 08:42:05 AM PDT +Group : Applications/File +Size : 25141 +License : GPLv2+ +Signature : RSA/SHA256, Mon 12 Nov 2018 06:46:32 AM PST, Key ID 24c6a8a7f4a80eb5 +Source RPM : scl-utils-20130529-19.el7.src.rpm +Build Date : Tue 30 Oct 2018 12:17:57 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://fedorahosted.org/released/scl-utils/ +Summary : Utilities for alternative packaging +Description : +Run-time utility for alternative packaging. +Name : python-pycurl +Version : 7.19.0 +Release : 19.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:25 AM PDT +Group : Development/Languages +Size : 241513 +License : LGPLv2+ or MIT +Signature : RSA/SHA256, Sun 20 Nov 2016 12:16:58 PM PST, Key ID 24c6a8a7f4a80eb5 +Source RPM : python-pycurl-7.19.0-19.el7.src.rpm +Build Date : Sat 05 Nov 2016 08:10:54 AM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://pycurl.sourceforge.net/ +Summary : A Python interface to libcurl +Description : +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. +Name : devtoolset-3-gcc +Version : 4.9.2 +Release : 6.el7 +Architecture: x86_64 +Install Date: Tue 14 Apr 2020 08:42:08 AM PDT +Group : Development/Languages +Size : 53037442 +License : GPLv3+ and GPLv3+ with exceptions and GPLv2+ with exceptions and LGPLv2+ and BSD +Signature : RSA/SHA1, Sat 28 Nov 2015 06:50:43 AM PST, Key ID 4eb84e71f2ee9d55 +Source RPM : devtoolset-3-gcc-4.9.2-6.el7.src.rpm +Build Date : Sat 03 Oct 2015 08:15:45 AM PDT +Build Host : c1bj.rdu2.centos.org +Relocations : (not relocatable) +Packager : CBS +Vendor : CentOS +URL : http://gcc.gnu.org +Summary : GCC version 4.9 +Description : +The devtoolset-3-gcc package contains the GNU Compiler Collection version 4.9. +Name : net-tools +Version : 2.0 +Release : 0.25.20131004git.el7 +Architecture: x86_64 +Install Date: Tue 15 Oct 2019 10:40:39 AM PDT +Group : System Environment/Base +Size : 938978 +License : GPLv2+ +Signature : RSA/SHA256, Thu 22 Aug 2019 02:36:04 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : net-tools-2.0-0.25.20131004git.el7.src.rpm +Build Date : Thu 08 Aug 2019 06:10:26 PM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://sourceforge.net/projects/net-tools/ +Summary : Basic networking tools +Description : +The net-tools package contains basic networking tools, +including ifconfig, netstat, route, and others. +Most of them are obsolete. For replacement check iproute package. +Name : logrotate +Version : 3.8.6 +Release : 17.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:25 AM PDT +Group : System Environment/Base +Size : 107156 +License : GPL+ +Signature : RSA/SHA256, Mon 12 Nov 2018 06:39:25 AM PST, Key ID 24c6a8a7f4a80eb5 +Source RPM : logrotate-3.8.6-17.el7.src.rpm +Build Date : Tue 30 Oct 2018 12:13:00 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://github.com/logrotate/logrotate +Summary : Rotates, compresses, removes and mails system log files +Description : +The logrotate utility is designed to simplify the administration of +log files on a system which generates a lot of log files. Logrotate +allows for the automatic rotation compression, removal and mailing of +log files. Logrotate can be set to handle a log file daily, weekly, +monthly or when the log file gets to a certain size. Normally, +logrotate runs as a daily cron job. + +Install the logrotate package if you need a utility to deal with the +log files on your system. +Name : devtoolset-3-gcc-c++ +Version : 4.9.2 +Release : 6.el7 +Architecture: x86_64 +Install Date: Wed 15 Apr 2020 12:39:17 PM PDT +Group : Development/Languages +Size : 21072579 +License : GPLv3+ and GPLv3+ with exceptions and GPLv2+ with exceptions and LGPLv2+ and BSD +Signature : RSA/SHA1, Sat 28 Nov 2015 06:50:43 AM PST, Key ID 4eb84e71f2ee9d55 +Source RPM : devtoolset-3-gcc-4.9.2-6.el7.src.rpm +Build Date : Sat 03 Oct 2015 08:15:45 AM PDT +Build Host : c1bj.rdu2.centos.org +Relocations : (not relocatable) +Packager : CBS +Vendor : CentOS +URL : http://gcc.gnu.org +Summary : C++ support for GCC version 4.9 +Description : +This package adds C++ support to the GNU Compiler Collection +version 4.9. It includes support for most of the current C++ specification +and a lot of support for the upcoming C++ specification. +Name : python3-setuptools +Version : 39.2.0 +Release : 10.el7 +Architecture: noarch +Install Date: Tue 15 Oct 2019 11:09:07 AM PDT +Group : Applications/System +Size : 3815469 +License : MIT and (BSD or ASL 2.0) +Signature : RSA/SHA256, Thu 22 Aug 2019 02:59:50 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : python3-setuptools-39.2.0-10.el7.src.rpm +Build Date : Wed 07 Aug 2019 09:59:57 AM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://pypi.python.org/pypi/setuptools +Summary : Easily build and distribute Python 3 packages +Description : +Setuptools is a collection of enhancements to the Python 3 distutils that allow +you to more easily build and distribute Python 3 packages, especially ones that +have dependencies on other packages. + +This package also contains the runtime components of setuptools, necessary to +execute the software that requires pkg_resources.py. +Name : centos-logos +Version : 70.0.6 +Release : 3.el7.centos +Architecture: noarch +Install Date: Thu 15 Aug 2019 10:53:27 AM PDT +Group : System Environment/Base +Size : 22548401 +License : Copyright © 2014 The CentOS Project. All rights reserved. +Signature : RSA/SHA256, Wed 30 Sep 2015 01:10:39 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : centos-logos-70.0.6-3.el7.centos.src.rpm +Build Date : Wed 30 Sep 2015 12:58:32 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.centos.org +Summary : CentOS-related icons and pictures +Description : +The redhat-logos package (the "Package") contains files created by the +CentOS Project to replace the Red Hat "Shadow Man" logo and RPM logo. +The Red Hat "Shadow Man" logo, RPM, and the RPM logo are trademarks or +registered trademarks of Red Hat, Inc. + +The Package and CentOS logos (the "Marks") can only used as outlined +in the included COPYING file. Please see that file for information on +copying and redistribution of the CentOS Marks. +Name : python3 +Version : 3.6.8 +Release : 10.el7 +Architecture: x86_64 +Install Date: Tue 15 Oct 2019 11:09:08 AM PDT +Group : Unspecified +Size : 39976 +License : Python +Signature : RSA/SHA256, Thu 22 Aug 2019 02:40:07 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : python3-3.6.8-10.el7.src.rpm +Build Date : Wed 07 Aug 2019 11:09:49 AM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://www.python.org/ +Summary : Interpreter of the Python programming language +Description : +Python is an accessible, high-level, dynamically typed, interpreted programming +language, designed with an emphasis on code readability. +It includes an extensive standard library, and has a vast ecosystem of +third-party libraries. + +The python3 package provides the "python3" executable: the reference +interpreter for the Python language, version 3. +The majority of its standard library is provided in the python3-libs package, +which should be installed automatically along with python3. +The remaining parts of the Python standard library are broken out into the +python3-tkinter and python3-test packages, which may need to be installed +separately. + +Documentation for Python is provided in the python3-docs package. + +Packages containing additional libraries for Python are generally named with +the "python3-" prefix. +Name : libselinux-utils +Version : 2.5 +Release : 14.1.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:27 AM PDT +Group : Development/Libraries +Size : 172645 +License : Public Domain +Signature : RSA/SHA256, Mon 12 Nov 2018 06:37:31 AM PST, Key ID 24c6a8a7f4a80eb5 +Source RPM : libselinux-2.5-14.1.el7.src.rpm +Build Date : Tue 30 Oct 2018 02:43:06 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://github.com/SELinuxProject/selinux/wiki +Summary : SELinux libselinux utilies +Description : +The libselinux-utils package contains the utilities +Name : epel-release +Version : 7 +Release : 11 +Architecture: noarch +Install Date: Mon 04 Jan 2021 12:31:39 PM PST +Group : System Environment/Base +Size : 24834 +License : GPLv2 +Signature : RSA/SHA256, Fri 11 May 2018 05:21:29 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : epel-release-7-11.src.rpm +Build Date : Mon 02 Oct 2017 10:45:58 AM PDT +Build Host : buildvm-ppc64le-05.ppc.fedoraproject.org +Relocations : (not relocatable) +Packager : Fedora Project +Vendor : Fedora Project +URL : http://download.fedoraproject.org/pub/epel +Summary : Extra Packages for Enterprise Linux repository configuration +Description : +This package contains the Extra Packages for Enterprise Linux (EPEL) repository +GPG key as well as configuration for yum. +Name : perl-parent +Epoch : 1 +Version : 0.225 +Release : 244.el7 +Architecture: noarch +Install Date: Tue 15 Oct 2019 11:27:57 AM PDT +Group : Development/Libraries +Size : 8141 +License : GPL+ or Artistic +Signature : RSA/SHA256, Thu 03 Jul 2014 09:21:55 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : perl-parent-0.225-244.el7.src.rpm +Build Date : Tue 10 Jun 2014 12:15:20 AM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://search.cpan.org/dist/parent/ +Summary : Establish an ISA relationship with base classes at compile time +Description : +Allows you to both load one or more modules, while setting up inheritance +from those modules at the same time. Mostly similar in effect to: + + package Baz; + + BEGIN { + require Foo; + require Bar; + + push @ISA, qw(Foo Bar); + } +Name : libnl +Version : 1.1.4 +Release : 3.el7 +Architecture: x86_64 +Install Date: Mon 04 Jan 2021 12:32:02 PM PST +Group : Development/Libraries +Size : 373662 +License : LGPLv2 +Signature : RSA/SHA256, Thu 03 Jul 2014 08:02:21 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : libnl-1.1.4-3.el7.src.rpm +Build Date : Tue 10 Jun 2014 01:58:17 AM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.infradead.org/~tgr/libnl/ +Summary : Convenience library for kernel netlink sockets +Description : +This package contains a convenience library to simplify +using the Linux kernel's netlink sockets interface for +network manipulation +Name : perl-podlators +Version : 2.5.1 +Release : 3.el7 +Architecture: noarch +Install Date: Tue 15 Oct 2019 11:27:57 AM PDT +Group : Development/Libraries +Size : 287679 +License : GPL+ or Artistic +Signature : RSA/SHA256, Thu 03 Jul 2014 09:22:34 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : perl-podlators-2.5.1-3.el7.src.rpm +Build Date : Mon 09 Jun 2014 12:56:16 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://search.cpan.org/dist/podlators/ +Summary : Format POD source into various output formats +Description : +This package contains Pod::Man and Pod::Text modules which convert POD input +to *roff source output, suitable for man pages, or plain text. It also +includes several sub-classes of Pod::Text for formatted output to terminals +with various capabilities. +Name : crda +Version : 3.18_2018.05.31 +Release : 4.el7 +Architecture: x86_64 +Install Date: Mon 04 Jan 2021 12:32:02 PM PST +Group : System Environment/Base +Size : 67470 +License : ISC +Signature : RSA/SHA256, Mon 12 Nov 2018 06:22:57 AM PST, Key ID 24c6a8a7f4a80eb5 +Source RPM : crda-3.18_2018.05.31-4.el7.src.rpm +Build Date : Tue 30 Oct 2018 03:32:16 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://wireless.kernel.org/en/developers/Regulatory/CRDA +Summary : Regulatory compliance daemon for 802.11 wireless networking +Description : +CRDA acts as the udev helper for communication between the kernel +and userspace for regulatory compliance. It relies on nl80211 +for communication. CRDA is intended to be run only through udev +communication from the kernel. +Name : perl-Pod-Escapes +Epoch : 1 +Version : 1.04 +Release : 294.el7_6 +Architecture: noarch +Install Date: Tue 15 Oct 2019 11:27:57 AM PDT +Group : Development/Libraries +Size : 21091 +License : GPL+ or Artistic +Signature : RSA/SHA256, Thu 24 Jan 2019 05:22:34 AM PST, Key ID 24c6a8a7f4a80eb5 +Source RPM : perl-5.16.3-294.el7_6.src.rpm +Build Date : Mon 21 Jan 2019 02:17:44 PM PST +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.perl.org/ +Summary : Perl module for resolving POD escape sequences +Description : +This module provides things that are useful in decoding Pod E<...> sequences. +Presumably, it should be used only by Pod parsers and/or formatters. +Name : pinentry +Version : 0.8.1 +Release : 17.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:27 AM PDT +Group : Applications/System +Size : 159929 +License : GPLv2+ +Signature : RSA/SHA256, Sun 20 Nov 2016 12:05:16 PM PST, Key ID 24c6a8a7f4a80eb5 +Source RPM : pinentry-0.8.1-17.el7.src.rpm +Build Date : Sat 05 Nov 2016 08:49:27 AM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.gnupg.org/aegypten/ +Summary : Collection of simple PIN or passphrase entry dialogs +Description : +Pinentry is a collection of simple PIN or passphrase entry dialogs which +utilize the Assuan protocol as described by the aegypten project; see +http://www.gnupg.org/aegypten/ for details. +This package contains the curses (text) based version of the PIN entry dialog. +Name : libicu +Version : 50.2 +Release : 4.el7_7 +Architecture: x86_64 +Install Date: Tue 09 Feb 2021 08:57:09 AM PST +Group : System Environment/Libraries +Size : 25221945 +License : MIT and UCD and Public Domain +Signature : RSA/SHA256, Tue 24 Mar 2020 09:17:45 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : icu-50.2-4.el7_7.src.rpm +Build Date : Fri 20 Mar 2020 05:51:27 PM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.icu-project.org/ +Summary : International Components for Unicode - libraries +Description : +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. +Name : perl-Text-ParseWords +Version : 3.29 +Release : 4.el7 +Architecture: noarch +Install Date: Tue 15 Oct 2019 11:27:58 AM PDT +Group : Development/Libraries +Size : 16431 +License : GPL+ or Artistic +Signature : RSA/SHA256, Thu 03 Jul 2014 09:25:15 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : perl-Text-ParseWords-3.29-4.el7.src.rpm +Build Date : Mon 09 Jun 2014 02:14:46 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://search.cpan.org/dist/Text-ParseWords/ +Summary : Parse text into an array of tokens or array of arrays +Description : +The nested_quotewords() and quotewords() functions accept a delimiter (which +can be a regular expression) and a list of lines and then breaks those lines +up into a list of words ignoring delimiters that appear inside quotes. +quotewords() returns all of the tokens in a single long list, while +nested_quotewords() returns a list of token lists corresponding to the +elements of @lines. parse_line() does tokenizing on a single string. The +quotewords() functions simply call &parse_line(), so if you're only splitting +one line you can call parse_line() directly and save a function call. +Name : snappy +Version : 1.1.0 +Release : 3.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:28 AM PDT +Group : System Environment/Libraries +Size : 119521 +License : BSD +Signature : RSA/SHA256, Thu 03 Jul 2014 10:02:19 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : snappy-1.1.0-3.el7.src.rpm +Build Date : Tue 10 Jun 2014 12:40:34 AM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://code.google.com/p/snappy/ +Summary : Fast compression and decompression library +Description : +Snappy is a compression/decompression library. It does not aim for maximum +compression, or compatibility with any other compression library; instead, it +aims for very high speeds and reasonable compression. For instance, compared to +the fastest mode of zlib, Snappy is an order of magnitude faster for most +inputs, but the resulting compressed files are anywhere from 20% to 100% +bigger. +Name : bluez +Version : 5.44 +Release : 7.el7 +Architecture: x86_64 +Install Date: Tue 09 Feb 2021 08:57:09 AM PST +Group : Applications/System +Size : 4933985 +License : GPLv2+ +Signature : RSA/SHA256, Wed 14 Oct 2020 11:47:03 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : bluez-5.44-7.el7.src.rpm +Build Date : Wed 30 Sep 2020 08:50:00 AM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.bluez.org/ +Summary : Bluetooth utilities +Description : +Utilities for use in Bluetooth applications: + - hcitool + - hciattach + - hciconfig + - bluetoothd + - l2ping + - rfcomm + - sdptool + - bccmd + - bluetoothctl + - btmon + - hcidump + - l2test + - rctest + - gatttool + - start scripts (Red Hat) + - pcmcia configuration files + +The BLUETOOTH trademarks are owned by Bluetooth SIG, Inc., U.S.A. +Name : perl-libs +Epoch : 4 +Version : 5.16.3 +Release : 294.el7_6 +Architecture: x86_64 +Install Date: Tue 15 Oct 2019 11:27:58 AM PDT +Group : Development/Languages +Size : 1647344 +License : GPL+ or Artistic +Signature : RSA/SHA256, Thu 24 Jan 2019 05:22:16 AM PST, Key ID 24c6a8a7f4a80eb5 +Source RPM : perl-5.16.3-294.el7_6.src.rpm +Build Date : Mon 21 Jan 2019 02:12:20 PM PST +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.perl.org/ +Summary : The libraries for the perl runtime +Description : +The libraries for the perl runtime +Name : jq +Version : 1.6 +Release : 2.el7 +Architecture: x86_64 +Install Date: Wed 31 Mar 2021 06:30:29 PM PDT +Group : Unspecified +Size : 390033 +License : MIT and ASL 2.0 and CC-BY and GPLv3 +Signature : RSA/SHA256, Thu 28 May 2020 10:31:39 AM PDT, Key ID 6a2faea2352c64e5 +Source RPM : jq-1.6-2.el7.src.rpm +Build Date : Wed 27 May 2020 02:48:09 PM PDT +Build Host : buildvm-14.phx2.fedoraproject.org +Relocations : (not relocatable) +Packager : Fedora Project +Vendor : Fedora Project +URL : http://stedolan.github.io/jq/ +Bug URL : https://bugz.fedoraproject.org/jq +Summary : Command-line JSON processor +Description : +lightweight and flexible command-line JSON processor + + jq is like sed for JSON data – you can use it to slice + and filter and map and transform structured data with + the same ease that sed, awk, grep and friends let you + play with text. + + It is written in portable C, and it has zero runtime + dependencies. + + jq can mangle the data format that you have into the + one that you want with very little effort, and the + program to do so is often shorter and simpler than + you'd expect. +Name : perl-Time-HiRes +Epoch : 4 +Version : 1.9725 +Release : 3.el7 +Architecture: x86_64 +Install Date: Tue 15 Oct 2019 11:27:58 AM PDT +Group : Development/Libraries +Size : 94069 +License : GPL+ or Artistic +Signature : RSA/SHA256, Thu 03 Jul 2014 09:25:35 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : perl-Time-HiRes-1.9725-3.el7.src.rpm +Build Date : Mon 09 Jun 2014 12:57:24 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://search.cpan.org/dist/Time-HiRes/ +Summary : High resolution alarm, sleep, gettimeofday, interval timers +Description : +The Time::HiRes module implements a Perl interface to the usleep, nanosleep, +ualarm, gettimeofday, and setitimer/getitimer system calls, in other words, +high resolution time and timers. +Name : libpng +Epoch : 2 +Version : 1.5.13 +Release : 7.el7_2 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:28 AM PDT +Group : System Environment/Libraries +Size : 616101 +License : zlib +Signature : RSA/SHA256, Wed 09 Dec 2015 09:02:06 AM PST, Key ID 24c6a8a7f4a80eb5 +Source RPM : libpng-1.5.13-7.el7_2.src.rpm +Build Date : Wed 09 Dec 2015 08:31:20 AM PST +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.libpng.org/pub/png/ +Summary : A library of functions for manipulating PNG image format files +Description : +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. +Name : perl-constant +Version : 1.27 +Release : 2.el7 +Architecture: noarch +Install Date: Tue 15 Oct 2019 11:27:58 AM PDT +Group : Development/Libraries +Size : 26364 +License : GPL+ or Artistic +Signature : RSA/SHA256, Thu 03 Jul 2014 09:15:39 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : perl-constant-1.27-2.el7.src.rpm +Build Date : Mon 09 Jun 2014 07:51:22 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://search.cpan.org/dist/constant/ +Summary : Perl pragma to declare constants +Description : +This pragma allows you to declare constants at compile-time: + +use constant PI => 4 * atan2(1, 1); + +When you declare a constant such as "PI" using the method shown above, +each machine your script runs upon can have as many digits of accuracy +as it can use. Also, your program will be easier to read, more likely +to be maintained (and maintained correctly), and far less likely to +send a space probe to the wrong planet because nobody noticed the one +equation in which you wrote 3.14195. + +When a constant is used in an expression, Perl replaces it with its +value at compile time, and may then optimize the expression further. +In particular, any code in an "if (CONSTANT)" block will be optimized +away if the constant is false. +Name : perl-Socket +Version : 2.010 +Release : 4.el7 +Architecture: x86_64 +Install Date: Tue 15 Oct 2019 11:27:58 AM PDT +Group : Development/Libraries +Size : 114497 +License : GPL+ or Artistic +Signature : RSA/SHA256, Sun 20 Nov 2016 12:02:40 PM PST, Key ID 24c6a8a7f4a80eb5 +Source RPM : perl-Socket-2.010-4.el7.src.rpm +Build Date : Sat 05 Nov 2016 08:24:51 AM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://search.cpan.org/dist/Socket/ +Summary : Networking constants and support functions +Description : +This module provides a variety of constants, structure manipulators and other +functions related to socket-based networking. The values and functions +provided are useful when used in conjunction with Perl core functions such as +socket(), setsockopt() and bind(). It also provides several other support +functions, mostly for dealing with conversions of network addresses between +human-readable and native binary forms, and for hostname resolver operations. +Name : ustr +Version : 1.0.4 +Release : 16.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:28 AM PDT +Group : System Environment/Libraries +Size : 285943 +License : MIT or LGPLv2+ or BSD +Signature : RSA/SHA256, Thu 03 Jul 2014 10:39:11 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : ustr-1.0.4-16.el7.src.rpm +Build Date : Mon 09 Jun 2014 01:12:46 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.and.org/ustr/ +Summary : String library, very low memory overhead, simple to import +Description : + Micro string library, very low overhead from plain strdup() (Ave. 44% for +0-20B strings). Very easy to use in existing C code. At it's simplest you can +just include a single header file into your .c and start using it. + This package also distributes pre-built shared libraries. +Name : perl-Storable +Version : 2.45 +Release : 3.el7 +Architecture: x86_64 +Install Date: Tue 15 Oct 2019 11:27:58 AM PDT +Group : Development/Libraries +Size : 181031 +License : GPL+ or Artistic +Signature : RSA/SHA256, Thu 03 Jul 2014 09:23:18 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : perl-Storable-2.45-3.el7.src.rpm +Build Date : Mon 09 Jun 2014 07:29:58 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://search.cpan.org/dist/Storable/ +Summary : Persistence for Perl data structures +Description : +The Storable package brings persistence to your Perl data structures +containing scalar, array, hash or reference objects, i.e. anything that +can be conveniently stored to disk and retrieved at a later time. +Name : perl-Scalar-List-Utils +Version : 1.27 +Release : 248.el7 +Architecture: x86_64 +Install Date: Tue 15 Oct 2019 11:27:58 AM PDT +Group : Development/Libraries +Size : 67994 +License : GPL+ or Artistic +Signature : RSA/SHA256, Thu 03 Jul 2014 09:23:05 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : perl-Scalar-List-Utils-1.27-248.el7.src.rpm +Build Date : Mon 09 Jun 2014 04:57:00 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://search.cpan.org/dist/Scalar-List-Utils/ +Summary : A selection of general-utility scalar and list subroutines +Description : +This package contains a selection of subroutines that people have expressed +would be nice to have in the perl core, but the usage would not really be +high enough to warrant the use of a keyword, and the size so small such +that being individual extensions would be wasteful. +Name : perl-File-Path +Version : 2.09 +Release : 2.el7 +Architecture: noarch +Install Date: Tue 15 Oct 2019 11:27:58 AM PDT +Group : Development/Libraries +Size : 50067 +License : GPL+ or Artistic +Signature : RSA/SHA256, Thu 03 Jul 2014 09:18:06 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : perl-File-Path-2.09-2.el7.src.rpm +Build Date : Mon 09 Jun 2014 05:48:09 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://search.cpan.org/dist/File-Path/ +Summary : Create or remove directory trees +Description : +This module provides a convenient way to create directories of arbitrary +depth and to delete an entire directory subtree from the file system. +Name : hardlink +Epoch : 1 +Version : 1.0 +Release : 19.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:29 AM PDT +Group : System Environment/Base +Size : 16545 +License : GPL+ +Signature : RSA/SHA256, Thu 03 Jul 2014 06:53:40 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : hardlink-1.0-19.el7.src.rpm +Build Date : Mon 09 Jun 2014 11:26:04 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://pkgs.fedoraproject.org/gitweb/?p=hardlink.git +Summary : Create a tree of hardlinks +Description : +hardlink is used to create a tree of hard links. +It's used by kernel installation to dramatically reduce the +amount of diskspace used by each kernel package installed. +Name : perl-threads +Version : 1.87 +Release : 4.el7 +Architecture: x86_64 +Install Date: Tue 15 Oct 2019 11:27:58 AM PDT +Group : Development/Libraries +Size : 98615 +License : GPL+ or Artistic +Signature : RSA/SHA256, Thu 03 Jul 2014 09:25:24 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : perl-threads-1.87-4.el7.src.rpm +Build Date : Mon 09 Jun 2014 10:22:14 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://search.cpan.org/dist/threads/ +Summary : Perl interpreter-based threads +Description : +Since Perl 5.8, thread programming has been available using a model called +interpreter threads which provides a new Perl interpreter for each thread, +and, by default, results in no data or state information being shared +between threads. + +(Prior to Perl 5.8, 5005threads was available through the "Thread.pm" API. +This threading model has been deprecated, and was removed as of Perl 5.10.0.) +Name : libseccomp +Version : 2.3.1 +Release : 3.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:29 AM PDT +Group : System Environment/Libraries +Size : 304131 +License : LGPLv2 +Signature : RSA/SHA256, Thu 10 Aug 2017 10:50:45 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : libseccomp-2.3.1-3.el7.src.rpm +Build Date : Wed 02 Aug 2017 06:38:21 AM PDT +Build Host : c1bm.rdu2.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://github.com/seccomp/libseccomp +Summary : Enhanced seccomp library +Description : +The libseccomp library provides an easy to use interface to the Linux Kernel's +syscall filtering mechanism, seccomp. The libseccomp API allows an application +to specify which syscalls, and optionally which syscall arguments, the +application is allowed to execute, all of which are enforced by the Linux +Kernel. +Name : perl-Filter +Version : 1.49 +Release : 3.el7 +Architecture: x86_64 +Install Date: Tue 15 Oct 2019 11:27:59 AM PDT +Group : Development/Libraries +Size : 148475 +License : GPL+ or Artistic +Signature : RSA/SHA256, Thu 03 Jul 2014 09:18:19 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : perl-Filter-1.49-3.el7.src.rpm +Build Date : Mon 09 Jun 2014 03:45:54 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://search.cpan.org/dist/Filter/ +Summary : Perl source filters +Description : +Source filters alter the program text of a module before Perl sees it, much as +a C preprocessor alters the source text of a C program before the compiler +sees it. +Name : qrencode-libs +Version : 3.4.1 +Release : 3.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:29 AM PDT +Group : Unspecified +Size : 126732 +License : LGPLv2+ +Signature : RSA/SHA256, Thu 03 Jul 2014 09:44:21 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : qrencode-3.4.1-3.el7.src.rpm +Build Date : Mon 09 Jun 2014 12:45:31 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://megaui.net/fukuchi/works/qrencode/index.en.html +Summary : QR Code encoding library - Shared libraries +Description : +The qrencode-libs package contains the shared libraries and header files for +applications that use qrencode. +Name : perl +Epoch : 4 +Version : 5.16.3 +Release : 294.el7_6 +Architecture: x86_64 +Install Date: Tue 15 Oct 2019 11:28:01 AM PDT +Group : Development/Languages +Size : 23552128 +License : (GPL+ or Artistic) and (GPLv2+ or Artistic) and Copyright Only and MIT and Public Domain and UCD +Signature : RSA/SHA256, Thu 24 Jan 2019 05:22:14 AM PST, Key ID 24c6a8a7f4a80eb5 +Source RPM : perl-5.16.3-294.el7_6.src.rpm +Build Date : Mon 21 Jan 2019 02:12:20 PM PST +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.perl.org/ +Summary : Practical Extraction and Report Language +Description : +Perl is a high-level programming language with roots in C, sed, awk and shell +scripting. Perl is good at handling processes and files, and is especially +good at handling text. Perl's hallmarks are practicality and efficiency. +While it is used to do a lot of different things, Perl's most common +applications are system administration utilities and web programming. A large +proportion of the CGI scripts on the web are written in Perl. You need the +perl package installed on your system so that your system can handle Perl +scripts. + +Install this package if you want to program in Perl or enable your system to +handle Perl scripts. +Name : libpipeline +Version : 1.2.3 +Release : 3.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:29 AM PDT +Group : Development/Libraries +Size : 142521 +License : GPLv3+ +Signature : RSA/SHA256, Thu 03 Jul 2014 08:05:55 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : libpipeline-1.2.3-3.el7.src.rpm +Build Date : Mon 09 Jun 2014 10:46:23 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://libpipeline.nongnu.org/ +Summary : A pipeline manipulation library +Description : +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). +Name : perl-TermReadKey +Version : 2.30 +Release : 20.el7 +Architecture: x86_64 +Install Date: Tue 15 Oct 2019 11:28:01 AM PDT +Group : Development/Libraries +Size : 59999 +License : (Copyright only) and (Artistic or GPL+) +Signature : RSA/SHA256, Thu 03 Jul 2014 09:23:54 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : perl-TermReadKey-2.30-20.el7.src.rpm +Build Date : Tue 10 Jun 2014 12:29:32 AM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://search.cpan.org/~jstowe/TermReadKey/ +Summary : A perl module for simple terminal control +Description : +Term::ReadKey is a compiled perl module dedicated to providing simple +control over terminal driver modes (cbreak, raw, cooked, etc.) +support for non-blocking reads, if the architecture allows, and some +generalized handy functions for working with terminals. One of the +main goals is to have the functions as portable as possible, so you +can just plug in "use Term::ReadKey" on any architecture and have a +good likelyhood of it working. +Name : lsscsi +Version : 0.27 +Release : 6.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:29 AM PDT +Group : Applications/System +Size : 90475 +License : GPLv2+ +Signature : RSA/SHA256, Thu 10 Aug 2017 11:15:48 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : lsscsi-0.27-6.el7.src.rpm +Build Date : Wed 02 Aug 2017 07:11:06 PM PDT +Build Host : c1bm.rdu2.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://sg.danny.cz/scsi/lsscsi.html +Summary : List SCSI devices (or hosts) and associated information +Description : +Uses information provided by the sysfs pseudo file system in Linux kernel +2.6 series to list SCSI devices or all SCSI hosts. Includes a "classic" +option to mimic the output of "cat /proc/scsi/scsi" that has been widely +used prior to the lk 2.6 series. + +Author: +-------- + Doug Gilbert +Name : perl-Git +Version : 1.8.3.1 +Release : 20.el7 +Architecture: noarch +Install Date: Tue 15 Oct 2019 11:28:01 AM PDT +Group : Development/Libraries +Size : 58567 +License : GPLv2 +Signature : RSA/SHA256, Tue 20 Nov 2018 12:42:15 PM PST, Key ID 24c6a8a7f4a80eb5 +Source RPM : git-1.8.3.1-20.el7.src.rpm +Build Date : Mon 19 Nov 2018 08:23:15 AM PST +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://git-scm.com/ +Summary : Perl interface to Git +Description : +Perl interface to Git. +Name : libgcc +Version : 4.8.5 +Release : 39.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:15 AM PDT +Group : System Environment/Libraries +Size : 179328 +License : GPLv3+ and GPLv3+ with exceptions and GPLv2+ with exceptions and LGPLv2+ and BSD +Signature : RSA/SHA256, Thu 22 Aug 2019 02:29:34 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : gcc-4.8.5-39.el7.src.rpm +Build Date : Tue 06 Aug 2019 10:15:38 AM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://gcc.gnu.org +Summary : GCC version 4.8 shared support library +Description : +This package contains GCC shared support library which is needed +e.g. for exception handling support. +Name : centos-release +Version : 7 +Release : 7.1908.0.el7.centos +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:16 AM PDT +Group : System Environment/Base +Size : 42295 +License : GPLv2 +Signature : RSA/SHA256, Thu 05 Sep 2019 06:19:24 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : centos-release-7-7.1908.0.el7.centos.src.rpm +Build Date : Thu 05 Sep 2019 06:05:40 AM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +Summary : CentOS Linux release file +Description : +CentOS Linux release files +Name : subscription-manager-rhsm-certificates +Version : 1.24.13 +Release : 3.el7.centos +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:17 AM PDT +Group : Development/Libraries +Size : 0 +License : GPLv2 +Signature : RSA/SHA256, Sat 14 Sep 2019 04:50:33 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : subscription-manager-1.24.13-3.el7.centos.src.rpm +Build Date : Fri 13 Sep 2019 11:16:03 AM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.candlepinproject.org/ +Summary : Certificates required to communicate with a Red Hat Unified Entitlement Platform +Description : +This package contains certificates required for communicating with the REST interface +of a Red Hat Unified Entitlement Platform, used for the management of system entitlements +and to receive access to content. +Name : firewalld-filesystem +Version : 0.6.3 +Release : 2.el7_7.1 +Architecture: noarch +Install Date: Wed 16 Oct 2019 09:21:17 AM PDT +Group : Unspecified +Size : 239 +License : GPLv2+ +Signature : RSA/SHA256, Sat 14 Sep 2019 04:52:52 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : firewalld-0.6.3-2.el7_7.1.src.rpm +Build Date : Fri 13 Sep 2019 11:02:20 AM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.firewalld.org +Summary : Firewalld directory layout and rpm macros +Description : +This package provides directories and rpm macros which +are required by other packages that add firewalld configuration files. +Name : tzdata +Version : 2019c +Release : 1.el7 +Architecture: noarch +Install Date: Wed 16 Oct 2019 09:21:18 AM PDT +Group : System Environment/Base +Size : 2018657 +License : Public Domain +Signature : RSA/SHA256, Thu 26 Sep 2019 05:20:57 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : tzdata-2019c-1.el7.src.rpm +Build Date : Thu 26 Sep 2019 04:34:13 AM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://www.iana.org/time-zones +Summary : Timezone data +Description : +This package contains data files with rules for various timezones around +the world. +Name : nss-softokn-freebl +Version : 3.44.0 +Release : 5.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:18 AM PDT +Group : System Environment/Base +Size : 569644 +License : MPLv2.0 +Signature : RSA/SHA256, Thu 22 Aug 2019 02:36:30 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : nss-softokn-3.44.0-5.el7.src.rpm +Build Date : Mon 12 Aug 2019 07:47:20 AM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.mozilla.org/projects/security/pki/nss/ +Summary : Freebl library for the Network Security Services +Description : +NSS Softoken Cryptographic Module Freebl Library + +Install the nss-softokn-freebl package if you need the freebl +library. +Name : glibc +Version : 2.17 +Release : 292.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:26 AM PDT +Group : System Environment/Libraries +Size : 14101347 +License : LGPLv2+ and LGPLv2+ with exceptions and GPLv2+ +Signature : RSA/SHA256, Thu 22 Aug 2019 02:24:41 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : glibc-2.17-292.el7.src.rpm +Build Date : Tue 06 Aug 2019 04:23:44 PM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.gnu.org/software/glibc/ +Summary : The GNU libc libraries +Description : +The glibc package contains standard libraries which are used by +multiple programs on the system. In order to save disk space and +memory, as well as to make upgrading easier, common system code is +kept in one place and shared between programs. This particular package +contains the most important sets of shared libraries: the standard C +library and the standard math library. Without these two libraries, a +Linux system will not function. +Name : nss-util +Version : 3.44.0 +Release : 3.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:26 AM PDT +Group : System Environment/Libraries +Size : 198960 +License : MPLv2.0 +Signature : RSA/SHA256, Thu 22 Aug 2019 02:36:34 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : nss-util-3.44.0-3.el7.src.rpm +Build Date : Fri 09 Aug 2019 07:14:13 AM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.mozilla.org/projects/security/pki/nss/ +Summary : Network Security Services Utilities Library +Description : +Utilities for Network Security Services and the Softoken module +Name : libcom_err +Version : 1.42.9 +Release : 16.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:26 AM PDT +Group : Development/Libraries +Size : 60489 +License : MIT +Signature : RSA/SHA256, Thu 22 Aug 2019 02:29:14 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : e2fsprogs-1.42.9-16.el7.src.rpm +Build Date : Thu 08 Aug 2019 04:19:51 PM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://e2fsprogs.sourceforge.net/ +Summary : Common error description library +Description : +This is the common error description library, part of e2fsprogs. + +libcom_err is an attempt to present a common error-handling mechanism. +Name : openssl-libs +Epoch : 1 +Version : 1.0.2k +Release : 19.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:27 AM PDT +Group : System Environment/Libraries +Size : 3208684 +License : OpenSSL +Signature : RSA/SHA256, Thu 22 Aug 2019 02:37:33 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : openssl-1.0.2k-19.el7.src.rpm +Build Date : Thu 08 Aug 2019 06:40:02 PM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.openssl.org/ +Summary : A general purpose cryptography library with TLS implementation +Description : +OpenSSL is a toolkit for supporting cryptography. The openssl-libs +package contains the libraries that are used by various applications which +support cryptographic algorithms and protocols. +Name : krb5-libs +Version : 1.15.1 +Release : 37.el7_7.2 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:28 AM PDT +Group : System Environment/Libraries +Size : 2201033 +License : MIT +Signature : RSA/SHA256, Sat 14 Sep 2019 04:48:31 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : krb5-1.15.1-37.el7_7.2.src.rpm +Build Date : Fri 13 Sep 2019 11:07:42 AM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://web.mit.edu/kerberos/www/ +Summary : The non-admin shared libraries used by Kerberos 5 +Description : +Kerberos is a network authentication system. The krb5-libs package +contains the shared libraries needed by Kerberos 5. If you are using +Kerberos, you need to install this package. +Name : wpa_supplicant +Epoch : 1 +Version : 2.6 +Release : 12.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:33 AM PDT +Group : System Environment/Base +Size : 4411751 +License : BSD +Signature : RSA/SHA256, Mon 12 Nov 2018 06:49:13 AM PST, Key ID 24c6a8a7f4a80eb5 +Source RPM : wpa_supplicant-2.6-12.el7.src.rpm +Build Date : Tue 30 Oct 2018 04:03:45 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://w1.fi/wpa_supplicant/ +Summary : WPA/WPA2/IEEE 802.1X Supplicant +Description : +wpa_supplicant is a WPA Supplicant for Linux, BSD and Windows with support +for WPA and WPA2 (IEEE 802.11i / RSN). Supplicant is the IEEE 802.1X/WPA +component that is used 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. +Name : libblkid +Version : 2.23.2 +Release : 61.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:28 AM PDT +Group : Development/Libraries +Size : 265949 +License : LGPLv2+ +Signature : RSA/SHA256, Thu 22 Aug 2019 02:28:42 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : util-linux-2.23.2-61.el7.src.rpm +Build Date : Thu 08 Aug 2019 08:10:20 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://en.wikipedia.org/wiki/Util-linux +Summary : Block device ID library +Description : +This is block device identification library, part of util-linux. +Name : elfutils-libelf +Version : 0.176 +Release : 2.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:29 AM PDT +Group : Development/Tools +Size : 916230 +License : GPLv2+ or LGPLv3+ +Signature : RSA/SHA256, Thu 22 Aug 2019 02:22:50 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : elfutils-0.176-2.el7.src.rpm +Build Date : Thu 08 Aug 2019 04:16:25 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://elfutils.org/ +Summary : Library to read and write ELF files +Description : +The elfutils-libelf package provides a DSO which allows reading and +writing ELF files on a high level. Third party programs depend on +this package to read internals of ELF files. The programs of the +elfutils package use it also to generate new ELF files. +Name : readline +Version : 6.2 +Release : 11.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:30 AM PDT +Group : System Environment/Libraries +Size : 460424 +License : GPLv3+ +Signature : RSA/SHA256, Thu 22 Aug 2019 02:42:22 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : readline-6.2-11.el7.src.rpm +Build Date : Thu 08 Aug 2019 05:07:39 AM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://cnswww.cns.cwru.edu/php/chet/readline/rltop.html +Summary : A library for editing typed command lines +Description : +The Readline library provides a set of functions that allow users to +edit command lines. Both Emacs and vi editing modes are available. The +Readline library includes additional functions for maintaining a list +of previously-entered command lines for recalling or editing those +lines, and for performing csh-like history expansion on previous +commands. +Name : python +Version : 2.7.5 +Release : 86.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:32 AM PDT +Group : Development/Languages +Size : 80907 +License : Python +Signature : RSA/SHA256, Thu 22 Aug 2019 02:40:03 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : python-2.7.5-86.el7.src.rpm +Build Date : Tue 06 Aug 2019 06:15:38 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.python.org/ +Summary : An interpreted, interactive, object-oriented programming language +Description : +Python is an interpreted, interactive, object-oriented programming +language often compared to Tcl, Perl, Scheme or Java. Python includes +modules, classes, exceptions, very high level dynamic data types and +dynamic typing. Python supports interfaces to many system calls and +libraries, as well as to various windowing systems (X11, Motif, Tk, +Mac and MFC). + +Programmers can write new built-in modules for Python in C or C++. +Python can be used as an extension language for applications that need +a programmable interface. + +Note that documentation for Python is provided in the python-docs +package. + +This package provides the "python" executable; most of the actual +implementation is within the "python-libs" package. +Name : libmount +Version : 2.23.2 +Release : 61.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:32 AM PDT +Group : Development/Libraries +Size : 278157 +License : LGPLv2+ +Signature : RSA/SHA256, Thu 22 Aug 2019 02:30:26 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : util-linux-2.23.2-61.el7.src.rpm +Build Date : Thu 08 Aug 2019 08:10:20 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://en.wikipedia.org/wiki/Util-linux +Summary : Device mounting library +Description : +This is the device mounting library, part of util-linux. +Name : nss-softokn +Version : 3.44.0 +Release : 5.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:33 AM PDT +Group : System Environment/Libraries +Size : 1188606 +License : MPLv2.0 +Signature : RSA/SHA256, Thu 22 Aug 2019 02:36:29 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : nss-softokn-3.44.0-5.el7.src.rpm +Build Date : Mon 12 Aug 2019 07:47:20 AM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.mozilla.org/projects/security/pki/nss/ +Summary : Network Security Services Softoken Module +Description : +Network Security Services Softoken Cryptographic Module +Name : fxload +Version : 2002_04_11 +Release : 16.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:36 AM PDT +Group : System Environment/Kernel +Size : 42589 +License : GPLv2+ +Signature : RSA/SHA256, Thu 03 Jul 2014 06:25:35 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : fxload-2002_04_11-16.el7.src.rpm +Build Date : Mon 09 Jun 2014 09:45:39 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://linux-hotplug.sourceforge.net/ +Summary : A helper program to download firmware into FX and FX2 EZ-USB devices +Description : +This program is conveniently able to download firmware into FX and FX2 +EZ-USB devices, as well as the original AnchorChips EZ-USB. It is +intended to be invoked by udev scripts when the unprogrammed device +appears on the bus. +Name : alsa-tools-firmware +Version : 1.1.0 +Release : 1.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:36 AM PDT +Group : Applications/System +Size : 86387 +License : GPLv2+ +Signature : RSA/SHA256, Sun 20 Nov 2016 09:07:19 AM PST, Key ID 24c6a8a7f4a80eb5 +Source RPM : alsa-tools-1.1.0-1.el7.src.rpm +Build Date : Sat 05 Nov 2016 11:34:05 AM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.alsa-project.org/ +Summary : ALSA tools for uploading firmware to some soundcards +Description : +This package contains tools for flashing firmware into certain sound cards. +The following tools are available: + +* hdsploader - for RME Hammerfall DSP cards +* mixartloader - for Digigram miXart soundcards +* vxloader - for Digigram VX soundcards +* usx2yloader - second phase firmware loader for Tascam USX2Y USB soundcards +Name : dbus-glib +Version : 0.100 +Release : 7.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:36 AM PDT +Group : System Environment/Libraries +Size : 301237 +License : AFL and GPLv2+ +Signature : RSA/SHA256, Thu 03 Jul 2014 06:06:03 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : dbus-glib-0.100-7.el7.src.rpm +Build Date : Mon 09 Jun 2014 09:06:04 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.freedesktop.org/software/dbus/ +Summary : GLib bindings for D-Bus +Description : + +D-Bus add-on library to integrate the standard D-Bus library with +the GLib thread abstraction and main loop. +Name : python-slip-dbus +Version : 0.4.0 +Release : 4.el7 +Architecture: noarch +Install Date: Thu 15 Aug 2019 10:53:36 AM PDT +Group : System Environment/Libraries +Size : 76410 +License : GPLv2+ +Signature : RSA/SHA256, Wed 25 Apr 2018 04:39:06 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : python-slip-0.4.0-4.el7.src.rpm +Build Date : Tue 10 Apr 2018 06:49:00 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://github.com/nphilipp/python-slip +Summary : Convenience functions for dbus services +Description : +The Simple Library for Python packages contain miscellaneous code for +convenience, extension and workaround purposes. + +This package provides slip.dbus.service.Object, which is a dbus.service.Object +derivative that ends itself after a certain time without being used and/or if +there are no clients anymore on the message bus, as well as convenience +functions and decorators for integrating a dbus service with PolicyKit. +Name : python-pyudev +Version : 0.15 +Release : 9.el7 +Architecture: noarch +Install Date: Thu 15 Aug 2019 10:53:36 AM PDT +Group : Development/Languages +Size : 241404 +License : LGPLv2+ +Signature : RSA/SHA256, Thu 10 Aug 2017 12:22:56 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : python-pyudev-0.15-9.el7.src.rpm +Build Date : Wed 02 Aug 2017 10:51:26 PM PDT +Build Host : c1bm.rdu2.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://pypi.python.org/pypi/pyudev +Summary : A libudev binding +Description : + + +pyudev is a LGPL licensed, pure Python binding for libudev, the device +and hardware management and information library for Linux. It supports +almost all libudev functionality, you can enumerate devices, query device +properties and attributes or monitor devices, including asynchronous +monitoring with threads, or within the event loops of Qt, Glib or wxPython. + +The binding supports CPython_ 2 (2.6 or newer) and 3 (3.1 or newer), and +PyPy_ 1.5 or newer. It is tested against udev 151 or newer, earlier +versions of udev as found on dated Linux systems may work, but are not +officially supported. +Name : virt-what +Version : 1.18 +Release : 4.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:36 AM PDT +Group : Unspecified +Size : 45720 +License : GPLv2+ +Signature : RSA/SHA256, Wed 25 Apr 2018 04:51:38 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : virt-what-1.18-4.el7.src.rpm +Build Date : Tue 10 Apr 2018 06:51:05 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://people.redhat.com/~rjones/virt-what/ +Summary : Detect if we are running in a virtual machine +Description : +virt-what is a shell script which can be used to detect if the program +is running in a virtual machine. + +The program prints out a list of "facts" about the virtual machine, +derived from heuristics. One fact is printed per line. + +If nothing is printed and the script exits with code 0 (no error), +then it can mean either that the program is running on bare-metal or +the program is running inside a type of virtual machine which we don't +know about or can't detect. + +Current types of virtualization detected: + + - aws Amazon Web Services cloud guest + - bhyve FreeBSD hypervisor + - docker Docker container + - hyperv Microsoft Hyper-V + - ibm_power-kvm + IBM POWER KVM + - ibm_power-lpar_shared + - ibm_power-lpar_dedicated + IBM POWER LPAR (hardware partition) + - ibm_systemz-* + IBM SystemZ Direct / LPAR / z/VM / KVM + - ldoms Oracle VM Server for SPARC Logical Domains + - linux_vserver + Linux VServer container + - lxc Linux LXC container + - kvm Linux Kernel Virtual Machine (KVM) + - lkvm LKVM / kvmtool + - openvz OpenVZ or Virtuozzo + - ovirt oVirt node + - parallels Parallels Virtual Platform + - powervm_lx86 IBM PowerVM Lx86 Linux/x86 emulator + - qemu QEMU (unaccelerated) + - rhev Red Hat Enterprise Virtualization + - uml User-Mode Linux (UML) + - virtage Hitachi Virtualization Manager (HVM) Virtage LPAR + - virtualbox VirtualBox + - virtualpc Microsoft VirtualPC + - vmm vmm OpenBSD hypervisor + - vmware VMware + - xen Xen + - xen-dom0 Xen dom0 (privileged domain) + - xen-domU Xen domU (paravirtualized guest domain) + - xen-hvm Xen guest fully virtualized (HVM) +Name : gnupg2 +Version : 2.0.22 +Release : 5.el7_5 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:37 AM PDT +Group : Applications/System +Size : 6637796 +License : GPLv3+ +Signature : RSA/SHA256, Fri 13 Jul 2018 08:56:02 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : gnupg2-2.0.22-5.el7_5.src.rpm +Build Date : Fri 13 Jul 2018 06:06:54 AM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.gnupg.org/ +Summary : Utility for secure communication and data storage +Description : +GnuPG is GNU's tool for secure communication and data storage. It can +be used to encrypt data and to create digital signatures. It includes +an advanced key management facility and is compliant with the proposed +OpenPGP Internet standard as described in RFC2440 and the S/MIME +standard as described by several RFCs. + +GnuPG 2.0 is a newer version of GnuPG with additional support for +S/MIME. It has a different design philosophy that splits +functionality up into several modules. The S/MIME and smartcard functionality +is provided by the gnupg2-smime package. +Name : pygpgme +Version : 0.3 +Release : 9.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:37 AM PDT +Group : Development/Languages +Size : 197501 +License : LGPLv2+ +Signature : RSA/SHA256, Thu 03 Jul 2014 09:36:27 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : pygpgme-0.3-9.el7.src.rpm +Build Date : Mon 09 Jun 2014 04:30:47 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://cheeseshop.python.org/pypi/pygpgme +Summary : Python module for working with OpenPGP messages +Description : +PyGPGME is a Python module that lets you sign, verify, encrypt and decrypt +files using the OpenPGP format. It is built on top of GNU Privacy Guard and +the GPGME library. +Name : kbd-misc +Version : 1.15.5 +Release : 15.el7 +Architecture: noarch +Install Date: Thu 15 Aug 2019 10:53:46 AM PDT +Group : System Environment/Base +Size : 2419757 +License : GPLv2+ +Signature : RSA/SHA256, Mon 12 Nov 2018 07:17:50 AM PST, Key ID 24c6a8a7f4a80eb5 +Source RPM : kbd-1.15.5-15.el7.src.rpm +Build Date : Tue 30 Oct 2018 03:40:00 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://ftp.altlinux.org/pub/people/legion/kbd +Summary : Data for kbd package +Description : +The kbd-misc package contains data for kbd package - console fonts, +keymaps etc. Please note that kbd-misc is not helpful without kbd. +Name : kernel +Version : 3.10.0 +Release : 957.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:50 AM PDT +Group : System Environment/Kernel +Size : 66192729 +License : GPLv2 +Signature : RSA/SHA256, Mon 12 Nov 2018 06:30:44 AM PST, Key ID 24c6a8a7f4a80eb5 +Source RPM : kernel-3.10.0-957.el7.src.rpm +Build Date : Thu 08 Nov 2018 04:08:59 PM PST +Build Host : kbuilder.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.kernel.org/ +Summary : The Linux kernel +Description : +The kernel package contains the Linux kernel (vmlinuz), the core of any +Linux operating system. The kernel handles the basic functions +of the operating system: memory allocation, process allocation, device +input and output, etc. +Name : libndp +Version : 1.2 +Release : 9.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:42 AM PDT +Group : System Environment/Libraries +Size : 75708 +License : LGPLv2+ +Signature : RSA/SHA256, Thu 22 Aug 2019 02:30:31 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : libndp-1.2-9.el7.src.rpm +Build Date : Thu 08 Aug 2019 05:25:58 PM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.libndp.org/ +Summary : Library for Neighbor Discovery Protocol +Description : +This package contains a library which provides a wrapper +for IPv6 Neighbor Discovery Protocol. It also provides a tool +named ndptool for sending and receiving NDP messages. +Name : vim-minimal +Epoch : 2 +Version : 7.4.629 +Release : 6.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:42 AM PDT +Group : Applications/Editors +Size : 935752 +License : Vim +Signature : RSA/SHA256, Thu 22 Aug 2019 02:45:14 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : vim-7.4.629-6.el7.src.rpm +Build Date : Thu 08 Aug 2019 08:17:37 PM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.vim.org/ +Summary : A minimal version of the VIM editor +Description : +VIM (VIsual editor iMproved) is an updated and improved version of the +vi editor. Vi was the first real screen-based editor for UNIX, and is +still very popular. VIM improves on vi by adding new features: +multiple windows, multi-level undo, block highlighting and more. The +vim-minimal package includes a minimal version of VIM, which is +installed into /bin/vi for use when only the root partition is +present. NOTE: The online help is only available when the vim-common +package is installed. +Name : ipset +Version : 7.1 +Release : 1.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:42 AM PDT +Group : Unspecified +Size : 62030 +License : GPLv2 +Signature : RSA/SHA256, Thu 22 Aug 2019 02:26:17 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : ipset-7.1-1.el7.src.rpm +Build Date : Thu 08 Aug 2019 04:55:38 PM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://ipset.netfilter.org/ +Summary : Manage Linux IP sets +Description : +IP sets are a framework inside the Linux kernel since version 2.4.x, which can +be administered by the ipset utility. Depending on the type, currently an IP +set may store IP addresses, (TCP/UDP) port numbers or IP addresses with MAC +addresses in a way, which ensures lightning speed when matching an entry +against a set. + +If you want to: + - store multiple IP addresses or port numbers and match against the collection + by iptables at one swoop; + - dynamically update iptables rules against IP addresses or ports without + performance penalty; + - express complex IP address and ports based rulesets with one single iptables + rule and benefit from the speed of IP sets +then ipset may be the proper tool for you. +Name : util-linux +Version : 2.23.2 +Release : 61.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:43 AM PDT +Group : System Environment/Base +Size : 8482880 +License : GPLv2 and GPLv2+ and LGPLv2+ and BSD with advertising and Public Domain +Signature : RSA/SHA256, Thu 22 Aug 2019 02:45:03 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : util-linux-2.23.2-61.el7.src.rpm +Build Date : Thu 08 Aug 2019 08:10:20 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://en.wikipedia.org/wiki/Util-linux +Summary : A collection of basic system utilities +Description : +The util-linux package contains a large variety of low-level system +utilities that are necessary for a Linux system to function. Among +others, Util-linux contains the fdisk configuration tool and the login +program. +Name : device-mapper +Epoch : 7 +Version : 1.02.158 +Release : 2.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:43 AM PDT +Group : System Environment/Base +Size : 340425 +License : GPLv2 +Signature : RSA/SHA256, Thu 22 Aug 2019 02:22:06 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : lvm2-2.02.185-2.el7.src.rpm +Build Date : Thu 08 Aug 2019 05:44:27 PM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://sources.redhat.com/dm +Summary : Device mapper utility +Description : +This package contains the supporting userspace utility, dmsetup, +for the kernel device-mapper. +Name : device-mapper-libs +Epoch : 7 +Version : 1.02.158 +Release : 2.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:43 AM PDT +Group : System Environment/Libraries +Size : 400543 +License : LGPLv2 +Signature : RSA/SHA256, Thu 22 Aug 2019 02:22:11 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : lvm2-2.02.185-2.el7.src.rpm +Build Date : Thu 08 Aug 2019 05:44:27 PM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://sources.redhat.com/lvm2 +Summary : Device-mapper shared library +Description : +This package contains the device-mapper shared library, libdevmapper. +Name : dracut +Version : 033 +Release : 564.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:44 AM PDT +Group : System Environment/Base +Size : 904892 +License : GPLv2+ and LGPLv2+ +Signature : RSA/SHA256, Thu 22 Aug 2019 02:22:24 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : dracut-033-564.el7.src.rpm +Build Date : Thu 08 Aug 2019 04:14:34 PM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://dracut.wiki.kernel.org/ +Summary : Initramfs generator using udev +Description : +dracut contains tools to create a bootable initramfs for 2.6 Linux kernels. +Unlike existing implementations, dracut does hard-code as little as possible +into the initramfs. dracut contains various modules which are driven by the +event-based udev. Having root on MD, DM, LVM2, LUKS is supported as well as +NFS, iSCSI, NBD, FCoE with the dracut-network package. +Name : systemd-libs +Version : 219 +Release : 67.el7_7.1 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:44 AM PDT +Group : Unspecified +Size : 1258408 +License : LGPLv2+ and MIT +Signature : RSA/SHA256, Sat 14 Sep 2019 04:50:37 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : systemd-219-67.el7_7.1.src.rpm +Build Date : Fri 13 Sep 2019 11:21:31 AM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.freedesktop.org/wiki/Software/systemd +Summary : systemd libraries +Description : +Libraries for systemd and udev, as well as the systemd PAM module. +Name : systemd +Version : 219 +Release : 67.el7_7.1 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:46 AM PDT +Group : Unspecified +Size : 24404590 +License : LGPLv2+ and MIT and GPLv2+ +Signature : RSA/SHA256, Sat 14 Sep 2019 04:50:34 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : systemd-219-67.el7_7.1.src.rpm +Build Date : Fri 13 Sep 2019 11:21:31 AM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.freedesktop.org/wiki/Software/systemd +Summary : A System and Service Manager +Description : +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. +Name : policycoreutils +Version : 2.5 +Release : 33.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:48 AM PDT +Group : System Environment/Base +Size : 5329482 +License : GPLv2 +Signature : RSA/SHA256, Thu 22 Aug 2019 02:39:35 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : policycoreutils-2.5-33.el7.src.rpm +Build Date : Thu 08 Aug 2019 06:47:35 PM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.selinuxproject.org +Summary : SELinux policy core utilities +Description : +Security-enhanced Linux is a feature of the Linux® kernel and a number +of utilities with enhanced security functionality designed to add +mandatory access controls to Linux. The Security-enhanced Linux +kernel contains new architectural components originally developed to +improve the security of the Flask operating system. These +architectural components provide general support for the enforcement +of many kinds of mandatory access control policies, including those +based on the concepts of Type Enforcement®, Role-based Access +Control, and Multi-level Security. + +policycoreutils contains the policy core utilities that are required +for basic operation of a SELinux system. These utilities include +load_policy to load policies, setfiles to label filesystems, newrole +to switch roles. +Name : device-mapper-event-libs +Epoch : 7 +Version : 1.02.158 +Release : 2.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:48 AM PDT +Group : System Environment/Libraries +Size : 50564 +License : LGPLv2 +Signature : RSA/SHA256, Thu 22 Aug 2019 02:22:10 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : lvm2-2.02.185-2.el7.src.rpm +Build Date : Thu 08 Aug 2019 05:44:27 PM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://sources.redhat.com/lvm2 +Summary : Device-mapper event daemon shared library +Description : +This package contains the device-mapper event daemon shared library, +libdevmapper-event. +Name : grub2-tools +Epoch : 1 +Version : 2.02 +Release : 0.80.el7.centos +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:49 AM PDT +Group : System Environment/Base +Size : 10080365 +License : GPLv3+ +Signature : RSA/SHA256, Thu 22 Aug 2019 02:25:16 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : grub2-2.02-0.80.el7.centos.src.rpm +Build Date : Thu 08 Aug 2019 04:31:11 AM PDT +Build Host : kbuilder.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.gnu.org/software/grub/ +Summary : Support tools for GRUB. +Description : + +The GRand Unified Bootloader (GRUB) is a highly configurable and +customizable bootloader with modular architecture. It supports a rich +variety of kernel formats, file systems, computer architectures and +hardware devices. + +This subpackage provides tools for support of all platforms. +Name : polkit +Version : 0.112 +Release : 22.el7_7.1 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:59 AM PDT +Group : System Environment/Libraries +Size : 487618 +License : LGPLv2+ +Signature : RSA/SHA256, Sat 14 Sep 2019 04:49:51 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : polkit-0.112-22.el7_7.1.src.rpm +Build Date : Fri 13 Sep 2019 11:10:10 AM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.freedesktop.org/wiki/Software/polkit +Summary : An authorization framework +Description : +polkit is a toolkit for defining and handling authorizations. It is +used for allowing unprivileged processes to speak to privileged +processes. +Name : NetworkManager-libnm +Epoch : 1 +Version : 1.18.0 +Release : 5.el7_7.1 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:22:00 AM PDT +Group : Development/Libraries +Size : 9130076 +License : GPLv2+ +Signature : RSA/SHA256, Sat 14 Sep 2019 04:49:28 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : NetworkManager-1.18.0-5.el7_7.1.src.rpm +Build Date : Fri 13 Sep 2019 11:05:30 AM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.gnome.org/projects/NetworkManager/ +Summary : Libraries for adding NetworkManager support to applications (new API). +Description : +This package contains the libraries that make it easier to use some +NetworkManager functionality from applications. This is the new +NetworkManager API. See also NetworkManager-glib. +Name : openssh +Version : 7.4p1 +Release : 21.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:22:01 AM PDT +Group : Applications/Internet +Size : 1991172 +License : BSD +Signature : RSA/SHA256, Thu 22 Aug 2019 02:37:23 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : openssh-7.4p1-21.el7.src.rpm +Build Date : Thu 08 Aug 2019 06:40:49 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.openssh.com/portable.html +Summary : An open source implementation of SSH protocol versions 1 and 2 +Description : +SSH (Secure SHell) is a program for logging into and executing +commands on a remote machine. SSH is intended to replace rlogin and +rsh, and to provide secure encrypted communications between two +untrusted hosts over an insecure network. X11 connections and +arbitrary TCP/IP ports can also be forwarded over the secure channel. + +OpenSSH is OpenBSD's version of the last free version of SSH, bringing +it up to date in terms of security and features. + +This package includes the core files necessary for both the OpenSSH +client and server. To make this package useful, you should also +install openssh-clients, openssh-server, or both. +Name : dhclient +Epoch : 12 +Version : 4.2.5 +Release : 77.el7.centos +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:22:02 AM PDT +Group : System Environment/Base +Size : 486079 +License : ISC +Signature : RSA/SHA256, Thu 22 Aug 2019 02:22:16 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : dhcp-4.2.5-77.el7.centos.src.rpm +Build Date : Thu 08 Aug 2019 04:10:22 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://isc.org/products/DHCP/ +Summary : Provides the ISC DHCP client daemon and dhclient-script +Description : +DHCP (Dynamic Host Configuration Protocol) is a protocol which allows +individual devices on an IP network to get their own network +configuration information (IP address, subnetmask, broadcast address, +etc.) from a DHCP server. The overall purpose of DHCP is to make it +easier to administer a large network. + +To use DHCP on your network, install a DHCP service (or relay agent), +and on clients run a DHCP client daemon. The dhclient package +provides the ISC DHCP client daemon. +Name : selinux-policy-targeted +Version : 3.13.1 +Release : 252.el7.1 +Architecture: noarch +Install Date: Wed 16 Oct 2019 09:22:04 AM PDT +Group : System Environment/Base +Size : 20080630 +License : GPLv2+ +Signature : RSA/SHA256, Sat 14 Sep 2019 10:10:22 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : selinux-policy-3.13.1-252.el7.1.src.rpm +Build Date : Tue 10 Sep 2019 08:01:56 AM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://oss.tresys.com/repos/refpolicy/ +Summary : SELinux targeted base policy +Description : +SELinux Reference policy targeted base module. +Name : grub2-pc +Epoch : 1 +Version : 2.02 +Release : 0.80.el7.centos +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:22:14 AM PDT +Group : System Environment/Base +Size : 0 +License : GPLv3+ +Signature : RSA/SHA256, Thu 22 Aug 2019 02:25:15 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : grub2-2.02-0.80.el7.centos.src.rpm +Build Date : Thu 08 Aug 2019 04:31:11 AM PDT +Build Host : kbuilder.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.gnu.org/software/grub/ +Summary : Bootloader with support for Linux, Multiboot, and more +Description : + +The GRand Unified Bootloader (GRUB) is a highly configurable and +customizable bootloader with modular architecture. It supports a rich +variety of kernel formats, file systems, computer architectures and +hardware devices. + +This subpackage provides support for pc systems. +Name : lvm2-libs +Epoch : 7 +Version : 2.02.185 +Release : 2.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:22:15 AM PDT +Group : System Environment/Libraries +Size : 3791460 +License : LGPLv2 +Signature : RSA/SHA256, Thu 22 Aug 2019 02:34:53 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : lvm2-2.02.185-2.el7.src.rpm +Build Date : Thu 08 Aug 2019 05:44:27 PM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://sources.redhat.com/lvm2 +Summary : Shared libraries for lvm2 +Description : +This package contains shared lvm2 libraries for applications. +Name : libdrm +Version : 2.4.97 +Release : 2.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:22:15 AM PDT +Group : System Environment/Libraries +Size : 367605 +License : MIT +Signature : RSA/SHA256, Thu 22 Aug 2019 02:29:31 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : libdrm-2.4.97-2.el7.src.rpm +Build Date : Thu 08 Aug 2019 05:15:34 PM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://dri.sourceforge.net +Summary : Direct Rendering Manager runtime library +Description : +Direct Rendering Manager runtime library +Name : cronie +Version : 1.4.11 +Release : 23.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:22:15 AM PDT +Group : System Environment/Base +Size : 220592 +License : MIT and BSD and ISC and GPLv2+ +Signature : RSA/SHA256, Thu 22 Aug 2019 02:21:40 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : cronie-1.4.11-23.el7.src.rpm +Build Date : Thu 08 Aug 2019 04:07:25 PM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://github.com/cronie-crond/cronie +Summary : Cron daemon for executing programs at set times +Description : +Cronie contains the standard UNIX daemon crond that runs specified programs at +scheduled times and related tools. It is a fork of the original vixie-cron and +has security and configuration enhancements like the ability to use pam and +SELinux. +Name : libcgroup +Version : 0.41 +Release : 21.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:22:16 AM PDT +Group : Development/Libraries +Size : 137130 +License : LGPLv2+ +Signature : RSA/SHA256, Thu 22 Aug 2019 02:29:11 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : libcgroup-0.41-21.el7.src.rpm +Build Date : Thu 08 Aug 2019 05:14:24 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://libcg.sourceforge.net/ +Summary : Library to control and monitor control groups +Description : +Control groups infrastructure. The library helps manipulate, control, +administrate and monitor control groups and the associated controllers. +Name : container-selinux +Epoch : 2 +Version : 2.107 +Release : 3.el7 +Architecture: noarch +Install Date: Wed 16 Oct 2019 09:22:16 AM PDT +Group : Unspecified +Size : 41133 +License : GPLv2 +Signature : RSA/SHA256, Mon 16 Sep 2019 05:34:22 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : container-selinux-2.107-3.el7.src.rpm +Build Date : Sun 15 Sep 2019 07:05:16 AM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://github.com/containers/container-selinux +Summary : SELinux policies for container runtimes +Description : +SELinux policy modules for use with container runtimes. +Name : docker-client +Epoch : 2 +Version : 1.13.1 +Release : 103.git7f2769b.el7.centos +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:22:27 AM PDT +Group : Unspecified +Size : 13168359 +License : ASL 2.0 +Signature : RSA/SHA256, Mon 16 Sep 2019 05:33:24 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : docker-1.13.1-103.git7f2769b.el7.centos.src.rpm +Build Date : Sun 15 Sep 2019 07:07:52 AM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://github.com/docker/docker +Summary : Client side files for Docker +Description : +Client side files for Docker +Name : plymouth-scripts +Version : 0.8.9 +Release : 0.32.20140113.el7.centos +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:22:27 AM PDT +Group : Applications/System +Size : 22795 +License : GPLv2+ +Signature : RSA/SHA256, Thu 22 Aug 2019 02:39:27 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : plymouth-0.8.9-0.32.20140113.el7.centos.src.rpm +Build Date : Thu 08 Aug 2019 04:51:46 AM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.freedesktop.org/wiki/Software/Plymouth +Summary : Plymouth related scripts +Description : +This package contains scripts that help integrate Plymouth with +the system. +Name : numactl-libs +Version : 2.0.12 +Release : 3.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:22:27 AM PDT +Group : System Environment/Libraries +Size : 46608 +License : LGPLv2 and GPLv2 +Signature : RSA/SHA256, Thu 22 Aug 2019 02:36:39 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : numactl-2.0.12-3.el7.src.rpm +Build Date : Thu 08 Aug 2019 06:23:34 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://github.com/numactl/numactl +Summary : libnuma libraries +Description : +numactl-libs provides libnuma, a library to do allocations with +NUMA policy in applications. +Name : kernel +Version : 3.10.0 +Release : 1062.1.2.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:22:43 AM PDT +Group : System Environment/Kernel +Size : 67075707 +License : GPLv2 +Signature : RSA/SHA256, Wed 02 Oct 2019 07:15:46 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : kernel-3.10.0-1062.1.2.el7.src.rpm +Build Date : Mon 30 Sep 2019 07:39:55 AM PDT +Build Host : kbuilder.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.kernel.org/ +Summary : The Linux kernel +Description : +The kernel package contains the Linux kernel (vmlinuz), the core of any +Linux operating system. The kernel handles the basic functions +of the operating system: memory allocation, process allocation, device +input and output, etc. +Name : docker +Epoch : 2 +Version : 1.13.1 +Release : 103.git7f2769b.el7.centos +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:22:48 AM PDT +Group : Unspecified +Size : 67678219 +License : ASL 2.0 +Signature : RSA/SHA256, Mon 16 Sep 2019 05:33:23 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : docker-1.13.1-103.git7f2769b.el7.centos.src.rpm +Build Date : Sun 15 Sep 2019 07:07:52 AM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://github.com/docker/docker +Summary : Automates deployment of containerized applications +Description : +Docker is an open-source engine that automates the deployment of any +application as a lightweight, portable, self-sufficient container that will +run virtually anywhere. + +Docker containers can encapsulate any payload, and will run consistently on +and between virtually any server. The same container that a developer builds +and tests on a laptop will run at scale, in production*, on VMs, bare-metal +servers, OpenStack clusters, public instances, or combinations of the above. +Name : grub2 +Epoch : 1 +Version : 2.02 +Release : 0.80.el7.centos +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:22:48 AM PDT +Group : System Environment/Base +Size : 0 +License : GPLv3+ +Signature : RSA/SHA256, Thu 22 Aug 2019 02:25:10 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : grub2-2.02-0.80.el7.centos.src.rpm +Build Date : Thu 08 Aug 2019 04:31:11 AM PDT +Build Host : kbuilder.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.gnu.org/software/grub/ +Summary : Bootloader with support for Linux, Multiboot and more +Description : + +The GRand Unified Bootloader (GRUB) is a highly configurable and +customizable bootloader with modular architecture. It supports a rich +variety of kernel formats, file systems, computer architectures and +hardware devices. +Name : openssh-server +Version : 7.4p1 +Release : 21.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:22:49 AM PDT +Group : System Environment/Daemons +Size : 993586 +License : BSD +Signature : RSA/SHA256, Thu 22 Aug 2019 02:37:29 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : openssh-7.4p1-21.el7.src.rpm +Build Date : Thu 08 Aug 2019 06:40:49 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.openssh.com/portable.html +Summary : An open source SSH server daemon +Description : +OpenSSH is a free version of SSH (Secure SHell), a program for logging +into and executing commands on a remote machine. This package contains +the secure shell daemon (sshd). The sshd daemon allows SSH clients to +securely connect to your SSH server. +Name : NetworkManager-team +Epoch : 1 +Version : 1.18.0 +Release : 5.el7_7.1 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:22:49 AM PDT +Group : System Environment/Base +Size : 41352 +License : GPLv2+ +Signature : RSA/SHA256, Sat 14 Sep 2019 04:49:32 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : NetworkManager-1.18.0-5.el7_7.1.src.rpm +Build Date : Fri 13 Sep 2019 11:05:30 AM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.gnome.org/projects/NetworkManager/ +Summary : Team device plugin for NetworkManager +Description : +This package contains NetworkManager support for team devices. +Name : NetworkManager-wifi +Epoch : 1 +Version : 1.18.0 +Release : 5.el7_7.1 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:22:49 AM PDT +Group : System Environment/Base +Size : 152272 +License : GPLv2+ +Signature : RSA/SHA256, Sat 14 Sep 2019 04:49:33 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : NetworkManager-1.18.0-5.el7_7.1.src.rpm +Build Date : Fri 13 Sep 2019 11:05:30 AM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.gnome.org/projects/NetworkManager/ +Summary : Wifi plugin for NetworkManager +Description : +This package contains NetworkManager support for Wifi and OLPC devices. +Name : biosdevname +Version : 0.7.3 +Release : 2.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:22:50 AM PDT +Group : System Environment/Base +Size : 59254 +License : GPLv2 +Signature : RSA/SHA256, Thu 22 Aug 2019 02:21:00 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : biosdevname-0.7.3-2.el7.src.rpm +Build Date : Thu 08 Aug 2019 04:01:34 PM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://github.com/dell/biosdevname +Summary : Udev helper for naming devices per BIOS names +Description : +biosdevname in its simplest form takes a kernel device name as an +argument, and returns the BIOS-given name it "should" be. This is necessary +on systems where the BIOS name for a given device (e.g. the label on +the chassis is "Gb1") doesn't map directly and obviously to the kernel +name (e.g. eth0). +Name : hwdata +Version : 0.252 +Release : 9.3.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:22:51 AM PDT +Group : System Environment/Base +Size : 14178032 +License : GPLv2+ +Signature : RSA/SHA256, Thu 22 Aug 2019 02:25:37 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : hwdata-0.252-9.3.el7.src.rpm +Build Date : Thu 08 Aug 2019 04:47:24 PM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://github.com/vcrhonek/hwdata +Summary : Hardware identification and configuration data +Description : +hwdata contains various hardware identification and configuration data, +such as the pci.ids and usb.ids databases. +Name : rsyslog +Version : 8.24.0 +Release : 41.el7_7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:22:53 AM PDT +Group : System Environment/Daemons +Size : 2002492 +License : (GPLv3+ and ASL 2.0) +Signature : RSA/SHA256, Sat 14 Sep 2019 04:50:07 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : rsyslog-8.24.0-41.el7_7.src.rpm +Build Date : Fri 13 Sep 2019 11:14:54 AM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.rsyslog.com/ +Summary : Enhanced system logging and kernel message trapping daemon +Description : +Rsyslog is an enhanced, multi-threaded syslog daemon. It supports MySQL, +syslog/TCP, RFC 3195, permitted sender lists, filtering on any message part, +and fine grain output format control. It is compatible with stock sysklogd +and can be used as a drop-in replacement. Rsyslog is simple to set up, with +advanced features suitable for enterprise-class, encryption-protected syslog +relay chains. +Name : dracut-config-rescue +Version : 033 +Release : 564.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:22:57 AM PDT +Group : System Environment/Base +Size : 4067 +License : GPLv2+ and LGPLv2+ +Signature : RSA/SHA256, Thu 22 Aug 2019 02:22:27 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : dracut-033-564.el7.src.rpm +Build Date : Thu 08 Aug 2019 04:14:34 PM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://dracut.wiki.kernel.org/ +Summary : dracut configuration to turn on rescue image generation +Description : +This package provides the configuration to turn on the rescue initramfs +generation with dracut. +Name : sudo +Version : 1.8.23 +Release : 4.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:22:58 AM PDT +Group : Applications/System +Size : 3195829 +License : ISC +Signature : RSA/SHA256, Thu 22 Aug 2019 02:44:10 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : sudo-1.8.23-4.el7.src.rpm +Build Date : Thu 08 Aug 2019 07:58:23 PM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.courtesan.com/sudo/ +Summary : Allows restricted root access for specified users +Description : +Sudo (superuser do) allows a system administrator to give certain +users (or groups of users) the ability to run some (or all) commands +as root while logging all commands and arguments. Sudo operates on a +per-command basis. It is not a replacement for the shell. Features +include: the ability to restrict what commands a user may run on a +per-host basis, copious logging of each command (providing a clear +audit trail of who did what), a configurable timeout of the sudo +command, and the ability to use the same configuration file (sudoers) +on many different machines. +Name : kernel-tools +Version : 3.10.0 +Release : 1062.1.2.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:22:59 AM PDT +Group : Development/System +Size : 299146 +License : GPLv2 +Signature : RSA/SHA256, Wed 02 Oct 2019 07:15:58 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : kernel-3.10.0-1062.1.2.el7.src.rpm +Build Date : Mon 30 Sep 2019 07:39:55 AM PDT +Build Host : kbuilder.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.kernel.org/ +Summary : Assortment of tools for the Linux kernel +Description : +This package contains the tools/ directory from the kernel source +and the supporting documentation. +Name : bind-libs-lite +Epoch : 32 +Version : 9.11.4 +Release : 9.P2.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:22:59 AM PDT +Group : Unspecified +Size : 3091672 +License : MPLv2.0 +Signature : RSA/SHA256, Thu 22 Aug 2019 02:20:49 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : bind-9.11.4-9.P2.el7.src.rpm +Build Date : Thu 08 Aug 2019 05:20:30 AM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.isc.org/products/BIND/ +Summary : Libraries for working with the DNS protocol +Description : +Contains lite version of BIND suite libraries which are used by various +programs to work with DNS protocol. +Name : nss-tools +Version : 3.44.0 +Release : 4.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:23:00 AM PDT +Group : System Environment/Base +Size : 2106883 +License : MPLv2.0 +Signature : RSA/SHA256, Thu 22 Aug 2019 02:36:33 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : nss-3.44.0-4.el7.src.rpm +Build Date : Mon 12 Aug 2019 10:02:37 AM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.mozilla.org/projects/security/pki/nss/ +Summary : Tools for the Network Security Services +Description : +Network Security Services (NSS) is a set of libraries designed to +support cross-platform development of security-enabled client and +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. + +Install the nss-tools package if you need command-line tools to +manipulate the NSS certificate and key database. +Name : alsa-lib +Version : 1.1.8 +Release : 1.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:23:01 AM PDT +Group : System Environment/Libraries +Size : 1433144 +License : LGPLv2+ +Signature : RSA/SHA256, Thu 22 Aug 2019 02:20:17 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : alsa-lib-1.1.8-1.el7.src.rpm +Build Date : Thu 08 Aug 2019 05:01:06 AM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.alsa-project.org/ +Summary : The Advanced Linux Sound Architecture (ALSA) library +Description : +The Advanced Linux Sound Architecture (ALSA) provides audio and MIDI +functionality to the Linux operating system. + +This package includes the ALSA runtime libraries to simplify application +programming and provide higher level functionality as well as support for +the older OSS API, providing binary compatibility for most OSS programs. +Name : iprutils +Version : 2.4.17.1 +Release : 2.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:23:01 AM PDT +Group : System Environment/Base +Size : 955829 +License : CPL +Signature : RSA/SHA256, Thu 22 Aug 2019 02:26:16 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : iprutils-2.4.17.1-2.el7.src.rpm +Build Date : Thu 08 Aug 2019 04:59:00 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://sourceforge.net/projects/iprdd/ +Summary : Utilities for the IBM Power Linux RAID adapters +Description : +Provides a suite of utilities to manage and configure SCSI devices +supported by the ipr SCSI storage device driver. +Name : iwl100-firmware +Version : 39.31.5.1 +Release : 72.el7 +Architecture: noarch +Install Date: Wed 16 Oct 2019 09:23:01 AM PDT +Group : System Environment/Kernel +Size : 474702 +License : Redistributable, no modification permitted +Signature : RSA/SHA256, Thu 22 Aug 2019 02:58:01 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : linux-firmware-20190429-72.gitddde598.el7.src.rpm +Build Date : Thu 08 Aug 2019 05:22:46 AM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/ +Summary : Firmware for Intel(R) Wireless WiFi Link 100 Series Adapters +Description : +This package contains the firmware required by the iwlagn driver +for Linux to support the iwl100 hardware. Usage of the firmware +is subject to the terms and conditions contained inside the provided +LICENSE file. Please read it carefully. +Name : iwl6000g2b-firmware +Version : 17.168.5.2 +Release : 72.el7 +Architecture: noarch +Install Date: Wed 16 Oct 2019 09:23:02 AM PDT +Group : System Environment/Kernel +Size : 1276802 +License : Redistributable, no modification permitted +Signature : RSA/SHA256, Thu 22 Aug 2019 02:58:13 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : linux-firmware-20190429-72.gitddde598.el7.src.rpm +Build Date : Thu 08 Aug 2019 05:22:46 AM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/ +Summary : Firmware for Intel(R) Wireless WiFi Link 6030 Series Adapters +Description : +This package contains the firmware required by the iwlagn driver +for Linux. Usage of the firmware is subject to the terms and conditions +contained inside the provided LICENSE file. Please read it carefully. +Name : iwl1000-firmware +Epoch : 1 +Version : 39.31.5.1 +Release : 72.el7 +Architecture: noarch +Install Date: Wed 16 Oct 2019 09:23:02 AM PDT +Group : System Environment/Kernel +Size : 809706 +License : Redistributable, no modification permitted +Signature : RSA/SHA256, Thu 22 Aug 2019 02:58:00 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : linux-firmware-20190429-72.gitddde598.el7.src.rpm +Build Date : Thu 08 Aug 2019 05:22:46 AM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/ +Summary : Firmware for Intel® PRO/Wireless 1000 B/G/N network adaptors +Description : +This package contains the firmware required by the iwlagn driver +for Linux to support the iwl1000 hardware. Usage of the firmware +is subject to the terms and conditions contained inside the provided +LICENSE file. Please read it carefully. +Name : iwl105-firmware +Version : 18.168.6.1 +Release : 72.el7 +Architecture: noarch +Install Date: Wed 16 Oct 2019 09:23:02 AM PDT +Group : System Environment/Kernel +Size : 826810 +License : Redistributable, no modification permitted +Signature : RSA/SHA256, Thu 22 Aug 2019 02:58:02 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : linux-firmware-20190429-72.gitddde598.el7.src.rpm +Build Date : Thu 08 Aug 2019 05:22:46 AM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/ +Summary : Firmware for Intel(R) Centrino Wireless-N 105 Series Adapters +Description : +This package contains the firmware required by the iwlagn driver +for Linux to support the iwl105 hardware. Usage of the firmware +is subject to the terms and conditions contained inside the provided +LICENSE file. Please read it carefully. +Name : iwl4965-firmware +Version : 228.61.2.24 +Release : 72.el7 +Architecture: noarch +Install Date: Wed 16 Oct 2019 09:23:02 AM PDT +Group : System Environment/Kernel +Size : 325102 +License : Redistributable, no modification permitted +Signature : RSA/SHA256, Thu 22 Aug 2019 02:58:08 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : linux-firmware-20190429-72.gitddde598.el7.src.rpm +Build Date : Thu 08 Aug 2019 05:22:46 AM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/ +Summary : Firmware for Intel® PRO/Wireless 4965 A/G/N network adaptors +Description : +This package contains the firmware required by the iwl4965 driver +for Linux. Usage of the firmware is subject to the terms and conditions +contained inside the provided LICENSE file. Please read it carefully. +Name : iwl6050-firmware +Version : 41.28.5.1 +Release : 72.el7 +Architecture: noarch +Install Date: Wed 16 Oct 2019 09:23:02 AM PDT +Group : System Environment/Kernel +Size : 1070602 +License : Redistributable, no modification permitted +Signature : RSA/SHA256, Thu 22 Aug 2019 02:58:14 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : linux-firmware-20190429-72.gitddde598.el7.src.rpm +Build Date : Thu 08 Aug 2019 05:22:46 AM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/ +Summary : Firmware for Intel(R) Wireless WiFi Link 6050 Series Adapters +Description : +This package contains the firmware required by the iwlagn driver +for Linux. Usage of the firmware is subject to the terms and conditions +contained inside the provided LICENSE file. Please read it carefully. +Name : iwl5000-firmware +Version : 8.83.5.1_1 +Release : 72.el7 +Architecture: noarch +Install Date: Wed 16 Oct 2019 09:23:05 AM PDT +Group : System Environment/Kernel +Size : 1176074 +License : Redistributable, no modification permitted +Signature : RSA/SHA256, Thu 22 Aug 2019 02:58:09 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : linux-firmware-20190429-72.gitddde598.el7.src.rpm +Build Date : Thu 08 Aug 2019 05:22:46 AM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/ +Summary : Firmware for Intel® PRO/Wireless 5000 A/G/N network adaptors +Description : +This package contains the firmware required by the iwl5000 driver +for Linux. Usage of the firmware is subject to the terms and conditions +contained inside the provided LICENSE file. Please read it carefully. +Name : iwl2000-firmware +Version : 18.168.6.1 +Release : 72.el7 +Architecture: noarch +Install Date: Wed 16 Oct 2019 09:23:05 AM PDT +Group : System Environment/Kernel +Size : 833006 +License : Redistributable, no modification permitted +Signature : RSA/SHA256, Thu 22 Aug 2019 02:58:04 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : linux-firmware-20190429-72.gitddde598.el7.src.rpm +Build Date : Thu 08 Aug 2019 05:22:46 AM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/ +Summary : Firmware for Intel(R) Centrino Wireless-N 2000 Series Adapters +Description : +This package contains the firmware required by the iwlagn driver +for Linux to support the iwl2000 hardware. Usage of the firmware +is subject to the terms and conditions contained inside the provided +LICENSE file. Please read it carefully. +Name : iwl3160-firmware +Version : 22.0.7.0 +Release : 72.el7 +Architecture: noarch +Install Date: Wed 16 Oct 2019 09:23:07 AM PDT +Group : System Environment/Kernel +Size : 10445414 +License : Redistributable, no modification permitted +Signature : RSA/SHA256, Thu 22 Aug 2019 02:58:06 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : linux-firmware-20190429-72.gitddde598.el7.src.rpm +Build Date : Thu 08 Aug 2019 05:22:46 AM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/ +Summary : Firmware for Intel(R) Dual Band Wireless-AC 3160 Series Adapters +Description : +This package contains the firmware required by the iwlagn driver +for Linux to support the iwl3160 hardware. Usage of the firmware +is subject to the terms and conditions contained inside the provided +LICENSE file. Please read it carefully. +Name : nss-sysinit +Version : 3.44.0 +Release : 4.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:33 AM PDT +Group : System Environment/Base +Size : 14111 +License : MPLv2.0 +Signature : RSA/SHA256, Thu 22 Aug 2019 02:36:32 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : nss-3.44.0-4.el7.src.rpm +Build Date : Mon 12 Aug 2019 10:02:37 AM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.mozilla.org/projects/security/pki/nss/ +Summary : System NSS Initialization +Description : +Default Operating 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. +Name : lz4 +Version : 1.7.5 +Release : 3.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:34 AM PDT +Group : Unspecified +Size : 366856 +License : GPLv2+ and BSD +Signature : RSA/SHA256, Thu 22 Aug 2019 02:34:57 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : lz4-1.7.5-3.el7.src.rpm +Build Date : Thu 08 Aug 2019 05:45:35 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://lz4.github.io/lz4/ +Summary : Extremely fast compression algorithm +Description : +LZ4 is an extremely fast loss-less compression algorithm, providing compression +speed at 400 MB/s per core, scalable with multi-core CPU. It also features +an extremely fast decoder, with speed in multiple GB/s per core, typically +reaching RAM speed limits on multi-core systems. +Name : iproute +Version : 4.11.0 +Release : 25.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:35 AM PDT +Group : Applications/System +Size : 1901353 +License : GPLv2+ and Public Domain +Signature : RSA/SHA256, Thu 22 Aug 2019 02:26:13 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : iproute-4.11.0-25.el7.src.rpm +Build Date : Thu 08 Aug 2019 04:55:19 PM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://kernel.org/pub/linux/utils/net/iproute2/ +Summary : Advanced IP routing and network device configuration tools +Description : +The iproute package contains networking utilities (ip and rtmon, for example) +which are designed to use the advanced networking capabilities of the Linux +kernel. +Name : libstdc++ +Version : 4.8.5 +Release : 39.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:35 AM PDT +Group : System Environment/Libraries +Size : 1077442 +License : GPLv3+ and GPLv3+ with exceptions and GPLv2+ with exceptions and LGPLv2+ and BSD +Signature : RSA/SHA256, Thu 22 Aug 2019 02:33:21 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : gcc-4.8.5-39.el7.src.rpm +Build Date : Tue 06 Aug 2019 10:15:38 AM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://gcc.gnu.org +Summary : GNU Standard C++ Library +Description : +The libstdc++ package contains a rewritten standard compliant GCC Standard +C++ Library. +Name : atomic-registries +Epoch : 1 +Version : 1.22.1 +Release : 29.gitb507039.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:35 AM PDT +Group : Unspecified +Size : 43244 +License : LGPLv2+ +Signature : RSA/SHA256, Mon 16 Sep 2019 05:33:09 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : atomic-1.22.1-29.gitb507039.el7.src.rpm +Build Date : Sun 15 Sep 2019 07:10:06 AM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://github.com/projectatomic/atomic +Summary : Parses a global YAML registry file +Description : +Utility that parses a global YAML registry file for container runtimes. +Name : python-perf +Version : 3.10.0 +Release : 1062.1.2.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:35 AM PDT +Group : Development/Libraries +Size : 340133 +License : GPLv2 +Signature : RSA/SHA256, Wed 02 Oct 2019 07:16:06 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : kernel-3.10.0-1062.1.2.el7.src.rpm +Build Date : Mon 30 Sep 2019 07:39:55 AM PDT +Build Host : kbuilder.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.kernel.org/ +Summary : Python bindings for apps which will manipulate perf events +Description : +The python-perf package contains a module that permits applications +written in the Python programming language to use the interface +to manipulate perf events. +Name : python-firewall +Version : 0.6.3 +Release : 2.el7_7.1 +Architecture: noarch +Install Date: Wed 16 Oct 2019 09:21:36 AM PDT +Group : Unspecified +Size : 1971540 +License : GPLv2+ +Signature : RSA/SHA256, Sat 14 Sep 2019 04:53:09 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : firewalld-0.6.3-2.el7_7.1.src.rpm +Build Date : Fri 13 Sep 2019 11:02:20 AM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.firewalld.org +Summary : Python2 bindings for firewalld +Description : +Python2 bindings for firewalld. +Name : libdb-utils +Version : 5.3.21 +Release : 25.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:37 AM PDT +Group : Applications/Databases +Size : 322471 +License : BSD and LGPLv2 and Sleepycat +Signature : RSA/SHA256, Thu 22 Aug 2019 02:29:28 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : libdb-5.3.21-25.el7.src.rpm +Build Date : Thu 08 Aug 2019 05:18:38 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.oracle.com/database/berkeley-db/ +Summary : Command line tools for managing Berkeley DB databases +Description : +The Berkeley Database (Berkeley DB) is a programmatic toolkit that +provides embedded database support for both traditional and +client/server applications. Berkeley DB includes B+tree, Extended +Linear Hashing, Fixed and Variable-length record access methods, +transactions, locking, logging, shared memory caching, and database +recovery. DB supports C, C++, Java and Perl APIs. +Name : bind-export-libs +Epoch : 32 +Version : 9.11.4 +Release : 9.P2.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:37 AM PDT +Group : Unspecified +Size : 3007945 +License : MPLv2.0 +Signature : RSA/SHA256, Thu 22 Aug 2019 02:20:47 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : bind-9.11.4-9.P2.el7.src.rpm +Build Date : Thu 08 Aug 2019 05:20:30 AM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.isc.org/products/BIND/ +Summary : ISC libs for DHCP application +Description : +BIND (Berkeley Internet Name Domain) is an implementation of the DNS +(Domain Name System) protocols. This package set contains only export +version of BIND libraries, that are used for building ISC DHCP. +Name : libssh2 +Version : 1.8.0 +Release : 3.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:38 AM PDT +Group : System Environment/Libraries +Size : 191464 +License : BSD +Signature : RSA/SHA256, Thu 22 Aug 2019 02:33:10 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : libssh2-1.8.0-3.el7.src.rpm +Build Date : Thu 08 Aug 2019 05:31:49 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.libssh2.org/ +Summary : A library implementing the SSH2 protocol +Description : +libssh2 is a library implementing the SSH2 protocol as defined by +Internet Drafts: SECSH-TRANS(22), SECSH-USERAUTH(25), +SECSH-CONNECTION(23), SECSH-ARCH(20), SECSH-FILEXFER(06)*, +SECSH-DHGEX(04), and SECSH-NUMBERS(10). +Name : geoipupdate +Version : 2.5.0 +Release : 1.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:39 AM PDT +Group : Unspecified +Size : 62806 +License : GPLv2 +Signature : RSA/SHA256, Thu 22 Aug 2019 02:24:33 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : geoipupdate-2.5.0-1.el7.src.rpm +Build Date : Mon 12 Aug 2019 01:21:19 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://dev.maxmind.com/geoip/geoipupdate/ +Summary : Update GeoIP2 and GeoIP Legacy binary databases from MaxMind +Description : +The GeoIP Update program performs automatic updates of GeoIP2 and GeoIP +Legacy binary databases. +Name : curl +Version : 7.29.0 +Release : 54.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:39 AM PDT +Group : Applications/Internet +Size : 540460 +License : MIT +Signature : RSA/SHA256, Thu 22 Aug 2019 02:21:58 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : curl-7.29.0-54.el7.src.rpm +Build Date : Thu 08 Aug 2019 05:02:11 AM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://curl.haxx.se/ +Summary : A utility for getting files from remote servers (FTP, HTTP, and others) +Description : +curl is a command line tool for transferring data with URL syntax, supporting +FTP, FTPS, HTTP, HTTPS, SCP, SFTP, TFTP, TELNET, DICT, LDAP, LDAPS, FILE, IMAP, +SMTP, POP3 and RTSP. curl supports SSL certificates, HTTP POST, HTTP PUT, FTP +uploading, HTTP form based upload, proxies, cookies, user+password +authentication (Basic, Digest, NTLM, Negotiate, kerberos...), file transfer +resume, proxy tunneling and a busload of other useful tricks. +Name : rpm-libs +Version : 4.11.3 +Release : 40.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:40 AM PDT +Group : Development/Libraries +Size : 611456 +License : GPLv2+ and LGPLv2+ with exceptions +Signature : RSA/SHA256, Thu 22 Aug 2019 02:42:37 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : rpm-4.11.3-40.el7.src.rpm +Build Date : Tue 06 Aug 2019 03:50:54 PM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.rpm.org/ +Summary : Libraries for manipulating RPM packages +Description : +This package contains the RPM shared libraries. +Name : rpm-python +Version : 4.11.3 +Release : 40.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:40 AM PDT +Group : Development/Libraries +Size : 149898 +License : GPLv2+ +Signature : RSA/SHA256, Thu 22 Aug 2019 02:42:38 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : rpm-4.11.3-40.el7.src.rpm +Build Date : Tue 06 Aug 2019 03:50:54 PM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.rpm.org/ +Summary : Python bindings for apps which will manipulate RPM packages +Description : +The rpm-python 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. +Name : yum +Version : 3.4.3 +Release : 163.el7.centos +Architecture: noarch +Install Date: Wed 16 Oct 2019 09:21:41 AM PDT +Group : System Environment/Base +Size : 5827255 +License : GPLv2+ +Signature : RSA/SHA256, Thu 22 Aug 2019 03:01:55 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : yum-3.4.3-163.el7.centos.src.rpm +Build Date : Thu 08 Aug 2019 04:57:56 AM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://yum.baseurl.org/ +Summary : RPM package installer/updater/manager +Description : +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. +Name : e2fsprogs-libs +Version : 1.42.9 +Release : 16.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:41 AM PDT +Group : Development/Libraries +Size : 363697 +License : GPLv2 and LGPLv2 +Signature : RSA/SHA256, Thu 22 Aug 2019 02:22:41 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : e2fsprogs-1.42.9-16.el7.src.rpm +Build Date : Thu 08 Aug 2019 04:19:51 PM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://e2fsprogs.sourceforge.net/ +Summary : Ext2/3/4 filesystem-specific shared libraries +Description : +E2fsprogs-libs contains libe2p and libext2fs, the libraries of the +e2fsprogs package. + +These libraries are used to directly acccess ext2/3/4 filesystems +from userspace. +Name : kmod-libs +Version : 20 +Release : 25.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:41 AM PDT +Group : System Environment/Libraries +Size : 91800 +License : LGPLv2+ +Signature : RSA/SHA256, Thu 22 Aug 2019 02:28:24 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : kmod-20-25.el7.src.rpm +Build Date : Thu 08 Aug 2019 05:05:58 PM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://git.kernel.org/?p=utils/kernel/kmod/kmod.git;a=summary +Summary : Libraries to handle kernel module loading and unloading +Description : +The kmod-libs package provides runtime libraries for any application that +wishes to load or unload Linux kernel modules from the running system. +Name : freetype +Version : 2.8 +Release : 14.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:41 AM PDT +Group : System Environment/Libraries +Size : 824481 +License : (FTL or GPLv2+) and BSD and MIT and Public Domain and zlib with acknowledgement +Signature : RSA/SHA256, Thu 22 Aug 2019 02:24:12 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : freetype-2.8-14.el7.src.rpm +Build Date : Thu 08 Aug 2019 04:30:28 PM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.freetype.org +Summary : A free and portable font rendering engine +Description : +The FreeType engine is a free and portable font rendering +engine, developed to provide advanced font support for a variety of +platforms and environments. FreeType is a library which can open and +manages font files as well as efficiently load, hint and render +individual glyphs. FreeType is not a font server or a complete +text-rendering library. +Name : teamd +Version : 1.27 +Release : 9.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:41 AM PDT +Group : System Environment/Daemons +Size : 277924 +License : LGPLv2+ +Signature : RSA/SHA256, Thu 22 Aug 2019 02:44:34 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : libteam-1.27-9.el7.src.rpm +Build Date : Thu 08 Aug 2019 05:33:37 PM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.libteam.org +Summary : Team network device control daemon +Description : +The teamd package contains team network device control daemon. +Name : ipset-libs +Version : 7.1 +Release : 1.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:42 AM PDT +Group : Unspecified +Size : 206400 +License : GPLv2 +Signature : RSA/SHA256, Thu 22 Aug 2019 02:26:18 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : ipset-7.1-1.el7.src.rpm +Build Date : Thu 08 Aug 2019 04:55:38 PM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://ipset.netfilter.org/ +Summary : Shared library providing the IP sets functionality +Description : +This package contains the libraries which provide the IP sets funcionality. +Name : kpartx +Version : 0.4.9 +Release : 127.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:43 AM PDT +Group : System Environment/Base +Size : 41363 +License : GPL+ +Signature : RSA/SHA256, Thu 22 Aug 2019 02:28:26 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : device-mapper-multipath-0.4.9-127.el7.src.rpm +Build Date : Thu 08 Aug 2019 04:08:46 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://christophe.varoqui.free.fr/ +Summary : Partition device manager for device-mapper devices +Description : +kpartx manages partition creation and removal for device-mapper devices. +Name : authconfig +Version : 6.2.8 +Release : 30.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:53 AM PDT +Group : System Environment/Base +Size : 2316601 +License : GPLv2+ +Signature : RSA/SHA256, Thu 10 Aug 2017 08:00:45 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : authconfig-6.2.8-30.el7.src.rpm +Build Date : Fri 04 Aug 2017 02:05:38 AM PDT +Build Host : c1bm.rdu2.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://fedorahosted.org/authconfig +Summary : Command line tool for setting up authentication from network services +Description : +Authconfig is a command line utility which can configure a workstation +to use shadow (more secure) passwords. Authconfig can also configure a +system to be a client for certain networked user information and +authentication schemes. +Name : chkconfig +Version : 1.7.4 +Release : 1.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:08 AM PDT +Group : System Environment/Base +Size : 779531 +License : GPLv2 +Signature : RSA/SHA256, Thu 10 Aug 2017 08:17:48 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : chkconfig-1.7.4-1.el7.src.rpm +Build Date : Fri 04 Aug 2017 06:45:51 AM PDT +Build Host : c1bm.rdu2.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://github.com/fedora-sysv/chkconfig +Summary : A system tool for maintaining the /etc/rc*.d hierarchy +Description : +Chkconfig is a basic system utility. It updates and queries runlevel +information for system services. Chkconfig manipulates the numerous +symbolic links in /etc/rc.d, to relieve system administrators of some +of the drudgery of manually editing the symbolic links. +Name : cryptsetup-libs +Version : 2.0.3 +Release : 5.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:44 AM PDT +Group : System Environment/Libraries +Size : 1219599 +License : GPLv2+ and LGPLv2+ +Signature : RSA/SHA256, Thu 22 Aug 2019 02:21:44 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : cryptsetup-2.0.3-5.el7.src.rpm +Build Date : Thu 08 Aug 2019 04:07:41 PM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://gitlab.com/cryptsetup/cryptsetup +Summary : Cryptsetup shared library +Description : +This package contains the cryptsetup shared library, libcryptsetup. +Name : setup +Version : 2.8.71 +Release : 10.el7 +Architecture: noarch +Install Date: Thu 15 Aug 2019 10:53:12 AM PDT +Group : System Environment/Base +Size : 696893 +License : Public Domain +Signature : RSA/SHA256, Mon 12 Nov 2018 07:19:37 AM PST, Key ID 24c6a8a7f4a80eb5 +Source RPM : setup-2.8.71-10.el7.src.rpm +Build Date : Tue 30 Oct 2018 12:48:11 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://pagure.io/setup/ +Summary : A set of system configuration and setup files +Description : +The setup package contains a set of important system configuration and +setup files, such as passwd, group, and profile. +Name : elfutils-libs +Version : 0.176 +Release : 2.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:45 AM PDT +Group : Development/Tools +Size : 809871 +License : GPLv2+ or LGPLv3+ +Signature : RSA/SHA256, Thu 22 Aug 2019 02:22:53 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : elfutils-0.176-2.el7.src.rpm +Build Date : Thu 08 Aug 2019 04:16:25 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://elfutils.org/ +Summary : Libraries to handle compiled objects +Description : +The elfutils-libs package contains libraries which implement DWARF, ELF, +and machine-specific ELF handling. These libraries are used by the programs +in the elfutils package. The elfutils-devel package enables building +other programs using these libraries. +Name : zlib +Version : 1.2.7 +Release : 18.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:15 AM PDT +Group : System Environment/Libraries +Size : 185294 +License : zlib and Boost +Signature : RSA/SHA256, Mon 12 Nov 2018 06:49:53 AM PST, Key ID 24c6a8a7f4a80eb5 +Source RPM : zlib-1.2.7-18.el7.src.rpm +Build Date : Tue 30 Oct 2018 01:24:40 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.zlib.net/ +Summary : The compression and decompression library +Description : +Zlib is a general-purpose, patent-free, lossless data compression +library which is used by many different programs. +Name : initscripts +Version : 9.49.47 +Release : 1.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:48 AM PDT +Group : System Environment/Base +Size : 1523210 +License : GPLv2 and GPLv2+ +Signature : RSA/SHA256, Thu 22 Aug 2019 02:26:07 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : initscripts-9.49.47-1.el7.src.rpm +Build Date : Thu 08 Aug 2019 04:52:43 PM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://github.com/fedora-sysv/initscripts +Summary : The inittab file and the /etc/init.d scripts +Description : +The initscripts package contains basic system scripts used +during a boot of the system. It also contains scripts which +activate and deactivate most network interfaces. +Name : man-db +Version : 2.6.3 +Release : 11.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:56 AM PDT +Group : System Environment/Base +Size : 2138837 +License : GPLv2+ and GPLv3+ +Signature : RSA/SHA256, Mon 12 Nov 2018 06:39:38 AM PST, Key ID 24c6a8a7f4a80eb5 +Source RPM : man-db-2.6.3-11.el7.src.rpm +Build Date : Tue 30 Oct 2018 01:26:54 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.nongnu.org/man-db/ +Summary : Tools for searching and reading man pages +Description : +The man-db package includes five tools for browsing man-pages: +man, whatis, apropos, manpath and lexgrog. man formats and displays +manual pages. whatis searches the manual page names. apropos searches the +manual page names and descriptions. manpath determines search path +for manual pages. lexgrog directly reads header information in +manual pages. +Name : popt +Version : 1.13 +Release : 16.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:16 AM PDT +Group : System Environment/Libraries +Size : 88516 +License : MIT +Signature : RSA/SHA256, Thu 03 Jul 2014 09:33:04 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : popt-1.13-16.el7.src.rpm +Build Date : Mon 09 Jun 2014 09:03:23 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.rpm5.org/ +Summary : C library for parsing command line parameters +Description : +Popt is a C library for parsing command line parameters. Popt was +heavily influenced by the getopt() and getopt_long() functions, but +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. +Name : selinux-policy +Version : 3.13.1 +Release : 252.el7.1 +Architecture: noarch +Install Date: Wed 16 Oct 2019 09:21:49 AM PDT +Group : System Environment/Base +Size : 6909 +License : GPLv2+ +Signature : RSA/SHA256, Sat 14 Sep 2019 10:10:14 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : selinux-policy-3.13.1-252.el7.1.src.rpm +Build Date : Tue 10 Sep 2019 08:01:56 AM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://oss.tresys.com/repos/refpolicy/ +Summary : SELinux policy configuration +Description : +SELinux Reference Policy - modular. +Based off of reference policy: Checked out revision 2.20091117 +Name : gawk +Version : 4.0.2 +Release : 4.el7_3.1 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:16 AM PDT +Group : Applications/Text +Size : 2435978 +License : GPLv3+ and GPL and LGPLv3+ and LGPL and BSD +Signature : RSA/SHA256, Thu 29 Jun 2017 05:40:38 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : gawk-4.0.2-4.el7_3.1.src.rpm +Build Date : Wed 28 Jun 2017 02:52:50 PM PDT +Build Host : c1bm.rdu2.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.gnu.org/software/gawk/gawk.html +Summary : The GNU version of the awk text processing utility +Description : +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. +Name : NetworkManager +Epoch : 1 +Version : 1.18.0 +Release : 5.el7_7.1 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:22:01 AM PDT +Group : System Environment/Base +Size : 5360883 +License : GPLv2+ +Signature : RSA/SHA256, Sat 14 Sep 2019 04:49:22 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : NetworkManager-1.18.0-5.el7_7.1.src.rpm +Build Date : Fri 13 Sep 2019 11:05:30 AM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.gnome.org/projects/NetworkManager/ +Summary : Network connection manager and user applications +Description : +NetworkManager is a system service that manages network interfaces and +connections based on user or automatic configuration. It supports +Ethernet, Bridge, Bond, VLAN, Team, InfiniBand, Wi-Fi, mobile broadband +(WWAN), PPPoE and other devices, and supports a variety of different VPN +services. +Name : libacl +Version : 2.2.51 +Release : 14.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:16 AM PDT +Group : System Environment/Libraries +Size : 37056 +License : LGPLv2+ +Signature : RSA/SHA256, Wed 25 Apr 2018 04:10:52 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : acl-2.2.51-14.el7.src.rpm +Build Date : Tue 10 Apr 2018 05:41:24 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://acl.bestbits.at/ +Summary : Dynamic library for access control list support +Description : +This package contains the libacl.so dynamic library which contains +the POSIX 1003.1e draft standard 17 functions for manipulating access +control lists. +Name : dracut-network +Version : 033 +Release : 564.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:22:02 AM PDT +Group : System Environment/Base +Size : 148891 +License : GPLv2+ and LGPLv2+ +Signature : RSA/SHA256, Thu 22 Aug 2019 02:22:29 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : dracut-033-564.el7.src.rpm +Build Date : Thu 08 Aug 2019 04:14:34 PM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://dracut.wiki.kernel.org/ +Summary : dracut modules to build a dracut initramfs with network support +Description : +This package requires everything which is needed to build a generic +all purpose initramfs with network support with dracut. +Name : sed +Version : 4.2.2 +Release : 5.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:16 AM PDT +Group : Applications/Text +Size : 601208 +License : GPLv3+ +Signature : RSA/SHA256, Thu 03 Jul 2014 09:58:02 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : sed-4.2.2-5.el7.src.rpm +Build Date : Mon 09 Jun 2014 06:01:55 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://sed.sourceforge.net/ +Summary : A GNU stream text editor +Description : +The sed (Stream EDitor) editor is a stream or batch (non-interactive) +editor. Sed takes text as input, performs an operation or set of +operations on the text and outputs the modified text. The operations +that sed performs (substitutions, deletions, insertions, etc.) can be +specified in a script file or from the command line. +Name : device-mapper-event +Epoch : 7 +Version : 1.02.158 +Release : 2.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:22:14 AM PDT +Group : System Environment/Base +Size : 42707 +License : GPLv2 +Signature : RSA/SHA256, Thu 22 Aug 2019 02:22:08 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : lvm2-2.02.185-2.el7.src.rpm +Build Date : Thu 08 Aug 2019 05:44:27 PM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://sources.redhat.com/lvm2 +Summary : Device-mapper event daemon +Description : +This package contains the dmeventd daemon for monitoring the state +of device-mapper devices. +Name : gmp +Epoch : 1 +Version : 6.0.0 +Release : 15.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:16 AM PDT +Group : System Environment/Libraries +Size : 657046 +License : LGPLv3+ or GPLv2+ +Signature : RSA/SHA256, Thu 10 Aug 2017 09:14:25 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : gmp-6.0.0-15.el7.src.rpm +Build Date : Wed 02 Aug 2017 06:13:15 PM PDT +Build Host : c1bm.rdu2.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://gmplib.org/ +Summary : A GNU arbitrary precision library +Description : +The gmp package contains GNU MP, a library for arbitrary precision +arithmetic, signed integers operations, rational numbers and floating +point numbers. GNU MP is designed for speed, for both small and very +large operands. GNU MP is fast because it uses fullwords as the basic +arithmetic type, it uses fast algorithms, it carefully optimizes +assembly code for many CPUs' most common inner loops, and it generally +emphasizes speed over simplicity/elegance in its operations. + +Install the gmp package if you need a fast arbitrary precision +library. +Name : cronie-anacron +Version : 1.4.11 +Release : 23.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:22:15 AM PDT +Group : System Environment/Base +Size : 41683 +License : MIT and BSD and ISC and GPLv2+ +Signature : RSA/SHA256, Thu 22 Aug 2019 02:21:41 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : cronie-1.4.11-23.el7.src.rpm +Build Date : Thu 08 Aug 2019 04:07:25 PM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://github.com/cronie-crond/cronie +Summary : Utility for running regular jobs +Description : +Anacron is part of cronie that is used for running jobs with regular +periodicity which do not have exact time of day of execution. + +The default settings of anacron execute the daily, weekly, and monthly +jobs, but anacron allows setting arbitrary periodicity of jobs. + +Using anacron allows running the periodic jobs even if the system is often +powered off and it also allows randomizing the time of the job execution +for better utilization of resources shared among multiple systems. +Name : ca-certificates +Version : 2018.2.22 +Release : 70.0.el7_5 +Architecture: noarch +Install Date: Thu 15 Aug 2019 10:53:17 AM PDT +Group : System Environment/Base +Size : 973960 +License : Public Domain +Signature : RSA/SHA256, Thu 17 May 2018 06:16:26 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : ca-certificates-2018.2.22-70.0.el7_5.src.rpm +Build Date : Tue 15 May 2018 09:36:08 PM PDT +Build Host : c1bm.rdu2.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.mozilla.org/ +Summary : The Mozilla CA root certificate bundle +Description : +This package contains the set of CA certificates chosen by the +Mozilla Foundation for use with the Internet PKI. +Name : policycoreutils-python +Version : 2.5 +Release : 33.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:22:16 AM PDT +Group : System Environment/Base +Size : 1304826 +License : GPLv2 +Signature : RSA/SHA256, Thu 22 Aug 2019 02:39:39 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : policycoreutils-2.5-33.el7.src.rpm +Build Date : Thu 08 Aug 2019 06:47:35 PM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.selinuxproject.org +Summary : SELinux policy core python utilities +Description : +The policycoreutils-python package contains the management tools use to manage +an SELinux environment. +Name : plymouth-core-libs +Version : 0.8.9 +Release : 0.32.20140113.el7.centos +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:22:27 AM PDT +Group : Development/Libraries +Size : 222840 +License : GPLv2+ +Signature : RSA/SHA256, Thu 22 Aug 2019 02:39:20 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : plymouth-0.8.9-0.32.20140113.el7.centos.src.rpm +Build Date : Thu 08 Aug 2019 04:51:46 AM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.freedesktop.org/wiki/Software/Plymouth +Summary : Plymouth core libraries +Description : +This package contains the libply and libply-splash-core libraries +used by Plymouth. +Name : yajl +Version : 2.0.4 +Release : 4.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 12:00:18 PM PDT +Group : Development/Libraries +Size : 116450 +License : ISC +Signature : RSA/SHA256, Thu 03 Jul 2014 10:52:29 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : yajl-2.0.4-4.el7.src.rpm +Build Date : Mon 09 Jun 2014 10:00:29 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://lloyd.github.com/yajl/ +Summary : Yet Another JSON Library (YAJL) +Description : +Yet Another JSON Library. YAJL is a small event-driven +(SAX-style) JSON parser written in ANSI C, and a small +validating JSON generator. +Name : bzip2-libs +Version : 1.0.6 +Release : 13.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:18 AM PDT +Group : System Environment/Libraries +Size : 70093 +License : BSD +Signature : RSA/SHA256, Wed 25 Nov 2015 06:18:43 AM PST, Key ID 24c6a8a7f4a80eb5 +Source RPM : bzip2-1.0.6-13.el7.src.rpm +Build Date : Thu 19 Nov 2015 09:04:52 PM PST +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.bzip.org/ +Summary : Libraries for applications using bzip2 +Description : + +Libraries for applications using the bzip2 compression format. +Name : linux-firmware +Version : 20190429 +Release : 72.gitddde598.el7 +Architecture: noarch +Install Date: Wed 16 Oct 2019 09:22:38 AM PDT +Group : System Environment/Kernel +Size : 340702338 +License : GPL+ and GPLv2+ and MIT and Redistributable, no modification permitted +Signature : RSA/SHA256, Thu 22 Aug 2019 02:59:09 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : linux-firmware-20190429-72.gitddde598.el7.src.rpm +Build Date : Thu 08 Aug 2019 05:22:46 AM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/ +Summary : Firmware files used by the Linux kernel +Description : +Kernel-firmware includes firmware files required for some devices to +operate. +Name : container-storage-setup +Version : 0.11.0 +Release : 2.git5eaf76c.el7 +Architecture: noarch +Install Date: Thu 15 Aug 2019 12:00:19 PM PDT +Group : Unspecified +Size : 101782 +License : ASL 2.0 +Signature : RSA/SHA256, Tue 21 Aug 2018 12:48:30 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : container-storage-setup-0.11.0-2.git5eaf76c.el7.src.rpm +Build Date : Tue 21 Aug 2018 07:41:44 AM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://github.com/projectatomic/container-storage-setup +Summary : A simple service to setup container storage devices +Description : +This is a simple service to configure Container Runtimes to use an LVM-managed +thin pool. It also supports auto-growing both the pool as well +as the root logical volume and partition table. +Name : libxml2 +Version : 2.9.1 +Release : 6.el7_2.3 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:18 AM PDT +Group : Development/Libraries +Size : 1710062 +License : MIT +Signature : RSA/SHA256, Thu 23 Jun 2016 01:07:58 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : libxml2-2.9.1-6.el7_2.3.src.rpm +Build Date : Thu 23 Jun 2016 07:36:41 AM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://xmlsoft.org/ +Summary : Library providing XML and HTML support +Description : +This library allows to manipulate XML files. It includes support +to read, modify and write XML and HTML files. There is DTDs support +this includes parsing and validation even with complex DtDs, either +at parse time or later once the document has been modified. The output +can be a simple SAX stream or and in-memory DOM like representations. +In this case one can use the built-in XPath and XPointer implementation +to select sub nodes or ranges. A flexible Input/Output mechanism is +available, with existing HTTP and FTP modules and combined to an +URI library. +Name : audit +Version : 2.8.5 +Release : 4.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:22:48 AM PDT +Group : System Environment/Daemons +Size : 660117 +License : GPLv2+ +Signature : RSA/SHA256, Thu 22 Aug 2019 02:20:29 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : audit-2.8.5-4.el7.src.rpm +Build Date : Thu 08 Aug 2019 05:06:20 AM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://people.redhat.com/sgrubb/audit/ +Summary : User space tools for 2.6 kernel auditing +Description : +The audit package contains the user space utilities for +storing and searching the audit records generated by +the audit subsystem in the Linux 2.6 and later kernels. +Name : PyYAML +Version : 3.10 +Release : 11.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 12:00:19 PM PDT +Group : Development/Libraries +Size : 645110 +License : MIT +Signature : RSA/SHA256, Thu 03 Jul 2014 09:43:09 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : PyYAML-3.10-11.el7.src.rpm +Build Date : Mon 09 Jun 2014 08:53:05 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://pyyaml.org/ +Summary : YAML parser and emitter for Python +Description : +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. +Name : libgcrypt +Version : 1.5.3 +Release : 14.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:18 AM PDT +Group : System Environment/Libraries +Size : 597727 +License : LGPLv2+ +Signature : RSA/SHA256, Thu 10 Aug 2017 10:08:59 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : libgcrypt-1.5.3-14.el7.src.rpm +Build Date : Wed 02 Aug 2017 08:55:07 AM PDT +Build Host : c1bm.rdu2.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.gnupg.org/ +Summary : A general-purpose cryptography library +Description : +Libgcrypt is a general purpose crypto library based on the code used +in GNU Privacy Guard. This is a development version. +Name : openssh-clients +Version : 7.4p1 +Release : 21.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:22:49 AM PDT +Group : Applications/Internet +Size : 2643176 +License : BSD +Signature : RSA/SHA256, Thu 22 Aug 2019 02:37:26 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : openssh-7.4p1-21.el7.src.rpm +Build Date : Thu 08 Aug 2019 06:40:49 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.openssh.com/portable.html +Summary : An open source SSH client applications +Description : +OpenSSH is a free version of SSH (Secure SHell), a program for logging +into and executing commands on a remote machine. This package includes +the clients necessary to make encrypted connections to SSH servers. +Name : python-setuptools +Version : 0.9.8 +Release : 7.el7 +Architecture: noarch +Install Date: Thu 15 Aug 2019 12:00:19 PM PDT +Group : Applications/System +Size : 2040815 +License : Python or ZPLv2.0 +Signature : RSA/SHA256, Thu 10 Aug 2017 12:23:40 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : python-setuptools-0.9.8-7.el7.src.rpm +Build Date : Wed 02 Aug 2017 03:18:29 AM PDT +Build Host : c1bm.rdu2.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://pypi.python.org/pypi/setuptools +Summary : Easily build and distribute Python packages +Description : +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. + +This package contains the distribute fork of setuptools. +Name : lua +Version : 5.1.4 +Release : 15.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:18 AM PDT +Group : Development/Languages +Size : 640319 +License : MIT +Signature : RSA/SHA256, Sun 20 Nov 2016 11:22:39 AM PST, Key ID 24c6a8a7f4a80eb5 +Source RPM : lua-5.1.4-15.el7.src.rpm +Build Date : Sat 05 Nov 2016 07:47:35 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.lua.org/ +Summary : Powerful light-weight programming language +Description : +Lua is a powerful light-weight programming language designed for +extending applications. Lua is also frequently used as a +general-purpose, stand-alone language. Lua is free software. +Lua combines simple procedural syntax with powerful data description +constructs based on associative arrays and extensible semantics. Lua +is dynamically typed, interpreted from bytecodes, and has automatic +memory management with garbage collection, making it ideal for +configuration, scripting, and rapid prototyping. +Name : tuned +Version : 2.11.0 +Release : 5.el7_7.1 +Architecture: noarch +Install Date: Wed 16 Oct 2019 09:22:50 AM PDT +Group : Unspecified +Size : 815395 +License : GPLv2+ +Signature : RSA/SHA256, Sat 14 Sep 2019 04:53:14 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : tuned-2.11.0-5.el7_7.1.src.rpm +Build Date : Fri 13 Sep 2019 11:16:55 AM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.tuned-project.org/ +Summary : A dynamic adaptive system tuning daemon +Description : +The tuned package contains a daemon that tunes system settings dynamically. +It does so by monitoring the usage of several system components periodically. +Based on that information components will then be put into lower or higher +power saving modes to adapt to the current usage. Currently only ethernet +network and ATA harddisk devices are implemented. +Name : setools-libs +Version : 3.3.8 +Release : 4.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 12:00:20 PM PDT +Group : System Environment/Libraries +Size : 1917790 +License : LGPLv2 +Signature : RSA/SHA256, Mon 12 Nov 2018 06:46:38 AM PST, Key ID 24c6a8a7f4a80eb5 +Source RPM : setools-3.3.8-4.el7.src.rpm +Build Date : Fri 02 Nov 2018 08:53:43 AM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://oss.tresys.com/projects/setools +Summary : Policy analysis support libraries for SELinux +Description : +SETools is a collection of graphical tools, command-line tools, and +libraries designed to facilitate SELinux policy analysis. + +This package includes the following run-time libraries: + + libapol policy analysis library + libpoldiff semantic policy difference library + libqpol library that abstracts policy internals + libseaudit parse and filter SELinux audit messages in log files + libsefs SELinux file contexts library +Name : libnl3 +Version : 3.2.28 +Release : 4.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:19 AM PDT +Group : Development/Libraries +Size : 864984 +License : LGPLv2 +Signature : RSA/SHA256, Thu 10 Aug 2017 10:22:44 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : libnl3-3.2.28-4.el7.src.rpm +Build Date : Thu 03 Aug 2017 12:49:03 PM PDT +Build Host : c1bm.rdu2.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.infradead.org/~tgr/libnl/ +Summary : Convenience library for kernel netlink sockets +Description : +This package contains a convenience library to simplify +using the Linux kernel's netlink sockets interface for +network manipulation +Name : firewalld +Version : 0.6.3 +Release : 2.el7_7.1 +Architecture: noarch +Install Date: Wed 16 Oct 2019 09:22:52 AM PDT +Group : Unspecified +Size : 1943890 +License : GPLv2+ +Signature : RSA/SHA256, Sat 14 Sep 2019 04:52:50 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : firewalld-0.6.3-2.el7_7.1.src.rpm +Build Date : Fri 13 Sep 2019 11:02:20 AM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.firewalld.org +Summary : A firewall daemon with D-Bus interface providing a dynamic firewall +Description : +firewalld is a firewall service daemon that provides a dynamic customizable +firewall with a D-Bus interface. +Name : parted +Version : 3.1 +Release : 31.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:22:57 AM PDT +Group : Applications/System +Size : 2336844 +License : GPLv3+ +Signature : RSA/SHA256, Thu 22 Aug 2019 02:37:52 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : parted-3.1-31.el7.src.rpm +Build Date : Thu 08 Aug 2019 06:41:49 PM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.gnu.org/software/parted +Summary : The GNU disk partition manipulation program +Description : +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. +Name : libmnl +Version : 1.0.3 +Release : 7.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:19 AM PDT +Group : System Environment/Libraries +Size : 51847 +License : LGPLv2+ +Signature : RSA/SHA256, Thu 03 Jul 2014 07:59:14 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : libmnl-1.0.3-7.el7.src.rpm +Build Date : Tue 17 Jun 2014 08:49:02 AM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://netfilter.org/projects/libmnl +Summary : A minimalistic Netlink library +Description : +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. +Name : e2fsprogs +Version : 1.42.9 +Release : 16.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:22:59 AM PDT +Group : System Environment/Base +Size : 2548941 +License : GPLv2 +Signature : RSA/SHA256, Thu 22 Aug 2019 02:22:40 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : e2fsprogs-1.42.9-16.el7.src.rpm +Build Date : Thu 08 Aug 2019 04:19:51 PM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://e2fsprogs.sourceforge.net/ +Summary : Utilities for managing ext2, ext3, and ext4 filesystems +Description : +The e2fsprogs package contains a number of utilities for creating, +checking, modifying, and correcting any inconsistencies in second, +third and fourth extended (ext2/ext3/ext4) filesystems. E2fsprogs +contains e2fsck (used to repair filesystem inconsistencies after an +unclean shutdown), mke2fs (used to initialize a partition to contain +an empty ext2 filesystem), debugfs (used to examine the internal +structure of a filesystem, to manually repair a corrupted +filesystem, or to create test cases for e2fsck), tune2fs (used to +modify filesystem parameters), and most of the other core ext2fs +filesystem utilities. + +You should install the e2fsprogs package if you need to manage the +performance of an ext2, ext3, or ext4 filesystem. +Name : passwd +Version : 0.79 +Release : 5.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:23:01 AM PDT +Group : System Environment/Base +Size : 430226 +License : BSD or GPL+ +Signature : RSA/SHA256, Thu 22 Aug 2019 02:37:53 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : passwd-0.79-5.el7.src.rpm +Build Date : Thu 08 Aug 2019 06:39:01 PM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://pagure.io/passwd +Summary : An utility for setting or changing passwords using PAM +Description : +This package contains a system utility (passwd) which sets +or changes passwords, using PAM (Pluggable Authentication +Modules) library. +Name : pam +Version : 1.1.8 +Release : 22.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:20 AM PDT +Group : System Environment/Base +Size : 2630324 +License : BSD and GPLv2+ +Signature : RSA/SHA256, Wed 25 Apr 2018 04:33:49 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : pam-1.1.8-22.el7.src.rpm +Build Date : Tue 10 Apr 2018 08:22:15 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.linux-pam.org/ +Summary : An extensible library which provides authentication for applications +Description : +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. +Name : dmidecode +Epoch : 1 +Version : 3.2 +Release : 3.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:23:01 AM PDT +Group : System Environment/Base +Size : 216235 +License : GPLv2+ +Signature : RSA/SHA256, Thu 22 Aug 2019 02:22:22 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : dmidecode-3.2-3.el7.src.rpm +Build Date : Thu 08 Aug 2019 04:12:09 PM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.nongnu.org/dmidecode/ +Summary : Tool to analyse BIOS DMI data +Description : +dmidecode reports information about x86 & ia64 hardware as described in the +system BIOS according to the SMBIOS/DMI standard. This information +typically includes system manufacturer, model name, serial number, +BIOS version, asset tag as well as a lot of other details of varying +level of interest and reliability depending on the manufacturer. + +This will often include usage status for the CPU sockets, expansion +slots (e.g. AGP, PCI, ISA) and memory module slots, and the list of +I/O ports (e.g. serial, parallel, USB). +Name : cyrus-sasl-lib +Version : 2.1.26 +Release : 23.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:20 AM PDT +Group : System Environment/Libraries +Size : 396911 +License : BSD with advertising +Signature : RSA/SHA256, Wed 25 Apr 2018 03:56:48 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : cyrus-sasl-2.1.26-23.el7.src.rpm +Build Date : Tue 10 Apr 2018 09:20:59 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://asg.web.cmu.edu/sasl/sasl-library.html +Summary : Shared libraries needed by applications which use Cyrus SASL +Description : +The cyrus-sasl-lib package contains shared libraries which are needed by +applications which use the Cyrus SASL library. +Name : iwl135-firmware +Version : 18.168.6.1 +Release : 72.el7 +Architecture: noarch +Install Date: Wed 16 Oct 2019 09:23:02 AM PDT +Group : System Environment/Kernel +Size : 838358 +License : Redistributable, no modification permitted +Signature : RSA/SHA256, Thu 22 Aug 2019 02:58:03 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : linux-firmware-20190429-72.gitddde598.el7.src.rpm +Build Date : Thu 08 Aug 2019 05:22:46 AM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/ +Summary : Firmware for Intel(R) Centrino Wireless-N 135 Series Adapters +Description : +This package contains the firmware required by the iwlagn driver +for Linux to support the iwl135 hardware. Usage of the firmware +is subject to the terms and conditions contained inside the provided +LICENSE file. Please read it carefully. +Name : libunistring +Version : 0.9.3 +Release : 9.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:20 AM PDT +Group : System Environment/Libraries +Size : 1145761 +License : LGPLv3+ +Signature : RSA/SHA256, Thu 03 Jul 2014 08:22:35 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : libunistring-0.9.3-9.el7.src.rpm +Build Date : Mon 09 Jun 2014 03:52:46 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.gnu.org/software/libunistring/ +Summary : GNU Unicode string library +Description : +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). +Name : iwl6000-firmware +Version : 9.221.4.1 +Release : 72.el7 +Architecture: noarch +Install Date: Wed 16 Oct 2019 09:23:02 AM PDT +Group : System Environment/Kernel +Size : 591738 +License : Redistributable, no modification permitted +Signature : RSA/SHA256, Thu 22 Aug 2019 02:58:11 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : linux-firmware-20190429-72.gitddde598.el7.src.rpm +Build Date : Thu 08 Aug 2019 05:22:46 AM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/ +Summary : Firmware for Intel(R) Wireless WiFi Link 6000 AGN Adapter +Description : +This package contains the firmware required by the iwlagn driver +for Linux. Usage of the firmware is subject to the terms and conditions +contained inside the provided LICENSE file. Please read it carefully. +Name : jansson +Version : 2.10 +Release : 1.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:21 AM PDT +Group : System Environment/Libraries +Size : 74998 +License : MIT +Signature : RSA/SHA256, Thu 10 Aug 2017 09:50:09 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : jansson-2.10-1.el7.src.rpm +Build Date : Wed 02 Aug 2017 05:32:08 PM PDT +Build Host : c1bm.rdu2.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.digip.org/jansson/ +Summary : C library for encoding, decoding and manipulating JSON data +Description : +Small library for parsing and writing JSON documents. +Name : iwl7265-firmware +Version : 22.0.7.0 +Release : 72.el7 +Architecture: noarch +Install Date: Wed 16 Oct 2019 09:23:05 AM PDT +Group : System Environment/Kernel +Size : 73429474 +License : Redistributable, no modification permitted +Signature : RSA/SHA256, Thu 22 Aug 2019 02:58:16 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : linux-firmware-20190429-72.gitddde598.el7.src.rpm +Build Date : Thu 08 Aug 2019 05:22:46 AM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/ +Summary : Firmware for Intel(R) Dual Band Wireless-AC 7265 Series Adapters +Description : +This package contains the firmware required by the iwlagn driver +for Linux. Usage of the firmware is subject to the terms and conditions +contained inside the provided LICENSE file. Please read it carefully. +Name : dbus-libs +Epoch : 1 +Version : 1.10.24 +Release : 13.el7_6 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 12:01:15 PM PDT +Group : Development/Libraries +Size : 362560 +License : (GPLv2+ or AFL) and GPLv2+ +Signature : RSA/SHA256, Tue 19 Mar 2019 12:51:08 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : dbus-1.10.24-13.el7_6.src.rpm +Build Date : Thu 14 Mar 2019 03:18:13 AM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.freedesktop.org/Software/dbus/ +Summary : Libraries for accessing D-BUS +Description : +This package contains lowlevel libraries for accessing D-BUS. +Name : slang +Version : 2.2.4 +Release : 11.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:21 AM PDT +Group : System Environment/Libraries +Size : 1881912 +License : GPLv2+ +Signature : RSA/SHA256, Thu 03 Jul 2014 10:01:18 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : slang-2.2.4-11.el7.src.rpm +Build Date : Mon 09 Jun 2014 03:12:57 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.jedsoft.org/slang/ +Summary : The shared library for the S-Lang extension language +Description : +S-Lang is an interpreted language and a programming library. The +S-Lang language was designed so that it can be easily embedded into +a program to provide the program with a powerful extension language. +The S-Lang library, provided in this package, provides the S-Lang +extension language. S-Lang's syntax resembles C, which makes it easy +to recode S-Lang procedures in C if you need to. +Name : iwl7260-firmware +Version : 22.0.7.0 +Release : 72.el7 +Architecture: noarch +Install Date: Wed 16 Oct 2019 09:23:06 AM PDT +Group : System Environment/Kernel +Size : 6520850 +License : Redistributable, no modification permitted +Signature : RSA/SHA256, Thu 22 Aug 2019 02:58:14 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : linux-firmware-20190429-72.gitddde598.el7.src.rpm +Build Date : Thu 08 Aug 2019 05:22:46 AM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/ +Summary : Firmware for Intel(R) Dual Band Wireless-AC 7260 Series Adapters +Description : +This package contains the firmware required by the iwlagn driver +for Linux. Usage of the firmware is subject to the terms and conditions +contained inside the provided LICENSE file. Please read it carefully. +Name : gdbm +Version : 1.10 +Release : 8.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:21 AM PDT +Group : System Environment/Libraries +Size : 184322 +License : GPLv3+ +Signature : RSA/SHA256, Thu 03 Jul 2014 06:27:27 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : gdbm-1.10-8.el7.src.rpm +Build Date : Mon 09 Jun 2014 02:39:08 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.gnu.org/software/gdbm/ +Summary : A GNU set of database routines which use extensible hashing +Description : +Gdbm is a GNU database indexing library, including routines which use +extensible hashing. Gdbm works in a similar way to standard UNIX dbm +routines. Gdbm is useful for developers who write C applications and +need access to a simple and efficient database or who are building C +applications which will use such a database. + +If you're a C developer and your programs need access to simple +database routines, you should install gdbm. You'll also need to +install gdbm-devel. +Name : bind-utils +Epoch : 32 +Version : 9.11.4 +Release : 9.P2.el7 +Architecture: x86_64 +Install Date: Wed 23 Oct 2019 10:53:22 AM PDT +Group : Unspecified +Size : 598521 +License : MPLv2.0 +Signature : RSA/SHA256, Thu 22 Aug 2019 02:20:56 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : bind-9.11.4-9.P2.el7.src.rpm +Build Date : Thu 08 Aug 2019 05:20:30 AM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.isc.org/products/BIND/ +Summary : Utilities for querying DNS name servers +Description : +Bind-utils contains a collection of utilities for querying DNS (Domain +Name System) name servers to find out information about Internet +hosts. These tools will provide you with the IP addresses for given +host names, as well as other information about registered domains and +network addresses. + +You should install bind-utils if you need to get information from DNS name +servers. +Name : hostname +Version : 3.13 +Release : 3.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:22 AM PDT +Group : System Environment/Base +Size : 19449 +License : GPLv2+ +Signature : RSA/SHA256, Thu 03 Jul 2014 06:54:35 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : hostname-3.13-3.el7.src.rpm +Build Date : Mon 09 Jun 2014 02:48:44 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://packages.qa.debian.org/h/hostname.html +Summary : Utility to set/show the host name or domain name +Description : +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. +Name : nftables +Epoch : 1 +Version : 0.8 +Release : 14.el7 +Architecture: x86_64 +Install Date: Sun 10 Nov 2019 07:55:14 AM PST +Group : Unspecified +Size : 500068 +License : GPLv2 +Signature : RSA/SHA256, Thu 22 Aug 2019 02:36:19 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : nftables-0.8-14.el7.src.rpm +Build Date : Thu 08 Aug 2019 06:13:15 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://netfilter.org/projects/nftables/ +Summary : Netfilter Tables userspace utillites +Description : +Netfilter Tables userspace utilities. +Name : python-slip +Version : 0.4.0 +Release : 4.el7 +Architecture: noarch +Install Date: Thu 15 Aug 2019 10:53:23 AM PDT +Group : System Environment/Libraries +Size : 61353 +License : GPLv2+ +Signature : RSA/SHA256, Wed 25 Apr 2018 04:39:05 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : python-slip-0.4.0-4.el7.src.rpm +Build Date : Tue 10 Apr 2018 06:49:00 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://github.com/nphilipp/python-slip +Summary : Miscellaneous convenience, extension and workaround code for Python +Description : +The Simple Library for Python packages contain miscellaneous code for +convenience, extension and workaround purposes. + +This package provides the "slip" and the "slip.util" modules. +Name : rubygem-io-console +Version : 0.4.2 +Release : 36.el7 +Architecture: x86_64 +Install Date: Sat 16 Nov 2019 02:29:24 PM PST +Group : Development/Libraries +Size : 16751 +License : (Ruby or BSD) and Public Domain +Signature : RSA/SHA256, Thu 22 Aug 2019 02:42:57 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : ruby-2.0.0.648-36.el7.src.rpm +Build Date : Thu 08 Aug 2019 05:30:13 AM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://ruby-lang.org/ +Summary : IO/Console is a simple console utilizing library +Description : +IO/Console provides very simple and portable access to console. It doesn't +provide higher layer features, such like curses and readline. +Name : newt-python +Version : 0.52.15 +Release : 4.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:23 AM PDT +Group : Development/Libraries +Size : 116916 +License : LGPLv2 +Signature : RSA/SHA256, Thu 03 Jul 2014 08:57:00 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : newt-0.52.15-4.el7.src.rpm +Build Date : Tue 10 Jun 2014 12:48:12 AM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://fedorahosted.org/newt/ +Summary : Python bindings for newt +Description : +The newt-python package contains the Python bindings for the newt library +providing a python API for creating text mode ionterfaces. +Name : rubygem-psych +Version : 2.0.0 +Release : 36.el7 +Architecture: x86_64 +Install Date: Sat 16 Nov 2019 02:29:25 PM PST +Group : Development/Libraries +Size : 113146 +License : MIT +Signature : RSA/SHA256, Thu 22 Aug 2019 02:42:59 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : ruby-2.0.0.648-36.el7.src.rpm +Build Date : Thu 08 Aug 2019 05:30:13 AM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://ruby-lang.org/ +Summary : A libyaml wrapper for Ruby +Description : +Psych is a YAML parser and emitter. Psych leverages +libyaml[http://pyyaml.org/wiki/LibYAML] for its YAML parsing and emitting +capabilities. In addition to wrapping libyaml, Psych also knows how to +serialize and de-serialize most Ruby objects to and from the YAML format. +Name : python-iniparse +Version : 0.4 +Release : 9.el7 +Architecture: noarch +Install Date: Thu 15 Aug 2019 10:53:23 AM PDT +Group : Development/Libraries +Size : 115166 +License : MIT +Signature : RSA/SHA256, Thu 03 Jul 2014 09:39:14 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : python-iniparse-0.4-9.el7.src.rpm +Build Date : Mon 09 Jun 2014 03:04:54 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://code.google.com/p/iniparse/ +Summary : Python Module for Accessing and Modifying Configuration Data in INI files +Description : +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. +Name : ntpdate +Version : 4.2.6p5 +Release : 29.el7.centos +Architecture: x86_64 +Install Date: Tue 03 Mar 2020 06:02:09 PM PST +Group : Applications/System +Size : 123845 +License : (MIT and BSD and BSD with advertising) and GPLv2 +Signature : RSA/SHA256, Thu 22 Aug 2019 02:36:36 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : ntp-4.2.6p5-29.el7.centos.src.rpm +Build Date : Thu 08 Aug 2019 04:48:12 AM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.ntp.org +Summary : Utility to set the date and time via NTP +Description : +ntpdate is a program for retrieving the date and time from +NTP servers. +Name : cpp +Version : 4.8.5 +Release : 39.el7 +Architecture: x86_64 +Install Date: Wed 08 Apr 2020 05:17:23 AM PDT +Group : Development/Languages +Size : 15653045 +License : GPLv3+ and GPLv3+ with exceptions and GPLv2+ with exceptions and LGPLv2+ and BSD +Signature : RSA/SHA256, Thu 22 Aug 2019 02:21:35 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : gcc-4.8.5-39.el7.src.rpm +Build Date : Tue 06 Aug 2019 10:15:38 AM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://gcc.gnu.org +Summary : The C Preprocessor +Description : +Cpp is the GNU C-Compatible Compiler Preprocessor. +Cpp is a macro processor which is used automatically +by the C compiler to transform your program before actual +compilation. It is called a macro processor because it allows +you to define macros, abbreviations for longer +constructs. + +The C preprocessor provides four separate functionalities: the +inclusion of header files (files of declarations that can be +substituted into your program); macro expansion (you can define macros, +and the C preprocessor will replace the macros with their definitions +throughout the program); conditional compilation (using special +preprocessing directives, you can include or exclude parts of the +program according to various conditions); and line control (if you use +a program to combine or rearrange source files into an intermediate +file which is then compiled, you can use line control to inform the +compiler about where each source line originated). + +You should install this package if you are a C programmer and you use +macros. +Name : gcc +Version : 4.8.5 +Release : 39.el7 +Architecture: x86_64 +Install Date: Wed 08 Apr 2020 05:17:27 AM PDT +Group : Development/Languages +Size : 39238933 +License : GPLv3+ and GPLv3+ with exceptions and GPLv2+ with exceptions and LGPLv2+ and BSD +Signature : RSA/SHA256, Thu 22 Aug 2019 02:24:15 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : gcc-4.8.5-39.el7.src.rpm +Build Date : Tue 06 Aug 2019 10:15:38 AM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://gcc.gnu.org +Summary : Various compilers (C, C++, Objective-C, Java, ...) +Description : +The gcc package contains the GNU Compiler Collection version 4.8. +You'll need this package in order to compile C code. +Name : libselinux-devel +Version : 2.5 +Release : 14.1.el7 +Architecture: x86_64 +Install Date: Wed 08 Apr 2020 05:24:42 AM PDT +Group : Development/Libraries +Size : 194101 +License : Public Domain +Signature : RSA/SHA256, Mon 12 Nov 2018 06:37:28 AM PST, Key ID 24c6a8a7f4a80eb5 +Source RPM : libselinux-2.5-14.1.el7.src.rpm +Build Date : Tue 30 Oct 2018 02:43:06 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://github.com/SELinuxProject/selinux/wiki +Summary : Header files and libraries used to build SELinux +Description : +The libselinux-devel package contains the libraries and header files +needed for developing SELinux applications. +Name : libverto-devel +Version : 0.2.5 +Release : 4.el7 +Architecture: x86_64 +Install Date: Wed 08 Apr 2020 05:24:43 AM PDT +Group : Unspecified +Size : 25871 +License : MIT +Signature : RSA/SHA256, Thu 03 Jul 2014 08:23:52 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : libverto-0.2.5-4.el7.src.rpm +Build Date : Tue 10 Jun 2014 12:44:21 AM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://fedorahosted.org/libverto/ +Summary : Development files for libverto +Description : +The libverto-devel package contains libraries and header files for +developing applications that use libverto. +Name : fipscheck-lib +Version : 1.4.1 +Release : 6.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:24 AM PDT +Group : System Environment/Libraries +Size : 11466 +License : BSD +Signature : RSA/SHA256, Thu 10 Aug 2017 08:53:57 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : fipscheck-1.4.1-6.el7.src.rpm +Build Date : Wed 02 Aug 2017 05:47:49 AM PDT +Build Host : c1bm.rdu2.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://fedorahosted.org/fipscheck/ +Summary : Library files for fipscheck +Description : +This package contains the FIPSCheck library. +Name : mpfr-devel +Version : 3.1.1 +Release : 4.el7 +Architecture: x86_64 +Install Date: Tue 14 Apr 2020 08:10:08 AM PDT +Group : Development/Libraries +Size : 108827 +License : LGPLv3+ and GPLv3+ and GFDL +Signature : RSA/SHA256, Thu 03 Jul 2014 08:49:49 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : mpfr-3.1.1-4.el7.src.rpm +Build Date : Mon 09 Jun 2014 06:11:54 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.mpfr.org/ +Summary : Development tools A C library for mpfr library +Description : +Header files and documentation for using the MPFR +multiple-precision floating-point library in applications. + +If you want to develop applications which will use the MPFR library, +you'll need to install the mpfr-devel package. You'll also need to +install the mpfr package. +Name : gpg-pubkey +Version : f2ee9d55 +Release : 560cfc0a +Architecture: (none) +Install Date: Tue 14 Apr 2020 08:41:57 AM PDT +Group : Public Keys +Size : 0 +License : pubkey +Signature : (none) +Source RPM : (none) +Build Date : Thu 01 Oct 2015 02:25:30 AM PDT +Build Host : localhost +Relocations : (not relocatable) +Packager : CentOS SoftwareCollections SIG (https://wiki.centos.org/SpecialInterestGroup/SCLo) +Summary : gpg(CentOS SoftwareCollections SIG (https://wiki.centos.org/SpecialInterestGroup/SCLo) ) +Description : +-----BEGIN PGP PUBLIC KEY BLOCK----- +Version: rpm-4.11.3 (NSS-3) + +mQENBFYM/AoBCADR9Q5cb+H5ndx+QkzNBQ88wcD+g112yvnHNlSiBMOnNEGHuKPJ +tujZ+eWXP3K6ucJckT91WxfQ2fxPr9jQ0xpZytcHcZdTfn3vKL9+OwR0npp+qmcz +rK8/EzVz/SWSgBQ5xT/HUvaeoVAbzBHSng0r2njnBAqABKAoTxgyRGKSCWduKD32 +7PF2ZpqeDFFhd99Ykt6ar8SlV8ToqH6F7An0ILeejINVbHUxd6+wsbpcOwQ4mGAa +/CPXeqqLGj62ASBv36xQr34hlN/9zQMViaKkacl8zkuvwhuHf4b4VlGVCe6VILpQ +8ytKMV/lcg7YpMfRq4KVWBjCwkvk6zg6KxaHABEBAAG0aENlbnRPUyBTb2Z0d2Fy +ZUNvbGxlY3Rpb25zIFNJRyAoaHR0cHM6Ly93aWtpLmNlbnRvcy5vcmcvU3BlY2lh +bEludGVyZXN0R3JvdXAvU0NMbykgPHNlY3VyaXR5QGNlbnRvcy5vcmc+iQE5BBMB +AgAjBQJWDPwKAhsDBwsJCAcDAgEGFQgCCQoLBBYCAwECHgECF4AACgkQTrhOcfLu +nVXNewgAg7RVclomjTY4w80XiztUuUaFlCHyR76KazdaGfx/8XckWH2GdQtwii+3 +Tg7+PT2H0Xyuj1aod+jVTPXTPVUr+rEHAjuNDY+xyAJrNljoOHiz111zs9pk7PLX +CPwKWQLnmrcKIi8v/51L79FFsUMvhClTBdLUQ51lkCwbcXQi+bOhPvZTVbRhjoB/ +a9z0d8t65X16zEzE7fBhnVoj4xye/MPMbTH41Mv+FWVciBTuAepOLmgJ9oxODliv +rgZa28IEWkvHQ8m9GLJ0y9mI6olh0cGFybnd5y4Ss1cMttlRGR4qthLhN2gHZpO9 +2y4WgkeVXCj1BK1fzVrDMLPbuNNCZQ== +=UtPD +-----END PGP PUBLIC KEY BLOCK----- + +Name : libuser +Version : 0.60 +Release : 9.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:25 AM PDT +Group : System Environment/Base +Size : 1952592 +License : LGPLv2+ +Signature : RSA/SHA256, Wed 25 Apr 2018 04:23:52 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : libuser-0.60-9.el7.src.rpm +Build Date : Thu 12 Apr 2018 11:44:54 AM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://fedorahosted.org/libuser/ +Summary : A user and group account administration library +Description : +The libuser library implements a standardized interface for manipulating +and administering user and group accounts. The library uses pluggable +back-ends to interface to its data sources. + +Sample applications modeled after those included with the shadow password +suite are included. +Name : devtoolset-3-libstdc++-devel +Version : 4.9.2 +Release : 6.el7 +Architecture: x86_64 +Install Date: Wed 15 Apr 2020 12:39:16 PM PDT +Group : Development/Libraries +Size : 12197721 +License : GPLv3+ and GPLv3+ with exceptions and GPLv2+ with exceptions and LGPLv2+ and BSD +Signature : RSA/SHA1, Sat 28 Nov 2015 06:50:50 AM PST, Key ID 4eb84e71f2ee9d55 +Source RPM : devtoolset-3-gcc-4.9.2-6.el7.src.rpm +Build Date : Sat 03 Oct 2015 08:15:45 AM PDT +Build Host : c1bj.rdu2.centos.org +Relocations : (not relocatable) +Packager : CBS +Vendor : CentOS +URL : http://gcc.gnu.org +Summary : Header files and libraries for C++ development +Description : +This is the GNU implementation of the standard C++ libraries. This +package includes the header files and libraries needed for C++ +development. This includes rewritten implementation of STL. +Name : libtirpc +Version : 0.2.4 +Release : 0.16.el7 +Architecture: x86_64 +Install Date: Tue 15 Oct 2019 11:09:07 AM PDT +Group : System Environment/Libraries +Size : 187279 +License : SISSL and BSD +Signature : RSA/SHA256, Thu 22 Aug 2019 02:33:41 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : libtirpc-0.2.4-0.16.el7.src.rpm +Build Date : Thu 08 Aug 2019 05:35:23 PM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://git.linux-nfs.org/?p=steved/libtirpc.git;a=summary +Summary : Transport Independent RPC Library +Description : +This package contains SunLib's implementation of transport-independent +RPC (TI-RPC) documentation. This library forms a piece of the base of +Open Network Computing (ONC), and is derived directly from the +Solaris 2.3 source. + +TI-RPC is an enhanced version of TS-RPC that requires the UNIX System V +Transport Layer Interface (TLI) or an equivalent X/Open Transport Interface +(XTI). TI-RPC is on-the-wire compatible with the TS-RPC, which is supported +by almost 70 vendors on all major operating systems. TS-RPC source code +(RPCSRC 4.0) remains available from several internet sites. +Name : traceroute +Epoch : 3 +Version : 2.0.22 +Release : 2.el7 +Architecture: x86_64 +Install Date: Tue 21 Jul 2020 12:18:31 PM PDT +Group : Applications/Internet +Size : 93925 +License : GPLv2+ +Signature : RSA/SHA256, Sun 20 Nov 2016 12:54:56 PM PST, Key ID 24c6a8a7f4a80eb5 +Source RPM : traceroute-2.0.22-2.el7.src.rpm +Build Date : Sat 05 Nov 2016 08:27:17 AM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://traceroute.sourceforge.net +Summary : Traces the route taken by packets over an IPv4/IPv6 network +Description : +The traceroute utility displays the route used by IP packets on their +way to a specified network (or Internet) host. Traceroute displays +the IP number and host name (if possible) of the machines along the +route taken by the packets. Traceroute is used as a network debugging +tool. If you're having network connectivity problems, traceroute will +show you where the trouble is coming from along the route. + +Install traceroute if you need a tool for diagnosing network connectivity +problems. +Name : python3-libs +Version : 3.6.8 +Release : 10.el7 +Architecture: x86_64 +Install Date: Tue 15 Oct 2019 11:09:10 AM PDT +Group : Unspecified +Size : 36350099 +License : Python +Signature : RSA/SHA256, Thu 22 Aug 2019 02:40:11 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : python3-3.6.8-10.el7.src.rpm +Build Date : Wed 07 Aug 2019 11:09:49 AM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://www.python.org/ +Summary : Python runtime libraries +Description : +This package contains runtime libraries for use by Python: +- the majority of the Python standard library +- a dynamically linked library for use by applications that embed Python as + a scripting language, and by the main "python3" executable +Name : tar +Epoch : 2 +Version : 1.26 +Release : 35.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:27 AM PDT +Group : Applications/Archiving +Size : 2838510 +License : GPLv3+ +Signature : RSA/SHA256, Mon 12 Nov 2018 06:47:46 AM PST, Key ID 24c6a8a7f4a80eb5 +Source RPM : tar-1.26-35.el7.src.rpm +Build Date : Tue 30 Oct 2018 01:29:09 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.gnu.org/software/tar/ +Summary : A GNU file archiving program +Description : +The GNU tar program saves many files together in one archive and can +restore individual files (or all of the files) from that archive. Tar +can also be used to add supplemental files to an archive and to update +or list files in the archive. Tar includes multivolume support, +automatic archive compression/decompression, the ability to perform +remote archives, and the ability to perform incremental and full +backups. + +If you want to use tar for remote backups, you also need to install +the rmt package on the remote box. +Name : iw +Version : 4.3 +Release : 2.el7 +Architecture: x86_64 +Install Date: Mon 04 Jan 2021 12:32:02 PM PST +Group : System Environment/Base +Size : 163217 +License : ISC +Signature : RSA/SHA256, Mon 12 Nov 2018 06:29:23 AM PST, Key ID 24c6a8a7f4a80eb5 +Source RPM : iw-4.3-2.el7.src.rpm +Build Date : Tue 30 Oct 2018 11:10:33 AM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://wireless.kernel.org/en/users/Documentation/iw +Summary : A nl80211 based wireless configuration tool +Description : +iw is a new nl80211 based CLI configuration utility for wireless devices. +Currently you can only use this utility to configure devices which +use a mac80211 driver as these are the new drivers being written - +only because most new wireless devices being sold are now SoftMAC. +Name : perl-Pod-Perldoc +Version : 3.20 +Release : 4.el7 +Architecture: noarch +Install Date: Tue 15 Oct 2019 11:27:57 AM PDT +Group : Development/Libraries +Size : 166910 +License : GPL+ or Artistic +Signature : RSA/SHA256, Thu 03 Jul 2014 09:22:38 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : perl-Pod-Perldoc-3.20-4.el7.src.rpm +Build Date : Tue 10 Jun 2014 01:17:50 AM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://search.cpan.org/dist/Pod-Perldoc/ +Summary : Look up Perl documentation in Pod format +Description : +perldoc looks up a piece of documentation in .pod format that is embedded +in the perl installation tree or in a perl script, and displays it via +"groff -man | $PAGER". This is primarily used for the documentation for +the perl library modules. +Name : libical +Version : 3.0.3 +Release : 2.el7 +Architecture: x86_64 +Install Date: Tue 09 Feb 2021 08:57:09 AM PST +Group : Unspecified +Size : 1665385 +License : LGPLv2 or MPLv2.0 +Signature : RSA/SHA256, Mon 12 Nov 2018 06:33:03 AM PST, Key ID 24c6a8a7f4a80eb5 +Source RPM : libical-3.0.3-2.el7.src.rpm +Build Date : Tue 30 Oct 2018 12:25:21 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://libical.github.io/libical/ +Summary : Reference implementation of the iCalendar data type and serialization format +Description : +Reference implementation of the iCalendar data type and serialization format +used in dozens of calendaring and scheduling products. +Name : perl-Pod-Usage +Version : 1.63 +Release : 3.el7 +Architecture: noarch +Install Date: Tue 15 Oct 2019 11:27:58 AM PDT +Group : Development/Libraries +Size : 44671 +License : GPL+ or Artistic +Signature : RSA/SHA256, Thu 03 Jul 2014 09:22:48 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : perl-Pod-Usage-1.63-3.el7.src.rpm +Build Date : Tue 10 Jun 2014 01:56:19 AM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://search.cpan.org/dist/Pod-Usage/ +Summary : Print a usage message from embedded POD documentation +Description : +pod2usage will print a usage message for the invoking script (using its +embedded POD documentation) and then exit the script with the desired exit +status. The usage message printed may have any one of three levels of +"verboseness": If the verbose level is 0, then only a synopsis is printed. +If the verbose level is 1, then the synopsis is printed along with a +description (if present) of the command line options and arguments. If the +verbose level is 2, then the entire manual page is printed. +Name : finger +Version : 0.17 +Release : 52.el7 +Architecture: x86_64 +Install Date: Tue 06 Apr 2021 11:13:28 AM PDT +Group : Applications/Internet +Size : 32929 +License : BSD +Signature : RSA/SHA256, Fri 29 Aug 2014 02:57:31 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : finger-0.17-52.el7.src.rpm +Build Date : Fri 29 Aug 2014 02:49:47 AM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +Summary : The finger client +Description : +Finger is a utility which allows users to see information about system +users (login name, home directory, name, how long they've been logged +in to the system, etc.). The finger package includes a standard +finger client. + +You should install finger if you'd like to retrieve finger information +from other systems. +Name : perl-Exporter +Version : 5.68 +Release : 3.el7 +Architecture: noarch +Install Date: Tue 15 Oct 2019 11:27:58 AM PDT +Group : Development/Libraries +Size : 56612 +License : GPL+ or Artistic +Signature : RSA/SHA256, Thu 03 Jul 2014 09:17:36 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : perl-Exporter-5.68-3.el7.src.rpm +Build Date : Mon 09 Jun 2014 09:09:10 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://search.cpan.org/dist/Exporter/ +Summary : Implements default import method for modules +Description : +The Exporter module implements an import method which allows a module to +export functions and variables to its users' name spaces. Many modules use +Exporter rather than implementing their own import method because Exporter +provides a highly flexible interface, with an implementation optimized for +the common case. +Name : perl-Carp +Version : 1.26 +Release : 244.el7 +Architecture: noarch +Install Date: Tue 15 Oct 2019 11:27:58 AM PDT +Group : Development/Libraries +Size : 28276 +License : GPL+ or Artistic +Signature : RSA/SHA256, Thu 03 Jul 2014 09:15:11 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : perl-Carp-1.26-244.el7.src.rpm +Build Date : Mon 09 Jun 2014 06:12:39 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://search.cpan.org/dist/Carp/ +Summary : Alternative warn and die for modules +Description : +The Carp routines are useful in your own modules because they act like +die() or warn(), but with a message which is more likely to be useful to a +user of your module. In the case of cluck, confess, and longmess that +context is a summary of every call in the call-stack. For a shorter message +you can use carp or croak which report the error as being from where your +module was called. There is no guarantee that that is where the error was, +but it is a good educated guess. +Name : libsemanage +Version : 2.5 +Release : 14.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:28 AM PDT +Group : System Environment/Libraries +Size : 302329 +License : LGPLv2+ +Signature : RSA/SHA256, Mon 12 Nov 2018 06:37:32 AM PST, Key ID 24c6a8a7f4a80eb5 +Source RPM : libsemanage-2.5-14.el7.src.rpm +Build Date : Tue 30 Oct 2018 04:44:33 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://github.com/SELinuxProject/selinux/wiki +Summary : SELinux binary policy manipulation library +Description : +Security-enhanced Linux is a feature of the Linux® kernel and a number +of utilities with enhanced security functionality designed to add +mandatory access controls to Linux. The Security-enhanced Linux +kernel contains new architectural components originally developed to +improve the security of the Flask operating system. These +architectural components provide general support for the enforcement +of many kinds of mandatory access control policies, including those +based on the concepts of Type Enforcement®, Role-based Access +Control, and Multi-level Security. + +libsemanage provides an API for the manipulation of SELinux binary policies. +It is used by checkpolicy (the policy compiler) and similar tools, as well +as by programs like load_policy that need to perform specific transformations +on binary policies such as customizing policy boolean settings. +Name : perl-File-Temp +Version : 0.23.01 +Release : 3.el7 +Architecture: noarch +Install Date: Tue 15 Oct 2019 11:27:58 AM PDT +Group : Development/Libraries +Size : 158781 +License : GPL+ or Artistic +Signature : RSA/SHA256, Thu 03 Jul 2014 09:18:15 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : perl-File-Temp-0.23.01-3.el7.src.rpm +Build Date : Tue 10 Jun 2014 12:03:09 AM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://search.cpan.org/dist/File-Temp/ +Summary : Return name and handle of a temporary file safely +Description : +File::Temp can be used to create and open temporary files in a safe way. +There is both a function interface and an object-oriented interface. The +File::Temp constructor or the tempfile() function can be used to return the +name and the open file handle of a temporary file. The tempdir() function +can be used to create a temporary directory. +Name : libfastjson +Version : 0.99.4 +Release : 3.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:29 AM PDT +Group : Unspecified +Size : 57273 +License : MIT +Signature : RSA/SHA256, Mon 12 Nov 2018 06:32:07 AM PST, Key ID 24c6a8a7f4a80eb5 +Source RPM : libfastjson-0.99.4-3.el7.src.rpm +Build Date : Tue 30 Oct 2018 01:01:55 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://github.com/rsyslog/libfastjson +Summary : A JSON implementation in C +Description : +LIBFASTJSON implements a reference counting object +model that allows you to easily construct JSON +objects in C, output them as JSON formatted strings +and parse JSON formatted strings back into the +C representation of JSON objects. +Name : perl-Pod-Simple +Epoch : 1 +Version : 3.28 +Release : 4.el7 +Architecture: noarch +Install Date: Tue 15 Oct 2019 11:27:58 AM PDT +Group : Development/Libraries +Size : 538320 +License : GPL+ or Artistic +Signature : RSA/SHA256, Thu 03 Jul 2014 09:22:44 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : perl-Pod-Simple-3.28-4.el7.src.rpm +Build Date : Mon 09 Jun 2014 07:00:13 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://search.cpan.org/dist/Pod-Simple/ +Summary : Framework for parsing POD documentation +Description : +Pod::Simple is a Perl library for parsing text in the Pod ("plain old +documentation") markup language that is typically used for writing +documentation for Perl and for Perl modules. +Name : libdaemon +Version : 0.14 +Release : 7.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:29 AM PDT +Group : System Environment/Libraries +Size : 62045 +License : LGPLv2+ +Signature : RSA/SHA256, Thu 03 Jul 2014 07:41:19 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : libdaemon-0.14-7.el7.src.rpm +Build Date : Mon 09 Jun 2014 09:26:48 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://0pointer.de/lennart/projects/libdaemon/ +Summary : Library for writing UNIX daemons +Description : +libdaemon is a lightweight C library which eases the writing of UNIX daemons. +It consists of the following parts: +* A wrapper around fork() which does the correct daemonization + procedure of a process +* A wrapper around syslog() for simpler and compatible log output to + Syslog or STDERR +* An API for writing PID files +* An API for serializing UNIX signals into a pipe for usage with + select() or poll() +* An API for running subprocesses with STDOUT and STDERR redirected + to syslog. +Name : perl-Error +Epoch : 1 +Version : 0.17020 +Release : 2.el7 +Architecture: noarch +Install Date: Tue 15 Oct 2019 11:28:01 AM PDT +Group : Development/Libraries +Size : 50015 +License : (GPL+ or Artistic) and MIT +Signature : RSA/SHA256, Thu 03 Jul 2014 09:17:32 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : perl-Error-0.17020-2.el7.src.rpm +Build Date : Mon 09 Jun 2014 01:19:49 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://search.cpan.org/dist/Error/ +Summary : Error/exception handling in an OO-ish way +Description : +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. +Name : libestr +Version : 0.1.9 +Release : 2.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:29 AM PDT +Group : Unspecified +Size : 44322 +License : LGPLv2+ +Signature : RSA/SHA256, Thu 03 Jul 2014 07:45:14 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : libestr-0.1.9-2.el7.src.rpm +Build Date : Mon 09 Jun 2014 09:27:04 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://libestr.adiscon.com/ +Summary : String handling essentials library +Description : +This package compiles the string handling essentials library +used by the Rsyslog daemon. +Name : git +Version : 1.8.3.1 +Release : 20.el7 +Architecture: x86_64 +Install Date: Tue 15 Oct 2019 11:28:02 AM PDT +Group : Development/Tools +Size : 23232282 +License : GPLv2 +Signature : RSA/SHA256, Tue 20 Nov 2018 12:34:30 PM PST, Key ID 24c6a8a7f4a80eb5 +Source RPM : git-1.8.3.1-20.el7.src.rpm +Build Date : Mon 19 Nov 2018 08:13:01 AM PST +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://git-scm.com/ +Summary : Fast Version Control System +Description : +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. + +The git rpm installs the core tools with minimal dependencies. To +install all git packages, including tools for integrating with other +SCMs, install the git-all meta-package. +Name : grub2-pc-modules +Epoch : 1 +Version : 2.02 +Release : 0.80.el7.centos +Architecture: noarch +Install Date: Wed 16 Oct 2019 09:21:17 AM PDT +Group : System Environment/Base +Size : 2309922 +License : GPLv3+ +Signature : RSA/SHA256, Thu 22 Aug 2019 02:57:42 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : grub2-2.02-0.80.el7.centos.src.rpm +Build Date : Thu 08 Aug 2019 04:31:11 AM PDT +Build Host : kbuilder.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.gnu.org/software/grub/ +Summary : Modules used to build custom grub images +Description : + +The GRand Unified Bootloader (GRUB) is a highly configurable and +customizable bootloader with modular architecture. It supports a rich +variety of kernel formats, file systems, computer architectures and +hardware devices. + +This subpackage provides support for rebuilding your own grub.efi. +Name : containers-common +Epoch : 1 +Version : 0.1.37 +Release : 3.el7.centos +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:17 AM PDT +Group : Unspecified +Size : 20723 +License : ASL 2.0 +Signature : RSA/SHA256, Mon 16 Sep 2019 05:33:22 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : skopeo-0.1.37-3.el7.centos.src.rpm +Build Date : Sun 15 Sep 2019 07:07:25 AM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://github.com/containers/skopeo +Summary : Configuration files for working with image signature +Description : +This package installs a default signature store configuration +policy under `/etc/containers/`. +Name : glibc-common +Version : 2.17 +Release : 292.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:22 AM PDT +Group : System Environment/Base +Size : 120326282 +License : LGPLv2+ and LGPLv2+ with exceptions and GPLv2+ +Signature : RSA/SHA256, Thu 22 Aug 2019 02:24:43 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : glibc-2.17-292.el7.src.rpm +Build Date : Tue 06 Aug 2019 04:23:44 PM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.gnu.org/software/glibc/ +Summary : Common binaries and locale data for glibc +Description : +The glibc-common package includes common binaries for the GNU libc +libraries, as well as national language (locale) support. +Name : audit-libs +Version : 2.8.5 +Release : 4.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:26 AM PDT +Group : Development/Libraries +Size : 256386 +License : LGPLv2+ +Signature : RSA/SHA256, Thu 22 Aug 2019 02:20:30 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : audit-2.8.5-4.el7.src.rpm +Build Date : Thu 08 Aug 2019 05:06:20 AM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://people.redhat.com/sgrubb/audit/ +Summary : Dynamic library for libaudit +Description : +The audit-libs package contains the dynamic libraries needed for +applications to use the audit framework. +Name : iputils +Version : 20160308 +Release : 10.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:32 AM PDT +Group : System Environment/Daemons +Size : 343497 +License : BSD and GPLv2+ +Signature : RSA/SHA256, Thu 10 Aug 2017 09:47:33 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : iputils-20160308-10.el7.src.rpm +Build Date : Fri 04 Aug 2017 01:01:04 AM PDT +Build Host : c1bm.rdu2.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://github.com/iputils/iputils +Summary : Network monitoring tools including ping +Description : +The iputils package contains basic utilities for monitoring a network, +including ping. The ping command sends a series of ICMP protocol +ECHO_REQUEST packets to a specified network host to discover whether +the target machine is alive and receiving network traffic. +Name : coreutils +Version : 8.22 +Release : 24.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:28 AM PDT +Group : System Environment/Base +Size : 14593469 +License : GPLv3+ +Signature : RSA/SHA256, Thu 22 Aug 2019 02:21:30 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : coreutils-8.22-24.el7.src.rpm +Build Date : Mon 19 Aug 2019 11:27:26 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.gnu.org/software/coreutils/ +Summary : A set of basic GNU tools commonly used in shell scripts +Description : +These are the GNU core utilities. This package is the combination of +the old GNU fileutils, sh-utils, and textutils packages. +Name : libdb +Version : 5.3.21 +Release : 25.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:29 AM PDT +Group : System Environment/Libraries +Size : 1858144 +License : BSD and LGPLv2 and Sleepycat +Signature : RSA/SHA256, Thu 22 Aug 2019 02:29:18 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : libdb-5.3.21-25.el7.src.rpm +Build Date : Thu 08 Aug 2019 05:18:38 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.oracle.com/database/berkeley-db/ +Summary : The Berkeley DB database library for C +Description : +The Berkeley Database (Berkeley DB) is a programmatic toolkit that +provides embedded database support for both traditional and +client/server applications. The Berkeley DB includes B+tree, Extended +Linear Hashing, Fixed and Variable-length record access methods, +transactions, locking, logging, shared memory caching, and database +recovery. The Berkeley DB supports C, C++, Java, and Perl APIs. It is +used by many applications, including Python and Perl, so this should +be installed on all systems. +Name : python-libs +Version : 2.7.5 +Release : 86.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:32 AM PDT +Group : Applications/System +Size : 24715873 +License : Python +Signature : RSA/SHA256, Thu 22 Aug 2019 02:40:21 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : python-2.7.5-86.el7.src.rpm +Build Date : Tue 06 Aug 2019 06:15:38 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.python.org/ +Summary : Runtime libraries for Python +Description : +This package contains runtime libraries for use by Python: +- the libpython dynamic library, for use by applications that embed Python as +a scripting language, and by the main "python" executable +- the Python standard library +Name : glib2 +Version : 2.56.1 +Release : 5.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:33 AM PDT +Group : Unspecified +Size : 12170073 +License : LGPLv2+ +Signature : RSA/SHA256, Thu 22 Aug 2019 02:24:36 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : glib2-2.56.1-5.el7.src.rpm +Build Date : Thu 08 Aug 2019 04:38:20 PM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.gtk.org +Summary : A library of handy utility functions +Description : +GLib is the low-level core library that forms the basis for projects +such as GTK+ and GNOME. It provides data structure handling for C, +portability wrappers, and interfaces for such runtime functionality +as an event loop, threads, dynamic loading, and an object system. +Name : nss +Version : 3.44.0 +Release : 4.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:34 AM PDT +Group : System Environment/Libraries +Size : 2475794 +License : MPLv2.0 +Signature : RSA/SHA256, Thu 22 Aug 2019 02:36:25 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : nss-3.44.0-4.el7.src.rpm +Build Date : Mon 12 Aug 2019 10:02:37 AM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.mozilla.org/projects/security/pki/nss/ +Summary : Network Security Services +Description : +Network Security Services (NSS) is a set of libraries designed to +support cross-platform development of security-enabled client and +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. +Name : ethtool +Epoch : 2 +Version : 4.8 +Release : 10.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:35 AM PDT +Group : Applications/System +Size : 354299 +License : GPLv2 +Signature : RSA/SHA256, Thu 22 Aug 2019 02:22:57 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : ethtool-4.8-10.el7.src.rpm +Build Date : Thu 08 Aug 2019 04:16:59 PM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://www.kernel.org/pub/software/network/ethtool/ +Summary : Settings tool for Ethernet NICs +Description : +This utility allows querying and changing settings such as speed, +port, auto-negotiation, PCI locations and checksum offload on many +network devices, especially of Ethernet devices. +Name : libpciaccess +Version : 0.14 +Release : 1.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:35 AM PDT +Group : System Environment/Libraries +Size : 45649 +License : MIT +Signature : RSA/SHA256, Wed 25 Apr 2018 04:17:01 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : libpciaccess-0.14-1.el7.src.rpm +Build Date : Tue 10 Apr 2018 07:32:03 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://gitweb.freedesktop.org/?p=xorg/lib/libpciaccess.git +Summary : PCI access library +Description : +libpciaccess is a library for portable PCI access routines across multiple +operating systems. +Name : audit-libs-python +Version : 2.8.5 +Release : 4.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:35 AM PDT +Group : Development/Libraries +Size : 323427 +License : LGPLv2+ +Signature : RSA/SHA256, Thu 22 Aug 2019 02:20:32 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : audit-2.8.5-4.el7.src.rpm +Build Date : Thu 08 Aug 2019 05:06:20 AM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://people.redhat.com/sgrubb/audit/ +Summary : Python bindings for libaudit +Description : +The audit-libs-python package contains the bindings so that libaudit +and libauparse can be used by python. +Name : alsa-firmware +Version : 1.0.28 +Release : 2.el7 +Architecture: noarch +Install Date: Thu 15 Aug 2019 10:53:36 AM PDT +Group : Applications/Multimedia +Size : 9572469 +License : GPL+ and BSD and GPLv2+ and GPLv2 and LGPLv2+ +Signature : RSA/SHA256, Sat 14 Mar 2015 12:36:28 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : alsa-firmware-1.0.28-2.el7.src.rpm +Build Date : Thu 05 Mar 2015 01:58:35 PM PST +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.alsa-project.org/ +Summary : Firmware for several ALSA-supported sound cards +Description : +This package contains the firmware binaries for a number of sound cards. +Some (but not all of these) require firmware loaders which are included in +the alsa-tools-firmware package. +Name : xfsprogs +Version : 4.5.0 +Release : 20.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:36 AM PDT +Group : System Environment/Base +Size : 4079279 +License : GPL+ and LGPLv2+ +Signature : RSA/SHA256, Thu 22 Aug 2019 02:45:37 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : xfsprogs-4.5.0-20.el7.src.rpm +Build Date : Thu 08 Aug 2019 08:23:27 PM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : https://xfs.wiki.kernel.org +Summary : Utilities for managing the XFS filesystem +Description : +A set of commands to use the XFS filesystem, including mkfs.xfs. + +XFS is a high performance journaling filesystem which originated +on the SGI IRIX platform. It is completely multi-threaded, can +support large files and large filesystems, extended attributes, +variable block sizes, is extent based, and makes extensive use of +Btrees (directories, extents, free space) to aid both performance +and scalability. +Name : dbus-python +Version : 1.1.1 +Release : 9.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:36 AM PDT +Group : Unspecified +Size : 848122 +License : MIT +Signature : RSA/SHA256, Thu 03 Jul 2014 06:06:25 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : dbus-python-1.1.1-9.el7.src.rpm +Build Date : Tue 10 Jun 2014 12:12:40 AM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.freedesktop.org/software/dbus-python +Summary : D-Bus Python Bindings +Description : +D-Bus python bindings for use with python programs. +Name : binutils +Version : 2.27 +Release : 41.base.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:38 AM PDT +Group : Development/Tools +Size : 25150234 +License : GPLv3+ +Signature : RSA/SHA256, Thu 22 Aug 2019 02:20:57 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : binutils-2.27-41.base.el7.src.rpm +Build Date : Thu 08 Aug 2019 04:14:36 PM PDT +Build Host : x86-01.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://sources.redhat.com/binutils +Summary : A GNU collection of binary utilities +Description : +Binutils is a collection of binary utilities, including ar (for +creating, modifying and extracting from archives), as (a family of GNU +assemblers), gprof (for displaying call graph profile data), ld (the +GNU linker), nm (for listing symbols from object files), objcopy (for +copying and translating object files), objdump (for displaying +information from object files), ranlib (for generating an index for +the contents of an archive), readelf (for displaying detailed +information about binary files), size (for listing the section sizes +of an object or archive file), strings (for listing printable strings +from files), strip (for discarding symbols), and addr2line (for +converting addresses to file and line). +Name : GeoIP +Version : 1.5.0 +Release : 14.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:39 AM PDT +Group : Development/Libraries +Size : 3865708 +License : LGPLv2+ and GPLv2+ and CC-BY-SA +Signature : RSA/SHA256, Thu 22 Aug 2019 02:24:31 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : GeoIP-1.5.0-14.el7.src.rpm +Build Date : Thu 08 Aug 2019 04:34:37 PM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.maxmind.com/app/c +Summary : Library for country/city/organization to IP address or hostname mapping +Description : +GeoIP is a C library that enables the user to find the country that any IP +address or hostname originates from. It uses a file based database that is +accurate as of June 2007 and can optionally be updated on a weekly +basis by installing the GeoIP-update package. This database simply contains IP +blocks as keys, and countries as values. This database should be more complete +and accurate than using reverse DNS lookups. + +This package includes GeoLite data created by MaxMind, available from +http://www.maxmind.com/ +Name : pth +Version : 2.0.7 +Release : 23.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:36 AM PDT +Group : System Environment/Libraries +Size : 267851 +License : LGPLv2+ +Signature : RSA/SHA256, Wed 25 Nov 2015 07:32:05 AM PST, Key ID 24c6a8a7f4a80eb5 +Source RPM : pth-2.0.7-23.el7.src.rpm +Build Date : Fri 20 Nov 2015 12:11:52 AM PST +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.gnu.org/software/pth/ +Summary : The GNU Portable Threads library +Description : +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. +Name : rpm-build-libs +Version : 4.11.3 +Release : 40.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:40 AM PDT +Group : Development/Libraries +Size : 166776 +License : GPLv2+ and LGPLv2+ with exceptions +Signature : RSA/SHA256, Thu 22 Aug 2019 02:42:34 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : rpm-4.11.3-40.el7.src.rpm +Build Date : Tue 06 Aug 2019 03:50:54 PM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.rpm.org/ +Summary : Libraries for building and signing RPM packages +Description : +This package contains the RPM shared libraries for building and signing +packages. +Name : gpgme +Version : 1.3.2 +Release : 5.el7 +Architecture: x86_64 +Install Date: Thu 15 Aug 2019 10:53:37 AM PDT +Group : Applications/System +Size : 547534 +License : LGPLv2+ +Signature : RSA/SHA256, Thu 03 Jul 2014 06:44:14 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : gpgme-1.3.2-5.el7.src.rpm +Build Date : Mon 09 Jun 2014 06:03:04 PM PDT +Build Host : worker1.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.gnupg.org/related_software/gpgme/ +Summary : GnuPG Made Easy - high level crypto API +Description : +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. +Name : libss +Version : 1.42.9 +Release : 16.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:41 AM PDT +Group : Development/Libraries +Size : 73089 +License : MIT +Signature : RSA/SHA256, Thu 22 Aug 2019 02:33:08 PM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : e2fsprogs-1.42.9-16.el7.src.rpm +Build Date : Thu 08 Aug 2019 04:19:51 PM PDT +Build Host : x86-02.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://e2fsprogs.sourceforge.net/ +Summary : Command line interface parsing library +Description : +This is libss, a command line interface parsing library, part of e2fsprogs. + +This package includes a tool that parses a command table to generate +a simple command-line interface parser, the include files needed to +compile and use it. + +It was originally inspired by the Multics SubSystem library. +Name : kernel-tools-libs +Version : 3.10.0 +Release : 1062.1.2.el7 +Architecture: x86_64 +Install Date: Wed 16 Oct 2019 09:21:41 AM PDT +Group : Development/System +Size : 18640 +License : GPLv2 +Signature : RSA/SHA256, Wed 02 Oct 2019 07:16:00 AM PDT, Key ID 24c6a8a7f4a80eb5 +Source RPM : kernel-3.10.0-1062.1.2.el7.src.rpm +Build Date : Mon 30 Sep 2019 07:39:55 AM PDT +Build Host : kbuilder.bsys.centos.org +Relocations : (not relocatable) +Packager : CentOS BuildSystem +Vendor : CentOS +URL : http://www.kernel.org/ +Summary : Libraries for the kernels-tools +Description : +This package contains the libraries built from the tools/ directory +from the kernel source.