public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-python/axiom: ChangeLog axiom-0.5.30.ebuild
@ 2009-02-10 11:03 Thomas Raschbacher (lordvan)
  0 siblings, 0 replies; 5+ messages in thread
From: Thomas Raschbacher (lordvan) @ 2009-02-10 11:03 UTC (permalink / raw
  To: gentoo-commits

lordvan     09/02/10 11:03:08

  Modified:             ChangeLog
  Added:                axiom-0.5.30.ebuild
  Log:
  new version with some improvements
  (Portage version: 2.1.6.7/cvs/Linux x86_64)

Revision  Changes    Path
1.19                 dev-python/axiom/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/axiom/ChangeLog?rev=1.19&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/axiom/ChangeLog?rev=1.19&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/axiom/ChangeLog?r1=1.18&r2=1.19

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/axiom/ChangeLog,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- ChangeLog	9 Jan 2009 19:47:25 -0000	1.18
+++ ChangeLog	10 Feb 2009 11:03:08 -0000	1.19
@@ -1,6 +1,14 @@
 # ChangeLog for dev-python/axiom
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/axiom/ChangeLog,v 1.18 2009/01/09 19:47:25 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/axiom/ChangeLog,v 1.19 2009/02/10 11:03:08 lordvan Exp $
+
+*axiom-0.5.30 (10 Feb 2009)
+
+  10 Feb 2009; Thomas Raschbacher <lordvan@gentoo.org>
+  +files/axiom-0.5.30-sqlite3.patch, +axiom-0.5.30.ebuild:
+  version bump, now deletes dropin.cache from twisted plugin dir and calls
+  twisted eclass functions so we update plugin cache again after (un)merge.
+  also using EAPI2 to now download new version from Project page
 
   09 Jan 2009; Patrick Lauer <patrick@gentoo.org> ChangeLog:
   Really remove old



1.1                  dev-python/axiom/axiom-0.5.30.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/axiom/axiom-0.5.30.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/axiom/axiom-0.5.30.ebuild?rev=1.1&content-type=text/plain

Index: axiom-0.5.30.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/axiom/axiom-0.5.30.ebuild,v 1.1 2009/02/10 11:03:08 lordvan Exp $

inherit twisted distutils eutils

MY_P=Axiom-${PV}

DESCRIPTION="Axiom is an object database implemented on top of SQLite."
HOMEPAGE="http://divmod.org/trac/wiki/DivmodAxiom"
SRC_URI="http://divmod.org/trac/attachment/wiki/SoftwareReleases/${MY_P}.tar.gz?format=raw -> ${MY_P}.tar.gz"
#SRC_URI="mirror://gentoo/${MY_P}.tar.gz"

LICENSE="MIT"
SLOT="0"
KEYWORDS="~ia64 ~ppc64 ~x86 ~amd64"
IUSE=""
EAPI="2"

DEPEND="|| ( >=dev-lang/python-2.5[sqlite]
	( >=dev-lang/python-2.4 >=dev-python/pysqlite-2.0 ) )
	>=dev-db/sqlite-3.2.1
	>=dev-python/twisted-2.4
	>=dev-python/twisted-conch-0.7.0-r1
	=dev-python/epsilon-0.5*"
RDEPEND="${DEPEND}"

S=${WORKDIR}/${MY_P}

DOCS="NAME.txt"

src_unpack() {
	distutils_src_unpack
	epatch "${FILESDIR}/${P}-sqlite3.patch"
}

src_compile() {
	# skip this, or epsilon will install the temporary "build" dir
	true
}

src_test() {
	PYTHONPATH=. trial axiom || die "trial failed"
}

src_install() {
	distutils_src_install
	# remove stupid dropin.cache from destdir
	rm "${D}usr/$(get_libdir)/python${PYVER}/site-packages/twisted/plugins/dropin.cache"
}

pkg_postrm() {
	twisted_pkg_postrm
}

