diff options
Diffstat (limited to 'libre/libretools')
-rw-r--r-- | libre/libretools/PKGBUILD | 12 | ||||
-rw-r--r-- | libre/libretools/libretools.install | 6 |
2 files changed, 10 insertions, 8 deletions
diff --git a/libre/libretools/PKGBUILD b/libre/libretools/PKGBUILD index 53053197f..672641d63 100644 --- a/libre/libretools/PKGBUILD +++ b/libre/libretools/PKGBUILD @@ -6,17 +6,17 @@ pkgbase=libretools pkgname=(libretools librelib gitget xbs) pkgdesc="Programs for Parabola development" -url="https://projects.parabola.nu/packages/libretools.git/" +url="https://git.parabola.nu/packages/libretools.git/" license=('GPL3' 'GPL2') -pkgver=20170117 +pkgver=20170505 source=(https://repo.parabola.nu/other/$pkgname/$pkgname-$pkgver.tar.gz) -md5sums=('123d336ec6ffa7c8e536efd49f1dd72b') +sha256sums=('f95b1150cd1494decfaa345d7f941a313a4e13a76ca31099a64e2c747d6717e5') pkgrel=1 arch=('any') -makedepends=('emacs>=24.4' ruby-ronn) # emacs --batch is used during the build to process text -checkdepends=(sh-roundup git) +makedepends=(ruby-ronn) +checkdepends=(sh-roundup git expac tokyocabinet) build() { cd "$srcdir/$pkgbase-$pkgver" @@ -72,6 +72,7 @@ package_xbs() { package_libretools() { backup=(etc/libretools.conf etc/libretools.d/chroot.conf + etc/libretools.d/libredbdiff.conf etc/libretools.d/librefetch.conf) install=libretools.install conflicts=(devtools libretools-mips64el) @@ -82,6 +83,7 @@ package_libretools() { "xbs=$pkgver" # `createworkdir`, `librestage` 'pacman>=5.0.1-2.parabola4' 'pacman<5.1' arch-install-scripts # `mkarchroot` uses `pacstrap` + expac # `libredbdiff` make # `librefetch` openssh # `librerelease` rsync # `librerelease` and `makechrootpkg.sh` diff --git a/libre/libretools/libretools.install b/libre/libretools/libretools.install index 260b8587a..759e32dc4 100644 --- a/libre/libretools/libretools.install +++ b/libre/libretools/libretools.install @@ -8,9 +8,9 @@ post_install() { ## arg 1: the new package version ## arg 2: the old package version post_upgrade() { - if [[ "$(vercmp 20160609 "$2")" -eq 1 ]]; then - echo ":: To keep using old chroots, you may need to manually run" - echo " systemd-machine-id-setup --root=/path/to/chroot" + if [[ "$(vercmp 20160505 "$2")" -eq 1 ]]; then + echo ":: The archroot format has changed from v3 to v4;" + echo " you will need delete and re-create your chroots." fi librefetch-install install etc/makepkg.conf } |