Skip to content
Snippets Groups Projects

Feat/snap missing boiler

Merged Kali Kaneko requested to merge kali/bitmask-vpn:feat/snap-missing-boiler into master
4 unresolved threads

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
79 90 build_cross_osx:
80 91 $(CROSS_OSX_FLAGS) $(MAKE) build
81 92
93 build_done:
94 @echo
95 @echo 'Done. You can do "make packages" now.'
  • 47 54
    48 55 get:
    49 56 -@mkdir -p ${GOPATH}/src/0xacab.org/leap
    50 -@ln -s `pwd` ${GOSYSTRAY}
    57 ifeq (,$(wildcard ${GOSYSTRAY}))
    58 else
    59 @rm -rf ${GOSYSTRAY}
    60 endif
    61 @ln -s `pwd` ${GOSYSTRAY}
    51 62 @cd ${GOSYSTRAY} && go get -tags $(TAGS) ./...
    52 63 @cd ${GOSYSTRAY} && go get -tags "$(TAGS) bitmaskd" ./...
    64 @echo "Done with go get."
  • meskio
    meskio @meskio started a thread on the diff
  • 1 #!/usr/bin/env python3
    • Contributor

      This file should not be autogenerated in the generate.py step using the polkit file? I guess the polkit file is different per provider, or not?

    • Please register or sign in to reply
  • 1 #!/usr/bin/env python3
    2 import os
    3 import subprocess
    4 from base64 import encodestring as encode
    5
    6 # we expect to find bitmask-dev cloned in the parent folder for this repo
    7 # we will clone it if not
    8 PARENT = '../../'
    9 BITMASK_FOLDER = PARENT + 'bitmask-dev/'
    10 BITMASK_GIT = 'https://0xacab.org/leap/bitmask-dev'
    11 HELPDIR = BITMASK_FOLDER + 'src/leap/bitmask/vpn/helpers/linux/'
    12 INSTALL = 'hooks/install'
    13 POLKIT_FILE = 'se.leap.bitmask.riseupvpn.policy'
  • Kali Kaneko added 2 commits

    added 2 commits

    • eb5b2d35 - [pkg] build binaries into platform folder
    • b652e25d - [pkg] use cross-build flag in makefile

    Compare with previous version

  • Kali Kaneko added 2 commits

    added 2 commits

    • 1b1460c2 - [pkg] add-apt-repository not installed by default
    • d67d5322 - [pkg] typo

    Compare with previous version

  • Kali Kaneko added 2 commits

    added 2 commits

    • 31528b8b - [pkg] install latest golang in docker
    • bff93892 - [pkg] fix makefile for xbuild

    Compare with previous version

  • Kali Kaneko added 4 commits

    added 4 commits

    • fcc0bf6c - [pkg] fix makefile for xbuild
    • 4aa6fd41 - [pkg] ability to skip ca check
    • 3120b855 - [pkg] add helpers to repo, generate hooks in snap
    • ad7e59ad - [pkg] need to vendorize allendang w32 lib

    Compare with previous version

  • Kali Kaneko added 1 commit

    added 1 commit

    • d3158fc4 - [pkg] fix Dockerfile install

    Compare with previous version

  • Kali Kaneko added 2 commits

    added 2 commits

    • f4ab1b04 - [pkg] fix Dockerfile install
    • 5286610d - [pkg] need to vendorize allendang w32 lib

    Compare with previous version

  • Kali Kaneko added 1 commit

    added 1 commit

    • 94a594f8 - [pkg] need to vendorize allendang w32 lib

    Compare with previous version

  • Kali Kaneko added 1 commit

    added 1 commit

    • ec4974e7 - [pkg] need to vendorize allendang w32 lib

    Compare with previous version

  • Kali Kaneko added 1 commit

    added 1 commit

    • 80db8766 - [pkg] update go modules to latest

    Compare with previous version

  • Kali Kaneko added 1 commit

    added 1 commit

    • 78ee21c4 - [pkg] update debian template

    Compare with previous version

  • Please register or sign in to reply
    Loading