git.lirion.de

Of git, get, and gud

summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--CHANGELOG.md28
-rw-r--r--Makefile14
-rw-r--r--arch/Makefile4
-rw-r--r--arch/PKGBUILD10
5 files changed, 50 insertions, 7 deletions
diff --git a/.gitignore b/.gitignore
index 0fadfd5..ebd8a2f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,3 +2,4 @@
!/.gitignore
!/Makefile
!/arch
+!/CHANGELOG.md
diff --git a/CHANGELOG.md b/CHANGELOG.md
new file mode 100644
index 0000000..cfea7c3
--- /dev/null
+++ b/CHANGELOG.md
@@ -0,0 +1,28 @@
+## [0.7.4-2] - 2026-03-08
+
+### Bug Fixes
+
+- Clean-pkg only removed a certain version
+
+### Documentation
+
+- Including Changelog
+## [0.7.4] - 2026-02-28
+
+### Other
+
+- Raise version to 0.7.4
+## [0.7.3] - 2025-06-15
+
+### Other
+
+- Raise version to 0.7.3
+## [0.6.2] - 2025-01-09
+
+### Other
+
+- InComm
+- +.gitignore
+- Move files to OS specific folder
+- +common Makefile
+- Raise version to 0.6.2
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..e529c20
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,14 @@
+.PHONY: arch arch-clean arch-pkgclean
+
+all: arch
+
+clean: arch-clean
+
+arch:
+ $(MAKE) -C ./arch
+
+arch-clean:
+ $(MAKE) -C ./arch clean
+
+arch-pkgclean:
+ $(MAKE) -C ./arch clean-pkg
diff --git a/arch/Makefile b/arch/Makefile
index 0e463fe..55ff65b 100644
--- a/arch/Makefile
+++ b/arch/Makefile
@@ -1,6 +1,6 @@
all: makepkg
-makepkg: makepkg-x86_64 makepkg-arm64
+makepkg: makepkg_x86_64 makepkg_arm64
makepkg_x86_64:
CARCH="x86_64" /usr/bin/makepkg --sign
@@ -11,7 +11,7 @@ makepkg_arm64:
clean: clean-pkg clean-pkgdir clean-srcdir clean-src
clean-pkg:
- rm -vf goreleaser-chglog-bin-0.6.1-1-{x86_64,arm64}.pkg.tar.zst{,.sig}
+ rm -vf goreleaser-chglog-bin-0.*-{x86_64,arm64}.pkg.tar.zst{,.sig}
clean-pkgdir:
rm -vfr pkg/
diff --git a/arch/PKGBUILD b/arch/PKGBUILD
index d56d214..c00af20 100644
--- a/arch/PKGBUILD
+++ b/arch/PKGBUILD
@@ -1,6 +1,6 @@
# vim:syntax=PKGBUILD:ts=4
pkgname=goreleaser-chglog-bin
-pkgver=0.6.1
+pkgver=0.7.4
pkgrel=1
pkgdesc='A simple to use, single-binary changelog generator with reproducible results'
arch=( 'x86_64' 'arm64' )
@@ -16,13 +16,13 @@ conflicts=( 'goreleaser-chglog' )
#replaces=()
options=( '!debug' )
#backup=()
-source_x86_64=( 'https://github.com/goreleaser/chglog/releases/download/v0.6.1/chglog_Linux_x86_64.tar.gz' )
+source_x86_64=( "https://github.com/goreleaser/chglog/releases/download/v${pkgver}/chglog_Linux_x86_64.tar.gz" )
b2sums_x86_64=(
- '537a0d6d39d45dfa7c4a8b37878e742aabc40cac23883ee9c56fa1961101abed3ac744a328977cd930779dbd382a134bde95ccbcfd712b2e99f462b808217e93'
+ 'dde024758ce3cffc421c72a9b9420b8d884d51bc976982655d15227ec821bfb88229df7e64fb68b9e858458d041353f8584a571921b88d4849de4bd1b8a92fe4'
)
-source_arm64=( 'https://github.com/goreleaser/chglog/releases/download/v0.6.1/chglog_Linux_arm64.tar.gz' )
+source_arm64=( "https://github.com/goreleaser/chglog/releases/download/v${pkgver}/chglog_Linux_arm64.tar.gz" )
b2sums_arm64=(
- '504fe0d9217080b1b68ac9cff61741f5c7a2cb289eac4dcafd2e9c53921c8fc48f8cc558f39747180f91eec203c1f6e57b73ef30a1b731735611024e75f05038'
+ '725ac464b30a84d2ffb47800656cadf41a1e19474b333f4502a679f453dc20e3c73b43f7c171533303a4b1dae92ae792ed8118c158bc42ac6ea6fb068af61e44'
)
package() {