debian/0000775000000000000000000000000012244211502007161 5ustar debian/rules0000775000000000000000000000027512244211047010251 0ustar #!/usr/bin/make -f %: dh $@ --with autotools_dev override_dh_auto_build: docbook2x-man debian/fusecram.1.docbook dh_auto_build override_dh_auto_clean: rm -f fusecram.1 dh_auto_clean debian/watch0000664000000000000000000000007112244210440010210 0ustar version=3 http://www.ubiz.ru/dm/fusecram-(.*)\.tar\.bz2 debian/changelog0000664000000000000000000000140212244211374011037 0ustar fusecram (20051104-0ubuntu3) trusty; urgency=low * Convert to minimal dh sequencer. * Bump debhelper compat to 9. * Bump Standards-Version to 3.9.4. * Wrap and sort. -- Logan Rosen Sat, 23 Nov 2013 15:38:14 -0500 fusecram (20051104-0ubuntu2) oneiric; urgency=low * regexp.patch: fix regexp that led to FTBFS (LP: #831142). * Use source format 3.0 (quilt). * debian/control: move homepage to its own field. * Fix typos in error message (spelling.patch) and in docbook file. * Bump Standards-Version to 3.9.2. -- Ilya Barygin Thu, 01 Sep 2011 23:49:46 +0400 fusecram (20051104-0ubuntu1) dapper; urgency=low * Initial release. -- Raphaël Pinson Thu, 16 Feb 2006 09:37:26 +0100 debian/compat0000664000000000000000000000000212244210773010370 0ustar 9 debian/fusecram.manpages0000664000000000000000000000001312244210755012506 0ustar fusecram.1 debian/copyright0000664000000000000000000000262112244211000011106 0ustar This package was debianized by Raphaël Pinson on Thu, 16 Feb 2006 09:37:26 +0100. It was downloaded from http://www.ubiz.ru/dm/ Upstream Authors: - All the software : Dmitry Morozhnikov - src/cramfs.c : Dmitry Morozhnikov & Renzo Davoli License: This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, N: MA 02110-1301, USA. On Debian GNU/Linux systems, the complete text of the GNU General Public License can be found in `/usr/share/common-licenses/GPL-2'. Copyright: All the software: Copyright (C) 2005 Dmitry Morozhnikov src/cramfs.c: Copyright (C) 2005 Dmitry Morozhnikov & Renzo Davoli debian/fusecram.1.docbook: Copyright (C) 2006 Raphaël Pinson debian/source/0000775000000000000000000000000012244211501010460 5ustar debian/source/format0000664000000000000000000000001412244210440011667 0ustar 3.0 (quilt) debian/control0000664000000000000000000000133012244211065010565 0ustar Source: fusecram Section: admin Priority: optional Maintainer: Raphaël Pinson Build-Depends: autotools-dev, debhelper (>= 9), docbook-xml, docbook2x, libfuse-dev, libglib2.0-dev, zlib1g-dev Homepage: http://linux.softpedia.com/get/System/Filesystems/fusecram-6748.shtml Standards-Version: 3.9.4 Package: fusecram Architecture: any Depends: fuse-module, ${misc:Depends}, ${shlibs:Depends} Description: FUSE module to mount cramfs image files This package provides a module to mount cramfs filesystem images using FUSE (Filesystem in Userspace). See http://fuse.sourceforge.net for more infos on the FUSE project. debian/fusecram.1.docbook0000664000000000000000000000430612244210440012472 0ustar Raphaël Pinson raphink@ubuntu.com 2006 Raphaël Pinson 2005-02-16 fusecram 1 fusecram utility to mount cramfs filesystem images with FUSE fusecram cramfs_image_file mount_point DESCRIPTION utility to mount cramfs filesystem images with FUSE. Fusecram is a utility to mount cramfs filesystem images using the FUSE module. It is required by the klik system. COPYRIGHT Copyright © 2006 Raphaël Pinson. This manual page was written by Raphaël Pinson <raphink@ubuntu.com> for the Debian system (but may be used by others). Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License, Version 2 or any later version published by the Free Software Foundation. On Debian systems, the complete text of the GNU General Public License can be found in /usr/share/common-licenses/GPL. debian/patches/0000775000000000000000000000000012244211501010607 5ustar debian/patches/series0000664000000000000000000000003412244210440012022 0ustar regexp.patch spelling.patch debian/patches/regexp.patch0000664000000000000000000000115112244210440013121 0ustar Description: Fix regexp that causes build failure. Author: Ilya Barygin Bug-Ubuntu: https://launchpad.net/bugs/831142 --- fusecram-20051104.orig/configure +++ fusecram-20051104/configure @@ -6229,7 +6229,7 @@ echo "${ECHO_T}no" >&6 exit 1 fi gentoo_lt_version="1.5.18" -gentoo_ltmain_version=`grep '^[:space:]*VERSION=' $ltmain | sed -e 's|^[:space:]*VERSION=||'` +gentoo_ltmain_version=`grep '^[[:space:]]*VERSION=' $ltmain | sed -e 's|^[[:space:]]*VERSION=||'` if test "$gentoo_lt_version" != "$gentoo_ltmain_version"; then echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 debian/patches/spelling.patch0000664000000000000000000000132412244210440013446 0ustar Description: Fix a typo. Author: Ilya Barygin --- fusecram-20051104.orig/src/cramfs.c +++ fusecram-20051104/src/cramfs.c @@ -87,10 +87,10 @@ void *cramfs_real_init(char *imagefile) if (bswap_32(context.super.magic) == CRAMFS_MAGIC) { if (*((char *)(&(context.super.magic))) != CRAMFS_MAGIC >> 24) { - fprintf(stderr, "Swap endianess: reading LE file system on a BE machine\n"); + fprintf(stderr, "Swap endianness: reading LE file system on a BE machine\n"); byteswap=LE2BE; } else { - fprintf(stderr, "Swap endianess: reading BE file system on a LE machine\n"); + fprintf(stderr, "Swap endianness: reading BE file system on a LE machine\n"); byteswap=BE2LE; } }