radhermit    14/10/31 01:40:49

  Modified:             metadata.xml ChangeLog
  Added:                recutils-1.7.ebuild
  Log:
  Version bump, add uuid use flag.
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
4AB3E85B4F064CA3)

Revision  Changes    Path
1.2                  dev-db/recutils/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/recutils/metadata.xml?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/recutils/metadata.xml?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/recutils/metadata.xml?r1=1.1&r2=1.2

Index: metadata.xml
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/recutils/metadata.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- metadata.xml        15 Jan 2012 02:16:45 -0000      1.1
+++ metadata.xml        31 Oct 2014 01:40:49 -0000      1.2
@@ -6,7 +6,8 @@
                <name>Tim Harder</name>
        </maintainer>
        <use>
-               <flag name="mdb">Build the mdb2rec utility</flag>
                <flag name="curl">Enable support for remote descriptors using 
libcurl</flag>
+               <flag name="mdb">Build the mdb2rec utility</flag>
+               <flag name="uuid">Enable support for uuid types</flag>
        </use>
 </pkgmetadata>



1.5                  dev-db/recutils/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/recutils/ChangeLog?rev=1.5&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/recutils/ChangeLog?rev=1.5&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/recutils/ChangeLog?r1=1.4&r2=1.5

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/recutils/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog   1 Mar 2014 22:27:01 -0000       1.4
+++ ChangeLog   31 Oct 2014 01:40:49 -0000      1.5
@@ -1,6 +1,12 @@
 # ChangeLog for dev-db/recutils
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/recutils/ChangeLog,v 1.4 2014/03/01 
22:27:01 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/recutils/ChangeLog,v 1.5 2014/10/31 
01:40:49 radhermit Exp $
+
+*recutils-1.7 (31 Oct 2014)
+
+  31 Oct 2014; Tim Harder <[email protected]> +recutils-1.7.ebuild,
+  +files/recutils-1.7-automagic.patch, metadata.xml:
+  Version bump, add uuid use flag.
 
   01 Mar 2014; Michał Górny <[email protected]> recutils-1.5.ebuild:
   Update libgcrypt dep to use slot :0.



1.1                  dev-db/recutils/recutils-1.7.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/recutils/recutils-1.7.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/recutils/recutils-1.7.ebuild?rev=1.1&content-type=text/plain

Index: recutils-1.7.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/recutils/recutils-1.7.ebuild,v 1.1 
2014/10/31 01:40:49 radhermit Exp $

EAPI=5

inherit autotools eutils elisp-common

DESCRIPTION="Tools and libraries to access human-editable, plain text databases"
HOMEPAGE="http://www.gnu.org/software/recutils/";
SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"

LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="crypt curl emacs mdb nls static-libs +uuid"

RDEPEND="sys-libs/readline
        crypt? (
                dev-libs/libgcrypt:0=
                dev-libs/libgpg-error
        )
        curl? ( net-misc/curl )
        emacs? (
                app-emacs/org-mode
                virtual/emacs
        )
        mdb? (
                app-office/mdbtools
                dev-libs/glib:2
        )
        nls? ( virtual/libintl )
        uuid? ( sys-apps/util-linux )"
DEPEND="${RDEPEND}
        virtual/pkgconfig
        nls? ( sys-devel/gettext )"

SITEFILE="50${PN}-gentoo.el"

src_prepare() {
        epatch "${FILESDIR}"/${P}-automagic.patch

        # don't unconditionally install emacs files
        sed -i "/^dist_lisp_DATA/d" etc/Makefile.am || die

        eautoreconf
}

src_configure() {
        econf \
                $(use_enable crypt encryption) \
                $(use_enable curl) \
                $(use_enable mdb) \
                $(use_enable nls) \
                $(use_enable uuid) \
                $(use_enable static-libs static)
}

src_compile() {
        default

        if use emacs ; then
                elisp-compile etc/*.el || die
        fi
}

src_test() {
        # tests have parallel issues
        emake -j1 check
}

src_install() {
        default
        prune_libtool_files

        if use emacs ; then
                elisp-install ${PN} etc/*.{el,elc} || die
                elisp-site-file-install "${FILESDIR}"/${SITEFILE} || die
        fi
}

pkg_postinst() {
        use emacs && elisp-site-regen
}

pkg_postrm() {
        use emacs && elisp-site-regen
}




Reply via email to