static void test_timestamp_utc_format(cork_timestamp ts, const char *format, const char *expected) { struct cork_buffer buf = CORK_BUFFER_INIT(); fail_if_error(cork_timestamp_format_utc(ts, format, &buf)); fail_unless(strcmp(buf.buf, expected) == 0, "Unexpected formatted UTC time " "(got \"%s\", expected \"%s\")", (char *) buf.buf, expected); cork_buffer_done(&buf); }
END_TEST /*----------------------------------------------------------------------- * Timestamps */ static void test_timestamp_bad_format(cork_timestamp ts, const char *format) { struct cork_buffer buf = CORK_BUFFER_INIT(); fail_unless_error(cork_timestamp_format_utc(ts, format, &buf)); cork_buffer_done(&buf); }
END_TEST /*----------------------------------------------------------------------- * DEBIAN version strings */ static void test_version_to_deb(const char *buzzy, const char *deb) { struct bz_version *version; struct cork_buffer deb_version = CORK_BUFFER_INIT(); fail_if_error(version = bz_version_from_string(buzzy)); bz_version_to_deb(version, &deb_version); fail_unless_streq("Versions", deb, deb_version.buf); cork_buffer_done(&deb_version); bz_version_free(version); }
int cork_walk_directory(const char *path, struct cork_dir_walker *w) { int rc; char *p; struct cork_buffer buf = CORK_BUFFER_INIT(); /* Seed the buffer with the directory's path, ensuring that there's no * trailing '/' */ cork_buffer_append_string(&buf, path); p = buf.buf; while (p[buf.size-1] == '/') { buf.size--; p[buf.size] = '\0'; } rc = cork_walk_one_directory(w, &buf, buf.size + 1); cork_buffer_done(&buf); return rc; }
END_TEST /*----------------------------------------------------------------------- * Building deb packages */ /* Since we're mocking the subprocess commands for each of these test cases, the * tests can run on any platform; we don't need the Debian Linux packaging tools * to actually be installed. */ static void mock_dpkg_deb(const char *package_name, const char *version) { struct cork_buffer buf = CORK_BUFFER_INIT(); cork_buffer_printf(&buf, "dpkg-deb -b /tmp/staging ./%s_%s_amd64.deb", package_name, version ); bz_mock_subprocess(buf.buf, NULL, NULL, 0); cork_buffer_done(&buf); }
static int bz_pacman_fill_deps(struct bz_env *env, struct cork_buffer *buf, const char *pkgbuild_name, const char *var_name) { struct bz_value *deps_value; rie_check(deps_value = bz_env_get_value(env, var_name)); if (deps_value != NULL) { int rc; struct bz_pacman_fill_deps state = { bz_env_as_value(env), CORK_BUFFER_INIT(), true }; rc = bz_array_value_map_scalars (deps_value, &state, bz_pacman_fill_one_dep); if (rc == 0 && state.dep_buf.size > 0) { cork_buffer_append_printf (buf, "%s=(%s)\n", pkgbuild_name, (char *) state.dep_buf.buf); } cork_buffer_done(&state.dep_buf); return rc; } return 0; }
CORK_ATTR_UNUSED static void cork_error_done(struct cork_error *err) { cork_buffer_done(&err->message); }
void cork_buffer_free(struct cork_buffer *buffer) { cork_buffer_done(buffer); free(buffer); }
static struct bz_version * bz_version_from_rpm_any(const char *rpm_version) { int cs; const char *p = rpm_version; const char *pe = strchr(rpm_version, '\0'); const char *eof = pe; struct bz_version *version; enum bz_version_part_kind kind; const char *start; struct cork_buffer buf = CORK_BUFFER_INIT(); clog_trace("Parse any RPM version \"%s\"", rpm_version); version = bz_version_new(); #line 560 "libbuzzy/distro/rpm.c" static const int rpm_version_any_start = 1; static const int rpm_version_any_en_main = 1; #line 566 "libbuzzy/distro/rpm.c" { cs = rpm_version_any_start; } #line 571 "libbuzzy/distro/rpm.c" { if ( p == pe ) goto _test_eof; switch ( cs ) { case 1: if ( 48 <= (*p) && (*p) <= 57 ) goto tr0; goto st0; st0: cs = 0; goto _out; tr0: #line 272 "libbuzzy/distro/rpm.c.rl" { kind = BZ_VERSION_RELEASE; start = p; clog_trace(" Create new release version part"); } goto st2; tr4: #line 290 "libbuzzy/distro/rpm.c.rl" { size_t size = p - start; clog_trace(" String value: %.*s", (int) size, start); ei_check(bz_version_add_part(version, kind, start, size)); } #line 272 "libbuzzy/distro/rpm.c.rl" { kind = BZ_VERSION_RELEASE; start = p; clog_trace(" Create new release version part"); } goto st2; st2: if ( ++p == pe ) goto _test_eof2; case 2: #line 610 "libbuzzy/distro/rpm.c" switch( (*p) ) { case 43: goto tr2; case 45: goto tr3; case 46: goto tr2; case 95: goto tr2; } if ( (*p) < 65 ) { if ( 48 <= (*p) && (*p) <= 57 ) goto tr4; } else if ( (*p) > 90 ) { if ( 97 <= (*p) && (*p) <= 122 ) goto tr5; } else goto tr5; goto st0; tr2: #line 290 "libbuzzy/distro/rpm.c.rl" { size_t size = p - start; clog_trace(" String value: %.*s", (int) size, start); ei_check(bz_version_add_part(version, kind, start, size)); } goto st3; st3: if ( ++p == pe ) goto _test_eof3; case 3: #line 638 "libbuzzy/distro/rpm.c" switch( (*p) ) { case 43: goto st3; case 46: goto st3; case 95: goto st3; } if ( (*p) < 65 ) { if ( 48 <= (*p) && (*p) <= 57 ) goto tr7; } else if ( (*p) > 90 ) { if ( 97 <= (*p) && (*p) <= 122 ) goto tr8; } else goto tr8; goto st0; tr7: #line 272 "libbuzzy/distro/rpm.c.rl" { kind = BZ_VERSION_RELEASE; start = p; clog_trace(" Create new release version part"); } goto st4; tr18: #line 290 "libbuzzy/distro/rpm.c.rl" { size_t size = p - start; clog_trace(" String value: %.*s", (int) size, start); ei_check(bz_version_add_part(version, kind, start, size)); } #line 272 "libbuzzy/distro/rpm.c.rl" { kind = BZ_VERSION_RELEASE; start = p; clog_trace(" Create new release version part"); } goto st4; st4: if ( ++p == pe ) goto _test_eof4; case 4: #line 679 "libbuzzy/distro/rpm.c" switch( (*p) ) { case 43: goto tr2; case 45: goto tr3; case 46: goto tr2; case 95: goto tr2; } if ( (*p) < 65 ) { if ( 48 <= (*p) && (*p) <= 57 ) goto st4; } else if ( (*p) > 90 ) { if ( 97 <= (*p) && (*p) <= 122 ) goto tr5; } else goto tr5; goto st0; tr3: #line 290 "libbuzzy/distro/rpm.c.rl" { size_t size = p - start; clog_trace(" String value: %.*s", (int) size, start); ei_check(bz_version_add_part(version, kind, start, size)); } goto st5; st5: if ( ++p == pe ) goto _test_eof5; case 5: #line 707 "libbuzzy/distro/rpm.c" switch( (*p) ) { case 48: goto st6; case 49: goto tr11; } if ( 50 <= (*p) && (*p) <= 57 ) goto tr12; goto st0; st6: if ( ++p == pe ) goto _test_eof6; case 6: if ( (*p) == 46 ) goto st7; goto st0; st7: if ( ++p == pe ) goto _test_eof7; case 7: if ( 48 <= (*p) && (*p) <= 57 ) goto tr14; goto st0; tr21: #line 290 "libbuzzy/distro/rpm.c.rl" { size_t size = p - start; clog_trace(" String value: %.*s", (int) size, start); ei_check(bz_version_add_part(version, kind, start, size)); } #line 272 "libbuzzy/distro/rpm.c.rl" { kind = BZ_VERSION_RELEASE; start = p; clog_trace(" Create new release version part"); } goto st10; tr12: #line 284 "libbuzzy/distro/rpm.c.rl" { kind = BZ_VERSION_POSTRELEASE; start = p; clog_trace(" Create new postrelease version part"); } goto st10; tr14: #line 278 "libbuzzy/distro/rpm.c.rl" { kind = BZ_VERSION_PRERELEASE; start = p; clog_trace(" Create new prerelease version part"); } goto st10; st10: if ( ++p == pe ) goto _test_eof10; case 10: #line 763 "libbuzzy/distro/rpm.c" switch( (*p) ) { case 43: goto tr20; case 46: goto tr20; case 95: goto tr20; } if ( (*p) < 65 ) { if ( 48 <= (*p) && (*p) <= 57 ) goto tr21; } else if ( (*p) > 90 ) { if ( 97 <= (*p) && (*p) <= 122 ) goto tr22; } else goto tr22; goto st0; tr20: #line 290 "libbuzzy/distro/rpm.c.rl" { size_t size = p - start; clog_trace(" String value: %.*s", (int) size, start); ei_check(bz_version_add_part(version, kind, start, size)); } goto st8; st8: if ( ++p == pe ) goto _test_eof8; case 8: #line 790 "libbuzzy/distro/rpm.c" switch( (*p) ) { case 43: goto st8; case 46: goto st8; case 95: goto st8; } if ( (*p) < 65 ) { if ( 48 <= (*p) && (*p) <= 57 ) goto tr16; } else if ( (*p) > 90 ) { if ( 97 <= (*p) && (*p) <= 122 ) goto tr17; } else goto tr17; goto st0; tr16: #line 272 "libbuzzy/distro/rpm.c.rl" { kind = BZ_VERSION_RELEASE; start = p; clog_trace(" Create new release version part"); } goto st11; tr24: #line 290 "libbuzzy/distro/rpm.c.rl" { size_t size = p - start; clog_trace(" String value: %.*s", (int) size, start); ei_check(bz_version_add_part(version, kind, start, size)); } #line 272 "libbuzzy/distro/rpm.c.rl" { kind = BZ_VERSION_RELEASE; start = p; clog_trace(" Create new release version part"); } goto st11; st11: if ( ++p == pe ) goto _test_eof11; case 11: #line 831 "libbuzzy/distro/rpm.c" switch( (*p) ) { case 43: goto tr20; case 46: goto tr20; case 95: goto tr20; } if ( (*p) < 65 ) { if ( 48 <= (*p) && (*p) <= 57 ) goto st11; } else if ( (*p) > 90 ) { if ( 97 <= (*p) && (*p) <= 122 ) goto tr22; } else goto tr22; goto st0; tr17: #line 272 "libbuzzy/distro/rpm.c.rl" { kind = BZ_VERSION_RELEASE; start = p; clog_trace(" Create new release version part"); } goto st12; tr22: #line 290 "libbuzzy/distro/rpm.c.rl" { size_t size = p - start; clog_trace(" String value: %.*s", (int) size, start); ei_check(bz_version_add_part(version, kind, start, size)); } #line 272 "libbuzzy/distro/rpm.c.rl" { kind = BZ_VERSION_RELEASE; start = p; clog_trace(" Create new release version part"); } goto st12; st12: if ( ++p == pe ) goto _test_eof12; case 12: #line 872 "libbuzzy/distro/rpm.c" switch( (*p) ) { case 43: goto tr20; case 46: goto tr20; case 95: goto tr20; } if ( (*p) < 65 ) { if ( 48 <= (*p) && (*p) <= 57 ) goto tr24; } else if ( (*p) > 90 ) { if ( 97 <= (*p) && (*p) <= 122 ) goto st12; } else goto st12; goto st0; tr11: #line 284 "libbuzzy/distro/rpm.c.rl" { kind = BZ_VERSION_POSTRELEASE; start = p; clog_trace(" Create new postrelease version part"); } goto st13; st13: if ( ++p == pe ) goto _test_eof13; case 13: #line 899 "libbuzzy/distro/rpm.c" switch( (*p) ) { case 43: goto tr20; case 46: goto tr20; case 95: goto tr20; } if ( (*p) < 65 ) { if ( 48 <= (*p) && (*p) <= 57 ) goto tr21; } else if ( (*p) > 90 ) { if ( 97 <= (*p) && (*p) <= 122 ) goto tr22; } else goto tr22; goto st0; tr8: #line 272 "libbuzzy/distro/rpm.c.rl" { kind = BZ_VERSION_RELEASE; start = p; clog_trace(" Create new release version part"); } goto st9; tr5: #line 290 "libbuzzy/distro/rpm.c.rl" { size_t size = p - start; clog_trace(" String value: %.*s", (int) size, start); ei_check(bz_version_add_part(version, kind, start, size)); } #line 272 "libbuzzy/distro/rpm.c.rl" { kind = BZ_VERSION_RELEASE; start = p; clog_trace(" Create new release version part"); } goto st9; st9: if ( ++p == pe ) goto _test_eof9; case 9: #line 940 "libbuzzy/distro/rpm.c" switch( (*p) ) { case 43: goto tr2; case 45: goto tr3; case 46: goto tr2; case 95: goto tr2; } if ( (*p) < 65 ) { if ( 48 <= (*p) && (*p) <= 57 ) goto tr18; } else if ( (*p) > 90 ) { if ( 97 <= (*p) && (*p) <= 122 ) goto st9; } else goto st9; goto st0; } _test_eof2: cs = 2; goto _test_eof; _test_eof3: cs = 3; goto _test_eof; _test_eof4: cs = 4; goto _test_eof; _test_eof5: cs = 5; goto _test_eof; _test_eof6: cs = 6; goto _test_eof; _test_eof7: cs = 7; goto _test_eof; _test_eof10: cs = 10; goto _test_eof; _test_eof8: cs = 8; goto _test_eof; _test_eof11: cs = 11; goto _test_eof; _test_eof12: cs = 12; goto _test_eof; _test_eof13: cs = 13; goto _test_eof; _test_eof9: cs = 9; goto _test_eof; _test_eof: {} if ( p == eof ) { switch ( cs ) { case 10: case 11: case 12: #line 290 "libbuzzy/distro/rpm.c.rl" { size_t size = p - start; clog_trace(" String value: %.*s", (int) size, start); ei_check(bz_version_add_part(version, kind, start, size)); } break; #line 984 "libbuzzy/distro/rpm.c" } } _out: {} } #line 337 "libbuzzy/distro/rpm.c.rl" /* A hack to suppress some unused variable warnings */ (void) rpm_version_any_en_main; if (CORK_UNLIKELY(cs < #line 998 "libbuzzy/distro/rpm.c" 10 #line 342 "libbuzzy/distro/rpm.c.rl" )) { goto error; } bz_version_finalize(version); cork_buffer_done(&buf); return version; error: cork_buffer_done(&buf); bz_version_free(version); return NULL; }
struct bz_version * bz_yum_native_version_available(const char *native_package_name) { int cs; char *p; char *pe; char *v_start = NULL; char *v_end = NULL; char *r_start = NULL; char *r_end = NULL; bool successful; struct cork_buffer out = CORK_BUFFER_INIT(); struct cork_buffer buf; struct bz_version *result; rpi_check(bz_subprocess_get_output (&out, NULL, &successful, "sudo", "yum", "info", "-C", native_package_name, NULL)); if (!successful) { cork_buffer_done(&out); return NULL; } p = out.buf; pe = out.buf + out.size; #line 1060 "libbuzzy/distro/rpm.c" static const int rpm_version_available_start = 49; static const int rpm_version_available_en_main = 49; #line 1066 "libbuzzy/distro/rpm.c" { cs = rpm_version_available_start; } #line 1071 "libbuzzy/distro/rpm.c" { if ( p == pe ) goto _test_eof; switch ( cs ) { tr13: #line 408 "libbuzzy/distro/rpm.c.rl" { r_end = p; } goto st49; tr35: #line 405 "libbuzzy/distro/rpm.c.rl" { v_end = p; } goto st49; st49: if ( ++p == pe ) goto _test_eof49; case 49: #line 1089 "libbuzzy/distro/rpm.c" switch( (*p) ) { case 10: goto st49; case 82: goto st1; case 86: goto st43; } goto st0; st0: if ( ++p == pe ) goto _test_eof0; case 0: if ( (*p) == 10 ) goto st49; goto st0; st1: if ( ++p == pe ) goto _test_eof1; case 1: switch( (*p) ) { case 10: goto st49; case 101: goto st2; } goto st0; st2: if ( ++p == pe ) goto _test_eof2; case 2: switch( (*p) ) { case 10: goto st49; case 108: goto st3; } goto st0; st3: if ( ++p == pe ) goto _test_eof3; case 3: switch( (*p) ) { case 10: goto st49; case 101: goto st4; } goto st0; st4: if ( ++p == pe ) goto _test_eof4; case 4: switch( (*p) ) { case 10: goto st49; case 97: goto st5; } goto st0; st5: if ( ++p == pe ) goto _test_eof5; case 5: switch( (*p) ) { case 10: goto st49; case 115: goto st6; } goto st0; st6: if ( ++p == pe ) goto _test_eof6; case 6: switch( (*p) ) { case 10: goto st49; case 101: goto st7; } goto st0; st7: if ( ++p == pe ) goto _test_eof7; case 7: switch( (*p) ) { case 10: goto st50; case 32: goto st7; case 58: goto st8; } if ( 9 <= (*p) && (*p) <= 13 ) goto st7; goto st0; tr21: #line 408 "libbuzzy/distro/rpm.c.rl" { r_end = p; } goto st50; tr43: #line 405 "libbuzzy/distro/rpm.c.rl" { v_end = p; } goto st50; st50: if ( ++p == pe ) goto _test_eof50; case 50: #line 1181 "libbuzzy/distro/rpm.c" switch( (*p) ) { case 10: goto st50; case 32: goto st7; case 58: goto st8; case 82: goto st1; case 86: goto st43; } if ( 9 <= (*p) && (*p) <= 13 ) goto st7; goto st0; st8: if ( ++p == pe ) goto _test_eof8; case 8: switch( (*p) ) { case 10: goto st51; case 32: goto st9; } if ( 9 <= (*p) && (*p) <= 13 ) goto st9; goto st0; st9: if ( ++p == pe ) goto _test_eof9; case 9: switch( (*p) ) { case 10: goto st51; case 32: goto st9; case 46: goto tr12; case 95: goto tr12; } if ( (*p) < 48 ) { if ( 9 <= (*p) && (*p) <= 13 ) goto st9; } else if ( (*p) > 57 ) { if ( (*p) > 90 ) { if ( 97 <= (*p) && (*p) <= 122 ) goto tr12; } else if ( (*p) >= 65 ) goto tr12; } else goto tr12; goto st0; st51: if ( ++p == pe ) goto _test_eof51; case 51: switch( (*p) ) { case 10: goto st51; case 32: goto st9; case 46: goto tr12; case 82: goto tr58; case 86: goto tr59; case 95: goto tr12; } if ( (*p) < 48 ) { if ( 9 <= (*p) && (*p) <= 13 ) goto st9; } else if ( (*p) > 57 ) { if ( (*p) > 90 ) { if ( 97 <= (*p) && (*p) <= 122 ) goto tr12; } else if ( (*p) >= 65 ) goto tr12; } else goto tr12; goto st0; tr12: #line 408 "libbuzzy/distro/rpm.c.rl" { r_start = p; } goto st10; st10: if ( ++p == pe ) goto _test_eof10; case 10: #line 1257 "libbuzzy/distro/rpm.c" switch( (*p) ) { case 10: goto tr13; case 46: goto st10; case 95: goto st10; } if ( (*p) < 65 ) { if ( 48 <= (*p) && (*p) <= 57 ) goto st10; } else if ( (*p) > 90 ) { if ( 97 <= (*p) && (*p) <= 122 ) goto st10; } else goto st10; goto st0; tr58: #line 408 "libbuzzy/distro/rpm.c.rl" { r_start = p; } goto st11; st11: if ( ++p == pe ) goto _test_eof11; case 11: #line 1280 "libbuzzy/distro/rpm.c" switch( (*p) ) { case 10: goto tr13; case 46: goto st10; case 95: goto st10; case 101: goto st12; } if ( (*p) < 65 ) { if ( 48 <= (*p) && (*p) <= 57 ) goto st10; } else if ( (*p) > 90 ) { if ( 97 <= (*p) && (*p) <= 122 ) goto st10; } else goto st10; goto st0; st12: if ( ++p == pe ) goto _test_eof12; case 12: switch( (*p) ) { case 10: goto tr13; case 46: goto st10; case 95: goto st10; case 108: goto st13; } if ( (*p) < 65 ) { if ( 48 <= (*p) && (*p) <= 57 ) goto st10; } else if ( (*p) > 90 ) { if ( 97 <= (*p) && (*p) <= 122 ) goto st10; } else goto st10; goto st0; st13: if ( ++p == pe ) goto _test_eof13; case 13: switch( (*p) ) { case 10: goto tr13; case 46: goto st10; case 95: goto st10; case 101: goto st14; } if ( (*p) < 65 ) { if ( 48 <= (*p) && (*p) <= 57 ) goto st10; } else if ( (*p) > 90 ) { if ( 97 <= (*p) && (*p) <= 122 ) goto st10; } else goto st10; goto st0; st14: if ( ++p == pe ) goto _test_eof14; case 14: switch( (*p) ) { case 10: goto tr13; case 46: goto st10; case 95: goto st10; case 97: goto st15; } if ( (*p) < 65 ) { if ( 48 <= (*p) && (*p) <= 57 ) goto st10; } else if ( (*p) > 90 ) { if ( 98 <= (*p) && (*p) <= 122 ) goto st10; } else goto st10; goto st0; st15: if ( ++p == pe ) goto _test_eof15; case 15: switch( (*p) ) { case 10: goto tr13; case 46: goto st10; case 95: goto st10; case 115: goto st16; } if ( (*p) < 65 ) { if ( 48 <= (*p) && (*p) <= 57 ) goto st10; } else if ( (*p) > 90 ) { if ( 97 <= (*p) && (*p) <= 122 ) goto st10; } else goto st10; goto st0; st16: if ( ++p == pe ) goto _test_eof16; case 16: switch( (*p) ) { case 10: goto tr13; case 46: goto st10; case 95: goto st10; case 101: goto st17; } if ( (*p) < 65 ) { if ( 48 <= (*p) && (*p) <= 57 ) goto st10; } else if ( (*p) > 90 ) { if ( 97 <= (*p) && (*p) <= 122 ) goto st10; } else goto st10; goto st0; st17: if ( ++p == pe ) goto _test_eof17; case 17: switch( (*p) ) { case 10: goto tr21; case 32: goto st7; case 46: goto st10; case 58: goto st8; case 95: goto st10; } if ( (*p) < 48 ) { if ( 9 <= (*p) && (*p) <= 13 ) goto st7; } else if ( (*p) > 57 ) { if ( (*p) > 90 ) { if ( 97 <= (*p) && (*p) <= 122 ) goto st10; } else if ( (*p) >= 65 ) goto st10; } else goto st10; goto st0; tr59: #line 408 "libbuzzy/distro/rpm.c.rl" { r_start = p; } goto st18; st18: if ( ++p == pe ) goto _test_eof18; case 18: #line 1422 "libbuzzy/distro/rpm.c" switch( (*p) ) { case 10: goto tr13; case 46: goto st10; case 95: goto st10; case 101: goto st19; } if ( (*p) < 65 ) { if ( 48 <= (*p) && (*p) <= 57 ) goto st10; } else if ( (*p) > 90 ) { if ( 97 <= (*p) && (*p) <= 122 ) goto st10; } else goto st10; goto st0; st19: if ( ++p == pe ) goto _test_eof19; case 19: switch( (*p) ) { case 10: goto tr13; case 46: goto st10; case 95: goto st10; case 114: goto st20; } if ( (*p) < 65 ) { if ( 48 <= (*p) && (*p) <= 57 ) goto st10; } else if ( (*p) > 90 ) { if ( 97 <= (*p) && (*p) <= 122 ) goto st10; } else goto st10; goto st0; st20: if ( ++p == pe ) goto _test_eof20; case 20: switch( (*p) ) { case 10: goto tr13; case 46: goto st10; case 95: goto st10; case 115: goto st21; } if ( (*p) < 65 ) { if ( 48 <= (*p) && (*p) <= 57 ) goto st10; } else if ( (*p) > 90 ) { if ( 97 <= (*p) && (*p) <= 122 ) goto st10; } else goto st10; goto st0; st21: if ( ++p == pe ) goto _test_eof21; case 21: switch( (*p) ) { case 10: goto tr13; case 46: goto st10; case 95: goto st10; case 105: goto st22; } if ( (*p) < 65 ) { if ( 48 <= (*p) && (*p) <= 57 ) goto st10; } else if ( (*p) > 90 ) { if ( 97 <= (*p) && (*p) <= 122 ) goto st10; } else goto st10; goto st0; st22: if ( ++p == pe ) goto _test_eof22; case 22: switch( (*p) ) { case 10: goto tr13; case 46: goto st10; case 95: goto st10; case 111: goto st23; } if ( (*p) < 65 ) { if ( 48 <= (*p) && (*p) <= 57 ) goto st10; } else if ( (*p) > 90 ) { if ( 97 <= (*p) && (*p) <= 122 ) goto st10; } else goto st10; goto st0; st23: if ( ++p == pe ) goto _test_eof23; case 23: switch( (*p) ) { case 10: goto tr13; case 46: goto st10; case 95: goto st10; case 110: goto st24; } if ( (*p) < 65 ) { if ( 48 <= (*p) && (*p) <= 57 ) goto st10; } else if ( (*p) > 90 ) { if ( 97 <= (*p) && (*p) <= 122 ) goto st10; } else goto st10; goto st0; st24: if ( ++p == pe ) goto _test_eof24; case 24: switch( (*p) ) { case 10: goto tr29; case 32: goto st25; case 46: goto st10; case 58: goto st26; case 95: goto st10; } if ( (*p) < 48 ) { if ( 9 <= (*p) && (*p) <= 13 ) goto st25; } else if ( (*p) > 57 ) { if ( (*p) > 90 ) { if ( 97 <= (*p) && (*p) <= 122 ) goto st10; } else if ( (*p) >= 65 ) goto st10; } else goto st10; goto st0; st25: if ( ++p == pe ) goto _test_eof25; case 25: switch( (*p) ) { case 10: goto st52; case 32: goto st25; case 58: goto st26; } if ( 9 <= (*p) && (*p) <= 13 ) goto st25; goto st0; tr29: #line 408 "libbuzzy/distro/rpm.c.rl" { r_end = p; } goto st52; tr50: #line 405 "libbuzzy/distro/rpm.c.rl" { v_end = p; } goto st52; st52: if ( ++p == pe ) goto _test_eof52; case 52: #line 1580 "libbuzzy/distro/rpm.c" switch( (*p) ) { case 10: goto st52; case 32: goto st25; case 58: goto st26; case 82: goto st1; case 86: goto st43; } if ( 9 <= (*p) && (*p) <= 13 ) goto st25; goto st0; st26: if ( ++p == pe ) goto _test_eof26; case 26: switch( (*p) ) { case 10: goto st53; case 32: goto st27; } if ( 9 <= (*p) && (*p) <= 13 ) goto st27; goto st0; st27: if ( ++p == pe ) goto _test_eof27; case 27: switch( (*p) ) { case 10: goto st53; case 32: goto st27; case 46: goto tr34; case 95: goto tr34; } if ( (*p) < 48 ) { if ( 9 <= (*p) && (*p) <= 13 ) goto st27; } else if ( (*p) > 57 ) { if ( (*p) > 90 ) { if ( 97 <= (*p) && (*p) <= 122 ) goto tr34; } else if ( (*p) >= 65 ) goto tr34; } else goto tr34; goto st0; st53: if ( ++p == pe ) goto _test_eof53; case 53: switch( (*p) ) { case 10: goto st53; case 32: goto st27; case 46: goto tr34; case 82: goto tr60; case 86: goto tr61; case 95: goto tr34; } if ( (*p) < 48 ) { if ( 9 <= (*p) && (*p) <= 13 ) goto st27; } else if ( (*p) > 57 ) { if ( (*p) > 90 ) { if ( 97 <= (*p) && (*p) <= 122 ) goto tr34; } else if ( (*p) >= 65 ) goto tr34; } else goto tr34; goto st0; tr34: #line 405 "libbuzzy/distro/rpm.c.rl" { v_start = p; } goto st28; st28: if ( ++p == pe ) goto _test_eof28; case 28: #line 1656 "libbuzzy/distro/rpm.c" switch( (*p) ) { case 10: goto tr35; case 46: goto st28; case 95: goto st28; } if ( (*p) < 65 ) { if ( 48 <= (*p) && (*p) <= 57 ) goto st28; } else if ( (*p) > 90 ) { if ( 97 <= (*p) && (*p) <= 122 ) goto st28; } else goto st28; goto st0; tr60: #line 405 "libbuzzy/distro/rpm.c.rl" { v_start = p; } goto st29; st29: if ( ++p == pe ) goto _test_eof29; case 29: #line 1679 "libbuzzy/distro/rpm.c" switch( (*p) ) { case 10: goto tr35; case 46: goto st28; case 95: goto st28; case 101: goto st30; } if ( (*p) < 65 ) { if ( 48 <= (*p) && (*p) <= 57 ) goto st28; } else if ( (*p) > 90 ) { if ( 97 <= (*p) && (*p) <= 122 ) goto st28; } else goto st28; goto st0; st30: if ( ++p == pe ) goto _test_eof30; case 30: switch( (*p) ) { case 10: goto tr35; case 46: goto st28; case 95: goto st28; case 108: goto st31; } if ( (*p) < 65 ) { if ( 48 <= (*p) && (*p) <= 57 ) goto st28; } else if ( (*p) > 90 ) { if ( 97 <= (*p) && (*p) <= 122 ) goto st28; } else goto st28; goto st0; st31: if ( ++p == pe ) goto _test_eof31; case 31: switch( (*p) ) { case 10: goto tr35; case 46: goto st28; case 95: goto st28; case 101: goto st32; } if ( (*p) < 65 ) { if ( 48 <= (*p) && (*p) <= 57 ) goto st28; } else if ( (*p) > 90 ) { if ( 97 <= (*p) && (*p) <= 122 ) goto st28; } else goto st28; goto st0; st32: if ( ++p == pe ) goto _test_eof32; case 32: switch( (*p) ) { case 10: goto tr35; case 46: goto st28; case 95: goto st28; case 97: goto st33; } if ( (*p) < 65 ) { if ( 48 <= (*p) && (*p) <= 57 ) goto st28; } else if ( (*p) > 90 ) { if ( 98 <= (*p) && (*p) <= 122 ) goto st28; } else goto st28; goto st0; st33: if ( ++p == pe ) goto _test_eof33; case 33: switch( (*p) ) { case 10: goto tr35; case 46: goto st28; case 95: goto st28; case 115: goto st34; } if ( (*p) < 65 ) { if ( 48 <= (*p) && (*p) <= 57 ) goto st28; } else if ( (*p) > 90 ) { if ( 97 <= (*p) && (*p) <= 122 ) goto st28; } else goto st28; goto st0; st34: if ( ++p == pe ) goto _test_eof34; case 34: switch( (*p) ) { case 10: goto tr35; case 46: goto st28; case 95: goto st28; case 101: goto st35; } if ( (*p) < 65 ) { if ( 48 <= (*p) && (*p) <= 57 ) goto st28; } else if ( (*p) > 90 ) { if ( 97 <= (*p) && (*p) <= 122 ) goto st28; } else goto st28; goto st0; st35: if ( ++p == pe ) goto _test_eof35; case 35: switch( (*p) ) { case 10: goto tr43; case 32: goto st7; case 46: goto st28; case 58: goto st8; case 95: goto st28; } if ( (*p) < 48 ) { if ( 9 <= (*p) && (*p) <= 13 ) goto st7; } else if ( (*p) > 57 ) { if ( (*p) > 90 ) { if ( 97 <= (*p) && (*p) <= 122 ) goto st28; } else if ( (*p) >= 65 ) goto st28; } else goto st28; goto st0; tr61: #line 405 "libbuzzy/distro/rpm.c.rl" { v_start = p; } goto st36; st36: if ( ++p == pe ) goto _test_eof36; case 36: #line 1821 "libbuzzy/distro/rpm.c" switch( (*p) ) { case 10: goto tr35; case 46: goto st28; case 95: goto st28; case 101: goto st37; } if ( (*p) < 65 ) { if ( 48 <= (*p) && (*p) <= 57 ) goto st28; } else if ( (*p) > 90 ) { if ( 97 <= (*p) && (*p) <= 122 ) goto st28; } else goto st28; goto st0; st37: if ( ++p == pe ) goto _test_eof37; case 37: switch( (*p) ) { case 10: goto tr35; case 46: goto st28; case 95: goto st28; case 114: goto st38; } if ( (*p) < 65 ) { if ( 48 <= (*p) && (*p) <= 57 ) goto st28; } else if ( (*p) > 90 ) { if ( 97 <= (*p) && (*p) <= 122 ) goto st28; } else goto st28; goto st0; st38: if ( ++p == pe ) goto _test_eof38; case 38: switch( (*p) ) { case 10: goto tr35; case 46: goto st28; case 95: goto st28; case 115: goto st39; } if ( (*p) < 65 ) { if ( 48 <= (*p) && (*p) <= 57 ) goto st28; } else if ( (*p) > 90 ) { if ( 97 <= (*p) && (*p) <= 122 ) goto st28; } else goto st28; goto st0; st39: if ( ++p == pe ) goto _test_eof39; case 39: switch( (*p) ) { case 10: goto tr35; case 46: goto st28; case 95: goto st28; case 105: goto st40; } if ( (*p) < 65 ) { if ( 48 <= (*p) && (*p) <= 57 ) goto st28; } else if ( (*p) > 90 ) { if ( 97 <= (*p) && (*p) <= 122 ) goto st28; } else goto st28; goto st0; st40: if ( ++p == pe ) goto _test_eof40; case 40: switch( (*p) ) { case 10: goto tr35; case 46: goto st28; case 95: goto st28; case 111: goto st41; } if ( (*p) < 65 ) { if ( 48 <= (*p) && (*p) <= 57 ) goto st28; } else if ( (*p) > 90 ) { if ( 97 <= (*p) && (*p) <= 122 ) goto st28; } else goto st28; goto st0; st41: if ( ++p == pe ) goto _test_eof41; case 41: switch( (*p) ) { case 10: goto tr35; case 46: goto st28; case 95: goto st28; case 110: goto st42; } if ( (*p) < 65 ) { if ( 48 <= (*p) && (*p) <= 57 ) goto st28; } else if ( (*p) > 90 ) { if ( 97 <= (*p) && (*p) <= 122 ) goto st28; } else goto st28; goto st0; st42: if ( ++p == pe ) goto _test_eof42; case 42: switch( (*p) ) { case 10: goto tr50; case 32: goto st25; case 46: goto st28; case 58: goto st26; case 95: goto st28; } if ( (*p) < 48 ) { if ( 9 <= (*p) && (*p) <= 13 ) goto st25; } else if ( (*p) > 57 ) { if ( (*p) > 90 ) { if ( 97 <= (*p) && (*p) <= 122 ) goto st28; } else if ( (*p) >= 65 ) goto st28; } else goto st28; goto st0; st43: if ( ++p == pe ) goto _test_eof43; case 43: switch( (*p) ) { case 10: goto st49; case 101: goto st44; } goto st0; st44: if ( ++p == pe ) goto _test_eof44; case 44: switch( (*p) ) { case 10: goto st49; case 114: goto st45; } goto st0; st45: if ( ++p == pe ) goto _test_eof45; case 45: switch( (*p) ) { case 10: goto st49; case 115: goto st46; } goto st0; st46: if ( ++p == pe ) goto _test_eof46; case 46: switch( (*p) ) { case 10: goto st49; case 105: goto st47; } goto st0; st47: if ( ++p == pe ) goto _test_eof47; case 47: switch( (*p) ) { case 10: goto st49; case 111: goto st48; } goto st0; st48: if ( ++p == pe ) goto _test_eof48; case 48: switch( (*p) ) { case 10: goto st49; case 110: goto st25; } goto st0; } _test_eof49: cs = 49; goto _test_eof; _test_eof0: cs = 0; goto _test_eof; _test_eof1: cs = 1; goto _test_eof; _test_eof2: cs = 2; goto _test_eof; _test_eof3: cs = 3; goto _test_eof; _test_eof4: cs = 4; goto _test_eof; _test_eof5: cs = 5; goto _test_eof; _test_eof6: cs = 6; goto _test_eof; _test_eof7: cs = 7; goto _test_eof; _test_eof50: cs = 50; goto _test_eof; _test_eof8: cs = 8; goto _test_eof; _test_eof9: cs = 9; goto _test_eof; _test_eof51: cs = 51; goto _test_eof; _test_eof10: cs = 10; goto _test_eof; _test_eof11: cs = 11; goto _test_eof; _test_eof12: cs = 12; goto _test_eof; _test_eof13: cs = 13; goto _test_eof; _test_eof14: cs = 14; goto _test_eof; _test_eof15: cs = 15; goto _test_eof; _test_eof16: cs = 16; goto _test_eof; _test_eof17: cs = 17; goto _test_eof; _test_eof18: cs = 18; goto _test_eof; _test_eof19: cs = 19; goto _test_eof; _test_eof20: cs = 20; goto _test_eof; _test_eof21: cs = 21; goto _test_eof; _test_eof22: cs = 22; goto _test_eof; _test_eof23: cs = 23; goto _test_eof; _test_eof24: cs = 24; goto _test_eof; _test_eof25: cs = 25; goto _test_eof; _test_eof52: cs = 52; goto _test_eof; _test_eof26: cs = 26; goto _test_eof; _test_eof27: cs = 27; goto _test_eof; _test_eof53: cs = 53; goto _test_eof; _test_eof28: cs = 28; goto _test_eof; _test_eof29: cs = 29; goto _test_eof; _test_eof30: cs = 30; goto _test_eof; _test_eof31: cs = 31; goto _test_eof; _test_eof32: cs = 32; goto _test_eof; _test_eof33: cs = 33; goto _test_eof; _test_eof34: cs = 34; goto _test_eof; _test_eof35: cs = 35; goto _test_eof; _test_eof36: cs = 36; goto _test_eof; _test_eof37: cs = 37; goto _test_eof; _test_eof38: cs = 38; goto _test_eof; _test_eof39: cs = 39; goto _test_eof; _test_eof40: cs = 40; goto _test_eof; _test_eof41: cs = 41; goto _test_eof; _test_eof42: cs = 42; goto _test_eof; _test_eof43: cs = 43; goto _test_eof; _test_eof44: cs = 44; goto _test_eof; _test_eof45: cs = 45; goto _test_eof; _test_eof46: cs = 46; goto _test_eof; _test_eof47: cs = 47; goto _test_eof; _test_eof48: cs = 48; goto _test_eof; _test_eof: {} } #line 420 "libbuzzy/distro/rpm.c.rl" /* A hack to suppress some unused variable warnings */ (void) rpm_version_available_en_main; if (CORK_UNLIKELY(cs < #line 2075 "libbuzzy/distro/rpm.c" 49 #line 425 "libbuzzy/distro/rpm.c.rl" )) { bz_invalid_version("Unexpected output from yum"); cork_buffer_done(&out); return NULL; } if (v_start == NULL || v_end == NULL || r_start == NULL || r_end == NULL) { bz_invalid_version("Unexpected output from yum"); cork_buffer_done(&out); return NULL; } cork_buffer_init(&buf); cork_buffer_append(&buf, v_start, v_end - v_start); cork_buffer_append(&buf, "-", 1); cork_buffer_append(&buf, r_start, r_end - r_start); result = bz_version_from_rpm(buf.buf); cork_buffer_done(&out); cork_buffer_done(&buf); return result; }
static int bz_autotools__build(void *user_data) { struct bz_env *env = user_data; struct bz_value *ctx = bz_env_as_value(env); const char *package_name; struct cork_path *build_dir; struct cork_path *source_dir; struct cork_path *configure; struct bz_value *configure_args; const char *pkgconfig_path; bool exists; bool verbose; struct cork_exec *exec; struct cork_env *exec_env; struct cork_buffer buf = CORK_BUFFER_INIT(); rii_check(bz_install_dependency_string("autoconf", ctx)); rii_check(bz_install_dependency_string("automake", ctx)); rii_check(bz_build_message(env, "autotools")); rip_check(package_name = bz_env_get_string(env, "name", true)); rip_check(build_dir = bz_env_get_path(env, "build_dir", true)); rip_check(source_dir = bz_env_get_path(env, "source_dir", true)); rip_check(configure = bz_env_get_path(env, "autotools.configure.configure", true)); rie_check(pkgconfig_path = bz_env_get_string(env, "pkgconfig.path", false)); rie_check(verbose = bz_env_get_bool(env, "verbose", true)); /* Create the build path */ rii_check(bz_create_directory(cork_path_get(build_dir), 0750)); clog_info("(%s) Configure using autotools", package_name); /* $ autoreconf -i */ rii_check(bz_file_exists(cork_path_get(configure), &exists)); if (!exists) { exec = cork_exec_new("autoreconf"); cork_exec_add_param(exec, "autoreconf"); cork_exec_add_param(exec, "-i"); cork_exec_set_cwd(exec, cork_path_get(source_dir)); ei_check(bz_subprocess_run_exec(verbose, NULL, exec)); } #define add_dir(buzzy_name, param_name) \ do { \ struct cork_path *value; \ ep_check(value = bz_env_get_path(env, buzzy_name, true)); \ cork_buffer_printf(&buf, "--" param_name "=%s", cork_path_get(value)); \ cork_exec_add_param(exec, buf.buf); \ } while (0) /* $ ./configure ... */ exec = cork_exec_new(cork_path_get(configure)); exec_env = cork_env_clone_current(); cork_exec_set_env(exec, exec_env); cork_exec_add_param(exec, cork_path_get(configure)); add_dir("prefix", "prefix"); add_dir("exec_prefix", "exec-prefix"); add_dir("bin_dir", "bindir"); add_dir("sbin_dir", "sbindir"); add_dir("lib_dir", "libdir"); add_dir("libexec_dir", "libexecdir"); add_dir("share_dir", "datadir"); add_dir("man_dir", "mandir"); /* Add custom configure arguments, if given. */ configure_args = bz_env_get_value(env, "autotools.configure.args"); if (configure_args != NULL) { struct bz_configure_add_arg state = { exec, env }; switch (bz_value_kind(configure_args)) { case BZ_VALUE_SCALAR: ei_check(bz_configure_add_arg(&state, configure_args)); break; case BZ_VALUE_ARRAY: ei_check(bz_array_value_map (configure_args, &state, bz_configure_add_arg)); break; case BZ_VALUE_MAP: bz_bad_config("autotools.configure.args cannot be a map"); goto error; default: cork_unreachable(); } } cork_exec_set_cwd(exec, cork_path_get(build_dir)); if (pkgconfig_path != NULL) { cork_env_add(exec_env, "PKG_CONFIG_PATH", pkgconfig_path); } ei_check(bz_subprocess_run_exec(verbose, NULL, exec)); /* $ make */ clog_info("(%s) Build using autotools", package_name); exec = cork_exec_new("make"); cork_exec_add_param(exec, "make"); cork_exec_set_cwd(exec, cork_path_get(build_dir)); ei_check(bz_subprocess_run_exec(verbose, NULL, exec)); cork_buffer_done(&buf); return 0; error: cork_buffer_done(&buf); return -1; }
void cork_buffer_free(struct cork_buffer *buffer) { cork_buffer_done(buffer); cork_delete(struct cork_buffer, buffer); }
static void cork_command_cleanup(void) { cork_buffer_done(&breadcrumbs_buf); }
static int bz_pacman__package(void *user_data) { struct bz_env *env = user_data; struct bz_value *ctx = bz_env_as_value(env); struct cork_path *staging_dir; struct cork_path *binary_package_dir; struct cork_path *package_build_dir; struct cork_path *pkgbuild; struct cork_path *package_file; const char *package_name; const char *version; const char *pkgrel; const char *pkgext; const char *architecture; const char *license; bool verbose; struct cork_env *exec_env; struct cork_exec *exec; struct cork_buffer buf = CORK_BUFFER_INIT(); bool staging_exists; rii_check(bz_install_dependency_string("pacman", ctx)); rii_check(bz_package_message(env, "pacman")); rip_check(package_name = bz_env_get_string(env, "name", true)); clog_info("(%s) Package using pacman", package_name); rip_check(staging_dir = bz_env_get_path(env, "staging_dir", true)); rip_check(binary_package_dir = bz_env_get_path(env, "binary_package_dir", true)); rip_check(package_build_dir = bz_env_get_path(env, "package_build_dir", true)); rip_check(pkgbuild = bz_env_get_path(env, "pacman.pkgbuild", true)); rip_check(package_file = bz_env_get_path(env, "pacman.package_file", true)); rip_check(version = bz_env_get_string(env, "pacman.version", true)); rip_check(pkgrel = bz_env_get_string(env, "pacman.pkgrel", true)); rip_check(pkgext = bz_env_get_string(env, "pacman.pkgext", true)); rip_check(architecture = bz_env_get_string(env, "pacman.arch", true)); rip_check(license = bz_env_get_string(env, "license", true)); rie_check(verbose = bz_env_get_bool(env, "verbose", true)); rii_check(bz_file_exists(cork_path_get(staging_dir), &staging_exists)); if (CORK_UNLIKELY(!staging_exists)) { cork_error_set_printf (ENOENT, "Staging directory %s does not exist", cork_path_get(staging_dir)); return -1; } /* NOTE: pacman runs ldconfig automatically, so unlike the other packagers, * we do NOT need to add an ldconfig call to the post-install and * post-remove scripts. */ /* Create the temporary directory and the packaging destination */ rii_check(bz_create_directory(cork_path_get(package_build_dir), 0750)); rii_check(bz_create_directory(cork_path_get(binary_package_dir), 0750)); /* Create a PKGBUILD file for this package */ cork_buffer_append_printf(&buf, "pkgname='%s'\n", package_name); cork_buffer_append_printf(&buf, "pkgver='%s'\n", version); cork_buffer_append_printf(&buf, "pkgrel='%s'\n", pkgrel); cork_buffer_append_printf(&buf, "arch=('%s')\n", architecture); cork_buffer_append_printf(&buf, "license=('%s')\n", license); rii_check(bz_pacman_fill_deps(env, &buf, "depends", "dependencies")); cork_buffer_append_printf(&buf, "package () {\n" " rm -rf \"${pkgdir}\"\n" " cp -a '%s' \"${pkgdir}\"\n" "}\n", cork_path_get(staging_dir) ); /* Add pre- and post-install scripts, if necessary. */ rii_check(bz_pacman_add_install_scripts(env, &buf)); ei_check(bz_create_file(cork_path_get(pkgbuild), &buf, 0640)); cork_buffer_done(&buf); exec_env = cork_env_clone_current(); cork_env_add(exec_env, "PKGDEST", cork_path_get(binary_package_dir)); cork_env_add(exec_env, "PKGEXT", pkgext); exec = cork_exec_new_with_params("makepkg", "-sf", NULL); cork_exec_set_cwd(exec, cork_path_get(package_build_dir)); cork_exec_set_env(exec, exec_env); clog_info("(%s) Create %s using pacman", package_name, cork_path_get(package_file)); return bz_subprocess_run_exec(verbose, NULL, exec); error: cork_buffer_done(&buf); return -1; }