Christian Hesse pushed to branch main at Arch Linux / Packaging / Packages /
partclone
Commits:
8de7ee79 by Christian Hesse at 2025-11-12T09:07:18+01:00
split off prepare() function
- - - - -
062ad5de by Christian Hesse at 2025-11-12T09:44:00+01:00
just run autoreconf
- - - - -
c4547b0c by Christian Hesse at 2025-11-12T09:44:50+01:00
use SPDX identifier for license
- - - - -
022c634e by Christian Hesse at 2025-11-12T09:46:28+01:00
update dependencies
- - - - -
95894d79 by Christian Hesse at 2025-11-12T09:47:36+01:00
upgpkg: 0.3.39-1: new upstream release
- - - - -
2 changed files:
- .SRCINFO
- PKGBUILD
Changes:
=====================================
.SRCINFO
=====================================
@@ -1,13 +1,19 @@
pkgbase = partclone
pkgdesc = Utilities to save and restore used blocks on a partition
- pkgver = 0.3.38
- pkgrel = 2
+ pkgver = 0.3.39
+ pkgrel = 1
url = https://partclone.org
arch = x86_64
- license = GPL
- depends = ntfs-3g
+ license = GPL-2.0-or-later
+ depends = e2fsprogs
+ depends = glibc
+ depends = ncurses
depends = nilfs-utils
- source =
partclone-0.3.38.tar.gz::https://github.com/Thomas-Tsai/partclone/archive/0.3.38.tar.gz
- sha256sums =
5afd6f558e83026e9270396394bc95308fbe1543f8b963a4fb5331bc7b0ed9d9
+ depends = ntfs-3g
+ depends = openssl
+ depends = util-linux-libs
+ depends = xxhash
+ source =
partclone-0.3.39.tar.gz::https://github.com/Thomas-Tsai/partclone/archive/0.3.39.tar.gz
+ sha256sums =
1094554e4eb0d781b01da498b0ee1a93189c82981bdd6c1aa8c100ecf162fa78
pkgname = partclone
=====================================
PKGBUILD
=====================================
@@ -5,19 +5,23 @@
# Contributor: Ivan Sichmann Freitas
pkgname=partclone
-pkgver=0.3.38
-pkgrel=2
+pkgver=0.3.39
+pkgrel=1
pkgdesc="Utilities to save and restore used blocks on a partition"
arch=('x86_64')
url="https://partclone.org"
-license=('GPL')
-depends=('ntfs-3g' 'nilfs-utils')
+license=('GPL-2.0-or-later')
+depends=('e2fsprogs' 'glibc' 'ncurses' 'nilfs-utils' 'ntfs-3g' 'openssl'
'util-linux-libs' 'xxhash')
source=($pkgname-$pkgver.tar.gz::https://github.com/Thomas-Tsai/partclone/archive/$pkgver.tar.gz)
-sha256sums=('5afd6f558e83026e9270396394bc95308fbe1543f8b963a4fb5331bc7b0ed9d9')
+sha256sums=('1094554e4eb0d781b01da498b0ee1a93189c82981bdd6c1aa8c100ecf162fa78')
+
+prepare() {
+ cd $pkgname-$pkgver
+ autoreconf -fi
+}
build() {
cd $pkgname-$pkgver
- ./autogen
./configure \
bashcompletiondir='/usr/share/bash-completion/completions' \
--prefix=/usr \
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/partclone/-/compare/751d308a10091e7a480e89812ab0ad04e5baf10b...95894d79315c2616ed215e8bc25361c3199c00de
--
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/partclone/-/compare/751d308a10091e7a480e89812ab0ad04e5baf10b...95894d79315c2616ed215e8bc25361c3199c00de
You're receiving this email because of your account on gitlab.archlinux.org.