Giter Club home page Giter Club logo

Comments (3)

godunko avatar godunko commented on May 30, 2024

Thank you for report! Unfortunately, Bintray has closed services, we are know and looking for another solution.

from adawebpack.

bracke avatar bracke commented on May 30, 2024

How about using GitHub releases?
https://github.blog/2013-07-02-release-your-software/

from adawebpack.

reznikmm avatar reznikmm commented on May 30, 2024

@bracke

if you have Docker installed, you can try our toolchain with the docker

  1. Build a docker image:
docker build --tag wgprbuild - <<EOF
FROM registry.fedoraproject.org/fedora-minimal:33
RUN microdnf --assumeyes install \
  make \
  rpmdevtools \
  gcc-gnat \
  gcc-c++ \
  libstdc++-static \
  clang \
  llvm-devel \
  lld \
  gprbuild \
  gdb \
  git \
  subversion \
  openssh-server \
  tar \
  gzip \
  chrpath \
  ca-certificates && \
curl -o /etc/yum.repos.d/adawebpack.repo \
https://copr.fedorainfracloud.org/coprs/reznik/adawebpack/repo/fedora-33/reznik-adawebpack-fedora-33.repo && \
microdnf --assumeyes install --enablerepo \
 copr:copr.fedorainfracloud.org:reznik:adawebpack adawebpack && \
microdnf clean all
EOF
  1. Compile a toggle_hiden example:
docker run --rm --tmpfs /tmp/ --user $UID --volume $PWD:/tmp/src \
 --workdir /tmp/src wgprbuild \
 gprbuild -p -P examples/toggle_hidden/test.gpr
  1. You can save the next script as wgprbuild and use it as replacement of gprbuild (The only condition is to run wgprbuild not deeper then your project root)
#!/bin/bash
exec docker run --rm --tmpfs /tmp/ --user $UID --volume $PWD:/tmp/src \
 --workdir /tmp/src wgprbuild gprbuild "$@"

from adawebpack.

Related Issues (4)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.