public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in www-apps/postfixadmin: postfixadmin-2.3.6.ebuild ChangeLog
@ 2013-02-16 17:18 Anthony G. Basile (blueness)
  0 siblings, 0 replies; 3+ messages in thread
From: Anthony G. Basile (blueness) @ 2013-02-16 17:18 UTC (permalink / raw
  To: gentoo-commits

blueness    13/02/16 17:18:56

  Modified:             ChangeLog
  Added:                postfixadmin-2.3.6.ebuild
  Log:
  Version bump, bug #450178
  
  (Portage version: 2.1.11.31/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)

Revision  Changes    Path
1.29                 www-apps/postfixadmin/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/postfixadmin/ChangeLog?rev=1.29&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/postfixadmin/ChangeLog?rev=1.29&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/postfixadmin/ChangeLog?r1=1.28&r2=1.29

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-apps/postfixadmin/ChangeLog,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- ChangeLog	16 Feb 2013 13:06:13 -0000	1.28
+++ ChangeLog	16 Feb 2013 17:18:56 -0000	1.29
@@ -1,6 +1,12 @@
 # ChangeLog for www-apps/postfixadmin
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-apps/postfixadmin/ChangeLog,v 1.28 2013/02/16 13:06:13 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-apps/postfixadmin/ChangeLog,v 1.29 2013/02/16 17:18:56 blueness Exp $
+
+*postfixadmin-2.3.6 (16 Feb 2013)
+
+  16 Feb 2013; Anthony G. Basile <blueness@gentoo.org>
+  +postfixadmin-2.3.6.ebuild:
+  Version bump, bug #450178
 
   16 Feb 2013; Pacho Ramos <pacho@gentoo.org> metadata.xml:
   Cleanup due bug #96436



1.1                  www-apps/postfixadmin/postfixadmin-2.3.6.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/postfixadmin/postfixadmin-2.3.6.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/postfixadmin/postfixadmin-2.3.6.ebuild?rev=1.1&content-type=text/plain

Index: postfixadmin-2.3.6.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-apps/postfixadmin/postfixadmin-2.3.6.ebuild,v 1.1 2013/02/16 17:18:56 blueness Exp $

EAPI="4"

inherit user webapp

DESCRIPTION="Web Based Management tool for Postfix style virtual domains and users."
HOMEPAGE="http://postfixadmin.sourceforge.net"
SRC_URI="mirror://sourceforge/project/${PN}/${PN}/${P}/${P}.tar.gz"

LICENSE="GPL-2"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="+mysql postgres +vacation xmlrpc"
REQUIRED_USE="|| ( mysql postgres )"

DEPEND="vacation? ( dev-perl/DBI
		virtual/perl-MIME-Base64
		dev-perl/MIME-EncWords
		dev-perl/Email-Valid
		dev-perl/Mail-Sender
		dev-perl/log-dispatch
		dev-perl/Log-Log4perl
		dev-perl/MIME-Charset
		mysql? ( dev-perl/DBD-mysql )
		postgres? ( dev-perl/DBD-Pg ) )
	xmlrpc? ( dev-php/ZendFramework[-minimal] )
	dev-lang/php[unicode,imap,postgres?,xmlrpc?]"

RDEPEND="${DEPEND}
	virtual/httpd-php
	mysql? ( || ( dev-lang/php[mysqli] dev-lang/php[mysql] ) )"

need_httpd_cgi

pkg_setup() {
	webapp_pkg_setup

	if use vacation; then
		enewgroup vacation
		enewuser vacation -1 -1 -1 vacation
	fi
}

