diff options
-rw-r--r-- | Makefile | 11 | ||||
-rw-r--r-- | README | 27 | ||||
-rw-r--r-- | doc/eselect-syntax.txt | 32 |
3 files changed, 62 insertions, 8 deletions
@@ -1,7 +1,7 @@ # Makefile for eselect-syntax distapp = eselect-syntax -distver := $(shell date --iso | sed -e 's~-~~g') +distver := $(shell date -u +%Y%m%d) distpkg := $(distapp)-$(distver) PREFIX = ${HOME}/.vim/ @@ -65,13 +65,8 @@ dist: tar jcf "$(distpkg).tar.bz2" "$(distpkg)" rm -fr "$(distpkg)/" -dist-sign: dist - gpg --armour --detach-sign "$(distpkg).tar.bz2" - mv "$(distpkg).tar.bz2.asc" "$(distpkg).tar.bz2.signature" - -dist-upload: dist dist-sign - echo -ne "user anonymous gentoo-syntax\ncd incoming\nput $(distpkg).tar.bz2\nput $(distpkg).tar.bz2.signature\nbye" | \ - ftp -n ftp.berlios.de +dist-upload: dist + scp $(distpkg).tar.bz2 dev.gentoo.org:/space/distfiles-local/ clean: find . -name '*~' | xargs rm || true @@ -0,0 +1,27 @@ +INSTALL INSTRUCTIONS +-------------------- + +* Gentoo users: `emerge app-vim/eselect-syntax` +* Everyone else: `make PREFIX=~/.vim/ install` + +COPYRIGHT +--------- + +Copyright (c) 2004-2005 Ciaran McCreesh, Aaron Walker, Tom Martin. You may +redistribute this package under the same terms as Vim itself. + +CONTACT +------- + +Email: + +* Ciaran McCreesh `<ciaranm at gentoo dot org>`_ +* Aaron Walker `<ka0ttic at gentoo dot org>`_ +* Tom Martin `<slarti at gentoo dot org>`_ +* Mike Kelly `<pioto at gentoo dot org>`_ + +Bugs: + +* `<http://bugs.gentoo.org/>`_ + +.. vim: set ft=glep tw=80 et : diff --git a/doc/eselect-syntax.txt b/doc/eselect-syntax.txt new file mode 100644 index 0000000..f657373 --- /dev/null +++ b/doc/eselect-syntax.txt @@ -0,0 +1,32 @@ +*eselect-syntax.txt* Eselect Syntax Plugin + +Authors: Ciaran McCreesh <ciaranm at gentoo dot org> + Aaron Walker <ka0ttic at gentoo dot org> + Tom Martin <slarti at gentoo dot org> + Elfyn McBratney <beu at gentoo dot org> + Mike Kelly <pioto at gentoo dot org> + +============================================================================== +1. Contents *eselect-syntax* + + 1. Contents |eselect-syntax| + + 2. Plugin Information |eselect-syntax-overview| + + 3. ChangeLog |eselect-syntax-changelog| + +============================================================================== +2. Plugin Information *eselect-syntax-overview* + + The eselect-syntax package provides syntax hilighting and templates + for creating eselect modules. + +============================================================================== +3. ChangeLog *eselect-syntax-changelog* + + 20070506 pioto + * Package split from gentoo-syntax. + * First release. + +============================================================================== +vim:tw=78:ts=8:ft=help |