[arch-commits] Commit in perl-fuse/repos (3 files)
Evangelos Foutras
foutrelis at archlinux.org
Wed Aug 1 12:25:44 UTC 2018
Date: Wednesday, August 1, 2018 @ 12:25:43
Author: foutrelis
Revision: 366779
archrelease: copy trunk to community-staging-x86_64
Added:
perl-fuse/repos/community-staging-x86_64/
perl-fuse/repos/community-staging-x86_64/PKGBUILD
(from rev 366778, perl-fuse/trunk/PKGBUILD)
perl-fuse/repos/community-staging-x86_64/build-fix.patch
(from rev 366778, perl-fuse/trunk/build-fix.patch)
-----------------+
PKGBUILD | 34 ++++++++++++++++++++++++++++++++++
build-fix.patch | 13 +++++++++++++
2 files changed, 47 insertions(+)
Copied: perl-fuse/repos/community-staging-x86_64/PKGBUILD (from rev 366778, perl-fuse/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2018-08-01 12:25:43 UTC (rev 366779)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
+# Maintainer: Tom K <tomk at runbox.com>
+
+pkgname=perl-fuse
+pkgver=0.16.1
+pkgrel=8
+pkgdesc="write filesystems in Perl using FUSE"
+arch=('x86_64')
+url="http://search.cpan.org/dist/Fuse"
+depends=('perl' 'fuse2')
+license=('GPL')
+source=(http://search.cpan.org/CPAN/authors/id/D/DP/DPATES/Fuse-$pkgver.tar.gz
+ build-fix.patch)
+md5sums=('29534329808d8cf42fc78ca26c6fa698'
+ '16d985400e620286efdf4610d78cb5d6')
+
+prepare() {
+ cd "$srcdir"/Fuse-$pkgver
+# patch -p1 <"$srcdir"/build-fix.patch
+}
+
+build() {
+ cd "$srcdir"/Fuse-$pkgver
+ PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+ make
+}
+
+package() {
+ cd "$srcdir"/Fuse-$pkgver
+ make install DESTDIR="$pkgdir"
+ find "$pkgdir" -name '.packlist' -delete
+ find "$pkgdir" -name '*.pod' -delete
+}
Copied: perl-fuse/repos/community-staging-x86_64/build-fix.patch (from rev 366778, perl-fuse/trunk/build-fix.patch)
===================================================================
--- community-staging-x86_64/build-fix.patch (rev 0)
+++ community-staging-x86_64/build-fix.patch 2018-08-01 12:25:43 UTC (rev 366779)
@@ -0,0 +1,13 @@
+diff -wbBur Fuse-0.16/Fuse.xs Fuse-0.16.q/Fuse.xs
+--- Fuse-0.16/Fuse.xs 2013-09-13 06:16:35.000000000 +0400
++++ Fuse-0.16.q/Fuse.xs 2013-10-29 14:38:44.000000000 +0400
+@@ -754,6 +754,9 @@
+
+ int _PLfuse_release (const char *file, struct fuse_file_info *fi) {
+ int rv;
++#ifndef PERL_HAS_64BITINT
++ char *temp;
++#endif
+ int flags = fi->flags;
+ FUSE_CONTEXT_PRE;
+ DEBUGf("release begin\n");
More information about the arch-commits
mailing list