mgorny      15/06/12 20:30:10

  Modified:             ChangeLog
  Added:                txt2tags-2.6-r1.ebuild
  Log:
  Bump to EAPI=5. python-single-r1 to the rescue.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  Changes    Path
1.52                 app-text/txt2tags/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/txt2tags/ChangeLog?rev=1.52&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/txt2tags/ChangeLog?rev=1.52&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/txt2tags/ChangeLog?r1=1.51&r2=1.52

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-text/txt2tags/ChangeLog,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -r1.51 -r1.52
--- ChangeLog   9 Mar 2015 19:15:33 -0000       1.51
+++ ChangeLog   12 Jun 2015 20:30:10 -0000      1.52
@@ -1,6 +1,11 @@
 # ChangeLog for app-text/txt2tags
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/txt2tags/ChangeLog,v 1.51 
2015/03/09 19:15:33 rafaelmartins Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/txt2tags/ChangeLog,v 1.52 
2015/06/12 20:30:10 mgorny Exp $
+
+*txt2tags-2.6-r1 (12 Jun 2015)
+
+  12 Jun 2015; Michał Górny <mgo...@gentoo.org> +txt2tags-2.6-r1.ebuild:
+  Bump to EAPI=5. python-single-r1 to the rescue.
 
   09 Mar 2015; Rafael G. Martins <rafaelmart...@gentoo.org> metadata.xml:
   adopted package.



1.1                  app-text/txt2tags/txt2tags-2.6-r1.ebuild

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

Index: txt2tags-2.6-r1.ebuild
===================================================================
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/txt2tags/txt2tags-2.6-r1.ebuild,v 
1.1 2015/06/12 20:30:10 mgorny Exp $

EAPI=5

PYTHON_COMPAT=( python2_7 )
PYTHON_REQ_USE="tk?"

inherit eutils elisp-common python-single-r1

DESCRIPTION="A tool for generating marked up documents (HTML, SGML, ...) from a 
plain text file with markup"
HOMEPAGE="http://txt2tags.org/";
SRC_URI="http://${PN}.googlecode.com/files/${P}.tgz";

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris"
IUSE="emacs tk vim-syntax"

DEPEND="${PYTHON_DEPS}
        tk? ( dev-lang/tk )
        vim-syntax? (
                || (
                        app-editors/vim
                        app-editors/gvim
                )
        )
        emacs? ( virtual/emacs )"

RDEPEND="${DEPEND}"

REQUIRED_USE="${PYTHON_REQUIRED_USE}"

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

src_compile() {
        if use emacs; then
                elisp-compile extras/txt2tags-mode.el || die "elisp-compile 
failed"
        fi
}

src_install() {
        dobin txt2tags

        dodoc README ChangeLog*
        dodoc doc/*.{pdf,t2t}
        dodoc -r samples extras
        newman doc/manpage.man txt2tags.1

        # make .po files
        for pofile in "${S}"/po/*.po; do
                msgfmt -o ${pofile%%.po}.mo ${pofile}
        done
        domo po/*.mo

        # emacs support
        if use emacs; then
                elisp-install ${PN} extras/txt2tags-mode.{el,elc}
                elisp-site-file-install "${FILESDIR}/${SITEFILE}"
        fi

        if use vim-syntax; then
                insinto /usr/share/vim/vimfiles/syntax/
                doins extras/txt2tags.vim || die

                echo 'au BufNewFile,BufRead *.t2t set ft=txt2tags' > 
"${T}/${PN}.vim"
                insinto /usr/share/vim/vimfiles/ftdetect
                doins "${T}/${PN}.vim" || die
        fi

        python_fix_shebang "${D}"
}

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

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




Reply via email to