* [gentoo-commits] gentoo-x86 commit in net-print/pykota: ChangeLog pykota-1.25_p2437-r1.ebuild
@ 2010-06-04 19:57 Arfrever Frehtes Taifersar Arahesis (arfrever)
0 siblings, 0 replies; 4+ messages in thread
From: Arfrever Frehtes Taifersar Arahesis (arfrever) @ 2010-06-04 19:57 UTC (permalink / raw
To: gentoo-commits
arfrever 10/06/04 19:57:02
Modified: ChangeLog pykota-1.25_p2437-r1.ebuild
Log:
Use Python 2 (bug #315873). Delete call to deprecated python_version().
(Portage version: HEAD/cvs/Linux x86_64)
Revision Changes Path
1.25 net-print/pykota/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-print/pykota/ChangeLog?rev=1.25&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-print/pykota/ChangeLog?rev=1.25&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-print/pykota/ChangeLog?r1=1.24&r2=1.25
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-print/pykota/ChangeLog,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- ChangeLog 21 May 2008 19:00:41 -0000 1.24
+++ ChangeLog 4 Jun 2010 19:57:02 -0000 1.25
@@ -1,6 +1,10 @@
# ChangeLog for net-print/pykota
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-print/pykota/ChangeLog,v 1.24 2008/05/21 19:00:41 dev-zero Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-print/pykota/ChangeLog,v 1.25 2010/06/04 19:57:02 arfrever Exp $
+
+ 04 Jun 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
+ pykota-1.25_p2437-r1.ebuild:
+ Use Python 2 (bug #315873). Delete call to deprecated python_version().
21 May 2008; Tiziano Müller <dev-zero@gentoo.org>
pykota-1.25_p2437-r1.ebuild:
1.4 net-print/pykota/pykota-1.25_p2437-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-print/pykota/pykota-1.25_p2437-r1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-print/pykota/pykota-1.25_p2437-r1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-print/pykota/pykota-1.25_p2437-r1.ebuild?r1=1.3&r2=1.4
Index: pykota-1.25_p2437-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-print/pykota/pykota-1.25_p2437-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- pykota-1.25_p2437-r1.ebuild 29 Nov 2009 13:51:00 -0000 1.3
+++ pykota-1.25_p2437-r1.ebuild 4 Jun 2010 19:57:02 -0000 1.4
@@ -1,17 +1,19 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-print/pykota/pykota-1.25_p2437-r1.ebuild,v 1.3 2009/11/29 13:51:00 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-print/pykota/pykota-1.25_p2437-r1.ebuild,v 1.4 2010/06/04 19:57:02 arfrever Exp $
-S=${WORKDIR}/${PN}
+EAPI="3"
+PYTHON_DEPEND="2"
-inherit python eutils distutils
+inherit distutils
-DESCRIPTION="Flexible print quota and accounting package for use with CUPS and
-lpd."
-SRC_URI="http://scriptkitty.com/files/${P}.tar.bz2"
+DESCRIPTION="Flexible print quota and accounting package for use with CUPS and lpd."
HOMEPAGE="http://www.pykota.com"
-LICENSE="GPL-2"
+SRC_URI="http://scriptkitty.com/files/${P}.tar.bz2"
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
IUSE="ldap mysql postgres snmp sqlite snmp xml"
DEPEND="dev-lang/python
@@ -25,17 +27,19 @@
sqlite? ( =dev-python/pysqlite-2* )
snmp? ( net-analyzer/net-snmp =dev-python/pysnmp-3.4* )
xml? ( dev-python/jaxml )"
-
RDEPEND="${DEPEND}"
-KEYWORDS="~amd64 ~x86"
-SLOT="0"
+S="${WORKDIR}/${PN}"
DOCS="README MANIFEST.in TODO SECURITY NEWS CREDITS FAQ"
+pkg_setup() {
+ python_set_active_version 2
+ python_pkg_setup
+}
+
src_install() {
mkdir -p "${D}"/etc/${PN}
- python_version
distutils_src_install
#cups backend ----------------------------------------------
mkdir -p "${D}"$(cups-config --serverbin)/backend
^ permalink raw reply [flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-print/pykota: ChangeLog pykota-1.25_p2437-r1.ebuild
@ 2010-06-17 21:58 Patrick Lauer (patrick)
0 siblings, 0 replies; 4+ messages in thread
From: Patrick Lauer (patrick) @ 2010-06-17 21:58 UTC (permalink / raw
To: gentoo-commits
patrick 10/06/17 21:58:40
Modified: ChangeLog pykota-1.25_p2437-r1.ebuild
Log:
Migrating away from deprecated postgres virtuals
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Revision Changes Path
1.26 net-print/pykota/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-print/pykota/ChangeLog?rev=1.26&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-print/pykota/ChangeLog?rev=1.26&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-print/pykota/ChangeLog?r1=1.25&r2=1.26
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-print/pykota/ChangeLog,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- ChangeLog 4 Jun 2010 19:57:02 -0000 1.25
+++ ChangeLog 17 Jun 2010 21:58:40 -0000 1.26
@@ -1,6 +1,10 @@
# ChangeLog for net-print/pykota
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-print/pykota/ChangeLog,v 1.25 2010/06/04 19:57:02 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-print/pykota/ChangeLog,v 1.26 2010/06/17 21:58:40 patrick Exp $
+
+ 17 Jun 2010; Patrick Lauer <patrick@gentoo.org>
+ pykota-1.25_p2437-r1.ebuild:
+ Migrating away from deprecated postgres virtuals
04 Jun 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
pykota-1.25_p2437-r1.ebuild:
1.5 net-print/pykota/pykota-1.25_p2437-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-print/pykota/pykota-1.25_p2437-r1.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-print/pykota/pykota-1.25_p2437-r1.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-print/pykota/pykota-1.25_p2437-r1.ebuild?r1=1.4&r2=1.5
Index: pykota-1.25_p2437-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-print/pykota/pykota-1.25_p2437-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- pykota-1.25_p2437-r1.ebuild 4 Jun 2010 19:57:02 -0000 1.4
+++ pykota-1.25_p2437-r1.ebuild 17 Jun 2010 21:58:40 -0000 1.5
@@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-print/pykota/pykota-1.25_p2437-r1.ebuild,v 1.4 2010/06/04 19:57:02 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-print/pykota/pykota-1.25_p2437-r1.ebuild,v 1.5 2010/06/17 21:58:40 patrick Exp $
EAPI="3"
PYTHON_DEPEND="2"
@@ -23,7 +23,7 @@
dev-python/pkipplib
ldap? ( dev-python/python-ldap )
mysql? ( dev-python/mysql-python )
- postgres? ( virtual/postgresql-server dev-db/pygresql )
+ postgres? ( dev-db/postgresql-server dev-db/pygresql )
sqlite? ( =dev-python/pysqlite-2* )
snmp? ( net-analyzer/net-snmp =dev-python/pysnmp-3.4* )
xml? ( dev-python/jaxml )"
^ permalink raw reply [flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-print/pykota: ChangeLog pykota-1.25_p2437-r1.ebuild
@ 2011-06-02 17:57 Andreas HAttel (dilfridge)
0 siblings, 0 replies; 4+ messages in thread
From: Andreas HAttel (dilfridge) @ 2011-06-02 17:57 UTC (permalink / raw
To: gentoo-commits
dilfridge 11/06/02 17:57:12
Modified: ChangeLog pykota-1.25_p2437-r1.ebuild
Log:
General cleanup and fix documentation location, bug 295314
(Portage version: 2.1.9.49/cvs/Linux x86_64)
Revision Changes Path
1.27 net-print/pykota/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-print/pykota/ChangeLog?rev=1.27&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-print/pykota/ChangeLog?rev=1.27&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-print/pykota/ChangeLog?r1=1.26&r2=1.27
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-print/pykota/ChangeLog,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- ChangeLog 17 Jun 2010 21:58:40 -0000 1.26
+++ ChangeLog 2 Jun 2011 17:57:12 -0000 1.27
@@ -1,6 +1,10 @@
# ChangeLog for net-print/pykota
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-print/pykota/ChangeLog,v 1.26 2010/06/17 21:58:40 patrick Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-print/pykota/ChangeLog,v 1.27 2011/06/02 17:57:12 dilfridge Exp $
+
+ 02 Jun 2011; Andreas K. Huettel <dilfridge@gentoo.org>
+ pykota-1.25_p2437-r1.ebuild:
+ General cleanup and fix documentation location, bug 295314
17 Jun 2010; Patrick Lauer <patrick@gentoo.org>
pykota-1.25_p2437-r1.ebuild:
1.7 net-print/pykota/pykota-1.25_p2437-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-print/pykota/pykota-1.25_p2437-r1.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-print/pykota/pykota-1.25_p2437-r1.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-print/pykota/pykota-1.25_p2437-r1.ebuild?r1=1.6&r2=1.7
Index: pykota-1.25_p2437-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-print/pykota/pykota-1.25_p2437-r1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- pykota-1.25_p2437-r1.ebuild 31 Oct 2010 18:57:43 -0000 1.6
+++ pykota-1.25_p2437-r1.ebuild 2 Jun 2011 17:57:12 -0000 1.7
@@ -1,8 +1,8 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-print/pykota/pykota-1.25_p2437-r1.ebuild,v 1.6 2010/10/31 18:57:43 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-print/pykota/pykota-1.25_p2437-r1.ebuild,v 1.7 2011/06/02 17:57:12 dilfridge Exp $
-EAPI="3"
+EAPI=3
PYTHON_DEPEND="2"
inherit distutils
@@ -31,7 +31,7 @@
S="${WORKDIR}/${PN}"
-DOCS="README MANIFEST.in TODO SECURITY NEWS CREDITS FAQ"
+DOCS="README TODO SECURITY NEWS CREDITS FAQ"
pkg_setup() {
python_set_active_version 2
@@ -39,24 +39,27 @@
}
src_install() {
- mkdir -p "${D}"/etc/${PN}
+ dodir /etc/${PN} || die
distutils_src_install
- #cups backend ----------------------------------------------
- mkdir -p "${D}"$(cups-config --serverbin)/backend
- dosym /usr/share/pykota/cupspykota $(cups-config --serverbin)/backend/cupspykota
- #extra docs: inits -----------------------------------------
- init_dir=/usr/share/doc/${P}/initscripts
- insinto ${init_dir}
- cp -pPR initscripts/* "${D}"/${init_dir}
+
+ # cups backend ----------------------------------------------
+
+ dodir $(cups-config --serverbin)/backend || die
+ dosym /usr/share/pykota/cupspykota $(cups-config --serverbin)/backend/cupspykota || die
+
+ # extra docs: inits -----------------------------------------
+
+ init_dir="/usr/share/doc/${PF}/initscripts"
+ insinto "${init_dir}"
+ doins -r initscripts/* || die
# Fixes permissions for bug 155865
chmod 700 "${D}"/usr/share/pykota/cupspykota
for doc in ${DOCS}; do
- rm -f "${D}"/usr/share/doc/${PN}/${doc}
+ rm "${D}"/usr/share/doc/${PN}/${doc} || die
done
-
- rm -f "${D}"/usr/share/doc/${PN}/{LICENSE,COPYING}
- mv "${D}"/usr/share/doc/${PN}/* "${D}"/usr/share/doc/${P}
- rmdir "${D}"/usr/share/doc/${PN}
+ rm "${D}"/usr/share/doc/${PN}/{LICENSE,COPYING} || die
+ mv "${D}"/usr/share/doc/${PN}/* "${D}"/usr/share/doc/${PF}/ || die
+ rmdir "${D}"/usr/share/doc/${PN} || die
}
^ permalink raw reply [flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-print/pykota: ChangeLog pykota-1.25_p2437-r1.ebuild
@ 2014-06-12 15:26 Manuel Rueger (mrueg)
0 siblings, 0 replies; 4+ messages in thread
From: Manuel Rueger (mrueg) @ 2014-06-12 15:26 UTC (permalink / raw
To: gentoo-commits
mrueg 14/06/12 15:26:13
Modified: ChangeLog
Removed: pykota-1.25_p2437-r1.ebuild
Log:
Cleanup old.
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key )
Revision Changes Path
1.31 net-print/pykota/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-print/pykota/ChangeLog?rev=1.31&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-print/pykota/ChangeLog?rev=1.31&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-print/pykota/ChangeLog?r1=1.30&r2=1.31
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-print/pykota/ChangeLog,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- ChangeLog 17 Jan 2013 16:47:48 -0000 1.30
+++ ChangeLog 12 Jun 2014 15:26:13 -0000 1.31
@@ -1,6 +1,9 @@
# ChangeLog for net-print/pykota
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-print/pykota/ChangeLog,v 1.30 2013/01/17 16:47:48 mgorny Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-print/pykota/ChangeLog,v 1.31 2014/06/12 15:26:13 mrueg Exp $
+
+ 12 Jun 2014; Manuel Rüger <mrueg@gentoo.org> -pykota-1.25_p2437-r1.ebuild:
+ Cleanup old.
17 Jan 2013; Michał Górny <mgorny@gentoo.org> pykota-1.25_p2437-r1.ebuild,
pykota-1.26.ebuild:
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2014-06-12 15:26 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-06-17 21:58 [gentoo-commits] gentoo-x86 commit in net-print/pykota: ChangeLog pykota-1.25_p2437-r1.ebuild Patrick Lauer (patrick)
-- strict thread matches above, loose matches on Subject: below --
2014-06-12 15:26 Manuel Rueger (mrueg)
2011-06-02 17:57 Andreas HAttel (dilfridge)
2010-06-04 19:57 Arfrever Frehtes Taifersar Arahesis (arfrever)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox