Date: Thursday, April 13, 2023 @ 11:00:47
Author: alerque
Revision: 1445820
archrelease: copy trunk to community-x86_64
Added:
git-warp-time/repos/community-x86_64/PKGBUILD
(from rev 1445819, git-warp-time/trunk/PKGBUILD)
Deleted:
git-warp-time/repos/community-x86_64/PKGBUILD
----------+
PKGBUILD | 84 +++++++++++++++++++++++++++++++------------------------------
1 file changed, 43 insertions(+), 41 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2023-04-13 11:00:38 UTC (rev 1445819)
+++ PKGBUILD 2023-04-13 11:00:47 UTC (rev 1445820)
@@ -1,41 +0,0 @@
-# Maintainer: Caleb Maclennan <[email protected]>
-
-pkgname=git-warp-time
-pkgver=0.4.9
-pkgrel=2
-pkgdesc='reset timestamps of Git repository files to the time of the last
modifying commit'
-arch=(x86_64)
-url="https://github.com/alerque/$pkgname"
-license=(GPL3)
-depends=(libgit2.so)
-makedepends=(cargo
- git
- jq)
-_archive="$pkgname-$pkgver"
-source=("$url/releases/download/v$pkgver/$_archive.tar.xz")
-sha256sums=('c832055b053203de4c8177c638bf143d440366a8f097e46615fc2c6e7f06d1e2')
-
-prepare() {
- cd "$_archive"
- sed Makefile.am -i \
- -e 's/cargo \(build\|install\|test\)/cargo --offline \1/'
- autoreconf
- cargo fetch --locked
-}
-
-build() {
- cd "$_archive"
- CFLAGS+=" -ffat-lto-objects"
- ./configure --prefix /usr
- make
-}
-
-check() {
- cd "$_archive"
- make check
-}
-
-package() {
- cd "$_archive"
- make DESTDIR="$pkgdir" install
-}
Copied: git-warp-time/repos/community-x86_64/PKGBUILD (from rev 1445819,
git-warp-time/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2023-04-13 11:00:47 UTC (rev 1445820)
@@ -0,0 +1,43 @@
+# Maintainer: Caleb Maclennan <[email protected]>
+
+pkgname=git-warp-time
+pkgver=0.4.10
+pkgrel=1
+pkgdesc='reset timestamps of Git repository files to the time of the last
modifying commit'
+arch=(x86_64)
+url="https://github.com/alerque/$pkgname"
+license=(GPL3)
+depends=(gcc-libs
+ glibc
+ libgit2.so)
+makedepends=(cargo
+ git
+ jq)
+_archive="$pkgname-$pkgver"
+source=("$url/releases/download/v$pkgver/$_archive.tar.xz")
+sha256sums=('6c97f5b78d2b332f1958a82848cbddd007ff7d227cd1cc8fa343f3bd02453e20')
+
+prepare() {
+ cd "$_archive"
+ sed Makefile.am -i \
+ -e 's/cargo \(build\|install\|test\)/cargo --offline \1/'
+ autoreconf
+ cargo fetch --locked
+}
+
+build() {
+ cd "$_archive"
+ CFLAGS+=" -ffat-lto-objects"
+ ./configure --prefix /usr --enable-shared
+ make
+}
+
+check() {
+ cd "$_archive"
+ make check
+}
+
+package() {
+ cd "$_archive"
+ make DESTDIR="$pkgdir" install
+}