Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
base: 194909a092d6
Choose a base ref
...
head repository: NixOS/nixpkgs
compare: 9af14d3e5a9f
Choose a head ref
  • 3 commits
  • 2 files changed
  • 1 contributor

Commits on Aug 12, 2019

  1. gnome3.evolution-data-server: Hardcode more GSettings schemas

    I used Coccinelle to create a base patch:
    
    spatch --sp-file hardcode-gsettings.cocci --dir src/ --in-place
    
    ```cocci
    @@
    expression GSETTINGS_SCHEMA;
    expression settings;
    @@
    - settings = g_settings_new (GSETTINGS_SCHEMA);
    + {
    + GSettingsSchemaSource *schema_source;
    + GSettingsSchema *schema;
    + schema_source = g_settings_schema_source_new_from_directory ("@ESD_GSETTINGS_PATH@",  g_settings_schema_source_get_default (), TRUE, NULL);
    + schema = g_settings_schema_source_lookup (schema_source, GSETTINGS_SCHEMA, FALSE);
    + settings = g_settings_new_full (schema, NULL, NULL);
    + g_settings_schema_source_unref (schema_source);
    + g_settings_schema_unref (schema);
    + }
    ```
    jtojnar committed Aug 12, 2019
    Copy the full SHA
    b18215b View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    80cb879 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #66531 from jtojnar/eds-hardcode-gschemas

    gnome3.evolution-data-server: Hardcode more GSettings schemas
    jtojnar committed Aug 12, 2019
    Copy the full SHA
    9af14d3 View commit details
    Browse the repository at this point in the history