2014-08-06 23:12:46 +00:00
|
|
|
# Contributing to F-Droid
|
2014-04-12 16:26:56 +00:00
|
|
|
|
2017-12-12 21:12:35 +00:00
|
|
|
For information about all aspects of F-Droid, check out the
|
|
|
|
[docs](https://f-droid.org/docs)
|
|
|
|
|
2014-04-12 16:26:56 +00:00
|
|
|
|
2017-12-12 21:12:35 +00:00
|
|
|
## Issue Tracker
|
2014-08-06 23:12:46 +00:00
|
|
|
|
2017-12-12 21:12:35 +00:00
|
|
|
You may use the
|
|
|
|
[issue tracker](https://gitlab.com/fdroid/fdroiddata/issues) to report
|
|
|
|
issues on app metadata and issues with the packages distributed
|
|
|
|
through our repository.
|
2015-08-18 23:02:24 +00:00
|
|
|
|
2015-08-18 23:55:47 +00:00
|
|
|
Before opening an issue about an outdated app, have a look at its metadata
|
2017-12-12 21:12:35 +00:00
|
|
|
file and make sure that updating the app is actually possible.
|
|
|
|
|
2014-08-06 23:12:46 +00:00
|
|
|
|
|
|
|
## Merge Requests
|
|
|
|
|
2015-08-18 23:55:47 +00:00
|
|
|
### Setting up fdroiddata for merge requests
|
2015-08-18 23:02:24 +00:00
|
|
|
|
2014-08-06 23:12:46 +00:00
|
|
|
* [Register on GitLab](http://gitlab.com)
|
2015-08-18 23:02:24 +00:00
|
|
|
|
2015-08-19 00:11:01 +00:00
|
|
|
* Visit and fork the [fdroiddata repository](https://gitlab.com/fdroid/fdroiddata)
|
2015-08-18 23:55:47 +00:00
|
|
|
|
2016-01-17 19:02:32 +00:00
|
|
|
* Clone your fork
|
|
|
|
|
|
|
|
* Follow the [Quickstart](README.md#quickstart)
|
|
|
|
|
|
|
|
Note that to use the master branch of fdroiddata you will need the
|
|
|
|
master branch of fdroidserver. Using the latest stable release of
|
|
|
|
fdroidserver would probably work, but it is not guaranteed.
|
2015-08-18 23:55:47 +00:00
|
|
|
|
|
|
|
### Adding a new app
|
|
|
|
|
|
|
|
If you want to add a new app you will have to add a new metadata file to the
|
2019-02-06 16:26:14 +00:00
|
|
|
repository, like `metadata/app.id.yml`. Here is how to write that file.
|
2015-08-18 23:55:47 +00:00
|
|
|
|
2015-08-20 00:50:27 +00:00
|
|
|
If the app is on GitHub, GitLab or Bitbucket, use `fdroid import`:
|
2015-08-18 23:55:47 +00:00
|
|
|
|
|
|
|
fdroid import --url https://github.com/foo/bar --subdir app
|
|
|
|
|
2018-08-17 15:46:23 +00:00
|
|
|
Alternatively, start the metadata file from scratch, see [the templates](https://gitlab.com/fdroid/fdroiddata/tree/master/templates):
|
2015-08-18 23:55:47 +00:00
|
|
|
|
2019-01-17 09:38:52 +00:00
|
|
|
cp templates/app-full metadata/app.id.yml
|
2015-08-18 23:55:47 +00:00
|
|
|
|
2018-08-17 15:46:23 +00:00
|
|
|
Or by download:
|
|
|
|
|
2019-02-06 16:42:21 +00:00
|
|
|
wget -O metadata/app.id.yml https://gitlab.com/fdroid/fdroiddata/raw/master/templates/app-full
|
2018-08-17 15:46:23 +00:00
|
|
|
|
2015-08-18 23:55:47 +00:00
|
|
|
Now that the file is created, you need to fill up all the app information and
|
|
|
|
add a working build recipe.
|
|
|
|
|
|
|
|
You can use the [metadata section](https://f-droid.org/manual/html_node/Metadata.html)
|
|
|
|
in the manual for reference, or the full template at `templates/app-full` for
|
|
|
|
some suggestions.
|
2015-08-18 23:02:24 +00:00
|
|
|
|
2015-08-20 00:50:27 +00:00
|
|
|
Once you're done, see if `fdroid readmeta` runs without any errors. If it
|
|
|
|
doesn't, there are syntax errors in your metadata file.
|
2015-08-18 23:02:24 +00:00
|
|
|
|
2015-08-19 00:18:35 +00:00
|
|
|
### Building it
|
|
|
|
|
|
|
|
We build apps from source, so a new app must have at least one working build.
|
|
|
|
|
|
|
|
You can have a look at the build templates at `templates/build-*` for some
|
|
|
|
quick suggestions. You may also follow the manual or look at how other apps
|
|
|
|
are built for working examples.
|
|
|
|
|
|
|
|
* Run `fdroid readmeta` again to make sure there still aren't any syntax
|
|
|
|
errors
|
|
|
|
|
2015-08-18 23:55:47 +00:00
|
|
|
* Run `fdroid rewritemeta app.id` to clean up your file
|
2015-08-18 23:02:24 +00:00
|
|
|
|
2015-08-18 23:55:47 +00:00
|
|
|
* Run `fdroid checkupdates app.id` to fill automated fields like `Auto Name`
|
|
|
|
and `Current Version`
|
2015-08-18 23:02:24 +00:00
|
|
|
|
2015-08-18 23:55:47 +00:00
|
|
|
* Make sure that `fdroid lint app.id` doesn't report any warnings. If it does,
|
|
|
|
fix them.
|
2015-08-18 23:02:24 +00:00
|
|
|
|
2015-08-18 23:55:47 +00:00
|
|
|
* Test your build recipe with `fdroid build -v -l app.id`
|
2015-08-18 23:02:24 +00:00
|
|
|
|
2015-08-18 23:55:47 +00:00
|
|
|
Congratulations! You can now open a merge request to add your app.
|
2015-08-18 23:02:24 +00:00
|
|
|
|
2015-08-18 23:55:47 +00:00
|
|
|
Our buildserver runs builds once a day, so it may take up to 24h for your app
|
|
|
|
to appear in our repository.
|
2015-08-19 00:13:47 +00:00
|
|
|
|
|
|
|
### General recommendations
|
|
|
|
|
|
|
|
* [Squash](http://gitready.com/advanced/2009/02/10/squashing-commits-with-rebase.html) your commits
|
2015-08-19 00:18:35 +00:00
|
|
|
|
|
|
|
* Make sure you've ran `fdroid lint` and `fdroid rewritemeta` before opening a
|
|
|
|
merge request
|
|
|
|
|
|
|
|
* If you haven't tested your build, say so in the merge request.
|
2015-09-12 01:38:44 +00:00
|
|
|
|
|
|
|
* Check for CI errors once you have opened your Merge Request
|
2018-08-24 17:03:28 +00:00
|
|
|
|
|
|
|
|
|
|
|
### After You Added Your App
|
|
|
|
|
|
|
|
- Once your app metadata is merged, it can take a day or more for the
|
|
|
|
build system to build the app.
|
2018-08-24 17:24:36 +00:00
|
|
|
- If you have enabled [auto-updates], F-Droid will build new versions from tags
|
2018-08-24 17:03:28 +00:00
|
|
|
automatically.
|
|
|
|
|
|
|
|
```
|
2019-02-06 16:42:21 +00:00
|
|
|
AutoUpdateMode: Version v%v
|
|
|
|
UpdateCheckMode: Tags
|
2018-08-24 17:03:28 +00:00
|
|
|
```
|
|
|
|
- You may like to add [localization and screenshots], so users can have a glance
|
|
|
|
at the app in pictures and in their preferred language.
|
|
|
|
- You can advertise the download of your app in this app store using the
|
|
|
|
[official grafic][get-it-on-fdroid].
|
2019-07-12 18:34:45 +00:00
|
|
|
<img src="https://fdroid.gitlab.io/artwork/badge/get-it-on.png" height="75">
|
2018-08-24 17:03:28 +00:00
|
|
|
|
|
|
|
```
|
2019-07-12 18:34:45 +00:00
|
|
|
<img src="https://fdroid.gitlab.io/artwork/badge/get-it-on.png" height="75">
|
2018-08-24 17:03:28 +00:00
|
|
|
```
|
2018-08-31 08:07:25 +00:00
|
|
|
- You can add a badge of your apps F-Droid version from [shields.io].
|
|
|
|
![](https://img.shields.io/badge/f--droid-v1.0-blue.svg)
|
|
|
|
```
|
|
|
|
https://img.shields.io/f-droid/v/APP.ID.svg
|
|
|
|
```
|
|
|
|
You can also include a GitHub release badge to know if your version is
|
|
|
|
up to date.
|
|
|
|
![Latest Release](https://img.shields.io/badge/release-v1.0-blue.svg?logo=github)
|
|
|
|
```
|
|
|
|
https://img.shields.io/github/release/USER/REPO.svg?logo=github
|
|
|
|
```
|
|
|
|
|
2018-08-24 17:03:28 +00:00
|
|
|
|
|
|
|
[localization and screenshots]: https://fdroid.gitlab.io/fdroid-website/docs/All_About_Descriptions_Graphics_and_Screenshots/
|
|
|
|
[get-it-on-fdroid]: https://f-droid.org/badge/get-it-on.png
|
2018-08-24 17:24:36 +00:00
|
|
|
[auto-updates]: https://f-droid.org/en/docs/Build_Metadata_Reference/#Auto-Update-Mode
|
2018-08-31 08:07:25 +00:00
|
|
|
[shields.io]: https://shields.io/#/examples/version
|