src_install() {
	webapp_src_preinst

	if use vacation; then
		insinto /var/spool/vacation
		newins VIRTUAL_VACATION/vacation.pl vacation.pl-${SLOT}
		fowners vacation:vacation /var/spool/vacation/vacation.pl-${SLOT}
		fperms 770 /var/spool/vacation/vacation.pl-${SLOT}
		dodoc VIRTUAL_VACATION/FILTER_README
		newdoc VIRTUAL_VACATION/INSTALL.TXT VIRTUAL_VACATION_INSTALL.TXT
		rm -r VIRTUAL_VACATION/{vacation.pl,INSTALL.TXT,tests,FILTER_README}
	fi

	insinto /usr/share/doc/${PF}/
	doins -r ADDITIONS

	local docs="DOCUMENTS/*.txt INSTALL.TXT CHANGELOG.TXT"
	dodoc ${docs}

	rm -rf ${docs} DOCUMENTS/ GPL-LICENSE.TXT LICENSE.TXT debian/ tests/ ADDITIONS/

	insinto "${MY_HTDOCSDIR}"
	doins -r .

	webapp_configfile "${MY_HTDOCSDIR}"/config.inc.php

	webapp_postinst_txt en "${FILESDIR}"/postinstall-en-2.3.txt
	webapp_src_install
}

pkg_postinst() {
	webapp_pkg_postinst
	if use vacation; then
		# portage does not update owners of directories (feature :)
		chown vacation:vacation "${ROOT}"/var/spool/vacation/
		einfo "/var/spool/vacation/vacation.pl symlink was updated to:"
		einfo "/var/spool/vacation/vacation.pl-${SLOT}"
		ln -sf "${ROOT}"/var/spool/vacation/vacation.pl{-${SLOT},}
	fi
}

pkg_postrm() {
	# Make sure we don't leave broken vacation.pl symlink
	find -L "${ROOT}"/var/spool/vacation/ -type l -delete
	if [[ ! -e "${ROOT}"/var/spool/vacation/vacation.pl ]] &&
		path_exists "${ROOT}"/var/spool/vacation/vacation.pl-*; then
		ln -s $(LC_ALL=C ls -1 /var/spool/vacation/vacation.pl-* | tail -n1) \
			"${ROOT}"/var/spool/vacation/vacation.pl
		ewarn "/var/spool/vacation/vacation.pl was updated to point on most"
		ewarn "recent verion, but please, do your own checks"
	fi
}





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

