Skip to content

Commit

Permalink
GH-25271: Update Apache Description Of A Project (DOAP) File (#408)
Browse files Browse the repository at this point in the history
### Rationale for this change

The Apache Community Development committee (ComDev) maintains a website
[projects.apache.org](http://projects.apache.org/) which lists all ASF
projects, and some basic details about them. These details are derived
from DOAP (Description Of A Project) file that is maintained by each
PMC.

### What changes are included in this PR?

Update the DOAP file for Arrow, which (in theory) drives the content of
https://projects.apache.org/project.html?arrow, based on the output of
the form at https://projects.apache.org/create.html.

I have already updated
[projects.xml](https://svn.apache.org/repos/asf/comdev/projects.apache.org/trunk/data/projects.xml)
as described on https://projects.apache.org/create.html. See
apache/arrow#25271 (comment) for
more details

### Are these changes tested?

N/A
### Are there any user-facing changes?
No
* Closes: apache/arrow#25271
  • Loading branch information
alamb authored Oct 3, 2023
1 parent 4fd6a8d commit 016d62f
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 10 deletions.
2 changes: 1 addition & 1 deletion _data/versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ current:
number: '13.0.0'
pinned_number: '13.0.*'
major_number: '13'
date: '23 August 2023'
date: 2023-08-23
git-tag: 'b7d2f7ffca66c868bd2fce5b3749c6caa002a7f0'
github-tag-link: 'https://github.com/apache/arrow/releases/tag/apache-arrow-13.0.0'
release-notes: 'https://arrow.apache.org/release/13.0.0.html'
Expand Down
31 changes: 22 additions & 9 deletions arrow.rdf
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
---
---
<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl"?>
<rdf:RDF xml:lang="en"
Expand All @@ -23,12 +25,18 @@
-->
<Project rdf:about="https://arrow.apache.org">
<created>2016-02-17</created>
<license rdf:resource="http://usefulinc.com/doap/licenses/asl20" />
<name>Apache arrow</name>
<homepage rdf:resource="http://arrow.apache.org/" />
<asfext:pmc rdf:resource="http://arrow.apache.org" />
<license rdf:resource="https://spdx.org/licenses/Apache-2.0" />
<name>Apache Arrow</name>
<homepage rdf:resource="https://arrow.apache.org" />
<asfext:pmc rdf:resource="https://arrow.apache.org" />
<shortdesc>Apache Arrow is a cross-language development platform for in-memory data.</shortdesc>
<description>Apache Arrow is a cross-language development platform for in-memory data.</description>
<description>Apache Arrow defines a language-independent columnar memory format for flat and hierarchical data, organized for efficient analytic operations on modern hardware like CPUs and GPUs. The Arrow memory format also supports zero-copy reads for lightning-fast data access without serialization overhead.

Arrow's libraries implement the format and provide building blocks for a range of use cases, including high performance analytics. Many popular projects use Arrow to ship columnar data efficiently or as the basis for analytic engines.

Libraries are available for C, C++, C#, Go, Java, JavaScript, Julia, MATLAB, Python, R, Ruby, and Rust.

Apache Arrow is software created by and for the developer community. We are dedicated to open, kind communication and consensus decision making. Our committers come from a range of organizations and backgrounds, and we welcome all to participate with us.</description>
<bug-database rdf:resource="https://github.com/apache/arrow/issues" />
<mailing-list rdf:resource="http://mail-archives.apache.org/mod_mbox/arrow-dev/" />
<download-page rdf:resource="http://arrow.apache.org/release/" />
Expand All @@ -44,13 +52,18 @@
<programming-language>R</programming-language>
<programming-language>Ruby</programming-language>
<programming-language>Rust</programming-language>
<category rdf:resource="http://projects.apache.org/category/library" />
<category rdf:resource="http://projects.apache.org/category/big-data" />
<category rdf:resource="https://projects.apache.org/category/big-data" />
<category rdf:resource="https://projects.apache.org/category/database" />
<category rdf:resource="https://projects.apache.org/category/data-engineering" />
<category rdf:resource="https://projects.apache.org/category/library" />
<category rdf:resource="https://projects.apache.org/category/network-client" />
<category rdf:resource="https://projects.apache.org/category/network-server" />
<release>
<Version>
<name>Apache Arrow</name>
<created>2022-10-31</created>
<revision>10.0.0</revision>
<!-- Release is filled in by Jekyll from contents of _data/versions.yml -->
<created>{{ site.data.versions.current.date }}</created>
<revision>{{ site.data.versions.current.number }}</revision>
</Version>
</release>
<repository>
Expand Down

0 comments on commit 016d62f

Please sign in to comment.