Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
gehoern committed Jan 15, 2025
0 parents commit 716cc5a
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
on:
push:
workflow_dispatch:
schedule:
- cron: '0 0 * * *'
jobs:
build:
uses: gardenlinux/package-build/.github/workflows/build.yml@main
with:
release: ${{ github.ref == 'refs/heads/main' }}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.build
10 changes: 10 additions & 0 deletions prepare_source
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
pkg=jinja2
version_orig=3.1.5
version="$version_orig-2"
git_src -b "$version_orig" "https://github.com/pallets/jinja.git"

org_dir="$(mktemp -d)"
trap 'cd / && rm -rf "$org_dir"' EXIT
git clone --depth 1 --recurse-submodules -b "debian/$version" "https://salsa.debian.org/python-team/packages/jinja2.git" "$org_dir"
cp -rp $org_dir/debian $dir/src/debian

0 comments on commit 716cc5a

Please sign in to comment.