diff options
author | Pacho Ramos <pacho@gentoo.org> | 2016-11-09 11:57:25 +0100 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2016-11-09 11:59:16 +0100 |
commit | 517f783331e1c17e007963be5222369445a9904d (patch) | |
tree | 3db29a0de27c2855e2c572f4ad7f8f567f0decf5 /sys-fs | |
parent | package.mask drop obsolete entries (diff) | |
download | gentoo-517f783331e1c17e007963be5222369445a9904d.tar.gz gentoo-517f783331e1c17e007963be5222369445a9904d.tar.bz2 gentoo-517f783331e1c17e007963be5222369445a9904d.zip |
Remove masked for removal packages
Diffstat (limited to 'sys-fs')
-rw-r--r-- | sys-fs/siefs/Manifest | 1 | ||||
-rw-r--r-- | sys-fs/siefs/files/siefs-0.5-external-vmoconv.patch | 12 | ||||
-rw-r--r-- | sys-fs/siefs/files/siefs-0.5-qa-fixes.patch | 55 | ||||
-rw-r--r-- | sys-fs/siefs/metadata.xml | 5 | ||||
-rw-r--r-- | sys-fs/siefs/siefs-0.5-r2.ebuild | 33 |
5 files changed, 0 insertions, 106 deletions
diff --git a/sys-fs/siefs/Manifest b/sys-fs/siefs/Manifest deleted file mode 100644 index 132b0cf0f8aa..000000000000 --- a/sys-fs/siefs/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST siefs-0.5.tar.gz 112466 SHA256 9e1d829de412446c7b2ce5ba1c9ca1f89206c42e8a510c920907d684e0b7f525 SHA512 6fb4ea82f55b82c5d33f32b569edfd4c6dfe6bb320b1660304306d6808949871216835b960afa2fd1f93eaa73b37085329e09e4773bb3f53c891bade486f1b9d WHIRLPOOL 60bd843affa35e567aa2a1ea618ab3097f4f9f215fee4d37a41dcbdc3d84df2f9a9fb535419c78ae850489360e05a793c46e8cc7a05f4b51dc2f6b203fe8d9a9 diff --git a/sys-fs/siefs/files/siefs-0.5-external-vmoconv.patch b/sys-fs/siefs/files/siefs-0.5-external-vmoconv.patch deleted file mode 100644 index cb9688e24979..000000000000 --- a/sys-fs/siefs/files/siefs-0.5-external-vmoconv.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -Nru siefs-0.5.orig/configure.in siefs-0.5/configure.in ---- siefs-0.5.orig/configure.in 2005-04-04 05:15:31.000000000 +0000 -+++ siefs-0.5/configure.in 2009-03-03 20:55:08.000000000 +0000 -@@ -50,7 +50,7 @@ - AC_MSG_RESULT(${fuseinst}) - AC_SUBST(fuseinst) - --subdirs="siefs converter" -+subdirs="siefs" - AC_SUBST(subdirs) - - AC_DEFINE_UNQUOTED(FUSEINST, "${fuseinst}") diff --git a/sys-fs/siefs/files/siefs-0.5-qa-fixes.patch b/sys-fs/siefs/files/siefs-0.5-qa-fixes.patch deleted file mode 100644 index dbd8a30fb1c7..000000000000 --- a/sys-fs/siefs/files/siefs-0.5-qa-fixes.patch +++ /dev/null @@ -1,55 +0,0 @@ -diff -Nru siefs-0.5.orig/siefs/Makefile.am siefs-0.5/siefs/Makefile.am ---- siefs-0.5.orig/siefs/Makefile.am 2005-04-05 14:36:28.000000000 +0000 -+++ siefs-0.5/siefs/Makefile.am 2009-03-03 20:59:05.000000000 +0000 -@@ -9,8 +9,8 @@ - slink_SOURCES = slink.c obex.c obex.h transport.c transport.h comm.c comm.h \ - crcmodel.c crcmodel.h - --LDADD = $(fuseinst)/lib/libfuse.a -lpthread -+LDADD = -lfuse -lpthread - - install-exec-hook: -- -rm -f /sbin/mount.siefs -- -ln -s $(DESTDIR)$(bindir)/siefs /sbin/mount.siefs -+ -mkdir $(DESTDIR)/sbin/ -+ -ln -s ..$(bindir)/siefs $(DESTDIR)/sbin/mount.siefs -diff -Nru siefs-0.5.orig/siefs/charset.c siefs-0.5/siefs/charset.c ---- siefs-0.5.orig/siefs/charset.c 2005-04-05 17:15:47.000000000 +0300 -+++ siefs-0.5/siefs/charset.c 2007-05-23 14:13:19.000000000 +0300 -@@ -1,4 +1,5 @@ - #include <stdio.h> -+#include <stdlib.h> - #include <string.h> - #include <ctype.h> - -diff -Nru siefs-0.5.orig/siefs/comm.c siefs-0.5/siefs/comm.c ---- siefs-0.5.orig/siefs/comm.c 2005-04-05 02:53:38.000000000 +0300 -+++ siefs-0.5/siefs/comm.c 2007-05-23 14:12:32.000000000 +0300 -@@ -15,6 +15,7 @@ - #include <termios.h> - #include <stdio.h> - #include <stdlib.h> -+#include <string.h> - #include <stdarg.h> - #include <errno.h> - #include "comm.h" -@@ -114,7 +115,7 @@ - if (fd < 0) return -1; - h->fd = fd; - -- bzero(&tio, sizeof(tio)); -+ memset(&tio, 0, sizeof(tio)); - f = commflags(h->speed); - if (f == -1) return -1; - tio.c_cflag = f; -diff -Nru siefs-0.5.orig/siefs/transport.c siefs-0.5/siefs/transport.c ---- siefs-0.5.orig/siefs/transport.c 2005-04-05 18:06:44.000000000 +0300 -+++ siefs-0.5/siefs/transport.c 2007-05-23 14:13:00.000000000 +0300 -@@ -10,6 +10,7 @@ - - #include <stdio.h> - #include <stdlib.h> -+#include <string.h> - #include <errno.h> - #include "comm.h" - #include "crcmodel.h" diff --git a/sys-fs/siefs/metadata.xml b/sys-fs/siefs/metadata.xml deleted file mode 100644 index 6f49eba8f496..000000000000 --- a/sys-fs/siefs/metadata.xml +++ /dev/null @@ -1,5 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> -<!-- maintainer-needed --> -</pkgmetadata> diff --git a/sys-fs/siefs/siefs-0.5-r2.ebuild b/sys-fs/siefs/siefs-0.5-r2.ebuild deleted file mode 100644 index f580d9e6a870..000000000000 --- a/sys-fs/siefs/siefs-0.5-r2.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -inherit eutils autotools - -DESCRIPTION="Siemens FS" -HOMEPAGE="http://chaos.allsiemens.com/siefs" -SRC_URI="http://chaos.allsiemens.com/download/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~ppc x86" -IUSE="" - -DEPEND="sys-fs/fuse" -RDEPEND="${DEPEND} - app-mobilephone/vmoconv" - -src_unpack() { - unpack ${A} - - cd "${S}" - epatch "${FILESDIR}"/${P}-qa-fixes.patch - epatch "${FILESDIR}"/${P}-external-vmoconv.patch - - eautoreconf -} - -src_install() { - emake DESTDIR="${D}" install || die "make install failed" - dodoc README AUTHORS -} |