slyfox      15/05/30 22:33:27

  Modified:             metadata.xml ChangeLog
  Added:                mtpfs-1.1-r1.ebuild
  Log:
  Fixed crash on double mutex unlock for mtpfs_getattr_real(). Added myself to 
co-maintainers.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
611FF3AA)

Revision  Changes    Path
1.6                  sys-fs/mtpfs/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mtpfs/metadata.xml?rev=1.6&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mtpfs/metadata.xml?rev=1.6&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mtpfs/metadata.xml?r1=1.5&r2=1.6

Index: metadata.xml
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/mtpfs/metadata.xml,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- metadata.xml        17 Mar 2014 07:02:46 -0000      1.5
+++ metadata.xml        30 May 2015 22:33:27 -0000      1.6
@@ -5,6 +5,11 @@
                <email>[email protected]</email>
                <name>Bernard Cafarelli</name>
        </maintainer>
+       <maintainer>
+               <email>[email protected]</email>
+               <name>Sergei Trofimovich</name>
+       </maintainer>
+
        <longdescription>
                MTPfs is a FUSE filesystem that supports reading and writing 
from any
                MTP device, as supported by libmtp. MTPfs includes extra 
features such



1.12                 sys-fs/mtpfs/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mtpfs/ChangeLog?rev=1.12&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mtpfs/ChangeLog?rev=1.12&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mtpfs/ChangeLog?r1=1.11&r2=1.12

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/mtpfs/ChangeLog,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- ChangeLog   17 Mar 2014 07:02:46 -0000      1.11
+++ ChangeLog   30 May 2015 22:33:27 -0000      1.12
@@ -1,6 +1,13 @@
 # ChangeLog for sys-fs/mtpfs
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/mtpfs/ChangeLog,v 1.11 2014/03/17 
07:02:46 xarthisius Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/mtpfs/ChangeLog,v 1.12 2015/05/30 
22:33:27 slyfox Exp $
+
+*mtpfs-1.1-r1 (30 May 2015)
+
+  30 May 2015; Sergei Trofimovich <[email protected]>
+  +files/mtpfs-1.1-fix-mutex-crash.patch, +mtpfs-1.1-r1.ebuild, metadata.xml:
+  Fixed crash on double mutex unlock for mtpfs_getattr_real(). Added myself to
+  co-maintainers.
 
   17 Mar 2014; Kacper Kowalik <[email protected]> metadata.xml:
   Remove myself from metadata.xml



1.1                  sys-fs/mtpfs/mtpfs-1.1-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mtpfs/mtpfs-1.1-r1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mtpfs/mtpfs-1.1-r1.ebuild?rev=1.1&content-type=text/plain

Index: mtpfs-1.1-r1.ebuild
===================================================================
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-fs/mtpfs/mtpfs-1.1-r1.ebuild,v 1.1 
2015/05/30 22:33:27 slyfox Exp $

EAPI=5

inherit eutils

DESCRIPTION="A FUSE filesystem providing access to MTP devices"
HOMEPAGE="http://www.adebenham.com/mtpfs/";
SRC_URI="http://www.adebenham.com/files/mtp/${P}.tar.gz";

LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="debug mad"

RDEPEND="dev-libs/glib:2
        >=media-libs/libmtp-1.1.2
        sys-fs/fuse
        mad? (
                media-libs/libid3tag
                media-libs/libmad
        )"
DEPEND="${RDEPEND}
        virtual/pkgconfig"

DOCS=(AUTHORS NEWS README)

src_prepare() {
        sed -e "/#include <string.h>/ a\
                #include <stdlib.h>" -i mtpfs.h id3read.c || die #implicit

        epatch "${FILESDIR}"/${P}-fix-mutex-crash.patch
}

src_configure() {
        econf $(use_enable debug) \
                $(use_enable mad)
}

pkg_postinst() {
        einfo "To mount your MTP device, issue:"
        einfo "    /usr/bin/mtpfs <mountpoint>"
        echo
        einfo "To unmount your MTP device, issue:"
        einfo "    /usr/bin/fusermount -u <mountpoint>"

        if use debug; then
                echo
                einfo "You have enabled debugging output."
                einfo "Please make sure you run mtpfs with the -d flag."
        fi
}




Reply via email to