From 9d6ae2ee8abf6f9d7f976321c06f280dd1c12211 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=BD=D0=B0=D0=B1?= Date: Wed, 19 Aug 2020 18:26:10 +0200 Subject: [PATCH] Initial commit --- .builds/alpine.yml | 14 ++++++++++++++ .gitignore | 11 +++++++++++ LICENSE | 26 ++++++++++++++++++++++++++ README.md | 5 +++++ go.mod | 6 ++++++ go.sum | 1 + placeholder.go | 1 + 7 files changed, 64 insertions(+) create mode 100644 .builds/alpine.yml create mode 100644 .gitignore create mode 100644 LICENSE create mode 100644 README.md create mode 100644 go.mod create mode 100644 go.sum create mode 100644 placeholder.go diff --git a/.builds/alpine.yml b/.builds/alpine.yml new file mode 100644 index 0000000000000000000000000000000000000000..fd3a221740fde068a9de90cf04a3f6911cbb127e --- /dev/null +++ b/.builds/alpine.yml @@ -0,0 +1,14 @@ +image: alpine/3.12 +repositories: + sr.ht: > + https://mirror.sr.ht/alpine/v3.12/sr.ht/ + https://mirror.sr.ht/alpine/alpine%40sr.ht.rsa.pub + alpine@sr.ht.rsa.pub +packages: + - go +sources: + - https://git.sr.ht/~sircmpwn/core-go +tasks: + - build: | + cd core-go + go build -v ./... diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..0eb79c3db26beb170f720dcfe13ecc201c1044b3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,11 @@ +*.pyc +bin/ +include/ +local/ +lib/ +*.swp +*.rdb +pip-selfcheck.json +.sass-cache/ +build/ +node_modules diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..4485a30cc4c30c9cb6ab250a7db2a30332eb79be --- /dev/null +++ b/LICENSE @@ -0,0 +1,26 @@ +Copyright 2020 Drew DeVault + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this +list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, +this list of conditions and the following disclaimer in the documentation +and/or other materials provided with the distribution. + +3. Neither the name of the copyright holder nor the names of its contributors +may be used to endorse or promote products derived from this software without +specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/README.md b/README.md new file mode 100644 index 0000000000000000000000000000000000000000..c4a0378d2435664c3178813a847d4dbdf99ada0e --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +This repository contains code shared among all Go sr.ht projects. +For instructions on deploying or contributing to this project, +visit the manual here: + +https://man.sr.ht/installation.md diff --git a/go.mod b/go.mod new file mode 100644 index 0000000000000000000000000000000000000000..4a50a1bc0f88011a51e6d9ea0f7748c3f53a5d1e --- /dev/null +++ b/go.mod @@ -0,0 +1,6 @@ +module git.sr.ht/~sircmpwn/core-go + +go 1.13 + +require ( +) diff --git a/go.sum b/go.sum new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/go.sum @@ -0,0 +1 @@ + diff --git a/placeholder.go b/placeholder.go new file mode 100644 index 0000000000000000000000000000000000000000..085048a54adc4ef3afb05e083f884c1826974c5c --- /dev/null +++ b/placeholder.go @@ -0,0 +1 @@ +package srht