* [gentoo-commits] gentoo-x86 commit in www-apps/postfixadmin: postfixadmin-2.3.6.ebuild ChangeLog
@ 2014-02-24  2:28 PaweA Hajdan (phajdan.jr)
  0 siblings, 0 replies; 3+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2014-02-24  2:28 UTC (permalink / raw
  To: gentoo-commits

phajdan.jr    14/02/24 02:28:20

  Modified:             postfixadmin-2.3.6.ebuild ChangeLog
  Log:
  x86 stable wrt bug #482760
  
  (Portage version: 2.2.7/cvs/Linux i686, RepoMan options: --ignore-arches, signed Manifest commit with key 0x4F1A2555EA71991D!)

Revision  Changes    Path
1.2                  www-apps/postfixadmin/postfixadmin-2.3.6.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/postfixadmin/postfixadmin-2.3.6.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/postfixadmin/postfixadmin-2.3.6.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/postfixadmin/postfixadmin-2.3.6.ebuild?r1=1.1&r2=1.2

Index: postfixadmin-2.3.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-apps/postfixadmin/postfixadmin-2.3.6.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- postfixadmin-2.3.6.ebuild	16 Feb 2013 17:18:56 -0000	1.1
+++ postfixadmin-2.3.6.ebuild	24 Feb 2014 02:28:20 -0000	1.2
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-apps/postfixadmin/postfixadmin-2.3.6.ebuild,v 1.1 2013/02/16 17:18:56 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-apps/postfixadmin/postfixadmin-2.3.6.ebuild,v 1.2 2014/02/24 02:28:20 phajdan.jr Exp $
 
 EAPI="4"
 
@@ -11,7 +11,7 @@
 SRC_URI="mirror://sourceforge/project/${PN}/${PN}/${P}/${P}.tar.gz"
 
 LICENSE="GPL-2"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="~amd64 ~ppc x86"
 IUSE="+mysql postgres +vacation xmlrpc"
 REQUIRED_USE="|| ( mysql postgres )"
 



1.30                 www-apps/postfixadmin/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/postfixadmin/ChangeLog?rev=1.30&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/postfixadmin/ChangeLog?rev=1.30&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/postfixadmin/ChangeLog?r1=1.29&r2=1.30

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-apps/postfixadmin/ChangeLog,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- ChangeLog	16 Feb 2013 17:18:56 -0000	1.29
+++ ChangeLog	24 Feb 2014 02:28:20 -0000	1.30
@@ -1,6 +1,10 @@
 # ChangeLog for www-apps/postfixadmin
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-apps/postfixadmin/ChangeLog,v 1.29 2013/02/16 17:18:56 blueness Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/www-apps/postfixadmin/ChangeLog,v 1.30 2014/02/24 02:28:20 phajdan.jr Exp $
+
+  24 Feb 2014; Pawel Hajdan jr <phajdan.jr@gentoo.org>
+  postfixadmin-2.3.6.ebuild:
+  x86 stable wrt bug #482760
 
 *postfixadmin-2.3.6 (16 Feb 2013)
 





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

* [gentoo-commits] gentoo-x86 commit in www-apps/postfixadmin: postfixadmin-2.3.6.ebuild ChangeLog
@ 2014-03-03 23:33 Pacho Ramos (pacho)
  0 siblings, 0 replies; 3+ messages in thread
From: Pacho Ramos (pacho) @ 2014-03-03 23:33 UTC (permalink / raw
  To: gentoo-commits

pacho       14/03/03 23:33:05

  Modified:             postfixadmin-2.3.6.ebuild ChangeLog
  Log:
  amd64 stable, bug #482760
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --include-arches="amd64", signed Manifest commit with key A188FBD4)

Revision  Changes    Path
1.3                  www-apps/postfixadmin/postfixadmin-2.3.6.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/postfixadmin/postfixadmin-2.3.6.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/postfixadmin/postfixadmin-2.3.6.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/postfixadmin/postfixadmin-2.3.6.ebuild?r1=1.2&r2=1.3

Index: postfixadmin-2.3.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-apps/postfixadmin/postfixadmin-2.3.6.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- postfixadmin-2.3.6.ebuild	24 Feb 2014 02:28:20 -0000	1.2
+++ postfixadmin-2.3.6.ebuild	3 Mar 2014 23:33:05 -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/www-apps/postfixadmin/postfixadmin-2.3.6.ebuild,v 1.2 2014/02/24 02:28:20 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-apps/postfixadmin/postfixadmin-2.3.6.ebuild,v 1.3 2014/03/03 23:33:05 pacho Exp $
 
 EAPI="4"
 
@@ -11,7 +11,7 @@
 SRC_URI="mirror://sourceforge/project/${PN}/${PN}/${P}/${P}.tar.gz"
 
 LICENSE="GPL-2"
-KEYWORDS="~amd64 ~ppc x86"
+KEYWORDS="amd64 ~ppc x86"
 IUSE="+mysql postgres +vacation xmlrpc"
 REQUIRED_USE="|| ( mysql postgres )"
 



1.31                 www-apps/postfixadmin/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/postfixadmin/ChangeLog?rev=1.31&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/postfixadmin/ChangeLog?rev=1.31&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/postfixadmin/ChangeLog?r1=1.30&r2=1.31

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-apps/postfixadmin/ChangeLog,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- ChangeLog	24 Feb 2014 02:28:20 -0000	1.30
+++ ChangeLog	3 Mar 2014 23:33:05 -0000	1.31
@@ -1,6 +1,9 @@
 # ChangeLog for www-apps/postfixadmin
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-apps/postfixadmin/ChangeLog,v 1.30 2014/02/24 02:28:20 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-apps/postfixadmin/ChangeLog,v 1.31 2014/03/03 23:33:05 pacho Exp $
+
+  03 Mar 2014; Pacho Ramos <pacho@gentoo.org> postfixadmin-2.3.6.ebuild:
+  amd64 stable, bug #482760
 
   24 Feb 2014; Pawel Hajdan jr <phajdan.jr@gentoo.org>
   postfixadmin-2.3.6.ebuild:





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

end of thread, other threads:[~2014-03-03 23:33 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-02-24  2:28 [gentoo-commits] gentoo-x86 commit in www-apps/postfixadmin: postfixadmin-2.3.6.ebuild ChangeLog PaweA Hajdan (phajdan.jr)
  -- strict thread matches above, loose matches on Subject: below --
2014-03-03 23:33 Pacho Ramos (pacho)
2013-02-16 17:18 Anthony G. Basile (blueness)

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