Files
main-website/community.html
T
2026-08-26 18:37:00 +02:00

130 lines
4.1 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Community - ReviveSparc</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="header">
<div class="inner">
<h1><a href="index.html">ReviveSparc</a></h1>
<p class="subtitle">An open-source OpenSPARC ISA reimplementation</p>
</div>
</div>
<div id="nav">
<div class="inner">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="download.html">Download</a></li>
<li><a href="docs.html">Docs</a></li>
<li><a href="news.html">News</a></li>
<li><a href="roadmap.html">Roadmap</a></li>
<li><a href="screenshots.html">Screenshots</a></li>
<li><a href="community.html" class="active">Community</a></li>
<li><a href="sponsors.html">Sponsors</a></li>
</ul>
</div>
</div>
<div id="main">
<h2>Community</h2>
<p>ReviveSparc is a community-driven project. We welcome contributions, bug reports, and discussion from anyone interested in the SPARC architecture.</p>
<h3>Get Involved</h3>
<table>
<tr><th>Resource</th><th>Description</th><th>Link</th></tr>
<tr>
<td>Git</td>
<td>Source code, issue tracker, pull requests</td>
<td><a href="https://git.revivesparc.com/Revivesparc">git.revivesparc.com/Revivesparc</a></td>
</tr>
<tr>
<td>Mailing List</td>
<td>General discussion and development</td>
<td><a href="mailto:dev@revivesparc.org">dev@revivesparc.org</a></td>
</tr>
<tr>
<td>IRC</td>
<td>Real-time chat on Libera.Chat</td>
<td><a href="ircs://irc.libera.chat:6697/#revivesparc">#revivesparc</a></td>
</tr>
<tr>
<td>Discourse</td>
<td>Community forum for long-form discussion</td>
<td><a href="https://forum.revivesparc.org">forum.revivesparc.org</a></td>
</tr>
<tr>
<td>Wiki</td>
<td>Community-contributed guides and resources</td>
<td><a href="https://wiki.revivesparc.org">wiki.revivesparc.org</a></td>
</tr>
<tr>
<td>Bug Tracker</td>
<td>Report issues and feature requests</td>
<td><a href="https://git.revivesparc.com/Revivesparc/revivesparc/issues">Issues</a></td>
</tr>
</table>
<h3>Contributing</h3>
<p>We welcome contributions of all kinds: code, documentation, testing, and hardware verification.</p>
<h4>Code Contributions</h4>
<ol>
<li>Fork the repository on our Git instance.</li>
<li>Create a feature branch: <code>git checkout -b my-feature</code></li>
<li>Make your changes and add tests.</li>
<li>Run the test suite: <code>make test</code></li>
<li>Submit a pull request with a clear description of your changes.</li>
</ol>
<p>Before starting significant work, please post to the mailing list or open a discussion on the issue tracker to coordinate with other developers.</p>
<h4>Reporting Bugs</h4>
<p>When reporting a bug, please include:</p>
<ul>
<li>Your operating system and compiler version</li>
<li>The version of ReviveSparc (commit hash or release tag)</li>
<li>A minimal test case that reproduces the issue</li>
<li>The expected behavior and the actual behavior</li>
</ul>
<h3>Mailing List</h3>
<p>To subscribe to the ReviveSparc development mailing list, send an email to:</p>
<pre>dev+subscribe@revivesparc.org</pre>
<p>Archives are available at <a href="https://lists.revivesparc.org">lists.revivesparc.org</a>.</p>
<h3>License</h3>
<p>ReviveSparc is released under the <strong>BSD 2-Clause License</strong>:</p>
<pre>Copyright 2026 The ReviveSparc Project
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in
the documentation and/or other materials provided with the
distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
FOR A PARTICULAR PURPOSE ARE DISCLAIMED.</pre>
</div>
<div id="footer">
<p>ReviveSparc is released under the BSD 2-Clause License.</p>
</div>
</body>
</html>