summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Peukert2024-01-28 00:01:32 +0100
committerDaniel Peukert2024-01-28 00:01:32 +0100
commit2f82d70fc109e60714b41e0973f708d3492b4d3b (patch)
treeb053a50962ef60998893e1b07d1a508f94ca9ff8
parentaf191dc0a5de3b59a5fa241fe06e653e3a78c354 (diff)
downloadaur-2f82d70fc109e60714b41e0973f708d3492b4d3b.tar.gz
Sync pkgbuilds repo with AUR
-rw-r--r--.SRCINFO2
-rw-r--r--.gitignore28
-rw-r--r--PKGBUILD5
3 files changed, 16 insertions, 19 deletions
diff --git a/.SRCINFO b/.SRCINFO
index fa5fd801f5c3..f6d81aa105dc 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -5,7 +5,7 @@ pkgbase = ct-honeybee
url = https://github.com/SSLMate/ct-honeybee
install = ct-honeybee.install
arch = any
- license = custom:CC0
+ license = CC0-1.0
depends = python
source = ct-honeybee-20210914.tar.gz::https://github.com/SSLMate/ct-honeybee/archive/40157b03c9d93d932a92c308097efe0778410dc7.tar.gz
source = ct-honeybee.service
diff --git a/.gitignore b/.gitignore
index 82b3c183d5d4..076d904dd4ac 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,14 +1,14 @@
-# from https://github.com/github/gitignore/blob/master/ArchLinuxPackages.gitignore
-*.tar
-*.tar.*
-*.rpm
-*.jar
-*.exe
-*.msi
-*.zip
-*.tgz
-*.log
-*.log.*
-*.sig
-
-*/
+# Only exclude files from the root of the package repo, as some AUR helpers download sources into the directory of the repo,
+# which causes the gitignore file to apply to them too, which breaks some builds
+# Based on https://github.com/github/gitignore/blob/main/ArchLinuxPackages.gitignore
+/*.tar
+/*.tar.*
+/*.rpm
+/*.jar
+/*.exe
+/*.msi
+/*.zip
+/*.tgz
+/*.log
+/*.log.*
+/*.sig
diff --git a/PKGBUILD b/PKGBUILD
index 7e37aba6d0fa..cda9e4b7c4d7 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -6,7 +6,7 @@ pkgrel='1'
pkgdesc='Pollinates STHs between Certificate Transparency logs and auditors'
arch=('any')
url="https://github.com/SSLMate/$pkgname"
-license=('custom:CC0')
+license=('CC0-1.0')
depends=('python')
install="$pkgname.install"
source=(
@@ -34,7 +34,4 @@ package() {
# Man page
install -Dm644 "$pkgname.1" "$pkgdir/usr/share/man/man1/$pkgname.1"
-
- # License
- install -Dm644 "$_sourcedirectory/COPYING" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}