changeset 26101:9e5caa6acb00

include a DOAP descriptor (bug #53619) * octave.doap: New file. * Makefile.am (EXTRA_DIST): Include it in the list.
author Mike Miller <mtmiller@octave.org>
date Mon, 19 Nov 2018 11:42:15 -0800
parents 7a8f895c8f15
children 15ebd65f18c9
files Makefile.am octave.doap
diffstat 2 files changed, 35 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/Makefile.am	Sun Nov 18 21:12:41 2018 -0800
+++ b/Makefile.am	Mon Nov 19 11:42:15 2018 -0800
@@ -127,6 +127,7 @@
   INSTALL \
   NEWS \
   README \
+  octave.doap \
   run-octave.in \
   $(BUILT_DISTFILES)
 
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/octave.doap	Mon Nov 19 11:42:15 2018 -0800
@@ -0,0 +1,34 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<Project xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+         xmlns:foaf="http://xmlns.com/foaf/0.1/"
+         xmlns="http://usefulinc.com/ns/doap#">
+
+  <name xml:lang="en">GNU Octave</name>
+  <shortname>octave</shortname>
+
+  <shortdesc xml:lang="en">Interactive programming environment for numerical computations</shortdesc>
+
+  <homepage rdf:resource="https://www.octave.org" />
+  <license rdf:resource="https://www.gnu.org/licenses/gpl-3.0.txt" />
+  <bug-database rdf:resource="https://savannah.gnu.org/bugs/?group=octave" />
+  <download-page rdf:resource="https://ftp.gnu.org/gnu/octave/" />
+  <mailing-list rdf:resource="https://lists.gnu.org/mailman/listinfo/help-octave" />
+  <wiki rdf:resource="https://wiki.octave.org" />
+
+  <programming-language>C++</programming-language>
+
+  <maintainer>
+    <foaf:Person>
+      <foaf:name>John W. Eaton</foaf:name>
+      <foaf:mbox rdf:resource="mailto:jwe@octave.org" />
+    </foaf:Person>
+  </maintainer>
+
+  <repository>
+    <HgRepository>
+      <browse rdf:resource="https://hg.savannah.gnu.org/hgweb/octave"/>
+      <location rdf:resource="https://hg.savannah.gnu.org/hgweb/octave"/>
+    </HgRepository>
+  </repository>
+
+</Project>