jlec        15/03/20 15:39:09

  Modified:             metadata.xml ApE-2.0.7-r1.ebuild ChangeLog
  Removed:              ApE-2.0.7.ebuild
  Log:
  Fix tcl/tk slotting;drop old; Bump EAPI
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
B9D4F231BD1558AB!)

Revision  Changes    Path
1.4                  sci-biology/ApE/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/ApE/metadata.xml?rev=1.4&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/ApE/metadata.xml?rev=1.4&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/ApE/metadata.xml?r1=1.3&r2=1.4

Index: metadata.xml
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-biology/ApE/metadata.xml,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- metadata.xml        24 Sep 2011 10:19:57 -0000      1.3
+++ metadata.xml        20 Mar 2015 15:39:09 -0000      1.4
@@ -1,11 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd";>
 <pkgmetadata>
-       <maintainer>
-               <email>[email protected]</email>
-               <name>Jeff Gardner</name>
-       </maintainer>
-       <longdescription lang="en">
+  <maintainer>
+    <email>[email protected]</email>
+    <name>Jeff Gardner</name>
+  </maintainer>
+  <longdescription lang="en">
        </longdescription>
 </pkgmetadata>
-



1.2                  sci-biology/ApE/ApE-2.0.7-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/ApE/ApE-2.0.7-r1.ebuild?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/ApE/ApE-2.0.7-r1.ebuild?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/ApE/ApE-2.0.7-r1.ebuild?r1=1.1&r2=1.2

Index: ApE-2.0.7-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-biology/ApE/ApE-2.0.7-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ApE-2.0.7-r1.ebuild 31 Dec 2012 18:16:06 -0000      1.1
+++ ApE-2.0.7-r1.ebuild 20 Mar 2015 15:39:09 -0000      1.2
@@ -1,56 +1,54 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-biology/ApE/ApE-2.0.7-r1.ebuild,v 1.1 
2012/12/31 18:16:06 je_fro Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-biology/ApE/ApE-2.0.7-r1.ebuild,v 1.2 
2015/03/20 15:39:09 jlec Exp $
+
+EAPI=5
 
-EAPI=2
 inherit eutils
 
-DESCRIPTION="ApE - A Plasmid Editor"
+DESCRIPTION="A Plasmid Editor"
 HOMEPAGE="http://www.biology.utah.edu/jorgensen/wayned/ape/";
 
SRC_URI="http://www.biology.utah.edu/jorgensen/wayned/ape/Download/Linux/ApE_linux_current.zip
 -> ${P}.zip"
 
 LICENSE="ApE"
-RESTRICT="mirror"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE=""
 
 DEPEND="app-arch/unzip"
-RDEPEND="dev-lang/tcl
-        dev-lang/tk"
+RDEPEND="
+       dev-lang/tcl:0
+       dev-lang/tk:0"
 
-src_compile() {
-       echo
-       einfo "Nothing to compile."
-       echo
-}
+RESTRICT="mirror"
 
-src_install() {
+S="${WORKDIR}/ApE Linux/"
+
+src_compile() { :; }
 
-cat >> "${T}/ApE" << "EOF"
-#!/bin/bash
-cmdArgs=""
-
-# AppMain.tcl searches files relative to the directory where it resides.
-# Add absolute path to file here, if necessary.
-for rfpath in "$@"; do
-       afpath="$PWD/${rfpath}"
-       if test -r "${afpath}"; then
-       cmdArgs="${cmdArgs} \"${afpath}\"";
-else
-       cmdArgs="${cmdArgs} \"${rfpath}\"";
-fi
-done
-
-eval exec tclsh "\"/usr/share/ApE-2.0.7/AppMain.tcl\"" "${cmdArgs}"
-EOF
-
-exeinto /usr/bin
-doexe "${T}/ApE"
-insinto "/usr/share/${P}"
-doins -r "${WORKDIR}"/ApE\ Linux/*
-make_desktop_entry ${PN} \
-               ApE \
+src_install() {
+       cat >> "${T}/ApE" <<- "EOF"
+       #!/bin/bash
+       cmdArgs=""
+
+       # AppMain.tcl searches files relative to the directory where it resides.
+       # Add absolute path to file here, if necessary.
+       for rfpath in "$@"; do
+               afpath="$PWD/${rfpath}"
+               if test -r "${afpath}"; then
+                       cmdArgs="${cmdArgs} \"${afpath}\"";
+               else
+                       cmdArgs="${cmdArgs} \"${rfpath}\"";
+               fi
+       done
+
+       eval exec tclsh "\"/usr/share/ApE-2.0.7/AppMain.tcl\"" "${cmdArgs}"
+       EOF
+
+       dobin "${T}/ApE"
+       insinto "/usr/share/${P}"
+       doins -r "${WORKDIR}"/ApE\ Linux/*
+       make_desktop_entry ${PN} ${PN} \
                "/usr/share/${P}/Accessory Files/Icons and 
images/monkey_icon.gif" \
-               "Application;Graphics;Science"
+               "Science"
 }



1.10                 sci-biology/ApE/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/ApE/ChangeLog?rev=1.10&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/ApE/ChangeLog?rev=1.10&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/ApE/ChangeLog?r1=1.9&r2=1.10

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-biology/ApE/ChangeLog,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- ChangeLog   31 Dec 2012 18:16:06 -0000      1.9
+++ ChangeLog   20 Mar 2015 15:39:09 -0000      1.10
@@ -1,6 +1,10 @@
 # ChangeLog for sci-biology/ApE
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-biology/ApE/ChangeLog,v 1.9 2012/12/31 
18:16:06 je_fro Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sci-biology/ApE/ChangeLog,v 1.10 2015/03/20 
15:39:09 jlec Exp $
+
+  20 Mar 2015; Justin Lecher <[email protected]> -ApE-2.0.7.ebuild,
+  ApE-2.0.7-r1.ebuild, metadata.xml:
+  Fix tcl/tk slotting;drop old; Bump EAPI
 
 *ApE-2.0.7-r1 (31 Dec 2012)
 
@@ -42,4 +46,3 @@
 
   09 Jul 2008; Jeff Gardner <[email protected]> +ApE-1.12.ebuild:
   Initial import, thanks to Marek Miller on bug #231231.
-




Reply via email to