Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Define package dependent #243

Merged
merged 5 commits into from
Nov 8, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -271,6 +271,11 @@ jobs:
build/aur/${{ env.PRODUCT }}*.pkg.tar.zst
if-no-files-found: error

- name: Clean up
run: |
cd build/aur
make clean

snapcraft:
name: Build Snap
runs-on: ubuntu-latest
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,11 @@ jobs:
build/aur/${{ env.PRODUCT }}*.pkg.tar.zst
if-no-files-found: error

- name: Clean up
run: |
cd build/aur
make clean

snapcraft:
name: Build Snap
runs-on: ubuntu-latest
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
- Sign images using cosign
- Replace set-output with recommended env output ([#234](https://github.com/wabarc/wayback/pull/234))
- Specify dependencies for the distribution package ([#243](https://github.com/wabarc/wayback/pull/243))

## [0.18.1] - 2022-10-30

Expand Down
2 changes: 1 addition & 1 deletion build/aur
10 changes: 10 additions & 0 deletions build/debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,13 @@ Description: The wayback is a toolkit for snapshot webpage to
Internet Archive, archive.today, IPFS and beyond.
Homepage: https://github.com/wabarc/wayback
Depends: ${misc:Depends}, ${shlibs:Depends}, adduser
Recommends:
chromium,
libwebp-dev,
youtube-dl,
wget,
nss,
tor
Suggests:
ffmpeg,
you-get
1 change: 1 addition & 0 deletions build/redhat/wayback.spec
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ Source4: CHANGELOG.md
BuildRoot: %{_topdir}/BUILD/%{name}-%{version}-%{release}
BuildArch: x86_64
Requires(pre): shadow-utils
Recommends: chromium, youtube-dl, tor, wget, libwebp, nss

%{?systemd_requires}
BuildRequires: systemd
Expand Down