pkg_postinst() {
	twisted_pkg_postinst
}






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

* [gentoo-commits] gentoo-x86 commit in dev-python/axiom: ChangeLog axiom-0.5.30.ebuild
@ 2009-02-11  8:42 Thomas Raschbacher (lordvan)
  0 siblings, 0 replies; 5+ messages in thread
From: Thomas Raschbacher (lordvan) @ 2009-02-11  8:42 UTC (permalink / raw
  To: gentoo-commits

lordvan     09/02/11 08:42:51

  Modified:             ChangeLog axiom-0.5.30.ebuild
  Log:
  disable plugin cache update in src_install
  (Portage version: 2.1.6.7/cvs/Linux x86_64)

Revision  Changes    Path
1.21                 dev-python/axiom/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/axiom/ChangeLog?rev=1.21&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/axiom/ChangeLog?rev=1.21&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/axiom/ChangeLog?r1=1.20&r2=1.21

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/axiom/ChangeLog,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- ChangeLog	10 Feb 2009 15:35:46 -0000	1.20
+++ ChangeLog	11 Feb 2009 08:42:51 -0000	1.21
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/axiom
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/axiom/ChangeLog,v 1.20 2009/02/10 15:35:46 lordvan Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/axiom/ChangeLog,v 1.21 2009/02/11 08:42:51 lordvan Exp $
+
+  11 Feb 2009; Thomas Raschbacher <lordvan@gentoo.org> axiom-0.5.30.ebuild:
+  disable plugin cache update in src_install
 
   10 Feb 2009; Thomas Raschbacher <lordvan@gentoo.org>
   +files/axiom-0.5.30-sqlite3_3.6.4.patch, axiom-0.5.30.ebuild:



1.3                  dev-python/axiom/axiom-0.5.30.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/axiom/axiom-0.5.30.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/axiom/axiom-0.5.30.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/axiom/axiom-0.5.30.ebuild?r1=1.2&r2=1.3

Index: axiom-0.5.30.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/axiom/axiom-0.5.30.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- axiom-0.5.30.ebuild	10 Feb 2009 15:35:46 -0000	1.2
+++ axiom-0.5.30.ebuild	11 Feb 2009 08:42:51 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/axiom/axiom-0.5.30.ebuild,v 1.2 2009/02/10 15:35:46 lordvan Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/axiom/axiom-0.5.30.ebuild,v 1.3 2009/02/11 08:42:51 lordvan Exp $
 
 inherit twisted distutils eutils
 
@@ -47,9 +47,12 @@
 }
 
 src_install() {
+	export PORTAGE_PLUGINCACHE_NOOP=1
 	distutils_src_install
-	# remove stupid dropin.cache from destdir
-	rm "${D}usr/$(get_libdir)/python${PYVER}/site-packages/twisted/plugins/dropin.cache"
+	# Not needed sine we disable plugin cache update now
+	# remove dropin.cache from destdir
+	#rm "${D}usr/$(get_libdir)/python${PYVER}/site-packages/twisted/plugins/dropin.cache"
+	unset PORTAGE_PLUGINCACHE_NOOP
 }
 
 pkg_postrm() {






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

* [gentoo-commits] gentoo-x86 commit in dev-python/axiom: ChangeLog axiom-0.5.30.ebuild
@ 2009-02-11 15:09 Thomas Raschbacher (lordvan)
  0 siblings, 0 replies; 5+ messages in thread
From: Thomas Raschbacher (lordvan) @ 2009-02-11 15:09 UTC (permalink / raw
  To: gentoo-commits

lordvan     09/02/11 15:09:48

  Modified:             ChangeLog axiom-0.5.30.ebuild
  Log:
  regenerate axiom plugin cache too
  (Portage version: 2.1.6.7/cvs/Linux x86_64)

Revision  Changes    Path
1.23                 dev-python/axiom/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/axiom/ChangeLog?rev=1.23&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/axiom/ChangeLog?rev=1.23&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/axiom/ChangeLog?r1=1.22&r2=1.23

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/axiom/ChangeLog,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- ChangeLog	11 Feb 2009 10:03:12 -0000	1.22
+++ ChangeLog	11 Feb 2009 15:09:48 -0000	1.23
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/axiom
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/axiom/ChangeLog,v 1.22 2009/02/11 10:03:12 lordvan Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/axiom/ChangeLog,v 1.23 2009/02/11 15:09:48 lordvan Exp $
+
+  11 Feb 2009; Thomas Raschbacher <lordvan@gentoo.org> axiom-0.5.30.ebuild:
+  re-generate axiom plugin cache too on postinst/rm
 
   11 Feb 2009; Thomas Raschbacher <lordvan@gentoo.org> axiom-0.5.30.ebuild:
   fixed epsilon dep



1.5                  dev-python/axiom/axiom-0.5.30.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/axiom/axiom-0.5.30.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/axiom/axiom-0.5.30.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/axiom/axiom-0.5.30.ebuild?r1=1.4&r2=1.5

Index: axiom-0.5.30.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/axiom/axiom-0.5.30.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- axiom-0.5.30.ebuild	11 Feb 2009 10:03:12 -0000	1.4
+++ axiom-0.5.30.ebuild	11 Feb 2009 15:09:48 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/axiom/axiom-0.5.30.ebuild,v 1.4 2009/02/11 10:03:12 lordvan Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/axiom/axiom-0.5.30.ebuild,v 1.5 2009/02/11 15:09:48 lordvan Exp $
 
 inherit twisted distutils eutils
 
@@ -22,7 +22,7 @@
 	>=dev-db/sqlite-3.2.1
 	>=dev-python/twisted-2.4
 	>=dev-python/twisted-conch-0.7.0-r1
-	>=dev-python/epsilon-0.5.11"
+	=dev-python/epsilon-0.5*"
 RDEPEND="${DEPEND}"
 
 S=${WORKDIR}/${MY_P}
@@ -55,10 +55,17 @@
 	unset PORTAGE_PLUGINCACHE_NOOP
 }
 
+update_axiom_plugin_cache() {
+	einfo "Updating axiom plugin cache..."
+	python -c 'from twisted.plugin import IPlugin, getPlugIns;from axiom import plugins; list(getPlugIns(IPlugin, plugins))'
+}
+
 pkg_postrm() {
 	twisted_pkg_postrm
+	update_axiom_plugin_cache
 }
 
 pkg_postinst() {
 	twisted_pkg_postinst
+	update_axiom_plugin_cache
 }






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

* [gentoo-commits] gentoo-x86 commit in dev-python/axiom: ChangeLog axiom-0.5.30.ebuild
@ 2009-06-01 14:44 Patrick Lauer (patrick)
  0 siblings, 0 replies; 5+ messages in thread
From: Patrick Lauer (patrick) @ 2009-06-01 14:44 UTC (permalink / raw
  To: gentoo-commits

patrick     09/06/01 14:44:28

  Modified:             ChangeLog axiom-0.5.30.ebuild
  Log:
  EAPI goes to the top
  (Portage version: 2.2_rc33/cvs/Linux x86_64)

Revision  Changes    Path
1.25                 dev-python/axiom/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/axiom/ChangeLog?rev=1.25&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/axiom/ChangeLog?rev=1.25&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/axiom/ChangeLog?r1=1.24&r2=1.25

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/axiom/ChangeLog,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- ChangeLog	24 Apr 2009 14:40:02 -0000	1.24
+++ ChangeLog	1 Jun 2009 14:44:28 -0000	1.25
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/axiom
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/axiom/ChangeLog,v 1.24 2009/04/24 14:40:02 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/axiom/ChangeLog,v 1.25 2009/06/01 14:44:28 patrick Exp $
+
+  01 Jun 2009; Patrick Lauer <patrick@gentoo.org> axiom-0.5.30.ebuild:
+  EAPI goes to the top
 
   24 Apr 2009; Patrick Lauer <patrick@gentoo.org> -axiom-0.5.27.ebuild:
   Remove old



1.6                  dev-python/axiom/axiom-0.5.30.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/axiom/axiom-0.5.30.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/axiom/axiom-0.5.30.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/axiom/axiom-0.5.30.ebuild?r1=1.5&r2=1.6

Index: axiom-0.5.30.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/axiom/axiom-0.5.30.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- axiom-0.5.30.ebuild	11 Feb 2009 15:09:48 -0000	1.5
+++ axiom-0.5.30.ebuild	1 Jun 2009 14:44:28 -0000	1.6
@@ -1,6 +1,8 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/axiom/axiom-0.5.30.ebuild,v 1.5 2009/02/11 15:09:48 lordvan Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/axiom/axiom-0.5.30.ebuild,v 1.6 2009/06/01 14:44:28 patrick Exp $
+
+EAPI="2"
 
 inherit twisted distutils eutils
 
@@ -15,7 +17,6 @@
 SLOT="0"
 KEYWORDS="~ia64 ~ppc64 ~x86 ~amd64"
 IUSE=""
-EAPI="2"
 
 DEPEND="|| ( >=dev-lang/python-2.5[sqlite]
 	( >=dev-lang/python-2.4 >=dev-python/pysqlite-2.0 ) )
@@ -29,8 +30,7 @@
 
 DOCS="NAME.txt"
 
-src_unpack() {
-	distutils_src_unpack
+src_prepare() {
 	epatch "${FILESDIR}/${P}-sqlite3.patch"
 	if has_version ">=dev-db/sqlite-3.6.4"; then
 		epatch "${FILESDIR}/${P}-sqlite3_3.6.4.patch"






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

* [gentoo-commits] gentoo-x86 commit in dev-python/axiom: ChangeLog axiom-0.5.30.ebuild
@ 2009-09-05 13:03 Patrick Lauer (patrick)
  0 siblings, 0 replies; 5+ messages in thread
From: Patrick Lauer (patrick) @ 2009-09-05 13:03 UTC (permalink / raw
  To: gentoo-commits

patrick     09/09/05 13:03:35

  Modified:             ChangeLog
  Removed:              axiom-0.5.30.ebuild
  Log:
  Remove old
  (Portage version: 2.2_rc40/cvs/Linux x86_64)

Revision  Changes    Path
1.27                 dev-python/axiom/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/axiom/ChangeLog?rev=1.27&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/axiom/ChangeLog?rev=1.27&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/axiom/ChangeLog?r1=1.26&r2=1.27

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/axiom/ChangeLog,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- ChangeLog	6 Jun 2009 22:46:21 -0000	1.26
+++ ChangeLog	5 Sep 2009 13:03:35 -0000	1.27
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/axiom
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/axiom/ChangeLog,v 1.26 2009/06/06 22:46:21 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/axiom/ChangeLog,v 1.27 2009/09/05 13:03:35 patrick Exp $
+
+  05 Sep 2009; Patrick Lauer <patrick@gentoo.org> -axiom-0.5.30.ebuild:
+  Remove old
 
 *axiom-0.5.31 (06 Jun 2009)
 






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

end of thread, other threads:[~2009-09-05 13:03 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-02-11 15:09 [gentoo-commits] gentoo-x86 commit in dev-python/axiom: ChangeLog axiom-0.5.30.ebuild Thomas Raschbacher (lordvan)
  -- strict thread matches above, loose matches on Subject: below --
2009-09-05 13:03 Patrick Lauer (patrick)
2009-06-01 14:44 Patrick Lauer (patrick)
2009-02-11  8:42 Thomas Raschbacher (lordvan)
2009-02-10 11:03 Thomas Raschbacher (lordvan)

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