summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorxiota2024-01-13 09:22:50 -0800
committerxiota2024-01-13 09:22:50 -0800
commit8a331664306e8d4e37fb507880408fce3fd035dd (patch)
tree9fe20b8e8fe9e160e1cb289cadebdb1649facd66
parentec624779fe9c0267f9c892c9577a8b4b5513537d (diff)
downloadaur-8a331664306e8d4e37fb507880408fce3fd035dd.tar.gz
metapackage
-rw-r--r--.SRCINFO15
-rw-r--r--.gitignore4
-rw-r--r--PKGBUILD32
3 files changed, 15 insertions, 36 deletions
diff --git a/.SRCINFO b/.SRCINFO
index f95f8a92f102..a756f9628e8a 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,15 +1,8 @@
pkgbase = intel-ucode-clear
- pkgdesc = Intel cpu microcode and i915 firmware used by Clear Linux
+ pkgdesc = metapackage - migrate to intel-ucode
pkgver = 36610
- pkgrel = 1
- url = https://clearlinux.org/
- arch = x86_64
- provides = intel-ucode
- source = 36610-Manifest.linux-firmware::https://cdn.download.clearlinux.org/update/36610/Manifest.linux-firmware
- source = 36610-00-intel-ucode.cpio.tar::https://cdn.download.clearlinux.org/update/36610/files/6a28f5743ae36a7fa2510b9a7a3563f1b06cbc80e64ab68e8891ac4d064aae2d.tar
- source = 36610-i915-firmware.cpio.xz.tar::https://cdn.download.clearlinux.org/update/36610/files/b1b4a7aa78c572fae88785780538001026cfd7c1c8711284130dee1742f116b4.tar
- sha256sums = 73c2a019bcc6291f8218ea9024f5bff6aede37c7fcd0d6e4e810618e90f77f31
- sha256sums = e17a41addd6af7c7ad72f0c47592788f601aad139e3153403ddb9f8a85a88bd0
- sha256sums = 0a3f3e6c87e7e8323c6cd20a20136781a8ccb859d06a149823f12d60d028ecef
+ pkgrel = 2
+ arch = any
pkgname = intel-ucode-clear
+ depends = intel-ucode
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000000000000..018a3de08144
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,4 @@
+*
+!PKGBUILD
+!.SRCINFO
+!.gitignore
diff --git a/PKGBUILD b/PKGBUILD
index 8e8894f95304..2076b5313650 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,30 +1,12 @@
-# Maintainer: katoitalia
-# Contributor: yw662
-# Contributor: FabioLolix
-# Contributor: aorth for his check-firmware-version.sh
+# Maintainer:
-pkgname=intel-ucode-clear
+_newpkg='intel-ucode'
+pkgname='intel-ucode-clear'
pkgver=36610
-pkgrel=1
-pkgdesc="Intel cpu microcode and i915 firmware used by Clear Linux"
-arch=(x86_64)
-url="https://clearlinux.org/"
-license=()
-provides=(intel-ucode)
-_ucode=6a28f5743ae36a7fa2510b9a7a3563f1b06cbc80e64ab68e8891ac4d064aae2d
-_i915=b1b4a7aa78c572fae88785780538001026cfd7c1c8711284130dee1742f116b4
-source=("36610-Manifest.linux-firmware::https://cdn.download.clearlinux.org/update/36610/Manifest.linux-firmware"
- "36610-00-intel-ucode.cpio.tar::https://cdn.download.clearlinux.org/update/36610/files/6a28f5743ae36a7fa2510b9a7a3563f1b06cbc80e64ab68e8891ac4d064aae2d.tar"
- "36610-i915-firmware.cpio.xz.tar::https://cdn.download.clearlinux.org/update/36610/files/b1b4a7aa78c572fae88785780538001026cfd7c1c8711284130dee1742f116b4.tar")
-sha256sums=("73c2a019bcc6291f8218ea9024f5bff6aede37c7fcd0d6e4e810618e90f77f31"
- "e17a41addd6af7c7ad72f0c47592788f601aad139e3153403ddb9f8a85a88bd0"
- "0a3f3e6c87e7e8323c6cd20a20136781a8ccb859d06a149823f12d60d028ecef")
+pkgrel=2
+pkgdesc="metapackage - migrate to $_newpkg"
+arch=('any')
-build() {
- mv "6a28f5743ae36a7fa2510b9a7a3563f1b06cbc80e64ab68e8891ac4d064aae2d" intel-ucode.cpio
- mv "b1b4a7aa78c572fae88785780538001026cfd7c1c8711284130dee1742f116b4" i915-firmware.cpio.xz
-}
package() {
- install -d "${pkgdir}"/boot
- install -D {intel-ucode.cpio,i915-firmware.cpio.xz} "${pkgdir}"/boot
+ depends=("$_newpkg")
}