diff options
| author | fuzzyray <fuzzyray@gentoo.org> | 2009-05-05 20:24:30 +0000 |
|---|---|---|
| committer | fuzzyray <fuzzyray@gentoo.org> | 2009-05-05 20:24:30 +0000 |
| commit | d03c4875f20b77a54021232bc3c7be612706b4a4 (patch) | |
| tree | 7953c2c1561e8ed9c3589349877968ad4dd3a3ad | |
| parent | 571b61e0011bb3a0ab3c18e96f8d320f6cfe4689 (diff) | |
| download | gentoolkit-d03c4875f20b77a54021232bc3c7be612706b4a4.tar.gz | |
Add Makefile to create distfiles. Update ChangeLog to acknowledge djanderson. Update version in setup.py to generic version
svn path=/trunk/gentoolkit/; revision=598
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | Makefile | 21 | ||||
| -rwxr-xr-x | setup.py | 2 |
3 files changed, 27 insertions, 1 deletions
@@ -1,3 +1,8 @@ +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) diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..462bc56 --- /dev/null +++ b/Makefile @@ -0,0 +1,21 @@ +# 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 @@ -2,7 +2,7 @@ from distutils.core import setup -VER = '0.3.0_rc4' +VER = '9.9.9.9' setup( name='gentoolkit', |
