Description: ship non-embedded GSettings schema
 Embedding the GSettings schema complicates generating during build.
 This patch replicates the embedded schema as standalone file
 (partly reverting git commit ffdacaa).
 .
 Additionally, this patch sprinkles some indentation changes
 to the embedded schema
 causing failure to apply this patch if upstream changes the schema
 to ensure we notice upstream changes
 which most likely we should incorporate into this patch as well.
Author: Jonas Smedegaard <dr@jones.dk>
Last-Update: 2020-06-20
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/browser.py
+++ b/browser.py
@@ -110,15 +110,13 @@
                 [
                     '<?xml version="1.0" encoding="UTF-8"?>',
                     '<schemalist>',
-                    '<schema id="org.laptop.WebActivity" '
-                    'path="/org/laptop/WebActivity/">',
-                    '<key name="home-page" type="s">',
-                    "<default>''</default>",
-                    '<summary>Home page URL</summary>',
-                    '<description>URL to show as default or when home button '
-                    'is pressed.</description>',
-                    '</key>',
-                    '</schema>',
+                    '    <schema id="org.laptop.WebActivity" path="/org/laptop/WebActivity/">',
+                    '        <key name="home-page" type="s">',
+                    "            <default>''</default>",
+                    '            <summary>Home page URL</summary>',
+                    '            <description>URL to show as default or when home button is pressed.</description>',
+                    '        </key>',
+                    '    </schema>',
                     '</schemalist>',
                 ]
             open(os.path.join(path, src), 'w').writelines(lines)
--- /dev/null
+++ b/org.laptop.WebActivity.gschema.xml
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<schemalist>
+    <schema id="org.laptop.WebActivity" path="/org/laptop/WebActivity/">
+        <key name="home-page" type="s">
+            <default>''</default>
+            <summary>Home page URL</summary>
+            <description>URL to show as default or when home buttin is pressed.</description>
+        </key>
+    </schema>
+</schemalist>
