1
0
Fork 0

Adding upstream version 3.5.1.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-05-18 18:07:37 +02:00
parent e37d4622a7
commit 097626e61a
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
57 changed files with 6023 additions and 0 deletions

12
.github/FUNDING.yml vendored Normal file
View file

@ -0,0 +1,12 @@
# These are supported funding model platforms
github: [mholt] # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
patreon: # Replace with a single Patreon username
open_collective: # Replace with a single Open Collective username
ko_fi: # Replace with a single Ko-fi username
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
liberapay: # Replace with a single Liberapay username
issuehunt: # Replace with a single IssueHunt username
otechie: # Replace with a single Otechie username
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']

41
.github/ISSUE_TEMPLATE/bug_report.md vendored Normal file
View file

@ -0,0 +1,41 @@
---
name: Bug report
about: For behaviors which violate documentation or cause incorrect results
title: ''
labels: ''
assignees: ''
---
<!--
This template is for bug reports! (If your issue doesn't fit this template, it's probably a feature request instead.)
To fill out this template, simply replace these comments with your answers.
Please do not skip questions; this will slow down the resolution process.
-->
## What version of the package or command are you using?
<!-- A commit sha or tag is fine -->
## What are you trying to do?
<!-- Please describe clearly what you are trying to do thoroughly enough so that a reader with no context can repeat the same process. -->
## What steps did you take?
<!-- Explain exactly how we can reproduce this bug; attach sample archive files if relevant -->
## What did you expect to happen, and what actually happened instead?
<!-- Please make it clear what the bug actually is -->
## How do you think this should be fixed?
<!-- Being specific by linking to lines of code and even suggesting changes will yield fastest resolution -->
## Please link to any related issues, pull requests, and/or discussion
<!-- This will help add crucial context to your report -->
## Bonus: What do you use archiver for, and do you find it useful?
<!-- We'd like to know! -->

View file

@ -0,0 +1,28 @@
---
name: Generic feature request
about: Suggest an idea for this project
title: ''
labels: feature request
assignees: ''
---
<!--
This issue template is for feature requests! If you are reporting a bug instead, please switch templates.
To fill this out, simply replace these comments with your answers.
-->
## What would you like to have changed?
<!-- Describe the feature or enhancement you are requesting -->
## Why is this feature a useful, necessary, and/or important addition to this project?
<!-- Please justify why this change adds value to the project, considering the added maintenance burden and complexity the change introduces -->
## What alternatives are there, or what are you doing in the meantime to work around the lack of this feature?
<!-- We want to get an idea of what is being done in practice, or how other projects support your feature -->
## Please link to any relevant issues, pull requests, or other discussions.
<!-- This adds crucial context to your feature request and can speed things up -->

View file

@ -0,0 +1,32 @@
---
name: New format request
about: Request a new archival or compression format
title: ''
labels: ''
assignees: ''
---
<!--
This template is specifically for adding support for a new archive or compression format to the library. Please, precisely one format per issue.
To fill this out, replace these comments with your answers.
-->
## Introduce the format you are requesting.
<!-- What is it called, what is it used for, etc? Some background information. -->
## What do YOU use this format for?
<!-- We want to know YOUR specific use cases; why do YOU need this format? -->
## What is the format's conventional file extension(s)?
<!-- Don't overthink this one, it's a simple question. -->
## Please link to the format's formal or official specification(s).
<!-- If there isn't a formal spec, link to the most official documentation for the format. Note that unstandardized formats are less likely to be added unless it is in high-enough demand. -->
## Which Go libraries could be used to implement this format?
<!-- This project itself does not actually implement low-level format reading and writing algorithms, so link to pure-Go libraries that do. Dependencies that use cgo or invoke external commands are not eligible for this project. -->

26
.github/workflows/macos-latest.yml vendored Normal file
View file

@ -0,0 +1,26 @@
name: Macos-latest
on: [push, pull_request]
jobs:
build-and-test:
strategy:
matrix:
go-version: [1.13, 1.17]
runs-on: macos-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
- name: Build
run: go build cmd/arc/main.go
- name: Test
run: go test -v ./...

26
.github/workflows/ubuntu-latest.yml vendored Normal file
View file

@ -0,0 +1,26 @@
name: Ubuntu-latest
on: [push, pull_request]
jobs:
build-and-test:
strategy:
matrix:
go-version: [1.13, 1.17]
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
- name: Build
run: go build cmd/arc/main.go
- name: Test
run: go test -v ./...

26
.github/workflows/windows-latest.yml vendored Normal file
View file

@ -0,0 +1,26 @@
name: Windows-latest
on: [push, pull_request]
jobs:
build-and-test:
strategy:
matrix:
go-version: [1.13, 1.17]
runs-on: windows-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
- name: Build
run: go build cmd/arc/main.go
- name: Test
run: go test -v ./...