public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-perl/Eidetic: Eidetic-2.003003-r1.ebuild ChangeLog
@ 2013-08-25 14:54 Ian Delaney (idella4)
  0 siblings, 0 replies; 2+ messages in thread
From: Ian Delaney (idella4) @ 2013-08-25 14:54 UTC (permalink / raw
  To: gentoo-commits

idella4     13/08/25 14:54:05

  Modified:             ChangeLog
  Added:                Eidetic-2.003003-r1.ebuild
  Log:
  revbump, EAPI -> 5, add IUSE doc & upgrade install
  
  (Portage version: 2.2.0/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)

Revision  Changes    Path
1.16                 dev-perl/Eidetic/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Eidetic/ChangeLog?rev=1.16&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Eidetic/ChangeLog?rev=1.16&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Eidetic/ChangeLog?r1=1.15&r2=1.16

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-perl/Eidetic/ChangeLog,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- ChangeLog	23 Jun 2012 20:21:02 -0000	1.15
+++ ChangeLog	25 Aug 2013 14:54:05 -0000	1.16
@@ -1,6 +1,11 @@
 # ChangeLog for dev-perl/Eidetic
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Eidetic/ChangeLog,v 1.15 2012/06/23 20:21:02 tove Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Eidetic/ChangeLog,v 1.16 2013/08/25 14:54:05 idella4 Exp $
+
+*Eidetic-2.003003-r1 (25 Aug 2013)
+
+  25 Aug 2013; Ian Delaney <idella4@gentoo.org> +Eidetic-2.003003-r1.ebuild:
+  revbump, EAPI -> 5, add IUSE doc & upgrade install
 
   23 Jun 2012; Torsten Veller <tove@gentoo.org> metadata.xml:
   Remove wrong upstream info: Not on CPAN
@@ -56,4 +61,3 @@
   +files/Eidetic-2.003003-destdir.patch, +files/Eidetic-2.003003-sql.patch,
   +metadata.xml, +Eidetic-2.003003.ebuild:
   Initial import into the tree to meet rackview depend.
-



1.1                  dev-perl/Eidetic/Eidetic-2.003003-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Eidetic/Eidetic-2.003003-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Eidetic/Eidetic-2.003003-r1.ebuild?rev=1.1&content-type=text/plain

Index: Eidetic-2.003003-r1.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/Eidetic/Eidetic-2.003003-r1.ebuild,v 1.1 2013/08/25 14:54:05 idella4 Exp $

EAPI=5

inherit perl-module webapp eutils

DESCRIPTION="Templatized web-based database viewer, editor, indexer, etc"
HOMEPAGE="http://eidetic.sourceforge.net/"
SRC_URI="mirror://sourceforge/eidetic/${P}.tar.gz"

LICENSE="Artistic"
KEYWORDS="~amd64 ~x86"
IUSE="doc mysql auth"

DEPEND="dev-lang/perl
		>=dev-perl/Config-Simple-4.1
		>=dev-perl/DBI-1.03
		>=virtual/perl-File-Temp-0.12
		>=virtual/perl-Digest-MD5-2.09
		>=virtual/perl-CGI-2.56
		virtual/perl-File-Spec
		>=dev-perl/Mail-Sender-0.8
		>=dev-perl/Sort-Tree-1.07
		>=dev-perl/Template-Toolkit-2.08
		dev-perl/Crypt-SmbHash
		mysql? ( virtual/mysql )
		auth? ( dev-perl/Apache-AuthTicket )"

# This appears required
MAKEOPTS="${MAKEOPTS} -j1"
# Tests require invocation of a local mysql server

PATCHES=( "${FILESDIR}"/${P}-destdir.patch \
	"${FILESDIR}"/${P}-sql.patch )

src_install() {
	# explicit inherit function calls
	perl-module_src_install
	webapp_src_preinst

	# install .cgi file
	insinto ${MY_CGIBINDIR}
	doins cgi-bin/eidetic.cgi

	# install documentation
	if use doc; then
		docompress -x usr/share/doc/${PF}/txt
		insinto usr/share/doc/${PF}/txt
		doins doc/*
	fi

	# install db creation scripts
	if use mysql
	then
		insinto /usr/share/${P}/sql
		doins sql/*
		fperms a+x /usr/share/${P}/sql/load_db.sh
	fi

	#webapp stuff
	webapp_src_install
}

pkg_postinst() {
	if use mysql; then
		elog "The SQL scripts for ${PN} are located in /usr/share/${P}/sql."
		elog "Use load_db.sh to create your initial database."
		elog "Please note this must be ran as a user with database creation"
		elog "priviliges."
		elog ""
	fi

	if use auth; then
		elog "The README file contains important information on setting up"
		elog "cookie authorization with Apache-AuthTicket.  Please be sure"
		elog "to read it!"
	fi
}





^ permalink raw reply	[flat|nested] 2+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-perl/Eidetic: Eidetic-2.003003-r1.ebuild ChangeLog
@ 2014-12-07 13:27 Mikle Kolyada (zlogene)
  0 siblings, 0 replies; 2+ messages in thread
From: Mikle Kolyada (zlogene) @ 2014-12-07 13:27 UTC (permalink / raw
  To: gentoo-commits

zlogene     14/12/07 13:27:39

  Modified:             Eidetic-2.003003-r1.ebuild ChangeLog
  Log:
  Drop dev-lang/perl dependency
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xC42EB5D6)

Revision  Changes    Path
1.3                  dev-perl/Eidetic/Eidetic-2.003003-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Eidetic/Eidetic-2.003003-r1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Eidetic/Eidetic-2.003003-r1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Eidetic/Eidetic-2.003003-r1.ebuild?r1=1.2&r2=1.3

Index: Eidetic-2.003003-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-perl/Eidetic/Eidetic-2.003003-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- Eidetic-2.003003-r1.ebuild	26 Apr 2014 10:28:40 -0000	1.2
+++ Eidetic-2.003003-r1.ebuild	7 Dec 2014 13:27:39 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Eidetic/Eidetic-2.003003-r1.ebuild,v 1.2 2014/04/26 10:28:40 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Eidetic/Eidetic-2.003003-r1.ebuild,v 1.3 2014/12/07 13:27:39 zlogene Exp $
 
 EAPI=5
 
@@ -14,8 +14,7 @@
 KEYWORDS="amd64 x86"
 IUSE="doc mysql auth"
 
-DEPEND="dev-lang/perl
-		>=dev-perl/Config-Simple-4.1
+DEPEND=">=dev-perl/Config-Simple-4.1
 		>=dev-perl/DBI-1.03
 		>=virtual/perl-File-Temp-0.12
 		>=virtual/perl-Digest-MD5-2.09



1.18                 dev-perl/Eidetic/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Eidetic/ChangeLog?rev=1.18&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Eidetic/ChangeLog?rev=1.18&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Eidetic/ChangeLog?r1=1.17&r2=1.18

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-perl/Eidetic/ChangeLog,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- ChangeLog	26 Apr 2014 10:28:40 -0000	1.17
+++ ChangeLog	7 Dec 2014 13:27:39 -0000	1.18
@@ -1,6 +1,9 @@
 # ChangeLog for dev-perl/Eidetic
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Eidetic/ChangeLog,v 1.17 2014/04/26 10:28:40 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Eidetic/ChangeLog,v 1.18 2014/12/07 13:27:39 zlogene Exp $
+
+  07 Dec 2014; Mikle Kolyada <zlogene@gentoo.org> Eidetic-2.003003-r1.ebuild:
+  Drop dev-lang/perl dependency
 
   26 Apr 2014; Mikle Kolyada <zlogene@gentoo.org> -Eidetic-2.003003.ebuild,
   Eidetic-2.003003-r1.ebuild:





^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2014-12-07 13:27 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-12-07 13:27 [gentoo-commits] gentoo-x86 commit in dev-perl/Eidetic: Eidetic-2.003003-r1.ebuild ChangeLog Mikle Kolyada (zlogene)
  -- strict thread matches above, loose matches on Subject: below --
2013-08-25 14:54 Ian Delaney (idella4)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox