]> Pileus Git - ~andy/sunrise/commitdiff
sys-fs/fuseiso: in gentoo-x86.
authorChristian Ruppert <idl0r@gentoo.org>
Sun, 25 Oct 2009 10:42:06 +0000 (10:42 +0000)
committerChristian Ruppert <idl0r@gentoo.org>
Sun, 25 Oct 2009 10:42:06 +0000 (10:42 +0000)
svn path=/sunrise/; revision=9409

sys-fs/fuseiso/ChangeLog [deleted file]
sys-fs/fuseiso/Manifest [deleted file]
sys-fs/fuseiso/files/fuseiso-20070708-largerthan4gb.patch [deleted file]
sys-fs/fuseiso/fuseiso-20070708-r1.ebuild [deleted file]
sys-fs/fuseiso/metadata.xml [deleted file]

diff --git a/sys-fs/fuseiso/ChangeLog b/sys-fs/fuseiso/ChangeLog
deleted file mode 100644 (file)
index 10c4ccd..0000000
+++ /dev/null
@@ -1,40 +0,0 @@
-# ChangeLog for sys-fs/fuseiso
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: $
-
-  24 Jan 2009; Thomas Sachau (Tommy[D]) <tommy@gentoo.org>
-  fuseiso-20070708-r1.ebuild:
-  Drop EPATCH_OPTS, use simple cd instead
-
-  22 Jan 2009; Christian Ruppert (idl0r) <spooky85@gmail.com>
-  fuseiso-20070708-r1.ebuild:
-  Added missing die statement
-
-  22 Jan 2009; Thomas Fischer (Sparki) <fischer@unix-ag.uni-kl.de>
-  -fuseiso-20070708.ebuild, +fuseiso-20070708-r1.ebuild,
-  +files/fuseiso-20070708-largerthan4gb.patch:
-  New ebuild fixing issues with large isos as described in msg 17 in bug 143307
-
-  13 Aug 2007; Markus Ullmann <jokey@gentoo.org> -fuseiso-20061017.ebuild:
-  Drop old
-
-  25 Jul 2007; Thomas Fischer (Sparki) <fischer@unix-ag.uni-kl.de>
-  +fuseiso-20070708.ebuild:
-  Version bump to 20070708
-
-  03 Nov 2006; Raul Porcel (armin76) <armin76@gmail.com>
-  -fuseiso-20060731.ebuild:
-  drop old
-
-  18 Oct 2006; Thomas Fischer (Sparki) <fischer@unix-ag.uni-kl.de>
-  +fuseiso-20061017.ebuild:
-  Version bump to 20061017
-
-  29 Aug 2006; Thomas Fischer (Sparki) <fischer@unix-ag.uni-kl.de>
-  fuseiso-20060731.ebuild:
-  Added ~amd64 keyword
-
-  12 Aug 2006; Thomas Fischer (Sparki) <fischer@unix-ag.uni-kl.de>
-  +fuseiso-20060731.ebuild, +metadata.xml:
-  New Ebuild for bug 143307
-
diff --git a/sys-fs/fuseiso/Manifest b/sys-fs/fuseiso/Manifest
deleted file mode 100644 (file)
index a6bb557..0000000
+++ /dev/null
@@ -1,5 +0,0 @@
-AUX fuseiso-20070708-largerthan4gb.patch 2396 RMD160 495b7d960370a9e6efa2817717ae0170ad469885 SHA1 445f846d19e0d232f96757de7ef183749704aacc SHA256 5263a3a5f9dd1027836813bf5dd93b2a9af41064a948480ee808886bb69a14f5
-DIST fuseiso-20070708.tar.bz2 239960 RMD160 af5f6ab3ae7c5cd368ce5670182523f0deace73e SHA1 fe142556ad35dd7e5dc31a16183232a6e2da7692 SHA256 8b242e077d66cd20900c59c905ff90b4c934b0613dd5a20facb0b1260ac5fd88
-EBUILD fuseiso-20070708-r1.ebuild 834 RMD160 d7e015207f22b782b9007aec0cb0a884f451ac29 SHA1 cb5ba847487606b0a117a462eb2f8db09f75917f SHA256 53e3ae6c6ad612127d4c5f661f7c082e666b04cce4c0e83ccdd0d739e50646b7
-MISC ChangeLog 1309 RMD160 7c8a11dfcd80bbebd8cd69b220870b9b54890864 SHA1 5357a66e2080a8e88b03d33c2863efbec9770e69 SHA256 cb0e0f3bb987087a14b76ac3d21b82c30718ec3548c18bd3e44ec96ac018c146
-MISC metadata.xml 170 RMD160 645927a396fdc21cdeb089fe42c5397332420ea6 SHA1 ac7f48a14fec325926f9ce1be8fbf1f311b4f2e4 SHA256 d797a2ec6f9dc516c9f9c1a758ee87ad3e8c43101b5dc76c2f872d5bd4639b42
diff --git a/sys-fs/fuseiso/files/fuseiso-20070708-largerthan4gb.patch b/sys-fs/fuseiso/files/fuseiso-20070708-largerthan4gb.patch
deleted file mode 100644 (file)
index 4da0995..0000000
+++ /dev/null
@@ -1,48 +0,0 @@
-Index: src/isofs.c
-===================================================================
---- src/isofs.c        (Revision 5)
-+++ src/isofs.c        (Arbeitskopie)
-@@ -178,7 +178,7 @@
-                         context.data_size = isonum_723(context.pd.logical_block_size);
-                         
-                         if(!context.block_size) {
--                            fprintf(stderr, "init: wrong block data size %d, using default 2048\n", context.data_size);
-+                            fprintf(stderr, "init: wrong block data size %Lu, using default 2048\n", context.data_size);
-                             context.data_size = 2048;
-                         };
-                         
-@@ -324,7 +324,7 @@
-     
-     if(context.block_size != 2048) {
-         // report unusual data block size
--        printf("Data block size: %d\n", context.block_size);
-+        printf("Data block size: %Lu\n", context.block_size);
-     };
-     
-     char buf[129];
-@@ -479,7 +479,7 @@
-     };
-     size_t len = read(context.fd, buf, context.data_size);
-     if(len != context.data_size) {
--        fprintf(stderr, "isofs_read_raw_block: can`t read full block, read only %d bytes from offset %d, %d required; errno %d, message %s\n", 
-+        fprintf(stderr, "isofs_read_raw_block: can`t read full block, read only %d bytes from offset %d, %Lu required; errno %d, message %s\n", 
-             len, (int) off, context.data_size, errno, strerror(errno));
-         fprintf(stderr, "isofs_read_raw_block: huh? reading zeros beyond file end? someone want to save a penny?\n");
-         memset(buf + len, 0, context.data_size - len);
-Index: src/isofs.h
-===================================================================
---- src/isofs.h        (Revision 5)
-+++ src/isofs.h        (Arbeitskopie)
-@@ -38,9 +38,9 @@
-     struct iso_directory_record *root;
-     int file_offset; // offset to begin of useful data (for .nrg files)
-     int id_offset; // offset to CD001 inside file
--    size_t block_size; // raw block size
--    size_t block_offset; // offset from block start to data
--    size_t data_size; // data size inside block 
-+    off_t block_size; // raw block size
-+    off_t block_offset; // offset from block start to data
-+    off_t data_size; // data size inside block 
-     int susp; // parse susp entries
-     int susp_skip; // skip bytes from susp SP entry
-     int joliet_level; // joliet extension level (1, 2 or 3)
diff --git a/sys-fs/fuseiso/fuseiso-20070708-r1.ebuild b/sys-fs/fuseiso/fuseiso-20070708-r1.ebuild
deleted file mode 100644 (file)
index 6e13fda..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-inherit eutils
-
-DESCRIPTION="FUSE module to mount ISO9660 images"
-SRC_URI="http://ubiz.ru/dm/${P}.tar.bz2"
-HOMEPAGE="http://apps.sourceforge.net/mediawiki/fuse/index.php?title=FuseIso"
-
-LICENSE="GPL-2"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-SLOT="0"
-
-DEPEND=">=sys-fs/fuse-2.2.1
-       >=dev-libs/glib-2.4.2"
-RDEPEND=${DEPEND}
-
-src_unpack () {
-       unpack ${A}
-       cd "${S}"
-       # applying patch from Red Hat bug 440436
-       # https://bugzilla.redhat.com/show_bug.cgi?id=440436
-       EPATCH_SINGLE_MSG="Applying bug fix to access content in large ISO files"
-       epatch "${FILESDIR}/${P}-largerthan4gb.patch"
-}
-
-src_install () {
-       emake DESTDIR="${D}" install || die "emake install failed"
-       dodoc AUTHORS ChangeLog NEWS README || die "dodoc failed"
-}
diff --git a/sys-fs/fuseiso/metadata.xml b/sys-fs/fuseiso/metadata.xml
deleted file mode 100644 (file)
index 7e32869..0000000
+++ /dev/null
@@ -1,5 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<herd>maintainer-wanted</herd>
-</pkgmetadata>