Skip to main content
  • Home
  • Development
  • Documentation
  • Donate
  • Operational login
  • Browse the archive

swh logo
SoftwareHeritage
Software
Heritage
Archive
Features
  • Search

  • Downloads

  • Save code now

  • Add forge now

  • Help

https://github.com/rgcmaack/PLMSS-Replicability-Stamp
08 April 2023, 11:44:49 UTC
  • Code
  • Branches (2)
  • Releases (0)
  • Visits
    • Branches
    • Releases
    • HEAD
    • refs/heads/NoSSE42
    • refs/heads/master
    No releases to show
  • ccbfbf6
  • /
  • docker
  • /
  • Dockerfile
Raw File Download
Take a new snapshot of a software origin

If the archived software origin currently browsed is not synchronized with its upstream version (for instance when new commits have been issued), you can explicitly request Software Heritage to take a new snapshot of it.

Use the form below to proceed. Once a request has been submitted and accepted, it will be processed as soon as possible. You can then check its processing state by visiting this dedicated page.
swh spinner

Processing "take a new snapshot" request ...

To reference or cite the objects present in the Software Heritage archive, permalinks based on SoftWare Hash IDentifiers (SWHIDs) must be used.
Select below a type of object currently browsed in order to display its associated SWHID and permalink.

  • content
  • directory
  • revision
  • snapshot
origin badgecontent badge Iframe embedding
swh:1:cnt:960e26941ec77461e35150e78c7d0e8a29e717ae
origin badgedirectory badge Iframe embedding
swh:1:dir:ad34f3038283be3f9f4b43430b3e16d78d5222d7
origin badgerevision badge
swh:1:rev:dbb783a7ac1659cb55cb10088198b27888a09daf
origin badgesnapshot badge
swh:1:snp:42779903fe10aaf33066eb2132eb35b954ca50d9

This interface enables to generate software citations, provided that the root directory of browsed objects contains a citation.cff or codemeta.json file.
Select below a type of object currently browsed in order to generate citations for them.

  • content
  • directory
  • revision
  • snapshot
Generate software citation in BibTex format (requires biblatex-software package)
Generating citation ...
Generate software citation in BibTex format (requires biblatex-software package)
Generating citation ...
Generate software citation in BibTex format (requires biblatex-software package)
Generating citation ...
Generate software citation in BibTex format (requires biblatex-software package)
Generating citation ...
Tip revision: dbb783a7ac1659cb55cb10088198b27888a09daf authored by Robin Maack on 06 April 2023, 13:04:07 UTC
Added description
Tip revision: dbb783a
Dockerfile
FROM ubuntu:focal as base
LABEL authors="Christoph Garth <garth@cs.uni-kl.de>, Robin G. C. Maack <maack@rptu.de>"

ENV DEBIAN_FRONTEND=noninteractive

# --------------------------------------------------------------------------

FROM base as build-base

ENV CMAKE_BUILD_TYPE=MinSizeRel \
    CMAKE_GENERATOR=Ninja

# bring in additional apt sources
RUN apt-get update \ 
 && apt-get install --no-install-recommends -yqq ca-certificates \
 && echo "deb [trusted=yes] https://apt.kitware.com/ubuntu/ focal main" > /etc/apt/sources.list.d/kitware.list \
 && apt-get update

# install base development env
RUN apt-get install --no-install-recommends -yqq \
    build-essential \
    ninja-build \
    cmake \
    dlocate \
    file \
    curl

# --------------------------------------------------------------------------

FROM build-base as builder

COPY install-helper /usr/bin

# install OSPRay + dependencies
COPY pkg/ispc.sh /tmp
RUN  install-helper /tmp/ispc.sh

COPY pkg/tbb.sh /tmp
RUN  install-helper /tmp/tbb.sh

COPY pkg/embree.sh /tmp
RUN  install-helper /tmp/embree.sh

COPY pkg/rkcommon.sh /tmp
RUN  install-helper /tmp/rkcommon.sh

COPY pkg/openimagedenoise.sh /tmp
RUN  install-helper /tmp/openimagedenoise.sh

COPY pkg/openvkl.sh /tmp
RUN  install-helper /tmp/openvkl.sh

COPY pkg/ospray.sh /tmp
RUN  install-helper /tmp/ospray.sh

# install OSMesa
COPY pkg/mesa.sh /tmp
RUN  install-helper /tmp/mesa.sh

# install ZFP
COPY pkg/zfp.sh /tmp
RUN  install-helper /tmp/zfp.sh

# install Spectra
COPY pkg/spectra.sh /tmp
RUN  install-helper /tmp/spectra.sh

# install ParaView
ARG paraview=5.10.1
ENV PARAVIEW_VERSION=${paraview}

COPY pkg/paraview.sh /tmp
RUN  install-helper /tmp/paraview.sh

# --------------------------------------------------------------------------

FROM builder as builder-ttk

# install TTK
ARG ttk=dev
ENV TTK_VERSION=${ttk}

ENV DEV=""

COPY pkg/ttk.sh /tmp
RUN  install-helper /tmp/ttk.sh

# --------------------------------------------------------------------------

#FROM builder-ttk as ttk-dev
FROM builder as ttk-dev

#COPY --from=builder-ttk /usr/local /usr/local

RUN apt-get update \
 && apt-get -yqq --no-install-recommends install $(cat /usr/local/.pkgs) gdb \
 && apt-get clean \
 && rm -rf /var/cache/apt/lists

ENV DEV="True"

COPY pkg/ttk.sh /tmp
RUN  install-helper /tmp/ttk.sh
  
# --------------------------------------------------------------------------

FROM base as ttk

COPY --from=builder-ttk /usr/local /usr/local

RUN apt-get update \
 && apt-get -yqq --no-install-recommends install $(cat /usr/local/.pkgs) \
 && apt-get clean \
 && rm -rf /var/cache/apt/lists

# add current path to output result
COPY noisyTerrain.vtu /home
COPY noisyTerrainMSS.py /home

# run pvpython to generate examplle image
RUN pvpython /home/noisyTerrainMSS.py

back to top

Software Heritage — Copyright (C) 2015–2025, The Software Heritage developers. License: GNU AGPLv3+.
The source code of Software Heritage itself is available on our development forge.
The source code files archived by Software Heritage are available under their own copyright and licenses.
Terms of use: Archive access, API— Content policy— Contact— JavaScript license information— Web API