| Offset 1, 1 lines modified | Offset 1, 1 lines modified | ||
| 1 | 12052dec15d0e0948032c7ec11eff2da0d109106» » tag·'1.5.0-beta.14'·of·ht | 1 | 12052dec15d0e0948032c7ec11eff2da0d109106» » tag·'1.5.0-beta.14'·of·file:///reproworkdir/.local/share/flathub_repro_checker/com.core447.StreamController/https_github.com_StreamController_StreamController.git_checkout |
| Offset 1, 16 lines modified | Offset 1, 16 lines modified | ||
| 1 | [core] | 1 | [core] |
| 2 | » repositoryformatversion·=·0 | 2 | » repositoryformatversion·=·0 |
| 3 | » filemode·=·true | 3 | » filemode·=·true |
| 4 | » bare·=·false | 4 | » bare·=·false |
| 5 | [remote·"origin"] | 5 | [remote·"origin"] |
| 6 | » url·=·ht | 6 | » url·=·file:///reproworkdir/.local/share/flathub_repro_checker/com.core447.StreamController/https_github.com_StreamController_StreamController.git_checkout |
| 7 | » fetch·=·+refs/*:refs/* | 7 | » fetch·=·+refs/*:refs/* |
| 8 | [transfer] | 8 | [transfer] |
| 9 | » fsckObjects·=·1 | 9 | » fsckObjects·=·1 |
| 10 | [lfs] | 10 | [lfs] |
| 11 | » repositoryformatversion·=·0 | 11 | » repositoryformatversion·=·0 |
| 12 | [filter·"lfs"] | 12 | [filter·"lfs"] |
| 13 | » process·=·git-lfs·filter-process | ||
| 14 | » required·=·true | ||
| 13 | » clean·=·git-lfs·clean·--·%f | 15 | » clean·=·git-lfs·clean·--·%f |
| 14 | » smudge·=·git-lfs·smudge·--·%f | 16 | » smudge·=·git-lfs·smudge·--·%f |
| 15 | » process·=·git-lfs·filter-process | ||
| 16 | » required·=·true | ||
| Offset 11, 14 lines modified | Offset 11, 64 lines modified | ||
| 11 | #·Uncomment·the·below·to·add·a·Signed-off-by·line·to·the·message. | 11 | #·Uncomment·the·below·to·add·a·Signed-off-by·line·to·the·message. |
| 12 | #·Doing·this·in·a·hook·is·a·bad·idea·in·general,·but·the·prepare-commit-msg | 12 | #·Doing·this·in·a·hook·is·a·bad·idea·in·general,·but·the·prepare-commit-msg |
| 13 | #·hook·is·more·suited·to·it. | 13 | #·hook·is·more·suited·to·it. |
| 14 | # | 14 | # |
| 15 | #·SOB=$(git·var·GIT_AUTHOR_IDENT·|·sed·-n·'s/^\(.*>\).*$/Signed-off-by:·\1/p') | 15 | #·SOB=$(git·var·GIT_AUTHOR_IDENT·|·sed·-n·'s/^\(.*>\).*$/Signed-off-by:·\1/p') |
| 16 | #·grep·-qs·"^$SOB"·"$1"·||·echo·"$SOB"·>>·"$1" | 16 | #·grep·-qs·"^$SOB"·"$1"·||·echo·"$SOB"·>>·"$1" |
| 17 | #·This·example·catches·duplicate·Signed-off-by·lines | 17 | #·This·example·catches·duplicate·Signed-off-by·lines·and·messages·that |
| 18 | #·would·confuse·'git·am'. | ||
| 19 | ret=0 | ||
| 18 | test·""·=·"$(grep·'^Signed-off-by:·'·"$1"·| | 20 | test·""·=·"$(grep·'^Signed-off-by:·'·"$1"·| |
| 19 | » ·sort·|·uniq·-c·|·sed·-e·'/^[·» ]*1[·» ]/d')"·||·{ | 21 | » ·sort·|·uniq·-c·|·sed·-e·'/^[·» ]*1[·» ]/d')"·||·{ |
| 20 | » echo·>&2·Duplicate·Signed-off-by·lines. | 22 | » echo·>&2·Duplicate·Signed-off-by·lines. |
| 21 | » | 23 | » ret=1 |
| 22 | } | 24 | } |
| 25 | comment_re="$( | ||
| 26 | » { | ||
| 27 | » » git·config·--get-regexp·"^core\.comment(char|string)\$"·|| | ||
| 28 | » » » echo·'#' | ||
| 29 | » }·|·sed·-n·-e·' | ||
| 30 | » » ${ | ||
| 31 | » » » s/^[^·]*·// | ||
| 32 | » » » s|[][*./\]|\\&|g | ||
| 33 | » » » s/^auto$/[#;@!$%^&|:]/ | ||
| 34 | » » » p | ||
| 35 | » » }' | ||
| 36 | )" | ||
| 37 | scissors_line="^${comment_re}·-\{8,\}·>8·-\{8,\}\$" | ||
| 38 | comment_line="^${comment_re}.*" | ||
| 39 | blank_line='^[·» ]*$' | ||
| 40 | #·Disallow·lines·starting·with·"diff·-"·or·"Index:·"·in·the·body·of·the | ||
| 41 | #·message.·Stop·looking·if·we·see·a·scissors·line. | ||
| 42 | line="$(sed·-n·-e·" | ||
| 43 | » #·Skip·comments·and·blank·lines·at·the·start·of·the·file. | ||
| 44 | » /${scissors_line}/q | ||
| 45 | » /${comment_line}/d | ||
| 46 | » /${blank_line}/d | ||
| 47 | » #·The·first·paragraph·will·become·the·subject·header·so | ||
| 48 | » #·does·not·need·to·be·checked. | ||
| 49 | » :·subject | ||
| 50 | » n | ||
| 51 | » /${scissors_line}/q | ||
| 52 | » /${blank_line}/!b·subject | ||
| 53 | » #·Check·the·body·of·the·message·for·problematic | ||
| 54 | » #·prefixes. | ||
| 55 | » :·body | ||
| 56 | » n | ||
| 57 | » /${scissors_line}/q | ||
| 58 | » /${comment_line}/b·body | ||
| 59 | » /^diff·-/{p;q;} | ||
| 60 | » /^Index:·/{p;q;} | ||
| 61 | » b·body | ||
| 62 | » "·"$1")" | ||
| 63 | if·test·-n·"$line" | ||
| 64 | then | ||
| 65 | » echo·>&2·"Message·contains·a·diff·that·will·confuse·'git·am'." | ||
| 66 | » echo·>&2·"To·fix·this·indent·the·diff." | ||
| 67 | » ret=1 | ||
| 68 | fi | ||
| 69 | exit·$ret | ||
| Offset 25, 16 lines modified | Offset 25, 14 lines modified | ||
| 25 | if·($version·ne·2)·{ | 25 | if·($version·ne·2)·{ |
| 26 | » die·"Unsupported·query-fsmonitor·hook·version·'$version'.\n"·. | 26 | » die·"Unsupported·query-fsmonitor·hook·version·'$version'.\n"·. |
| 27 | » ····"Falling·back·to·scanning...\n"; | 27 | » ····"Falling·back·to·scanning...\n"; |
| 28 | } | 28 | } |
| 29 | my·$git_work_tree·=·get_working_dir(); | 29 | my·$git_work_tree·=·get_working_dir(); |
| 30 | my·$retry·=·1; | ||
| 31 | my·$json_pkg; | 30 | my·$json_pkg; |
| 32 | eval·{ | 31 | eval·{ |
| 33 | » require·JSON::XS; | 32 | » require·JSON::XS; |
| 34 | » $json_pkg·=·"JSON::XS"; | 33 | » $json_pkg·=·"JSON::XS"; |
| 35 | » 1; | 34 | » 1; |
| 36 | }·or·do·{ | 35 | }·or·do·{ |
| 37 | » require·JSON::PP; | 36 | » require·JSON::PP; |
| Offset 119, 16 lines modified | Offset 117, 15 lines modified | ||
| 119 | » return·$json_pkg->new->utf8->decode($response); | 117 | » return·$json_pkg->new->utf8->decode($response); |
| 120 | } | 118 | } |
| 121 | sub·is_work_tree_watched·{ | 119 | sub·is_work_tree_watched·{ |
| 122 | » my·($output)·=·@_; | 120 | » my·($output)·=·@_; |
| 123 | » my·$error·=·$output->{error}; | 121 | » my·$error·=·$output->{error}; |
| 124 | » if·($ | 122 | » if·($error·and·$error·=~·m/unable·to·resolve·root·.*·directory·(.*)·is·not·watched/)·{ |
| 125 | » » $retry--; | ||
| 126 | » » my·$response·=·qx/watchman·watch·"$git_work_tree"/; | 123 | » » my·$response·=·qx/watchman·watch·"$git_work_tree"/; |
| 127 | » » die·"Failed·to·make·watchman·watch·'$git_work_tree'.\n"·. | 124 | » » die·"Failed·to·make·watchman·watch·'$git_work_tree'.\n"·. |
| 128 | » » ····"Falling·back·to·scanning...\n"·if·$?·!=·0; | 125 | » » ····"Falling·back·to·scanning...\n"·if·$?·!=·0; |
| 129 | » » $output·=·$json_pkg->new->utf8->decode($response); | 126 | » » $output·=·$json_pkg->new->utf8->decode($response); |
| 130 | » » $error·=·$output->{error}; | 127 | » » $error·=·$output->{error}; |
| 131 | » » die·"Watchman:·$error.\n"·. | 128 | » » die·"Watchman:·$error.\n"·. |
| 132 | » » "Falling·back·to·scanning...\n"·if·$error; | 129 | » » "Falling·back·to·scanning...\n"·if·$error; |
| Offset 138, 23 lines modified | Offset 135, 20 lines modified | ||
| 138 | » » #·close·$fh; | 135 | » » #·close·$fh; |
| 139 | » » #·Watchman·will·always·return·all·files·on·the·first·query·so | 136 | » » #·Watchman·will·always·return·all·files·on·the·first·query·so |
| 140 | » » #·return·the·fast·"everything·is·dirty"·flag·to·git·and·do·the | 137 | » » #·return·the·fast·"everything·is·dirty"·flag·to·git·and·do·the |
| 141 | » » #·Watchman·query·just·to·get·it·over·with·now·so·we·won't·pay | 138 | » » #·Watchman·query·just·to·get·it·over·with·now·so·we·won't·pay |
| 142 | » » #·the·cost·in·git·to·look·up·each·individual·file. | 139 | » » #·the·cost·in·git·to·look·up·each·individual·file. |
| 143 | » » my·$o·=·watchman_clock(); | 140 | » » my·$o·=·watchman_clock(); |
| 144 | » » $error·=·$o | 141 | » » $error·=·$o->{error}; |
| 145 | » » die·"Watchman:·$error.\n"·. | 142 | » » die·"Watchman:·$error.\n"·. |
| 146 | » » "Falling·back·to·scanning...\n"·if·$error; | 143 | » » "Falling·back·to·scanning...\n"·if·$error; |
| 147 | » » output_result($o->{clock},·("/")); | 144 | » » output_result($o->{clock},·("/")); |
| 148 | » » $last_update_token·=·$o->{clock}; | ||
| 149 | » » eval·{·launch_watchman()·}; | ||
| 150 | » » return·0; | 145 | » » return·0; |
| 151 | » } | 146 | » } |
| 152 | » die·"Watchman:·$error.\n"·. | 147 | » die·"Watchman:·$error.\n"·. |
| 153 | » "Falling·back·to·scanning...\n"·if·$error; | 148 | » "Falling·back·to·scanning...\n"·if·$error; |
| 154 | » return·1; | 149 | » return·1; |
| Offset 5, 3257 lines modified | Offset 5, 3257 lines modified | ||
| 5 | Path:······b'.devcontainer/Dockerfile' | 5 | Path:······b'.devcontainer/Dockerfile' |
| 6 | SHA:·······f1d8f6d168205adfd20d29d624f3862400a83885 | 6 | SHA:·······f1d8f6d168205adfd20d29d624f3862400a83885 |
| 7 | Size:······1311 | 7 | Size:······1311 |
| 8 | Flags:·····0b11000 | 8 | Flags:·····0b11000 |
| 9 | User·ID:···1001 | 9 | User·ID:···1001 |
| 10 | Group·ID:··1001 | 10 | Group·ID:··1001 |
| 11 | Created:···1779356635.703651086 | ||
| 12 | Modified:··1779356635.703651086 | ||
| 13 | 11 | Created:···1779362166.122168036 | |
| 12 | Modified:··1779362166.122168036 | ||
| 13 | Inode:·····3943401 | ||
| 14 | Device·ID:·(259,·1) | 14 | Device·ID:·(259,·1) |
| 15 | Path:······b'.devcontainer/devcontainer.json' | 15 | Path:······b'.devcontainer/devcontainer.json' |
| 16 | SHA:·······5837ca1c1362c3e63ff7a5717706f4e973d1a831 | 16 | SHA:·······5837ca1c1362c3e63ff7a5717706f4e973d1a831 |
| 17 | Size:······1409 | 17 | Size:······1409 |
| 18 | Flags:·····0b11111 | 18 | Flags:·····0b11111 |
| 19 | User·ID:···1001 | 19 | User·ID:···1001 |
| 20 | Group·ID:··1001 | 20 | Group·ID:··1001 |
| 21 | Created:···1779356635.704534515 | ||
| 22 | Modified:··1779356635.704534515 | ||
| 23 | 21 | Created:···1779362166.123798238 | |
| 22 | Modified:··1779362166.123798238 | ||
| 23 | Inode:·····3943402 | ||
| 24 | Device·ID:·(259,·1) | 24 | Device·ID:·(259,·1) |
| 25 | Path:······b'.flatpak/meson.sh' | 25 | Path:······b'.flatpak/meson.sh' |
| 26 | SHA:·······43473dd239649d1226327845dc43d8c2c96fea02 | 26 | SHA:·······43473dd239649d1226327845dc43d8c2c96fea02 |
| 27 | Size:······1657 | 27 | Size:······1657 |
| 28 | Flags:·····0b10001 | 28 | Flags:·····0b10001 |
| 29 | User·ID:···1001 | 29 | User·ID:···1001 |
| 30 | Group·ID:··1001 | 30 | Group·ID:··1001 |
| 31 | Created:···1779356635.704534515 | ||
| 32 | Modified:··1779356635.704534515 | ||
| 33 | 31 | Created:···1779362166.123798238 | |
| 32 | Modified:··1779362166.123798238 | ||
| 33 | Inode:·····3943404 | ||
| 34 | Device·ID:·(259,·1) | 34 | Device·ID:·(259,·1) |
| 35 | Path:······b'.github/FUNDING.yml' | 35 | Path:······b'.github/FUNDING.yml' |
| 36 | SHA:·······8276fcb6a4ae672a0cad61b05c2fcae432e0e44b | 36 | SHA:·······8276fcb6a4ae672a0cad61b05c2fcae432e0e44b |
| 37 | Size:······834 | 37 | Size:······834 |
| 38 | Flags:·····0b10011 | 38 | Flags:·····0b10011 |
| 39 | User·ID:···1001 | 39 | User·ID:···1001 |
| 40 | Group·ID:··1001 | 40 | Group·ID:··1001 |
| 41 | Created:···1779356635.704534515 | ||
| 42 | Modified:··1779356635.704534515 | ||
| 43 | 41 | Created:···1779362166.123798238 | |
| 42 | Modified:··1779362166.123798238 | ||
| 43 | Inode:·····3943406 | ||
| 44 | Device·ID:·(259,·1) | 44 | Device·ID:·(259,·1) |
| 45 | Path:······b'.github/ISSUE_TEMPLATE/bug_report.md' | 45 | Path:······b'.github/ISSUE_TEMPLATE/bug_report.md' |
| 46 | SHA:·······042af2e2e07b65a737e48710a15952bb076eab1d | 46 | SHA:·······042af2e2e07b65a737e48710a15952bb076eab1d |
| 47 | Size:······647 | 47 | Size:······647 |
| 48 | Flags:·····0b100100 | 48 | Flags:·····0b100100 |
| 49 | User·ID:···1001 | 49 | User·ID:···1001 |
| 50 | Group·ID:··1001 | 50 | Group·ID:··1001 |
| 51 | Created:···1779356635.704722650 | ||
| 52 | Modified:··1779356635.704722650 | ||
| 53 | 51 | Created:···1779362166.124025882 | |
| 52 | Modified:··1779362166.124025882 | ||
| 53 | Inode:·····3943408 | ||
| 54 | Device·ID:·(259,·1) | 54 | Device·ID:·(259,·1) |
| 55 | Path:······b'.github/ISSUE_TEMPLATE/feature_request.md' | 55 | Path:······b'.github/ISSUE_TEMPLATE/feature_request.md' |
| 56 | SHA:·······bdc9b64359c8d07158dd3486cd3f8e9b1a174c04 | 56 | SHA:·······bdc9b64359c8d07158dd3486cd3f8e9b1a174c04 |
| 57 | Size:······284 | 57 | Size:······284 |
| 58 | Flags:·····0b101001 | 58 | Flags:·····0b101001 |
| 59 | User·ID:···1001 | 59 | User·ID:···1001 |
| 60 | Group·ID:··1001 | 60 | Group·ID:··1001 |
| 61 | Created:···1779356635.704790382 | ||
| 62 | Modified:··1779356635.704790382 | ||
| 63 | 61 | Created:···1779362166.124083214 | |
| 62 | Modified:··1779362166.124083214 | ||
| 63 | Inode:·····3943409 | ||
| 64 | Device·ID:·(259,·1) | 64 | Device·ID:·(259,·1) |
| 65 | Path:······b'.github/workflows/release.yaml' | 65 | Path:······b'.github/workflows/release.yaml' |
| 66 | SHA:·······090db11227cab6add6f03b0b4db5365bab55ce74 | 66 | SHA:·······090db11227cab6add6f03b0b4db5365bab55ce74 |
| 67 | Size:······345 | 67 | Size:······345 |
| 68 | Flags:·····0b11110 | 68 | Flags:·····0b11110 |
| 69 | User·ID:···1001 | 69 | User·ID:···1001 |
| 70 | Group·ID:··1001 | 70 | Group·ID:··1001 |
| 71 | Created:···1779356635.704790382 | ||
| 72 | Modified:··1779356635.704790382 | ||
| 73 | 71 | Created:···1779362166.124083214 | |
| 72 | Modified:··1779362166.124083214 | ||
| 73 | Inode:·····3943411 | ||
| 74 | Device·ID:·(259,·1) | 74 | Device·ID:·(259,·1) |
| 75 | Path:······b'.gitignore' | 75 | Path:······b'.gitignore' |
| 76 | SHA:·······7aa15346aa20665a3b2d58150efcb1386f551aaa | 76 | SHA:·······7aa15346aa20665a3b2d58150efcb1386f551aaa |
| 77 | Size:······3511 | 77 | Size:······3511 |
| 78 | Flags:·····0b1010 | 78 | Flags:·····0b1010 |
| 79 | User·ID:···1001 | 79 | User·ID:···1001 |
| 80 | Group·ID:··1001 | 80 | Group·ID:··1001 |
| 81 | Created:···1779356635.704790382 | ||
| 82 | Modified:··1779356635.704790382 | ||
| 83 | 81 | Created:···1779362166.124083214 | |
| 82 | Modified:··1779362166.124083214 | ||
| 83 | Inode:·····3943412 | ||
| 84 | Device·ID:·(259,·1) | 84 | Device·ID:·(259,·1) |
| 85 | Path:······b'Assets/Fonts/Attribution.md' | 85 | Path:······b'Assets/Fonts/Attribution.md' |
| 86 | SHA:·······ea65144bca0eec518db61dbb0d183077f131b1c9 | 86 | SHA:·······ea65144bca0eec518db61dbb0d183077f131b1c9 |
| 87 | Size:······248 | 87 | Size:······248 |
| 88 | Flags:·····0b11011 | 88 | Flags:·····0b11011 |
| 89 | User·ID:···1001 | 89 | User·ID:···1001 |
| 90 | Group·ID:··1001 | 90 | Group·ID:··1001 |
| 91 | Created:···1779356635.705013209 | ||
| 92 | Modified:··1779356635.705013209 | ||
| 93 | 91 | Created:···1779362166.124258057 | |
| 92 | Modified:··1779362166.124258057 | ||
| 93 | Inode:·····3943416 | ||
| 94 | Device·ID:·(259,·1) | 94 | Device·ID:·(259,·1) |
| 95 | Path:······b'Assets/Fonts/Roboto-Regular.ttf' | 95 | Path:······b'Assets/Fonts/Roboto-Regular.ttf' |
| 96 | SHA:·······7d9a6c4c32d7e920b549caf531e390733496b6e0 | 96 | SHA:·······7d9a6c4c32d7e920b549caf531e390733496b6e0 |
| 97 | Size:······158604 | 97 | Size:······158604 |
| 98 | Flags:·····0b11111 | 98 | Flags:·····0b11111 |
| 99 | User·ID:···1001 | 99 | User·ID:···1001 |
| 100 | Group·ID:··1001 | 100 | Group·ID:··1001 |
| 101 | Created:···1779356635.705081080 | ||
| 102 | Modified:··1779356635.705081080 | ||
| 103 | 101 | Created:···1779362166.124314008 | |
| ... Open expanded diff (truncated) ... | |||
| Offset 1, 1 lines modified | Offset 1, 1 lines modified | ||
| 1 | 0000000000000000000000000000000000000000·12052dec15d0e0948032c7ec11eff2da0d109106·Flatpak·git·committer·<flatpak-builder-commit@flatpak.org>·17793 | 1 | 0000000000000000000000000000000000000000·12052dec15d0e0948032c7ec11eff2da0d109106·Flatpak·git·committer·<flatpak-builder-commit@flatpak.org>·1779362166·+0000» checkout:·moving·from·master·to·12052dec15d0e0948032c7ec11eff2da0d109106 |
| Offset 1, 3 lines modified | Offset 1, 2 lines modified | ||
| 1 | bitmap-ref-tips_EVnXR1 | ||
| 2 | info | 1 | info |
| 3 | pack | 2 | pack |
| Offset 1, 26 lines modified | Offset 1, 3 lines modified | ||
| 1 | pack-b77f5f1722c9f1fd9a5dc396bc8ab5d9461949e2.idx | ||
| 2 | pack-b77f5f1722c9f1fd9a5dc396bc8ab5d9461949e2.pack | ||
| 3 | pack-b77f5f1722c9f1fd9a5dc396bc8ab5d9461949e2.rev | ||
| 1 | multi-pack-index.lock | ||
| 2 | pack-430959a7bb8e0a15eec8ccea77fa25b923b7ed1a.idx | ||
| 3 | pack-430959a7bb8e0a15eec8ccea77fa25b923b7ed1a.pack | ||
| 4 | pack-430959a7bb8e0a15eec8ccea77fa25b923b7ed1a.rev | ||
| 5 | pack-5f4d1a2504fa2a1a2776f247b3cca6e5b5c2b776.idx | ||
| 6 | pack-5f4d1a2504fa2a1a2776f247b3cca6e5b5c2b776.pack | ||
| 7 | pack-5f4d1a2504fa2a1a2776f247b3cca6e5b5c2b776.rev | ||
| 8 | pack-66767f112aaa57f04094f998a8e2485616021d34.idx | ||
| 9 | pack-66767f112aaa57f04094f998a8e2485616021d34.pack | ||
| 10 | pack-66767f112aaa57f04094f998a8e2485616021d34.rev | ||
| 11 | pack-a79bbbb2a8fab9f7f9b2c61b394b9538a9c43c6d.idx | ||
| 12 | pack-a79bbbb2a8fab9f7f9b2c61b394b9538a9c43c6d.pack | ||
| 13 | pack-a79bbbb2a8fab9f7f9b2c61b394b9538a9c43c6d.rev | ||
| 14 | pack-bb58de031bb8c4d72698512f78190a1d7c03e066.idx | ||
| 15 | pack-bb58de031bb8c4d72698512f78190a1d7c03e066.pack | ||
| 16 | pack-bb58de031bb8c4d72698512f78190a1d7c03e066.rev | ||
| 17 | pack-e2c29132858b25fb24fd015195e1c7887e6dbefd.idx | ||
| 18 | pack-e2c29132858b25fb24fd015195e1c7887e6dbefd.mtimes | ||
| 19 | pack-e2c29132858b25fb24fd015195e1c7887e6dbefd.pack | ||
| 20 | pack-e2c29132858b25fb24fd015195e1c7887e6dbefd.rev | ||
| 21 | pack-f3076a20a6278084a8f81f2e6b8966426c3454b0.idx | ||
| 22 | pack-f3076a20a6278084a8f81f2e6b8966426c3454b0.pack | ||
| 23 | pack-f3076a20a6278084a8f81f2e6b8966426c3454b0.rev | ||
| 24 | pack-f9b943372e609fc147ff4c0d6fb8a7917ca1e3a7.idx | ||
| 25 | pack-f9b943372e609fc147ff4c0d6fb8a7917ca1e3a7.pack | ||
| 26 | pack-f9b943372e609fc147ff4c0d6fb8a7917ca1e3a7.rev | ||
| Offset 1, 4 lines modified | Offset 1, 1 lines modified | ||
| 1 | 1.5.0-beta.11 | ||
| 2 | 1.5.0-beta.12 | ||
| 3 | 1.5.0-beta.13 | ||
| 4 | 1.5.0-beta.14 | 1 | 1.5.0-beta.14 |
| Offset 1, 5 lines modified | Offset 1, 1 lines modified | ||
| 1 | 0967bb2aca1a081fe2dbb7f4db600c7dac5d840e | ||
| 2 | 12052dec15d0e0948032c7ec11eff2da0d109106 | 1 | 12052dec15d0e0948032c7ec11eff2da0d109106 |
| 3 | 359de976eb23120d6e6a2d31104e15b37d1edfeb | ||
| 4 | 6f5eb7b951ae42e74416e79a83b3c15ca8f44bf1 | ||
| 5 | 73b7632ff2977d05763acd56e53bdc7a37d30c0c | ||
| Offset 1, 8 lines modified | Offset 1, 8 lines modified | ||
| 1 | Displaying·notes·found·in:·.note.gnu.property | 1 | Displaying·notes·found·in:·.note.gnu.property |
| 2 | ··Owner················Data·size·» Description | 2 | ··Owner················Data·size·» Description |
| 3 | ··GNU··················0x00000030» NT_GNU_PROPERTY_TYPE_0» ······Properties:·x86·feature:·IBT,·SHSTK,·x86·feature·used:·x86,·XMM,·x86·ISA·used:·x86-64-baseline | 3 | ··GNU··················0x00000030» NT_GNU_PROPERTY_TYPE_0» ······Properties:·x86·feature:·IBT,·SHSTK,·x86·feature·used:·x86,·XMM,·x86·ISA·used:·x86-64-baseline |
| 4 | Displaying·notes·found·in:·.note.gnu.build-id | 4 | Displaying·notes·found·in:·.note.gnu.build-id |
| 5 | ··Owner················Data·size·» Description | 5 | ··Owner················Data·size·» Description |
| 6 | ··GNU··················0x00000014» NT_GNU_BUILD_ID·(unique·build·ID·bitstring)» ····Build·ID:· | 6 | ··GNU··················0x00000014» NT_GNU_BUILD_ID·(unique·build·ID·bitstring)» ····Build·ID:·28df0c0f865ce9dcc191d58b1c2d50089e94604d |
| Offset 1, 7 lines modified | Offset 1, 7 lines modified | ||
| 1 | Hex·dump·of·section·'.gnu_debuglink': | 1 | Hex·dump·of·section·'.gnu_debuglink': |
| 2 | ··0x00000000·5f646275·735f6269·6e64696e·67732e63·_dbus_bindings.c | 2 | ··0x00000000·5f646275·735f6269·6e64696e·67732e63·_dbus_bindings.c |
| 3 | ··0x00000010·70797468·6f6e2d33·31322d78·38365f36·python-312-x86_6 | 3 | ··0x00000010·70797468·6f6e2d33·31322d78·38365f36·python-312-x86_6 |
| 4 | ··0x00000020·342d6c69·6e75782d·676e752e·736f2e64·4-linux-gnu.so.d | 4 | ··0x00000020·342d6c69·6e75782d·676e752e·736f2e64·4-linux-gnu.so.d |
| 5 | ··0x00000030·65627567·00000000· | 5 | ··0x00000030·65627567·00000000·0ee65675··········ebug......Vu |
| Offset 1, 8 lines modified | Offset 1, 8 lines modified | ||
| 1 | Displaying·notes·found·in:·.note.gnu.property | 1 | Displaying·notes·found·in:·.note.gnu.property |
| 2 | ··Owner················Data·size·» Description | 2 | ··Owner················Data·size·» Description |
| 3 | ··GNU··················0x00000030» NT_GNU_PROPERTY_TYPE_0» ······Properties:·x86·feature:·IBT,·SHSTK,·x86·feature·used:·x86,·x86·ISA·used:·x86-64-baseline | 3 | ··GNU··················0x00000030» NT_GNU_PROPERTY_TYPE_0» ······Properties:·x86·feature:·IBT,·SHSTK,·x86·feature·used:·x86,·x86·ISA·used:·x86-64-baseline |
| 4 | Displaying·notes·found·in:·.note.gnu.build-id | 4 | Displaying·notes·found·in:·.note.gnu.build-id |
| 5 | ··Owner················Data·size·» Description | 5 | ··Owner················Data·size·» Description |
| 6 | ··GNU··················0x00000014» NT_GNU_BUILD_ID·(unique·build·ID·bitstring)» ····Build·ID:·b | 6 | ··GNU··················0x00000014» NT_GNU_BUILD_ID·(unique·build·ID·bitstring)» ····Build·ID:·ba2f258e16fcfc916afa396d03501f692b23e9ec |
| Offset 1, 7 lines modified | Offset 1, 7 lines modified | ||
| 1 | Hex·dump·of·section·'.gnu_debuglink': | 1 | Hex·dump·of·section·'.gnu_debuglink': |
| 2 | ··0x00000000·5f646275·735f676c·69625f62·696e6469·_dbus_glib_bindi | 2 | ··0x00000000·5f646275·735f676c·69625f62·696e6469·_dbus_glib_bindi |
| 3 | ··0x00000010·6e67732e·63707974·686f6e2d·3331322d·ngs.cpython-312- | 3 | ··0x00000010·6e67732e·63707974·686f6e2d·3331322d·ngs.cpython-312- |
| 4 | ··0x00000020·7838365f·36342d6c·696e7578·2d676e75·x86_64-linux-gnu | 4 | ··0x00000020·7838365f·36342d6c·696e7578·2d676e75·x86_64-linux-gnu |
| 5 | ··0x00000030·2e736f2e·64656275·67000000· | 5 | ··0x00000030·2e736f2e·64656275·67000000·bc35f37d·.so.debug....5.} |
| Offset 1, 11 lines modified | Offset 1, 11 lines modified | ||
| 1 | ../../../include/python3.12/dbus-python/dbus-1.0/dbus/dbus-python.h,sha256=VrWhNjDdUDZJaM1vMOU9XHDbbp5MDq_uY_YmIi7ABdg,3701\xd | 1 | ../../../include/python3.12/dbus-python/dbus-1.0/dbus/dbus-python.h,sha256=VrWhNjDdUDZJaM1vMOU9XHDbbp5MDq_uY_YmIi7ABdg,3701\xd |
| 2 | .dbus_python.mesonpy.libs/pkgconfig/dbus-python.pc,sha256=YcRiTdWU2LxDHY3dMNmJYqLmg-rtK17MifjpWbNhyjU,229\xd | 2 | .dbus_python.mesonpy.libs/pkgconfig/dbus-python.pc,sha256=YcRiTdWU2LxDHY3dMNmJYqLmg-rtK17MifjpWbNhyjU,229\xd |
| 3 | _dbus_bindings.cpython-312-x86_64-linux-gnu.so,sha256=KP9QETa6s2iFMj1EpW9TtAdL29H78VSqxeDE6IFB9Ls,625536\xd | ||
| 4 | _dbus_ | 3 | _dbus_bindings.cpython-312-x86_64-linux-gnu.so,sha256=uEGq_o7QcWjSWUNv6GphAuz4IOSJTIu6H85A4yWMlRU,625536\xd |
| 4 | _dbus_glib_bindings.cpython-312-x86_64-linux-gnu.so,sha256=2o-wrDbysTzFiGUzpTCzDaPe6tg2WCrosLKODLAGPy8,72784\xd | ||
| 5 | dbus/__init__.py,sha256=kve5x88WjgBQ24e9y6uqTH6oIR3imNI2QMVR_l0MsTI,3658\xd | 5 | dbus/__init__.py,sha256=kve5x88WjgBQ24e9y6uqTH6oIR3imNI2QMVR_l0MsTI,3658\xd |
| 6 | dbus/__pycache__/__init__.cpython-312.pyc,,\xd | 6 | dbus/__pycache__/__init__.cpython-312.pyc,,\xd |
| 7 | dbus/__pycache__/_compat.cpython-312.pyc,,\xd | 7 | dbus/__pycache__/_compat.cpython-312.pyc,,\xd |
| 8 | dbus/__pycache__/_dbus.cpython-312.pyc,,\xd | 8 | dbus/__pycache__/_dbus.cpython-312.pyc,,\xd |
| 9 | dbus/__pycache__/_expat_introspect_parser.cpython-312.pyc,,\xd | 9 | dbus/__pycache__/_expat_introspect_parser.cpython-312.pyc,,\xd |
| 10 | dbus/__pycache__/bus.cpython-312.pyc,,\xd | 10 | dbus/__pycache__/bus.cpython-312.pyc,,\xd |
| 11 | dbus/__pycache__/connection.cpython-312.pyc,,\xd | 11 | dbus/__pycache__/connection.cpython-312.pyc,,\xd |
| Offset 1, 8 lines modified | Offset 1, 8 lines modified | ||
| 1 | Displaying·notes·found·in:·.note.gnu.property | 1 | Displaying·notes·found·in:·.note.gnu.property |
| 2 | ··Owner················Data·size·» Description | 2 | ··Owner················Data·size·» Description |
| 3 | ··GNU··················0x00000030» NT_GNU_PROPERTY_TYPE_0» ······Properties:·x86·feature:·IBT,·SHSTK,·x86·feature·used:·x86,·x86·ISA·used:·x86-64-baseline | 3 | ··GNU··················0x00000030» NT_GNU_PROPERTY_TYPE_0» ······Properties:·x86·feature:·IBT,·SHSTK,·x86·feature·used:·x86,·x86·ISA·used:·x86-64-baseline |
| 4 | Displaying·notes·found·in:·.note.gnu.build-id | 4 | Displaying·notes·found·in:·.note.gnu.build-id |
| 5 | ··Owner················Data·size·» Description | 5 | ··Owner················Data·size·» Description |
| 6 | ··GNU··················0x00000014» NT_GNU_BUILD_ID·(unique·build·ID·bitstring)» ····Build·ID:·b | 6 | ··GNU··················0x00000014» NT_GNU_BUILD_ID·(unique·build·ID·bitstring)» ····Build·ID:·b8b7b1a6ea547e0fb430b01f5c2f4463c84a20ae |
| Offset 1, 7 lines modified | Offset 1, 7 lines modified | ||
| 1 | Hex·dump·of·section·'.gnu_debuglink': | 1 | Hex·dump·of·section·'.gnu_debuglink': |
| 2 | ··0x00000000·5f65636f·6465732e·63707974·686f6e2d·_ecodes.cpython- | 2 | ··0x00000000·5f65636f·6465732e·63707974·686f6e2d·_ecodes.cpython- |
| 3 | ··0x00000010·3331322d·7838365f·36342d6c·696e7578·312-x86_64-linux | 3 | ··0x00000010·3331322d·7838365f·36342d6c·696e7578·312-x86_64-linux |
| 4 | ··0x00000020·2d676e75·2e736f2e·64656275·67000000·-gnu.so.debug... | 4 | ··0x00000020·2d676e75·2e736f2e·64656275·67000000·-gnu.so.debug... |
| 5 | ··0x00000030· | 5 | ··0x00000030·0fe184af····························.... |
| Offset 1, 8 lines modified | Offset 1, 8 lines modified | ||
| 1 | Displaying·notes·found·in:·.note.gnu.property | 1 | Displaying·notes·found·in:·.note.gnu.property |
| 2 | ··Owner················Data·size·» Description | 2 | ··Owner················Data·size·» Description |
| 3 | ··GNU··················0x00000030» NT_GNU_PROPERTY_TYPE_0» ······Properties:·x86·feature:·IBT,·SHSTK,·x86·feature·used:·x86,·XMM,·x86·ISA·used:·x86-64-baseline | 3 | ··GNU··················0x00000030» NT_GNU_PROPERTY_TYPE_0» ······Properties:·x86·feature:·IBT,·SHSTK,·x86·feature·used:·x86,·XMM,·x86·ISA·used:·x86-64-baseline |
| 4 | Displaying·notes·found·in:·.note.gnu.build-id | 4 | Displaying·notes·found·in:·.note.gnu.build-id |
| 5 | ··Owner················Data·size·» Description | 5 | ··Owner················Data·size·» Description |
| 6 | ··GNU··················0x00000014» NT_GNU_BUILD_ID·(unique·build·ID·bitstring)» ····Build·ID:· | 6 | ··GNU··················0x00000014» NT_GNU_BUILD_ID·(unique·build·ID·bitstring)» ····Build·ID:·cc7d9f7f7f270cd21fb1117ad83c38ab02fd7a7e |
| Offset 1, 8 lines modified | Offset 1, 7 lines modified | ||
| 1 | M;tZ~7.' | ||
| 2 | __gmon_start__ | 1 | __gmon_start__ |
| 3 | _ITM_deregisterTMCloneTable | 2 | _ITM_deregisterTMCloneTable |
| 4 | _ITM_registerTMCloneTable | 3 | _ITM_registerTMCloneTable |
| 5 | __cxa_finalize | 4 | __cxa_finalize |
| 6 | PyArg_ParseTuple | 5 | PyArg_ParseTuple |
| 7 | PyLong_AsLong | 6 | PyLong_AsLong |
| 8 | _Py_NoneStruct | 7 | _Py_NoneStruct |
| Offset 1, 7 lines modified | Offset 1, 7 lines modified | ||
| 1 | Hex·dump·of·section·'.gnu_debuglink': | 1 | Hex·dump·of·section·'.gnu_debuglink': |
| 2 | ··0x00000000·5f696e70·75742e63·70797468·6f6e2d33·_input.cpython-3 | 2 | ··0x00000000·5f696e70·75742e63·70797468·6f6e2d33·_input.cpython-3 |
| 3 | ··0x00000010·31322d78·38365f36·342d6c69·6e75782d·12-x86_64-linux- | 3 | ··0x00000010·31322d78·38365f36·342d6c69·6e75782d·12-x86_64-linux- |
| 4 | ··0x00000020·676e752e·736f2e64·65627567·00000000·gnu.so.debug.... | 4 | ··0x00000020·676e752e·736f2e64·65627567·00000000·gnu.so.debug.... |
| 5 | ··0x00000030· | 5 | ··0x00000030·9d19024b····························...K |
| Offset 1, 8 lines modified | Offset 1, 8 lines modified | ||
| 1 | Displaying·notes·found·in:·.note.gnu.property | 1 | Displaying·notes·found·in:·.note.gnu.property |
| 2 | ··Owner················Data·size·» Description | 2 | ··Owner················Data·size·» Description |
| 3 | ··GNU··················0x00000030» NT_GNU_PROPERTY_TYPE_0» ······Properties:·x86·feature:·IBT,·SHSTK,·x86·feature·used:·x86,·XMM,·x86·ISA·used:·x86-64-baseline | 3 | ··GNU··················0x00000030» NT_GNU_PROPERTY_TYPE_0» ······Properties:·x86·feature:·IBT,·SHSTK,·x86·feature·used:·x86,·XMM,·x86·ISA·used:·x86-64-baseline |
| 4 | Displaying·notes·found·in:·.note.gnu.build-id | 4 | Displaying·notes·found·in:·.note.gnu.build-id |
| 5 | ··Owner················Data·size·» Description | 5 | ··Owner················Data·size·» Description |
| 6 | ··GNU··················0x00000014» NT_GNU_BUILD_ID·(unique·build·ID·bitstring)» ····Build·ID:· | 6 | ··GNU··················0x00000014» NT_GNU_BUILD_ID·(unique·build·ID·bitstring)» ····Build·ID:·e7b05a621a4089e683dbeb57eb80586fe70caaf0 |
| Offset 1, 7 lines modified | Offset 1, 7 lines modified | ||
| 1 | Hex·dump·of·section·'.gnu_debuglink': | 1 | Hex·dump·of·section·'.gnu_debuglink': |
| 2 | ··0x00000000·5f75696e·7075742e·63707974·686f6e2d·_uinput.cpython- | 2 | ··0x00000000·5f75696e·7075742e·63707974·686f6e2d·_uinput.cpython- |
| 3 | ··0x00000010·3331322d·7838365f·36342d6c·696e7578·312-x86_64-linux | 3 | ··0x00000010·3331322d·7838365f·36342d6c·696e7578·312-x86_64-linux |
| 4 | ··0x00000020·2d676e75·2e736f2e·64656275·67000000·-gnu.so.debug... | 4 | ··0x00000020·2d676e75·2e736f2e·64656275·67000000·-gnu.so.debug... |
| 5 | ··0x00000030· | 5 | ··0x00000030·b6f907eb····························.... |
| Offset 15, 17 lines modified | Offset 15, 17 lines modified | ||
| 15 | evdev/__pycache__/events.cpython-312.pyc,,\xd | 15 | evdev/__pycache__/events.cpython-312.pyc,,\xd |
| 16 | evdev/__pycache__/evtest.cpython-312.pyc,,\xd | 16 | evdev/__pycache__/evtest.cpython-312.pyc,,\xd |
| 17 | evdev/__pycache__/ff.cpython-312.pyc,,\xd | 17 | evdev/__pycache__/ff.cpython-312.pyc,,\xd |
| 18 | evdev/__pycache__/genecodes_c.cpython-312.pyc,,\xd | 18 | evdev/__pycache__/genecodes_c.cpython-312.pyc,,\xd |
| 19 | evdev/__pycache__/genecodes_py.cpython-312.pyc,,\xd | 19 | evdev/__pycache__/genecodes_py.cpython-312.pyc,,\xd |
| 20 | evdev/__pycache__/uinput.cpython-312.pyc,,\xd | 20 | evdev/__pycache__/uinput.cpython-312.pyc,,\xd |
| 21 | evdev/__pycache__/util.cpython-312.pyc,,\xd | 21 | evdev/__pycache__/util.cpython-312.pyc,,\xd |
| 22 | evdev/_ecodes.cpython-312-x86_64-linux-gnu.so,sha256=pZLlg0vWA4KG81_Eo7Uclv5_QrSbq-uD2D1rS4QQsxk,86848\xd | ||
| 23 | evdev/_input.cpython-312-x86_64-linux-gnu.so,sha256=6oUwjr4USlpXBumrPF5YmdOluG9KeRhUQrdNk2hpZMo,57616\xd | ||
| 24 | evdev/_ | 22 | evdev/_ecodes.cpython-312-x86_64-linux-gnu.so,sha256=RpAdWA-t26MYMzV0WxfQlRKGq_Qep1-jYCt63vPpqTk,86848\xd |
| 23 | evdev/_input.cpython-312-x86_64-linux-gnu.so,sha256=Fx7pXbLN9Hn6eZlDjYjfxQPZ1SeZdu3a2gpw7xA5TWY,57616\xd | ||
| 24 | evdev/_uinput.cpython-312-x86_64-linux-gnu.so,sha256=JnJ1L11NbrCh0zd6Z2nG6o3ULSChCI4DIefW8xMOnEY,37904\xd | ||
| 25 | evdev/device.py,sha256=j_uM-hHx9mg9IRagScg8MqdHGmF-h74I2odEVXTAGaE,12864\xd | 25 | evdev/device.py,sha256=j_uM-hHx9mg9IRagScg8MqdHGmF-h74I2odEVXTAGaE,12864\xd |
| 26 | evdev/ecodes.py,sha256=sjCxcilCZuvWHQ89AEMmBdSVWBO-k7spXYx8QfheM_g,97478\xd | 26 | evdev/ecodes.py,sha256=sjCxcilCZuvWHQ89AEMmBdSVWBO-k7spXYx8QfheM_g,97478\xd |
| 27 | evdev/ecodes_runtime.py,sha256=_QR3aSjX3pbwrk0f1dA-tXjiECKtV_uPpUtXpWP_cTI,2838\xd | 27 | evdev/ecodes_runtime.py,sha256=_QR3aSjX3pbwrk0f1dA-tXjiECKtV_uPpUtXpWP_cTI,2838\xd |
| 28 | evdev/eventio.py,sha256=4SnIINjPJadQChUEy_1lbTzuTORsydDC7zL2qkegTIY,4422\xd | 28 | evdev/eventio.py,sha256=4SnIINjPJadQChUEy_1lbTzuTORsydDC7zL2qkegTIY,4422\xd |
| 29 | evdev/eventio_async.py,sha256=B1qaEKYoiiop8YpG0AFf0lu2Im3CvW50dRPLug40xWA,3078\xd | 29 | evdev/eventio_async.py,sha256=B1qaEKYoiiop8YpG0AFf0lu2Im3CvW50dRPLug40xWA,3078\xd |
| 30 | evdev/events.py,sha256=_0vXzjv8yFtJR9drfwhmBZl9w4ZmfwQhgCo3WcrWi-Q,5905\xd | 30 | evdev/events.py,sha256=_0vXzjv8yFtJR9drfwhmBZl9w4ZmfwQhgCo3WcrWi-Q,5905\xd |
| 31 | evdev/evtest.py,sha256=u0umJIV_HQUDlbBhLvXEKZ87UZqNIhk0XJRcm5VYIzg,5543\xd | 31 | evdev/evtest.py,sha256=u0umJIV_HQUDlbBhLvXEKZ87UZqNIhk0XJRcm5VYIzg,5543\xd |