Difference between revisions of "Google Summer of Code 2020"

From Software Heritage Wiki
Jump to: navigation, search
(Created page with "1024px == General information == This page is the central point of information for Software Heritage participation into the [https://summerofcode.w...")
 
m
(21 intermediate revisions by 3 users not shown)
Line 1: Line 1:
[[File:GSoCLogo.png|1024px]]
+
<div style="text-align: center; font-size: 1.2em; border: solid 1px black; padding: 1em;">
 +
Software Heritage is not participating in the Google Summer of Code 2020; this page is only kept as an archive. Thank you for your interest in Software Heritage, and you are welcome to apply for an [[internship]] instead.
 +
</div>
 +
 
  
 
== General information ==
 
== General information ==
Line 9: Line 12:
 
== Accepted projects ==
 
== Accepted projects ==
  
 
+
None yet, it's too soon for this!
  
 
== I want to participate as a student ==
 
== I want to participate as a student ==
Line 30: Line 33:
 
# Create an account on our [https://forge.softwareheritage.org development forge]
 
# Create an account on our [https://forge.softwareheritage.org development forge]
 
# Familiarize yourself with our [[Code review in Phabricator|code review workflow]]
 
# Familiarize yourself with our [[Code review in Phabricator|code review workflow]]
# Make a simple change to any one of our [https://docs.softwareheritage.org/devel/ software components] and submit it as a [https://forge.softwareheritage.org/differential/ diff] for code review, following the above workflow. [[Easy hacks]] and [https://forge.softwareheritage.org/project/view/20/ Web UI] issues are good options for what to fix, but feel free to submit any patch you think it might be useful.
+
# Make at least one simple change to any one of our [https://docs.softwareheritage.org/devel/ software components] and submit it as a [https://forge.softwareheritage.org/differential/ diff] for code review, following the above workflow. [[Easy hacks]] and [https://forge.softwareheritage.org/project/view/20/ Web UI] issues are good options for what to fix, but feel free to submit any patch you think it might be useful.
  
 
=== What to include in your application ===
 
=== What to include in your application ===
Line 43: Line 46:
  
 
Below you can find a list of project ideas that are good options for a
 
Below you can find a list of project ideas that are good options for a
reasonably sized GSoC project. They are just suggestion though, don't feel
+
reasonably-sized GSoC project:
 +
<DynamicPageList>
 +
category = GSoC task
 +
ordermethod = sortkey
 +
order = ascending
 +
</DynamicPageList>
 +
 
 +
Independently from GSoC, we also maintain a separate list of academic [[Internships]].
 +
They are usually offered to university students, but during GSoC they are also available as GSoC projects.
 +
The currently available (GSoC) internship topics are:
 +
<DynamicPageList>
 +
category = Available internship
 +
ordermethod = sortkey
 +
order = ascending
 +
</DynamicPageList>
 +
 
 +
Both GSoC tasks and internship topics are just suggestion though, don't feel
 
obliged to pick one of them if there is nothing that fits your taste and
 
obliged to pick one of them if there is nothing that fits your taste and
 
abilities.  Feel free to propose something else that you are excited about and
 
abilities.  Feel free to propose something else that you are excited about and
 
that contributes to improve the Software Heritage archive: we will be happy to
 
that contributes to improve the Software Heritage archive: we will be happy to
 
consider it!
 
consider it!
 
=== Increase archive coverage ===
 
 
Software Heritage aims to archive ''all publicly available software source
 
code''. We naturally started with the place where most of the software is
 
easily available today: git repositories on GitHub.
 
 
As Software Heritage grows, we're incrementally increasing archive coverage by
 
expanding the sources from which we archive software; a list of currently
 
crawled sources is listed on the
 
