aboutsummaryrefslogtreecommitdiff
path: root/doc/todo
diff options
context:
space:
mode:
Diffstat (limited to 'doc/todo')
-rw-r--r--doc/todo/add_ancient_armel_build.mdwn10
-rw-r--r--doc/todo/add_magicmime_support_to_OSX_dmg.mdwn2
-rw-r--r--doc/todo/add_sftp_backend.mdwn3
3 files changed, 15 insertions, 0 deletions
diff --git a/doc/todo/add_ancient_armel_build.mdwn b/doc/todo/add_ancient_armel_build.mdwn
new file mode 100644
index 000000000..52ce1a73d
--- /dev/null
+++ b/doc/todo/add_ancient_armel_build.mdwn
@@ -0,0 +1,10 @@
+Add an armel build like the i386ancient build.
+
+The current arm autobuilder doesn't have enough free space for the chroot
+this would need. I need to upgrade its microsd card first, adding
+approximately 5 gb. (A 16 gb card would suffice.)
+
+Now, it would be possible to switch it to only do an ancient build,
+instead of the current modern build. The downside of that is the ancient
+build environment uses debian stable, so it has old versions of git,
+libraries etc, that go into the build. --[[Joey]]
diff --git a/doc/todo/add_magicmime_support_to_OSX_dmg.mdwn b/doc/todo/add_magicmime_support_to_OSX_dmg.mdwn
index 9e4e8f387..ef69869ba 100644
--- a/doc/todo/add_magicmime_support_to_OSX_dmg.mdwn
+++ b/doc/todo/add_magicmime_support_to_OSX_dmg.mdwn
@@ -1,3 +1,5 @@
The OSX .dmg is built without the MagicMime build flag. Turning it on will
take some work to ship a copy of the magic database inside the dmg.
+
+> [[done]]
--[[Joey]]
diff --git a/doc/todo/add_sftp_backend.mdwn b/doc/todo/add_sftp_backend.mdwn
new file mode 100644
index 000000000..386fec3c8
--- /dev/null
+++ b/doc/todo/add_sftp_backend.mdwn
@@ -0,0 +1,3 @@
+A sftp backend would be nice because gpg operations could be pipelined to the network transfer, not requiring the creation of a full file to disk with gpg before the network transmission, as it happens with rsync.
+
+There should be some libraries that can handle the sftp connections and transfers. I read that even curl has support for that.