williamh    14/12/30 06:54:19

  Modified:             ChangeLog
  Added:                udisks-2.1.4.ebuild
  Log:
  Version bump approved by ssuominen
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
0x30C46538)

Revision  Changes    Path
1.175                sys-fs/udisks/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/udisks/ChangeLog,v
retrieving revision 1.174
retrieving revision 1.175
diff -u -r1.174 -r1.175
--- ChangeLog   6 Dec 2014 20:19:20 -0000       1.174
+++ ChangeLog   30 Dec 2014 06:54:19 -0000      1.175
@@ -1,6 +1,11 @@
 # ChangeLog for sys-fs/udisks
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/udisks/ChangeLog,v 1.174 2014/12/06 
20:19:20 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/udisks/ChangeLog,v 1.175 2014/12/30 
06:54:19 williamh Exp $
+
+*udisks-2.1.4 (30 Dec 2014)
+
+  30 Dec 2014; William Hubbs <willi...@gentoo.org> +udisks-2.1.4.ebuild:
+  Version bump approved by ssuominen
 
   06 Dec 2014; Mikle Kolyada <zlog...@gentoo.org> udisks-1.0.5-r1.ebuild,
   udisks-1.0.5.ebuild, udisks-2.1.3.ebuild:



1.1                  sys-fs/udisks/udisks-2.1.4.ebuild

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

Index: udisks-2.1.4.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-fs/udisks/udisks-2.1.4.ebuild,v 1.1 
2014/12/30 06:54:19 williamh Exp $

EAPI=5
inherit bash-completion-r1 eutils linux-info systemd udev

DESCRIPTION="Daemon providing interfaces to work with storage devices"
HOMEPAGE="http://www.freedesktop.org/wiki/Software/udisks";
SRC_URI="http://udisks.freedesktop.org/releases/${P}.tar.bz2";

LICENSE="GPL-2"
SLOT="2"
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86"
IUSE="debug cryptsetup +gptfdisk +introspection selinux systemd"

COMMON_DEPEND=">=dev-libs/glib-2.32
        >=dev-libs/libatasmart-0.19
        >=sys-auth/polkit-0.110
        virtual/acl
        virtual/libgudev:=
        virtual/udev
        introspection? ( >=dev-libs/gobject-introspection-1.30 )
        systemd? ( sys-apps/systemd )"
# gptfdisk -> src/udiskslinuxpartition.c -> sgdisk (see also #412801#c1)
# util-linux -> mount, umount, swapon, swapoff (see also #403073)
RDEPEND="${COMMON_DEPEND}
        >=sys-apps/util-linux-2.20.1-r2
        >=sys-block/parted-3
        virtual/eject
        cryptsetup? (
                sys-fs/cryptsetup[udev(+)]
                sys-fs/lvm2[udev(+)]
                )
        gptfdisk? ( >=sys-apps/gptfdisk-0.8 )
        selinux? ( sec-policy/selinux-devicekit )
"
DEPEND="${COMMON_DEPEND}
        app-text/docbook-xsl-stylesheets
        dev-libs/libxslt
        >=dev-util/gdbus-codegen-2.32
        dev-util/intltool
        >=sys-kernel/linux-headers-3.1
        virtual/pkgconfig"

QA_MULTILIB_PATHS="usr/lib/udisks2/udisksd"

DOCS="AUTHORS HACKING NEWS README"

pkg_setup() {
        # Listing only major arch's here to avoid tracking kernel's defconfig
        if use amd64 || use arm || use ppc || use ppc64 || use x86; then
                CONFIG_CHECK="~!IDE" #319829
                CONFIG_CHECK+=" ~TMPFS_POSIX_ACL" #412377
                CONFIG_CHECK+=" ~SWAP" # 
http://forums.gentoo.org/viewtopic-t-923640.html
                CONFIG_CHECK+=" ~NLS_UTF8" #425562
                kernel_is lt 3 10 && CONFIG_CHECK+=" ~USB_SUSPEND" #331065, 
#477278
                linux-info_pkg_setup
        fi
}

src_prepare() {
        use systemd || { sed -i -e 's:libsystemd-login:&disable:' configure || 
die; }

        epatch_user
}

src_configure() {
        econf \
                --localstatedir="${EPREFIX}"/var \
                --disable-static \
                $(use_enable debug) \
                --disable-gtk-doc \
                $(use_enable introspection) \
                --with-html-dir="${EPREFIX}"/usr/share/doc/${PF}/html \
                --with-udevdir="$(get_udevdir)" \
                "$(systemd_with_unitdir)"
}

src_install() {
        default
        prune_libtool_files
        keepdir /var/lib/udisks2 #383091

        rm -rf "${ED}"/usr/share/bash-completion
        dobashcomp data/completions/udisksctl

        local htmldir=udisks2
        if [[ -d ${ED}/usr/share/doc/${PF}/html/${htmldir} ]]; then
                dosym /usr/share/doc/${PF}/html/${htmldir} 
/usr/share/gtk-doc/html/${htmldir}
        fi
}

pkg_postinst() {
        mkdir -p "${EROOT}"/run #415987

        # See pkg_postinst() of >=sys-apps/baselayout-2.1-r1. Keep in sync?
        if ! grep -qs "^tmpfs.*/run " "${EROOT}"/proc/mounts ; then
                echo
                ewarn "You should reboot the system now to get /run mounted 
with tmpfs!"
        fi
}




Reply via email to