update base

This commit is contained in:
Daniel Langbein 2021-05-04 16:52:34 +02:00
parent 8433e10dc1
commit dfe8ceccd2
5 changed files with 48 additions and 3 deletions

View File

@ -69,3 +69,18 @@ install -Dm0644 systemd.preset "$pkgdir"/usr/lib/systemd/system-preset/20-"$pkgn
Example package: Example package:
* [pkg/de-p1st-networkmanager/systemd.preset](pkg/de-p1st-networkmanager/systemd.preset) * [pkg/de-p1st-networkmanager/systemd.preset](pkg/de-p1st-networkmanager/systemd.preset)
* [pkg/de-p1st-networkmanager/PKGBUILD](pkg/de-p1st-networkmanager/PKGBUILD) * [pkg/de-p1st-networkmanager/PKGBUILD](pkg/de-p1st-networkmanager/PKGBUILD)
### Multiple providers
Example:
* Two packages (`de-p1st-test2` and `de-p1st-test3`) provide `de-p1st-test`
* If one installs `de-p1st-test` he can interactively choose one which provider to select:
```
$ sudo pacman -S de-p1st-test
:: There are 2 providers available for de-p1st-test:
:: Repository de-p1st
1) de-p1st-test2 2) de-p1st-test3
Enter a number (default=1):
```

View File

@ -2,7 +2,7 @@
_pkgname=base-efi _pkgname=base-efi
_reponame=arch _reponame=arch
pkgname="de-p1st-$_pkgname" pkgname="de-p1st-$_pkgname"
pkgver=0.1.4 pkgver=0.1.5
pkgrel=1 pkgrel=1
pkgdesc="base packages for headless Arch installation" pkgdesc="base packages for headless Arch installation"
arch=('any') arch=('any')
@ -46,8 +46,8 @@ depends+=('noto-fonts' 'ttf-material-design-icons-git' 'ttf-unifont')
# depends+=('usbutils') # depends+=('usbutils')
# Default Kernel # Kernel + Headers
optdepends=('linux' 'linux-headers') optdepends=('de-p1st-kernel')
# or LTS Kernel # or LTS Kernel
optdepends+=('linux-lts' 'linux-lts-headers') optdepends+=('linux-lts' 'linux-lts-headers')
# CPU vendor specific microcode # CPU vendor specific microcode

View File

@ -0,0 +1,13 @@
# Maintainer: Daniel Langbein <daniel@systemli.org>
_pkgname=de-p1st-kernel-default
_reponame=arch
pkgname="de-p1st-$_pkgname"
pkgver=0.0.3
pkgrel=1
pkgdesc="The Linux kernel, modules and headers"
arch=('any')
url="https://codeberg.org/privacy1st/${_reponame}"
license=('MIT')
depends=('linux' 'linux-headers')
optdepends=()
provides=('de-p1st-kernel') # implicitly provides $pkgname

View File

@ -0,0 +1,13 @@
# Maintainer: Daniel Langbein <daniel@systemli.org>
_pkgname=de-p1st-kernel-lts
_reponame=arch
pkgname="de-p1st-$_pkgname"
pkgver=0.0.3
pkgrel=1
pkgdesc="The LTS Linux kernel, modules and headers"
arch=('any')
url="https://codeberg.org/privacy1st/${_reponame}"
license=('MIT')
depends=('linux-lts' 'linux-lts-headers')
optdepends=()
provides=('de-p1st-kernel') # implicitly provides $pkgname

View File

@ -1 +1,5 @@
depend on de-p1st-theme, xfce4-meta (AUR) depend on de-p1st-theme, xfce4-meta (AUR)
denend on de-p1st-graphic-driver
-> proved by de-p1st-graphic-driver-amd and
de-p1st-graphic-driver-nvidia and
de-p1st-graphic-driver-intel