summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2016-05-19flatpak-builtins-update.c: Fixed loading of arch optionHEADmasterTristan Van Berkom1-2/+4
Code was organized in such a way that the --arch option was being ignored. https://bugs.freedesktop.org/show_bug.cgi?id=95489
2016-05-19Merge pull request #164 from amigadave/masterAlexander Larsson1-1/+1
Fix ostree requirement in NEWS
2016-05-18Fix ostree requirement in NEWSDavid King1-1/+1
2016-05-18lib: Fix compilation warningsBastien Nocera1-2/+2
lib/flatpak-installation.c: In function ‘flatpak_installation_modify_remote’: lib/flatpak-installation.c:738:12: warning: return makes integer from pointer without a cast [-Wint-conversion] return NULL; ^~~~ lib/flatpak-installation.c: In function ‘flatpak_installation_remove_remote’: lib/flatpak-installation.c:773:12: warning: return makes integer from pointer without a cast [-Wint-conversion] return NULL; ^~~~
2016-05-18utils: remove_dangling_symlinks() - fix leakAlexander Larsson1-1/+1
We were not freeing the iterator.
2016-05-18Add --with-system-install-dir option0.6.0Alexander Larsson2-12/+20
2016-05-18tests: Fix distcheckAlexander Larsson1-1/+1
Don't clean out the test files on a regular clean.
2016-05-18Fix distcheck: clean up some more generated filesAlexander Larsson2-1/+3
2016-05-18tests: Fix distcheck breaking on gpg dir not writableAlexander Larsson1-1/+5
We make a copy of the gpg homedir so that gpg can write (e.g. a lock file) to the directory.
2016-05-18tests: EXTRA_DIST the test keyringsAlexander Larsson1-2/+2
2016-05-17Update version to 0.6.0Alexander Larsson2-3/+38
2016-05-17Update to latest bubblewrapAlexander Larsson1-0/+0
2016-05-17test-configure: use correct quotingSimon McVittie2-6/+6
CFLAGS, FOO, BAR may contain spaces. Signed-off-by: Simon McVittie <smcv@debian.org>
2016-05-17tests: skip running flatpak at build time if bwrap doesn't workSimon McVittie3-0/+15
Distribution autobuilders are often more locked-down than the environment in which the distribution binaries actually run. Signed-off-by: Simon McVittie <smcv@debian.org>
2016-05-17tests: package_version.txt is in the $builddirSimon McVittie2-7/+7
Signed-off-by: Simon McVittie <smcv@debian.org>
2016-05-17test-doc-portal: rely on service activation to start D-Bus serviceSimon McVittie1-5/+0
This is a more realistic integration test anyway. Signed-off-by: Simon McVittie <smcv@debian.org>
2016-05-17test-doc-portal: rely on G_TEST_BUILDDIR to find servicesSimon McVittie2-2/+4
Signed-off-by: Simon McVittie <smcv@debian.org>
2016-05-17testdb: rely on G_TEST_SRCDIR to find databasesSimon McVittie2-6/+8
Signed-off-by: Simon McVittie <smcv@debian.org>
2016-05-17Don't install non-executable test files executableSimon McVittie1-2/+2
Signed-off-by: Simon McVittie <smcv@debian.org>
2016-05-17Merge pull request #161 from smcv/spellingAlexander Larsson12-16/+16
Fix various spelling mistakes
2016-05-17tests: Add test-run-system.shAlexander Larsson6-27/+69
2016-05-17system-helper: Support running unprivileged on session busAlexander Larsson2-3/+15
This is only useful for testing.
2016-05-17test-run: Split null update to its own testAlexander Larsson1-2/+3
2016-05-17tests: Use gpg signatures during testAlexander Larsson5-10/+22
2016-05-17Fix various spelling mistakesSimon McVittie12-16/+16
Mostly detected by Debian's Lintian tool. Signed-off-by: Simon McVittie <smcv@debian.org>
2016-05-17lib: Make flatpak_installation_drop_caches return TRUE on successAlexander Larsson1-0/+1
2016-05-17system-helper: Add --no-idle-exit commandline argumentAlexander Larsson1-3/+9
This is useful for tests and debugging, where we don't want it to accidentally idle.
2016-05-17Look at FLATPAK_SYSTEM_DIR env var for default system dirAlexander Larsson1-1/+14
This is useful for testing
2016-05-17system-helper: Never use a system helper recursivelyAlexander Larsson3-5/+22
2016-05-17tests: Put --user in an env varAlexander Larsson3-20/+22
This means we can optionally skip it
2016-05-17tests: Add test for updateAlexander Larsson3-2/+28
2016-05-17Merge pull request #160 from matthiasclasen/docsAlexander Larsson5-8/+81
Some library doc updates
2016-05-16Document new FlatpakInstallation apiMatthias Clasen1-0/+23
2016-05-16Document FlatpakBundleRef apisMatthias Clasen1-6/+22
2016-05-16Add some new api to the docsMatthias Clasen2-0/+25
2016-05-16Add new FlatpakRemote apis to the docsMatthias Clasen1-1/+10
2016-05-16Fix a doc comment typoMatthias Clasen1-1/+1
Tis was causing the docs for flatpak_remote_get_disabled not to be picked up.
2016-05-16flatpak-run.c: Handle arm and aarch64 archesTristan Van Berkom1-0/+4
Allows 32bit applications to run in the sandbox on a 64bit aarch64 host. https://bugs.freedesktop.org/show_bug.cgi?id=95421
2016-05-16lib: Add API to add/modify/remove remotesAlexander Larsson5-19/+389
2016-05-16Remove unused variablesAlexander Larsson1-4/+0
2016-05-16run: Remove old seccomp arch codeAlexander Larsson1-16/+0
There was a merge error when we switched to bubblewrap, this code was replaced with the code that only adds the target arch, but we forgot to remove this old code.
2016-05-16Actually export flatpak_installation_drop_cachesAlexander Larsson2-2/+5
2016-05-13Fix clang warningsAlexander Larsson2-3/+1
2016-05-13system-helper: Support add/modify/delete of remotesAlexander Larsson5-1/+191
2016-05-13remote-delete: Actually look at --force flagAlexander Larsson1-1/+3
2016-05-13remote-delete: Move to FlatpakDir and add checks for installed refsAlexander Larsson4-55/+93
You can't remove a remote unless you --force or there are no installs from it.
2016-05-13Fix typo: flatpak_dir_modify_remove -> flatpak_dir_modify_remoteAlexander Larsson3-4/+4
2016-05-13lib: Add flatpak_installation_drop_cachesAlexander Larsson1-81/+119
2016-05-13FlatpakDir: Add in-memory summary cacheAlexander Larsson1-1/+112
Remote summary files are cached for 5 minutes.
2016-05-13Duplicate ostree_repo_remote_list_refs in FlatpakDirAlexander Larsson1-3/+68
This way we can later add a local summary cache to it.