SQLite format 3@ .,P o ac eˠeˠ0:da39a3ee5e6b4b0d3255bfef95601890afd8070919:e1709f2284812a0c6a37ea299b2b27a468dd6b338install --installroot /mnt/rootfs coreutils-single glibc-minimal-langpack --releasever 8 --setopt install_weak_deps=false --nodocs -y !trans_item trans 'URHEL-8.9.0-updates-20240213.3-BaseOS#Mrhel-8-for-x86_64-baseos-rpms__8        +|qf[PD8+                                                         @{[:^= v @49%glibc-minimal-langpack2.28236.el8_9.12x86_64*%%glibc-common2.28236.el8_9.12x86_64#%glibc2.28236.el8_9.12x86_64tzdata2024a1.el8noarch&)redhat-release8.90.1.el8x86_64,%+ncurses-base6.110.20180224.el8noarch  libcap2.486.el8_9x86_64, %+ ncurses-libs6.110.20180224.el8x86_64  libgcc8.5.020.el8x86_64  setup2.12.29.el8noarch ! libselinux2.98.el8x86_64(-coreutils-single8.3015.el8x86_64pcre210.323.el8_6x86_64bash4.4.204.el8_6x86_64libsepol2.93.el8x86_64 !filesystem3.86.el8x86_64libacl2.2.531.el8x86_64!basesystem115.el8noarch libattr2.4.483.el8x86_64        S@ SJ`j  49%glibc-minimal-langpack2.28236.el8_9.12x86_64*%%glibc-common2.28236.el8_9.12x86_64#%glibc2.28236.el8_9.12x86_64tzdata2024a1.el8noarch&)redhat-release8.90.1.el8x86_64,%+ncurses-base6.110.20180224.el8noarchlibcap2.486.el8_9x86_64 ,%+ncurses-libs6.110.20180224.el8x86_64 libgcc8.5.020.el8x86_64 setup2.12.29.el8noarch !libselinux2.98.el8x86_64 (-coreutils-single8.3015.el8x86_64pcre210.323.el8_6x86_64bash4.4.204.el8_6x86_64libsepol2.93.el8x86_64 !filesystem3.86.el8x86_64libacl2.2.531.el8x86_64!basesystem115.el8noarch libattr2.4.483.el8x86_64        6 8PI AU/indexsqlite_autoindex_comps_environmen {tabletranstransCREATE TABLE trans ( id INTEGER PRIMARY KEY AUTOINCREMENT, dt_begin INTEGER NOT NULL, /* (unix timestamp) date and time of transaction begin */ dt_end INTEGER, /* (unix timestamp) date and time of transaction end */ rpmdb_version_begin TEXT, rpmdb_version_end TEXT, releasever TEXT NOT NULL, /* var: $releasever */ user_id INTEGER NOT NULL, /* user ID (UID) */ cmdline TEXT, /* recorded command line (program, options, arguments) */ state INTEGER NOT NULL /* (enum) */ , comment TEXT DEFAULT '');--)tableitem_replaced_byitem_replaced_byCREATE TABLE item_replaced_by ( /* M:N relationship between transaction items */ trans_item_id INTEGER REFERENCES trans_item(id), by_trans_item_id INTEGER REFERENCES trans_item(id), PRIMARY KEY (trans_item_id, by_trans_item_id) )?S-indexsqlite_autoindex_item_replaced_by_1item_replaced_by ^!!tabletrans_itemtrans_itemCREATE TABLE trans_item ( id INTEGER PRIMARY KEY AUTOINCREMENT, trans_id INTEGER REFERENCES trans(id), item_id INTEGER REFERENCES item(id), repo_id INTEGER REFERENCES repo(id), action INTEGER NOT NULL, /* (enum) */ reason INTEGER NOT NULL, /* (enum) */ state INTEGER NOT NULL /* (enum) */ )'1tableitemitemCREATE TABLE item ( id INTEGER PRIMARY KEY, item_type INTEGER NOT NULL /* (enum) 1: rpm, 2: group, 3: env ...*/ )))?tableconsole_outputconsole_outputCREATE TABLE console_output ( id INTEGER PRIMARY KEY, trans_id INTEGER REFERENCES trans(id), file_descriptor INTEGER NOT NULL, /* stdout: 1, stderr : 2 */ line TEXT NOT NULL )tablereporepoCREATE TABLE repo ( id INTEGER PRIMARY KEY, repoid TEXT NOT NULL /* repository ID aka 'repoid' */ )P++Ytablesqlite_sequencesqlite_sequenceCREATE TABLE sqlite_sequence(name,seq)x B  g F?Bn7tableconfigconfigCREATE TABLE config ( key TEXT PRIMARY KEY, value TEXT NOT NULL )+?indexsqlite_autoindex_config_1config^1!yindextrans_item_item_idtrans_itemCREATE INDEX trans_item_item_id ON trans_item(item_id)a3!}indextrans_item_trans_idtrans_itemCREATE INDEX trans_item_trans_id ON trans_item(trans_id)9Qindexrpm_namerpmCREATE INDEX rpm_name ON rpm(name)L;;/tablecomps_environment_groupcomps_environment_groupCREATE TABLE comps_environment_group ( id INTEGER PRIMARY KEY AUTOINCREMENT, environment_id INTEGER NOT NULL, groupid TEXT NOT NULL, installed INTEGER NOT NULL, group_type INTEGER NOT NULL, FOREIGN KEY(environment_id) REFERENCES comps_environment(item_id), CONSTRAINT comps_environment_group_unique_groupid UNIQUE (environment_id, groupid) )Ma;indexsqlite_autoindex_comps_environment_group_1comps_environment_groupAU/indexsqlite_autoindex_comps_environment_1comps_environment;//%tablecomps_environmentcomps_environmentCREATE TABLE comps_environment ( item_id INTEGER UNIQUE NOT NULL, environmentid TEXT NOT NULL, name TEXT NOT NULL, translated_name TEXT NOT NULL, pkg_types INTEGER NOT NULL, FOREIGN KEY(item_id) REFERENCES item(id) )EY3indexsqlite_autoindex_comps_group_package_1comps_group_package33Ytablecomps_group_packagecomps_group_packageCREATE TABLE comps_group_package ( id INTEGER PRIMARY KEY AUTOINCREMENT, group_id INTEGER NOT NULL, name TEXT NOT NULL, installed INTEGER NOT NULL, pkg_type INTEGER NOT NULL, FOREIGN KEY(group_id) REFERENCES comps_group(item_id), CONSTRAINT comps_group_package_unique_name UNIQUE (group_id, name) )5I#indexsqlite_autoindex_comps_group_1comps_group### tablecomps_groupcomps_groupCREATE TABLE comps_group ( item_id INTEGER UNIQUE NOT NULL, groupid TEXT NOT NULL, name TEXT NOT NULL, translated_name TEXT NOT NULL, pkg_types INTEGER NOT NULL, FOREIGN KEY(item_id) REFERENCES item(id) )% 9indexsqlite_autoindex_rpm_2rpm% 9indexsqlite_autoindex_rpm_1rpm  #tablerpmrpm CREATE TABLE rpm ( item_id INTEGER UNIQUE NOT NULL, name TEXT NOT NULL, epoch INTEGER NOT NULL, /* empty epoch is stored as 0 */ version TEXT NOT NULL, release TEXT NOT NULL, arch TEXT NOT NULL, FOREIGN KEY(item_id) REFERENCES item(id), CONSTRAINT rpm_unique_nevra UNIQUE (name, epoch, version, release, arch) )3 G!indexsqlite_autoindex_trans_with_1trans_with  !!utabletrans_withtrans_with CREATE TABLE trans_with ( id INTEGER PRIMARY KEY AUTOINCREMENT, trans_id INTEGER REFERENCES trans(id), item_id INTEGER REFERENCES item(id), CONSTRAINT trans_with_unique_trans_item UNIQUE (trans_id, item_id) )    WsFb3~(9glibc-minimal-langpack%glibc-common glibc tzdata)redhat-release%ncurses-base libcap %ncurses-libs libgcc setup !libselinux -coreutils-single pcre2bash libsepol!filesystem libacl!basesystem  libattr                                version1.2   version