debian/0000775000000000000000000000000012277727123007202 5ustar debian/copyright0000664000000000000000000000323712053120426011123 0ustar This work was packaged for Debian by: NIIBE Yutaka on Wed, 24 Feb 2010 13:21:18 +0900 It was downloaded from: http://sourceforge.net/projects/gfarm/files/ Upstream Author(s): Osamu Tatebe Copyright: Copyright (c) 2007-2009 Osamu Tatebe. All Rights Reserved. License: The authors hereby grant permission to use, copy, modify, and distribute this software and its documentation for any purpose, provided that existing copyright notices are retained in all copies and that this notice is included verbatim in any distributions. The name of AIST may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY DERIVATIVES THEREOF, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. SUCH DAMAGE. The Debian packaging was done by NIIBE Yutaka and the works are put into public domain. debian/README.Debian0000664000000000000000000000062112053120426011223 0ustar gfarm2fs for Debian ------------------- This is memo for Debian maintainers. I write some issues to solve. (1) Libraries link Links to -lrt, -lcrypto, and -ldl are not needed. These links, -lcrypto comes from libgfarm.la and -lrt and -ldl come from libfuse.la. We need to change configure to ignore dependency_libs in *.la... -- NIIBE Yutaka , Thu, 11 Mar 2010 09:35:00 +0900 debian/gfarm2fs.10000664000000000000000000000201312053120426010750 0ustar .\" Hey, EMACS: -*- nroff -*- .\" First parameter, NAME, should be all caps .\" Second parameter, SECTION, should be 1-8, maybe w/ subsection .\" other parameters are allowed: see man(7), man(1) .TH GFARM2FS 1 "December 30, 2010" .\" Please adjust this date whenever revising the manpage. .\" .\" Some roff macros, for reference: .\" .nh disable hyphenation .\" .hy enable hyphenation .\" .ad l left justify .\" .ad b justify to both left and right margins .\" .nf disable filling .\" .fi enable filling .\" .br insert line break .\" .sp insert n+1 empty lines .\" for manpage-specific macros, see man(7) .SH NAME gfarm2fs \- a FUSE filesystem to mount the Gfarm file system .SH SYNOPSIS .B gfarm2fs .RI mountpoint [ FUSE options ] .SH DESCRIPTION .B gfarm2fs mounts the Gfarm file system at the specified mount point. .SH ENVIRONMENT .B GFARM_CONFIG_FILE specifies the Gfarm configuration file. .SH AUTHOR Osamu Tatebe debian/gfarm2fs.manpages0000664000000000000000000000002212053120426012401 0ustar debian/gfarm2fs.1 debian/changelog0000664000000000000000000000325112277727117011060 0ustar gfarm2fs (1.2.2-1.1ubuntu3) trusty; urgency=low * Use autotools-dev for arm64. -- Daniel T Chen Sat, 15 Feb 2014 13:13:24 -0500 gfarm2fs (1.2.2-1.1ubuntu2) saucy; urgency=low * Depend on the new package name: fuse-utils is renamed to fuse. -- Dmitrijs Ledkovs Tue, 28 May 2013 16:21:03 +0100 gfarm2fs (1.2.2-1.1ubuntu1) raring; urgency=low * Merge from Debian. Remaining changes: - Add implicit_ptr_conv.patch to fix FTBFS on [!i386]. (LP: #837317) -- Oussama Bounaim Tue, 20 Nov 2012 20:24:02 +0100 gfarm2fs (1.2.2-1.1) unstable; urgency=low * NMU. * Drop *xattr support in kFreeBSD. Closes: #619677 -- Steve McIntyre <93sam@debian.org> Sat, 03 Mar 2012 17:03:52 +0000 gfarm2fs (1.2.2-1ubuntu1) oneiric; urgency=low * Add implicit_ptr_conv.patch to fix FTBFS on [!i386]. (LP: #837317) -- Daniel T Chen Mon, 19 Sep 2011 03:06:52 -0400 gfarm2fs (1.2.2-1) unstable; urgency=low * New upstream release. * debian/control (Standards-Version): Updated to 3.9.1. * debian/gfarm2fs.1, debian/gfarm2fs.manpages: New. -- NIIBE Yutaka Tue, 15 Feb 2011 10:51:57 +0900 gfarm2fs (1.2.1-1) unstable; urgency=low * New upstream release. -- NIIBE Yutaka Mon, 26 Jul 2010 09:26:23 +0900 gfarm2fs (1.2.0.1-1) unstable; urgency=low * New upstream release. * debian/README.source: Removed. * debian/watch: New. -- NIIBE Yutaka Tue, 29 Jun 2010 15:33:21 +0900 gfarm2fs (1.1.1-1) unstable; urgency=low * Initial release (Closes: #570912). -- NIIBE Yutaka Wed, 24 Feb 2010 13:21:18 +0900 debian/docs0000664000000000000000000000000012053120426010024 0ustar debian/patches/0000775000000000000000000000000012053120475010616 5ustar debian/patches/disable_xattr_kfreebsd0000664000000000000000000000225312053120426015231 0ustar Description: Disable xattr support on kFreeBSD On Debian/kFreeBSD, the xattr syscalls are just stubbed out anyway. Disable using them. See #607573 and #619677 Author: Steve McIntyre <93sam@debian.org> Bug-Debian: http://bugs.debian.org/619677 --- The information above should follow the Patch Tagging Guidelines, please checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here are templates for supplementary fields that you might want to add: Origin: , Bug: Bug-Debian: http://bugs.debian.org/ Bug-Ubuntu: https://launchpad.net/bugs/ Forwarded: Reviewed-By: Last-Update: --- gfarm2fs-1.2.2.orig/gfarm2fs.c +++ gfarm2fs-1.2.2/gfarm2fs.c @@ -21,6 +21,11 @@ #include #include #include +/* On Debian/kFreeBSD, the xattr syscalls are just stubbed out anyway. + Disable using them. See #607573 and #619677 */ +#ifdef __FreeBSD_kernel__ +#undef HAVE_SYS_XATTR_H +#endif #ifdef HAVE_SYS_XATTR_H #include #endif debian/patches/series0000664000000000000000000000005712053120426012031 0ustar implicit_ptr_conv.patch disable_xattr_kfreebsd debian/patches/implicit_ptr_conv.patch0000664000000000000000000000152612053120426015363 0ustar Index: gfarm2fs-1.2.2/gfarm2fs.c =================================================================== --- gfarm2fs-1.2.2.orig/gfarm2fs.c 2011-09-19 03:06:42.000000000 -0400 +++ gfarm2fs-1.2.2/gfarm2fs.c 2011-09-19 03:05:56.000000000 -0400 @@ -41,6 +41,7 @@ #undef PACKAGE_TARNAME #undef PACKAGE_VERSION #include +#include #include #include #include Index: gfarm2fs-1.2.2/replicate.c =================================================================== --- gfarm2fs-1.2.2.orig/replicate.c 2011-09-19 03:06:42.000000000 -0400 +++ gfarm2fs-1.2.2/replicate.c 2011-09-19 03:06:33.000000000 -0400 @@ -36,6 +36,7 @@ #undef PACKAGE_TARNAME #undef PACKAGE_VERSION #include +#include #include #include "gfarm2fs_msg_enums.h" debian/watch0000664000000000000000000000007012053120426010211 0ustar version=3 http://sf.net/gfarm/gfarm2fs-(1\..*)\.tar\.gz debian/control0000664000000000000000000000120712151145547010600 0ustar Source: gfarm2fs Section: net Priority: extra Maintainer: Ubuntu Developers XSBC-Original-Maintainer: NIIBE Yutaka Build-Depends: quilt (>= 0.46-7~), debhelper (>= 7), autotools-dev, libgfarm-dev, libfuse-dev, libssl-dev Standards-Version: 3.9.1 Uploaders: Osamu Tatebe DM-Upload-Allowed: yes Homepage: http://datafarm.apgrid.org/ Package: gfarm2fs Architecture: any Recommends: fuse Depends: ${shlibs:Depends}, ${misc:Depends} Description: FUSE program to mount the Gfarm file system gfarm2fs is a FUSE program which gives you access to the Gfarm file system. debian/source/0000775000000000000000000000000012053120475010467 5ustar debian/source/format0000664000000000000000000000001412053120426011671 0ustar 3.0 (quilt) debian/compat0000664000000000000000000000000212053120426010361 0ustar 7 debian/rules0000775000000000000000000000072412277727102010262 0ustar #!/usr/bin/make -f # -*- makefile -*- # Sample debian/rules that uses debhelper. # This file was originally written by Joey Hess and Craig Small. # As a special exception, when this file is copied by dh-make into a # dh-make output file, you may use that output file without restriction. # This special exception was added by Craig Small in version 0.37 of dh-make. # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 %: dh $@ --with quilt,autotools-dev