diff options
author | Will Thompson <will@willthompson.co.uk> | 2019-03-13 17:23:41 +0000 |
---|---|---|
committer | Will Thompson <will@willthompson.co.uk> | 2019-03-13 17:23:43 +0000 |
commit | 4c371ddb80218d049e5232d6573c83749541bed3 (patch) | |
tree | df2b4ed5d7378a0d7639496da2e3e25da90bc859 | |
parent | 3954f434ba31731c1f2f7c04ccd7e6dd4543b92c (diff) |
Add DOAP file
This is used by tools like GNOME Builder to show some project metadata.
-rw-r--r-- | bustle.cabal | 1 | ||||
-rw-r--r-- | bustle.doap | 23 |
2 files changed, 24 insertions, 0 deletions
diff --git a/bustle.cabal b/bustle.cabal index 722e207..a2ebf77 100644 --- a/bustle.cabal +++ b/bustle.cabal @@ -28,6 +28,7 @@ Extra-source-files: NEWS.md, CONTRIBUTING.md, INSTALL.md, + bustle.doap, run-uninstalled.sh , Test/data/log-with-h.bustle diff --git a/bustle.doap b/bustle.doap new file mode 100644 index 0000000..efdf78a --- /dev/null +++ b/bustle.doap @@ -0,0 +1,23 @@ +<?xml version="1.0"?> +<Project xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:gnome="http://api.gnome.org/doap-extensions#" xmlns="http://usefulinc.com/ns/doap#"> + <name xml:lang="en">Bustle</name> + <shortdesc xml:lang="en">Draw sequence diagrams of D-Bus activity</shortdesc> + <description xml:lang="en">Bustle draws sequence diagrams of D-Bus activity. + It shows signal emissions, method calls and their corresponding returns, with + time stamps for each individual event and the duration of each method call. + This can help you check for unwanted D-Bus traffic, and pinpoint why your + D-Bus-based application is not performing as well as you like. It also + provides statistics like signal frequencies and average method call + times.</description> + <download-page rdf:resource="https://www.freedesktop.org/software/bustle/"/> + <bug-database rdf:resource="https://gitlab.freedesktop.org/bustle/bustle/issues"/> + <category rdf:resource="http://api.gnome.org/doap-extensions#development"/> + <programming-language>Haskell</programming-language> + <maintainer> + <foaf:Person> + <foaf:name>Will Thompson</foaf:name> + <foaf:mbox rdf:resource="mailto:will@willthompson.co.uk"/> + <gnome:userid>wjt</gnome:userid> + </foaf:Person> + </maintainer> +</Project> |