diff --git a/projects/dnssec-hsts-native/build b/projects/dnssec-hsts-native/build new file mode 100644 index 0000000..7cb5edf --- /dev/null +++ b/projects/dnssec-hsts-native/build @@ -0,0 +1,45 @@ +#!/bin/bash +[% c("var/set_default_env") -%] +[% pc('go', 'var/setup', { go_tarfile => c('input_files_by_name/go') }) %] +export CGO_ENABLED=0 +distdir=/var/tmp/dist/[% project %] +mkdir -p $distdir + +[% FOREACH dep = c("var/go_lib_deps") -%] + tar -C /var/tmp/dist -xf [% c('input_files_by_name/' _ dep) %] +[% END -%] + +mkdir -p $GOPATH/src/github.com/namecoin +tar -C $GOPATH/src/github.com/namecoin -xf [% project %]-[% c('version') %].tar.gz +mv $GOPATH/src/github.com/namecoin/dnssec-hsts-native-[% c('version') %] $GOPATH/src/github.com/namecoin/dnssec-hsts-native + +go install -ldflags '-s' github.com/namecoin/dnssec-hsts-native/src/dnssec_hsts + +#mkdir -p /var/tmp/build +#tar -C /var/tmp/build -xf [% project %]-[% c('version') %].tar.gz +#cd /var/tmp/build/[% project %]-[% c('version') %] + +#mkdir -p "$GOPATH/src/github.com/namecoin" +#ln -sf "$PWD" "$GOPATH/src/github.com/namecoin/ncdns" + +#mkdir -p out +#cd out +#for x in .. ../ncdumpzone ../generate_nmc_cert; do +# go build -ldflags '-s' "$x" +#done + +[% IF c("var/linux-x86_64") -%] + GOPATHBIN="${GOPATH}/bin" +[% ELSE -%] + GOPATHBIN="${GOPATH}/bin/${GOOS}_${GOARCH}" +[% END -%] + +ls $GOPATHBIN + +cp -a $GOPATHBIN/dnssec_hsts[% IF c("var/windows") %].exe[% END %] $distdir/ + +cd $distdir +[% c('tar', { + tar_src => [ '.' ], + tar_args => '-czf ' _ dest_dir _ '/' _ c('filename'), + }) %] diff --git a/projects/dnssec-hsts-native/config b/projects/dnssec-hsts-native/config new file mode 100644 index 0000000..313ddb8 --- /dev/null +++ b/projects/dnssec-hsts-native/config @@ -0,0 +1,28 @@ +version: '[% c("abbrev") %]' +git_url: https://github.com/namecoin/dnssec-hsts-native.git +git_hash: '70cc6b40311abe70ab12a71303f69ff027dcf0f4' +filename: '[% project %]-[% c("version") %]-[% c("var/osname") %]-[% c("var/build_id") %].tar.gz' + +var: + container: + use_container: 1 + go_lib_deps: + - github.com,miekg,dns + - github.com,namecoin,qlib + - gopkg.in,hlandau,easyconfig.v1 + cgo: 0 + build_go_lib_pre: | + export CGO_ENABLED=[% c("var/cgo") %] + +input_files: + - project: container-image + - name: go + project: go + - name: gopkg.in,hlandau,easyconfig.v1 + project: gopkg.in,hlandau,easyconfig.v1 + - name: github.com,miekg,dns + project: github.com,miekg,dns + # v1.0.15 is the last tagged release that still works with q. + git_hash: '7064f7248f5fa5fd79382a76328b4e200b79e4ae' + - name: github.com,namecoin,qlib + project: github.com,namecoin,qlib