svn path=/trunk/gentoolkit/; revision=598
+2009-05-09: Paul Varner <fuzzyray@gentoo.org>
+ * equery: Added modular rewrite from djanderson
+ * gentoolkit: Added modular rewrite from djanderson
+ * All: converted to setup.py build system
+
2009-04-30: Paul Varner <fuzzyray@gentoo.org>
* revdep-rebuild: Add patch from loki_val to check -l dependencies in
.la files (Bug #267898)
--- /dev/null
+# Copyright 2003-2004 Karl Trygve Kalleberg <karltk@gentoo.org>
+# Copyright 2003-2009 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+#
+# $Header$
+
+all:
+ echo "YARMOUTH (vb.) To shout at foreigners in the belief that the louder you speak, the better they'll understand you."
+ echo $(VERSION)
+
+clean:
+ rm -rf release
+
+dist: dist-gentoolkit
+
+dist-gentoolkit:
+ mkdir -p release
+ sed -i "s/^VER =.*/VER = '$(VERSION)'/" setup.py
+ python setup.py sdist --dist-dir release
+ svn revert setup.py
+ rm -f MANIFEST
from distutils.core import setup
-VER = '0.3.0_rc4'
+VER = '9.9.9.9'
setup(
name='gentoolkit',