[https://archive.softwareheritage.org main archive page]. As you can see there,
 
we have already built ways of archiving Mercurial repositories, Debian packages,
 
PyPI bundles, and more.
 
 
Further expansions of archive coverage are very suitable GSoC project.
 
 
Practically, to expand archive coverage two kinds of software components need
 
to be implemented: listers and loaders.
 
 
'''Listers''' are components that crawl the APIs of software
 
[https://en.wikipedia.org/wiki/Forge_(software) forges] (e.g., Bitbucket,
 
Gitorious, Sourceforge, ...) or package managers (a larges list is maintained
 
by [https://libraries.io Libraries.io]) and return a list of the software
 
available in it. See the official
 
[https://docs.softwareheritage.org/devel/swh-lister/ listers documentation] for
 
more details.
 
 
'''Loaders''' take a bundle of software (tarball, Git repository, Python
 
package, ...) and load it into Software Heritage, by adapting it so that it
 
matches the archive
 
[https://docs.softwareheritage.org/devel/swh-model/data-model.html data model].
 
 
While listers answer questions like "what are all the repositories available on
 
npm.org?", a loader addresses the "how do I load the NPM package I downloaded
 
into Software Heritage?" problem.
 
 
Writing a missing lister or a loader is a great way to contribute to expand the
 
coverage of the Software Heritage archive! Feel free to propose the
 
implementation of one (or several!) listers or loaders that are currently
 
missing. For inspiration you can check out our [[Suggestion box]] for code to
 
archive, or propose your favorite missing forge or package repository.
 
 
=== Mine information from archived content ===
 
 
In addition to archival, Software Heritage indexes the retrieved source code
 
artifacts, to enable semantic searches on the archive and scientific research.
 
 
Indexing can happen at the individual file-level (e.g., detect the programming
 
language the file is written in or the license declared in its header), or at
 
more coarse grained granularity (e.g., what metadata are declared for the most
 
recently archived version of a given project).
 
 
A number of indexes are [https://forge.softwareheritage.org/source/swh-indexer/ currently supported],
 
such as:
 
 
* file level mining:
 
** MIME type detection (using libmagic)
 
** license detection (using FOSSology/nomossa)
 
** language detection (using Pygments)
 
** ctags extraction (using universal-ctags)
 
* project level mining:
 
** Ruby gemspec metadata
 
** Python PKG-INFO metadata
 
** Maven pom.xml metadata
 
** NPM package.json metadata
 
 
Writing additional indexers that extract more information from archived source
 
code is welcome and would constitute a suitable GSoC project.
 
 
Name the kind of data mining you want to do!
 
 
For inspiration you can have a look at [https://libraries.io Libraries.io], as
 
most package formats/package managers support dedicated ways of expressing
 
metadata and we only support a small number of them up-to-now. But do not
 
restrict your ambition to those, any kind of data extraction/mining you want to
 
do on the archive could work.
 
 
=== Improve and extend the archive Web UI ===
 
 
As you probably know already, The Software Heritage archive can be
 
[https://archive.softwareheritage.org browsed on the Web]. The
 
[https://forge.softwareheritage.org/source/swh-web/ code] powering that
 
interface is a Django application that also implements a
 
[https://archive.softwareheritage.org/api/ Web API].
 
 
Several improvements are possible on the archive Web interface and would make
 
great GSoC projects, some ideas to whet your appetite:
 
 
* add new source code search criteria and improve the search interface
 
* add developer-oriented features, e.g., source file history, blame/praise interface, in-browser edit (with patch download), ... (note that this will also require backend design and implementation)
 
* improve [https://www.w3.org/WAI/ accessibility]
 
* help us design and implement our [https://forge.softwareheritage.org/T1805 next API version]
 
 
=== Research internships ===
 
 
For the more research-inclined students, we also maintain a separate list of [[Internships]].
 
Any topic there is also a viable GSoC project.
 
  
 
== Contact ==
 
== Contact ==
  
GSoC students are encouraged to get in touch with the Software Heritage community using the standard development communication channels, i.e.:
+
GSoC students are encouraged to get in touch with the Software Heritage community using the standard development communication channels, and in particular our IRC channel (#swh-devel on FreeNode) and mailing list (swh-devel).
 
 
* the #swh-devel IRC channel on [https://freenode.net Freenode]
 
* the [https://sympa.inria.fr/sympa/info/swh-devel swh-devel mailing list]
 
  
See our [https://www.softwareheritage.org/community/developers/ development information page] for more details.
+
See our [https://www.softwareheritage.org/community/developers/ development information page] for details.
  
 
== Timeline ==
 
== Timeline ==

Revision as of 21:29, 21 February 2020

Software Heritage is not participating in the Google Summer of Code 2020; this page is only kept as an archive. Thank you for your interest in Software Heritage, and you are welcome to apply for an internship instead.


General information

This page is the central point of information for Software Heritage participation into the Google Summer of Code program in 2020.

Google Summer of Code is a program where Google pays students stipends to work over the (northern hemisphere) summer on free software projects such as Software Heritage. Each student works with mentors from the community to complete a software project.

Accepted projects

None yet, it's too soon for this!

I want to participate as a student

Great!, we are very glad for your interest in contributing to Software Heritage and we are looking forward to work together.

Prerequisites

The following prerequisites apply to Software Heritage GSoC projects:

  • Python 3 is our language of choice, you should be fluent with that language to apply
  • Git is our version control system of choice, you should be familiar with it to apply
  • additional prerequisites depend on the project you will work on; check project descriptions for details

Before you apply

Here are the steps you should follow before applying, to make sure you have a good grasp of what we are doing at Software Heritage and how we do it:

  1. Follow our getting started guide: it will make sure you can locally run a (small) copy of the archive and ingest source code into it
  2. Create an account on our development forge
  3. Familiarize yourself with our code review workflow
  4. Make at least one simple change to any one of our software components and submit it as a diff for code review, following the above workflow. Easy hacks and Web UI issues are good options for what to fix, but feel free to submit any patch you think it might be useful.

What to include in your application

Make sure that your application includes the following information:

  • Describe the specific project you want to work on. What do you want to achieve? Why is it important? Why is it useful for Software Heritage? The project might be one of the project ideas that we have prepared below, or something else entirely that you want to contribute to Software Heritage. Your source code archival pet peeve, surprise us!
  • Detail your work plan: a brief description of how you plan to go about your project, including a list of deliverables and a timeline of when do you expect them to be available.
  • Include a reference to the diff you submitted before applying (see the "Before you apply" section above).

Ideas list

Below you can find a list of project ideas that are good options for a reasonably-sized GSoC project:


Independently from GSoC, we also maintain a separate list of academic Internships. They are usually offered to university students, but during GSoC they are also available as GSoC projects. The currently available (GSoC) internship topics are:


Both GSoC tasks and internship topics are just suggestion though, don't feel obliged to pick one of them if there is nothing that fits your taste and abilities. Feel free to propose something else that you are excited about and that contributes to improve the Software Heritage archive: we will be happy to consider it!

Contact

GSoC students are encouraged to get in touch with the Software Heritage community using the standard development communication channels, and in particular our IRC channel (#swh-devel on FreeNode) and mailing list (swh-devel).

See our development information page for details.

Timeline

See the official Google Summer of Code timeline.