Skip to content
Snippets Groups Projects
Commit b8042126 authored by Jakub Ružička's avatar Jakub Ružička
Browse files

examples: new minimal-no-git example

A minimal example apkg project with a single executable bash script.
parent 14e3fb5a
No related branches found
No related tags found
1 merge request!119cache: refactor cache with targets and config
Showing
with 131 additions and 0 deletions
......@@ -10,3 +10,4 @@
/pkg
/site
/knot-dns
/examples/*/pkg
# apkg example project: minimal-no-git
This is a minimal example project with apkg packaging without any VCS.
The resulting packages contain only a single bash script:
/usr/bin/apkg-ex-minimal-no-git
#!/bin/bash
echo "apkg-ex-minimal-no-git OK"
[project]
name = "apkg-test-minimal-no-git"
make_archive_script = "distro/scripts/make-archive.sh"
[cache]
source = false
[apkg]
compat = 2
# Maintainer: Jakub Ružička <jakub.ruzicka@nic.cz>
pkgname=apkg-ex-minimal-no-git
pkgver={{ version }}
pkgrel={{ release }}
pkgdesc="testing package containing a single script"
arch=('any')
url="https://gitlab.nic.cz/packaging/apkg"
license=('GPL3')
depends=('bash')
source=("${pkgname}-v${pkgver}.tar.gz")
sha256sums=('SKIP')
package() {
mkdir -p "$pkgdir/usr/bin"
cp $pkgname-v$pkgver/$pkgname "$pkgdir/usr/bin/$pkgname"
}
apkg-ex-minimal-no-git usr/bin
apkg-ex-minimal-no-git ({{ version }}-{{ release }}) unstable; urgency=medium
* upstream version {{ version }}
-- Jakub Ružička <jakub.ruzicka@nic.cz> {{ now }}
9
Source: apkg-ex-minimal-no-git
Section: debug
Priority: optional
Maintainer: Jakub Ružička <jakub.ruzicka@nic.cz>
Build-Depends: debhelper
Homepage: https://gitlab.nic.cz/packaging/apkg
Package: apkg-ex-minimal-no-git
Architecture: all
Depends: bash
Description: testing package containing a single script
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: apkg-ex-minimal-no-git
Source: https://gitlab.nic.cz/packaging/apkg
Files: *
Copyright: (c) 2020, Jakub Ružička <jakub.ruzicka@nic.cz>
License: GPL-3+
License: GPL-3+
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
.
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
.
On Debian systems, the full text of the GNU General Public License
version 3 can be found in the file `/usr/share/common-licenses/GPL-3'.
#!/usr/bin/make -f
%:
dh $@
3.0 (quilt)
Name: apkg-ex-minimal-no-git
Version: {{ version }}
Release: {{ release }}%{?dist}
Summary: testing package containing a single script
License: GPL 3.0
URL: https://gitlab.nic.cz/packaging/apkg
Source0: %{name}-v%{version}.tar.gz
BuildArch: noarch
Requires: bash
%description
This package is for apkg testing and only contains
a single-line bash script.
%prep
%autosetup -n %{name}-v%{version} -S git
%install
install -D -m 0755 %{name} %{buildroot}%{_bindir}/%{name}
%files
%doc README.md
%{_bindir}/%{name}
%changelog
* {{ now }} Jakub Ružička <jakub.ruzicka@nic.cz> - {{ version }}-{{ release }}
- upstream version {{ version }}
#!/bin/bash
# create archive from current source using git
set -e
VERSION=0.1
OUTPATH=pkg/archives/dev
NAMEVER=apkg-ex-minimal-no-git-v$VERSION
ARCHIVE=$NAMEVER.tar.gz
ARPATH=$OUTPATH/$ARCHIVE
mkdir -p $OUTPATH
tar -czf "$ARPATH" --transform "s#^minimal-no-git#$NAMEVER#" \
--exclude 'pkg' --exclude '*.gz' \
-C .. minimal-no-git
# apkg expects stdout to list archive files
echo $ARPATH
Test-Command: apkg-ex-minimal-no-git
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment