* [gentoo-commits] proj/gentoo-syntax:master commit in: /
@ 2012-02-14 3:28 Christian Ruppert
0 siblings, 0 replies; 18+ messages in thread
From: Christian Ruppert @ 2012-02-14 3:28 UTC (permalink / raw
To: gentoo-commits
commit: 2155c7d0f62c9e3eefc81ca4e971b9fb78d356e6
Author: Christian Ruppert <idl0r <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 14 03:28:19 2012 +0000
Commit: Christian Ruppert <idl0r <AT> gentoo <DOT> org>
CommitDate: Tue Feb 14 03:28:19 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gentoo-syntax.git;a=commit;h=2155c7d0
Make the dist target git compatible
---
Makefile | 20 ++++++++++----------
1 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/Makefile b/Makefile
index 8f86ecb..1874375 100644
--- a/Makefile
+++ b/Makefile
@@ -82,20 +82,20 @@ uninstall-file-%: $(subst _,/,$*)
[ ! -f "$(PREFIX)/$(subst _,/,$*)" ] || rm "$(PREFIX)/$(subst _,/,$*)"
tag:
- svn up
- svn cp ../gentoo-syntax ../../tags/gentoo-syntax/release-$(distver)
+ git pull
+ git tag $(distpkg)
@echo
- @echo "tag created remember to check it in"
+ @echo "tag created remember to push it"
@echo
dist: tag
- mkdir "$(distpkg)"
- $(MAKE) PREFIX="$(distpkg)" install
- svn2cl
- mv ChangeLog "$(distpkg)/"
- cp README "$(distpkg)/"
- tar jcf "$(distpkg).tar.bz2" "$(distpkg)"
- rm -fr "$(distpkg)/"
+ git archive --prefix=$(distpkg)/ --format=tar -o $(distpkg).tar $(distpkg)
+ mkdir $(distpkg)/
+ git log > $(distpkg)/ChangeLog
+ tar vfr $(distpkg).tar $(distpkg)/ChangeLog
+ bzip2 $(distpkg).tar
+ rm -rf $(distpkg)/
+
dist-upload: dist
scp $(distpkg).tar.bz2 dev.gentoo.org:/space/distfiles-local/
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] proj/gentoo-syntax:master commit in: /
@ 2014-11-02 22:04 Tim Harder
0 siblings, 0 replies; 18+ messages in thread
From: Tim Harder @ 2014-11-02 22:04 UTC (permalink / raw
To: gentoo-commits
commit: 1d0f9ff4a96ed55c332149e10dc52108024db9e6
Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 2 22:03:59 2014 +0000
Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
CommitDate: Sun Nov 2 22:03:59 2014 +0000
URL: http://sources.gentoo.org/gitweb/?p=proj/gentoo-syntax.git;a=commit;h=1d0f9ff4
drop old contacts from readme
---
README | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/README b/README
index c5e3d8b..9868ba1 100644
--- a/README
+++ b/README
@@ -15,10 +15,7 @@ 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>`_
+* Tim Harder `<radhermit at gentoo dot org>`_
Bugs:
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] proj/gentoo-syntax:master commit in: /
@ 2014-11-29 5:15 Tim Harder
0 siblings, 0 replies; 18+ messages in thread
From: Tim Harder @ 2014-11-29 5:15 UTC (permalink / raw
To: gentoo-commits
commit: bf7ea8356e5f4e9f8ab53efc85ff05dec07b396c
Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 29 05:03:41 2014 +0000
Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
CommitDate: Sat Nov 29 05:03:41 2014 +0000
URL: http://sources.gentoo.org/gitweb/?p=proj/gentoo-syntax.git;a=commit;h=bf7ea835
split copyright and license info out into a separate file
---
COPYING | 3 +++
README | 6 ------
2 files changed, 3 insertions(+), 6 deletions(-)
diff --git a/COPYING b/COPYING
new file mode 100644
index 0000000..0e7a04c
--- /dev/null
+++ b/COPYING
@@ -0,0 +1,3 @@
+Copyright (c) 2004-2005 Ciaran McCreesh, Aaron Walker, Tom Martin.
+
+You may redistribute this package under the same terms as Vim itself.
diff --git a/README b/README
index 9868ba1..3a77695 100644
--- a/README
+++ b/README
@@ -4,12 +4,6 @@ INSTALL INSTRUCTIONS
* Gentoo users: `emerge app-vim/gentoo-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
-------
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] proj/gentoo-syntax:master commit in: /
@ 2014-11-29 5:15 Tim Harder
0 siblings, 0 replies; 18+ messages in thread
From: Tim Harder @ 2014-11-29 5:15 UTC (permalink / raw
To: gentoo-commits
commit: edf5d40ec2ed6ea93d7a5243741182f088b7f6a7
Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 29 05:14:49 2014 +0000
Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
CommitDate: Sat Nov 29 05:14:49 2014 +0000
URL: http://sources.gentoo.org/gitweb/?p=proj/gentoo-syntax.git;a=commit;h=edf5d40e
remove extra newlines
---
Makefile | 2 --
1 file changed, 2 deletions(-)
diff --git a/Makefile b/Makefile
index 1874375..d82f206 100644
--- a/Makefile
+++ b/Makefile
@@ -96,11 +96,9 @@ dist: tag
bzip2 $(distpkg).tar
rm -rf $(distpkg)/
-
dist-upload: dist
scp $(distpkg).tar.bz2 dev.gentoo.org:/space/distfiles-local/
ssh dev.gentoo.org chmod ug+rw /space/distfiles-local/$(distpkg).tar.bz2
clean:
find . -name '*~' | xargs rm || true
-
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] proj/gentoo-syntax:master commit in: /
@ 2014-11-29 5:15 Tim Harder
0 siblings, 0 replies; 18+ messages in thread
From: Tim Harder @ 2014-11-29 5:15 UTC (permalink / raw
To: gentoo-commits
commit: 6977bf3aea4673fc9a83081dd19b2d052f83a826
Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 29 05:07:50 2014 +0000
Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
CommitDate: Sat Nov 29 05:13:03 2014 +0000
URL: http://sources.gentoo.org/gitweb/?p=proj/gentoo-syntax.git;a=commit;h=6977bf3a
update readme info and rename file so github renders it properly
---
README | 18 ------------------
README.rst | 19 +++++++++++++++++++
2 files changed, 19 insertions(+), 18 deletions(-)
diff --git a/README b/README
deleted file mode 100644
index 3a77695..0000000
--- a/README
+++ /dev/null
@@ -1,18 +0,0 @@
-INSTALL INSTRUCTIONS
---------------------
-
-* Gentoo users: `emerge app-vim/gentoo-syntax`
-* Everyone else: `make PREFIX=~/.vim/ install`
-
-CONTACT
--------
-
-Email:
-
-* Tim Harder `<radhermit at gentoo dot org>`_
-
-Bugs:
-
-* `<http://bugs.gentoo.org/>`_
-
-.. vim: set ft=glep tw=80 et :
diff --git a/README.rst b/README.rst
new file mode 100644
index 0000000..22ea221
--- /dev/null
+++ b/README.rst
@@ -0,0 +1,19 @@
+=============
+gentoo-syntax
+=============
+
+A vim plugin that handles Gentoo and portage related syntax highlighting,
+filetype, and indent settings.
+
+Installing
+==========
+
+* Gentoo users: `emerge app-vim/gentoo-syntax`
+* Everyone else: `make PREFIX=~/.vim/ install`
+
+Bugs
+====
+
+Please file issues or submit pull requests on github_.
+
+.. _github: https://github.com/gentoo/gentoo-syntax
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] proj/gentoo-syntax:master commit in: /
@ 2014-11-29 8:00 Tim Harder
0 siblings, 0 replies; 18+ messages in thread
From: Tim Harder @ 2014-11-29 8:00 UTC (permalink / raw
To: gentoo-commits
commit: 1cd94531e79e6533c3a0be7215f33848ed0ca472
Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 29 07:59:30 2014 +0000
Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
CommitDate: Sat Nov 29 07:59:30 2014 +0000
URL: http://sources.gentoo.org/gitweb/?p=proj/gentoo-syntax.git;a=commit;h=1cd94531
use monospace font for commands in readme
---
README.rst | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/README.rst b/README.rst
index 22ea221..4c61046 100644
--- a/README.rst
+++ b/README.rst
@@ -8,8 +8,8 @@ filetype, and indent settings.
Installing
==========
-* Gentoo users: `emerge app-vim/gentoo-syntax`
-* Everyone else: `make PREFIX=~/.vim/ install`
+* Gentoo users: ``emerge app-vim/gentoo-syntax``
+* Everyone else: ``make PREFIX=~/.vim/ install``
Bugs
====
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] proj/gentoo-syntax:master commit in: /
@ 2016-02-02 17:20 Tim Harder
0 siblings, 0 replies; 18+ messages in thread
From: Tim Harder @ 2016-02-02 17:20 UTC (permalink / raw
To: gentoo-commits
commit: 2425e0208698bc9e369b14fea04e9a56ac393175
Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 2 17:20:42 2016 +0000
Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
CommitDate: Tue Feb 2 17:20:42 2016 +0000
URL: https://gitweb.gentoo.org/proj/gentoo-syntax.git/commit/?id=2425e020
update makefile
Makefile | 16 +++++++++++++---
1 file changed, 13 insertions(+), 3 deletions(-)
diff --git a/Makefile b/Makefile
index a585b64..6aea075 100644
--- a/Makefile
+++ b/Makefile
@@ -18,12 +18,22 @@ files_doc = \
doc/gentoo-syntax.txt
files_ftdetect = \
- ftdetect/gentoo.vim \
- ftplugin/ebuild.vim
+ ftdetect/gentoo.vim
files_ftplugin = \
+ ftplugin/ebuild.vim \
ftplugin/gentoo-changelog.vim \
- ftplugin/gentoo-metadata.vim
+ ftplugin/gentoo-conf-d.vim \
+ ftplugin/gentoo-env-d.vim \
+ ftplugin/gentoo-init-d.vim \
+ ftplugin/gentoo-make-conf.vim \
+ ftplugin/gentoo-metadata.vim \
+ ftplugin/gentoo-package-keywords.vim \
+ ftplugin/gentoo-package-license.vim \
+ ftplugin/gentoo-package-mask.vim \
+ ftplugin/gentoo-package-properties.vim \
+ ftplugin/gentoo-package-use.vim \
+ ftplugin/gentoo-package-use-desc.vim
files_indent = \
indent/ebuild.vim \
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] proj/gentoo-syntax:master commit in: /
@ 2016-02-02 17:29 Tim Harder
0 siblings, 0 replies; 18+ messages in thread
From: Tim Harder @ 2016-02-02 17:29 UTC (permalink / raw
To: gentoo-commits
commit: 7659e8e2676a9ab543ace54e0ad761c6def22751
Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 2 17:29:24 2016 +0000
Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
CommitDate: Tue Feb 2 17:29:24 2016 +0000
URL: https://gitweb.gentoo.org/proj/gentoo-syntax.git/commit/?id=7659e8e2
Makefile: fix file name
Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
index 6aea075..1522d71 100644
--- a/Makefile
+++ b/Makefile
@@ -33,7 +33,7 @@ files_ftplugin = \
ftplugin/gentoo-package-mask.vim \
ftplugin/gentoo-package-properties.vim \
ftplugin/gentoo-package-use.vim \
- ftplugin/gentoo-package-use-desc.vim
+ ftplugin/gentoo-use-desc.vim
files_indent = \
indent/ebuild.vim \
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] proj/gentoo-syntax:master commit in: /
@ 2016-03-06 0:09 Tim Harder
0 siblings, 0 replies; 18+ messages in thread
From: Tim Harder @ 2016-03-06 0:09 UTC (permalink / raw
To: gentoo-commits
commit: 57987eac5a47fe1d77ddd4963cc6daa13aede07e
Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 6 00:06:49 2016 +0000
Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
CommitDate: Sun Mar 6 00:06:49 2016 +0000
URL: https://gitweb.gentoo.org/proj/gentoo-syntax.git/commit/?id=57987eac
makefile: remove dist tarball related targets
We'll distribute from git-based tag tarballs from now on.
Makefile | 13 -------------
1 file changed, 13 deletions(-)
diff --git a/Makefile b/Makefile
index 1522d71..dfff867 100644
--- a/Makefile
+++ b/Makefile
@@ -91,23 +91,10 @@ uninstall-file-%: $(subst _,/,$*)
[ ! -f "$(PREFIX)/$(subst _,/,$*)" ] || rm "$(PREFIX)/$(subst _,/,$*)"
tag:
- git pull
git tag $(distpkg)
@echo
@echo "tag created remember to push it"
@echo
-dist: tag
- git archive --prefix=$(distpkg)/ --format=tar -o $(distpkg).tar $(distpkg)
- mkdir $(distpkg)/
- git log > $(distpkg)/ChangeLog
- tar vfr $(distpkg).tar $(distpkg)/ChangeLog
- bzip2 $(distpkg).tar
- rm -rf $(distpkg)/
-
-dist-upload: dist
- scp $(distpkg).tar.bz2 dev.gentoo.org:/space/distfiles-local/
- ssh dev.gentoo.org chmod ug+rw /space/distfiles-local/$(distpkg).tar.bz2
-
clean:
find . -name '*~' | xargs rm || true
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] proj/gentoo-syntax:master commit in: /
@ 2016-03-06 0:23 Tim Harder
0 siblings, 0 replies; 18+ messages in thread
From: Tim Harder @ 2016-03-06 0:23 UTC (permalink / raw
To: gentoo-commits
commit: 107fc1236bc97fa63d73de22f5602f16acbb6a96
Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 6 00:10:41 2016 +0000
Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
CommitDate: Sun Mar 6 00:10:41 2016 +0000
URL: https://gitweb.gentoo.org/proj/gentoo-syntax.git/commit/?id=107fc123
makefile: simplify tag creation target output
Makefile | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/Makefile b/Makefile
index dfff867..c2f49ec 100644
--- a/Makefile
+++ b/Makefile
@@ -92,9 +92,7 @@ uninstall-file-%: $(subst _,/,$*)
tag:
git tag $(distpkg)
- @echo
- @echo "tag created remember to push it"
- @echo
+ @echo "tag created, remember to push it"
clean:
find . -name '*~' | xargs rm || true
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] proj/gentoo-syntax:master commit in: /
@ 2016-03-06 0:23 Tim Harder
0 siblings, 0 replies; 18+ messages in thread
From: Tim Harder @ 2016-03-06 0:23 UTC (permalink / raw
To: gentoo-commits
commit: 10d8b4bd5e8db6c3f919af2162199bc8007c85ca
Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 6 00:21:15 2016 +0000
Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
CommitDate: Sun Mar 6 00:21:15 2016 +0000
URL: https://gitweb.gentoo.org/proj/gentoo-syntax.git/commit/?id=10d8b4bd
makefile: glob files instead of explicitly listing each one
This assumes we'll be installing all files within the related vim plugin
dirs, but cruft shouldn't be put in those directories anyway.
Makefile | 67 ++++++++--------------------------------------------------------
1 file changed, 8 insertions(+), 59 deletions(-)
diff --git a/Makefile b/Makefile
index c2f49ec..6ffdd86 100644
--- a/Makefile
+++ b/Makefile
@@ -6,65 +6,14 @@ distpkg := $(distapp)-$(distver)
PREFIX = ${HOME}/.vim/
-files_vars = \
- files_doc \
- files_ftdetect \
- files_ftplugin \
- files_indent \
- files_plugin \
- files_syntax
-
-files_doc = \
- doc/gentoo-syntax.txt
-
-files_ftdetect = \
- ftdetect/gentoo.vim
-
-files_ftplugin = \
- ftplugin/ebuild.vim \
- ftplugin/gentoo-changelog.vim \
- ftplugin/gentoo-conf-d.vim \
- ftplugin/gentoo-env-d.vim \
- ftplugin/gentoo-init-d.vim \
- ftplugin/gentoo-make-conf.vim \
- ftplugin/gentoo-metadata.vim \
- ftplugin/gentoo-package-keywords.vim \
- ftplugin/gentoo-package-license.vim \
- ftplugin/gentoo-package-mask.vim \
- ftplugin/gentoo-package-properties.vim \
- ftplugin/gentoo-package-use.vim \
- ftplugin/gentoo-use-desc.vim
-
-files_indent = \
- indent/ebuild.vim \
- indent/gentoo-metadata.vim
-
-files_plugin = \
- plugin/gentoo-common.vim \
- plugin/newebuild.vim \
- plugin/newmetadata.vim \
- plugin/newinitd.vim
-
-files_syntax = \
- syntax/ebuild.vim \
- syntax/gentoo-changelog.vim \
- syntax/gentoo-common.vim \
- syntax/gentoo-conf-d.vim \
- syntax/gentoo-env-d.vim \
- syntax/gentoo-init-d.vim \
- syntax/gentoo-make-conf.vim \
- syntax/gentoo-metadata.vim \
- syntax/gentoo-mirrors.vim \
- syntax/gentoo-package-keywords.vim \
- syntax/gentoo-package-license.vim \
- syntax/gentoo-package-mask.vim \
- syntax/gentoo-package-properties.vim \
- syntax/gentoo-package-use.vim \
- syntax/gentoo-use-desc.vim \
- syntax/glep.vim \
- syntax/guidexml.vim
-
-files = $(foreach f, $(files_vars), $($(f)) )
+files = $(wildcard \
+ doc/* \
+ ftdetect/* \
+ ftplugin/* \
+ indent/* \
+ plugin/* \
+ syntax/* \
+)
scripts: ${files}
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] proj/gentoo-syntax:master commit in: /
@ 2021-02-07 0:29 Vadim Misbakh-Soloviov
0 siblings, 0 replies; 18+ messages in thread
From: Vadim Misbakh-Soloviov @ 2021-02-07 0:29 UTC (permalink / raw
To: gentoo-commits
commit: 762f31ff620eb822ae4ca43c5dc2a62ca621f5fe
Author: Florian Sowade <f.sowade <AT> r9e <DOT> de>
AuthorDate: Wed Feb 15 13:24:42 2017 +0000
Commit: Vadim Misbakh-Soloviov <mva <AT> gentoo <DOT> org>
CommitDate: Sun Feb 7 00:28:46 2021 +0000
URL: https://gitweb.gentoo.org/proj/gentoo-syntax.git/commit/?id=762f31ff
add tags file to gitignore
I use this plugin directly from the git repository without running make install. Generating the helptags for this plugin produces the file /doc/tags so I have local changes after generating the help tags. Adding the file to gitignore fixes the problem.
Signed-off-by: Florian Sowade <f.sowade <AT> r9e.de>
Signed-off-by: Vadim Misbakh-Soloviov <mva <AT> gentoo.org>
.gitignore | 2 ++
1 file changed, 2 insertions(+)
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..c488e6a
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,2 @@
+# Copyright 2017-2020 Gentoo Authors
+/doc/tags
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] proj/gentoo-syntax:master commit in: /
@ 2021-09-11 14:09 Mike Gilbert
0 siblings, 0 replies; 18+ messages in thread
From: Mike Gilbert @ 2021-09-11 14:09 UTC (permalink / raw
To: gentoo-commits
commit: c38b35cb2b5c8b1a60b5cfd61749ec3b7268218b
Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Sat Sep 11 14:08:41 2021 +0000
Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Sat Sep 11 14:08:41 2021 +0000
URL: https://gitweb.gentoo.org/proj/gentoo-syntax.git/commit/?id=c38b35cb
Use signed tags
Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
index 6ffdd86..8e170fd 100644
--- a/Makefile
+++ b/Makefile
@@ -40,7 +40,7 @@ uninstall-file-%: $(subst _,/,$*)
[ ! -f "$(PREFIX)/$(subst _,/,$*)" ] || rm "$(PREFIX)/$(subst _,/,$*)"
tag:
- git tag $(distpkg)
+ git tag -s $(distpkg)
@echo "tag created, remember to push it"
clean:
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] proj/gentoo-syntax:master commit in: /
@ 2022-02-23 15:45 Michał Górny
0 siblings, 0 replies; 18+ messages in thread
From: Michał Górny @ 2022-02-23 15:45 UTC (permalink / raw
To: gentoo-commits
commit: ee6e57c091c2dbe5712fdc8624b7694ad0a75093
Author: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Wed Feb 23 08:07:51 2022 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Feb 23 15:45:06 2022 +0000
URL: https://gitweb.gentoo.org/proj/gentoo-syntax.git/commit/?id=ee6e57c0
README: add "License" section
Signed-off-by: Anna Vyalkova <cyber+gentoo <AT> sysrq.in>
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
README.rst | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/README.rst b/README.rst
index 4c61046..1df3161 100644
--- a/README.rst
+++ b/README.rst
@@ -17,3 +17,8 @@ Bugs
Please file issues or submit pull requests on github_.
.. _github: https://github.com/gentoo/gentoo-syntax
+
+License
+=======
+
+You may redistribute this package under the same terms as Vim itself.
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] proj/gentoo-syntax:master commit in: /
@ 2022-02-23 15:45 Michał Górny
0 siblings, 0 replies; 18+ messages in thread
From: Michał Górny @ 2022-02-23 15:45 UTC (permalink / raw
To: gentoo-commits
commit: 8e24f889cd79bbd20b1a67364330380cd1c43f78
Author: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Wed Feb 23 08:23:35 2022 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Feb 23 15:45:07 2022 +0000
URL: https://gitweb.gentoo.org/proj/gentoo-syntax.git/commit/?id=8e24f889
README: add instructions for syntax checker
Signed-off-by: Anna Vyalkova <cyber+gentoo <AT> sysrq.in>
Closes: https://github.com/gentoo/gentoo-syntax/pull/45
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
README.rst | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
diff --git a/README.rst b/README.rst
index 1df3161..6617aa4 100644
--- a/README.rst
+++ b/README.rst
@@ -11,6 +11,24 @@ Installing
* Gentoo users: ``emerge app-vim/gentoo-syntax``
* Everyone else: ``make PREFIX=~/.vim/ install``
+This plugin also provides a syntax checker for ebuilds and eclasses. To enable
+it, you need to install Syntastic_ and pkgcheck_ first::
+
+ # emerge app-vim/syntastic dev-util/pkgcheck
+
+Then you'll need to configure Syntastic (see ``:help syntastic-quickstart``)
+and add the following line to your .vimrc file::
+
+ let g:syntastic_ebuild_checkers = ['pkgcheck']
+
+To find non-POSIX code in OpenRC services, install ``dev-util/checkbashisms``
+and enable it for filetype "sh"::
+
+ let g:syntastic_sh_checkers = ['sh', 'checkbashisms']
+
+.. _Syntastic: https://github.com/vim-syntastic/syntastic
+.. _pkgcheck: https://github.com/pkgcore/pkgcheck
+
Bugs
====
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] proj/gentoo-syntax:master commit in: /
@ 2022-02-23 15:51 Michał Górny
0 siblings, 0 replies; 18+ messages in thread
From: Michał Górny @ 2022-02-23 15:51 UTC (permalink / raw
To: gentoo-commits
commit: c030e871a8d47b6072cd347d9aaf031ce29dc77c
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 23 15:49:51 2022 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Feb 23 15:49:51 2022 +0000
URL: https://gitweb.gentoo.org/proj/gentoo-syntax.git/commit/?id=c030e871
Makefile: remove the old tagging logic
We're moving away from date-tags and into incremental version numbers.
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
Makefile | 8 --------
1 file changed, 8 deletions(-)
diff --git a/Makefile b/Makefile
index 87daee1..91ed461 100644
--- a/Makefile
+++ b/Makefile
@@ -1,9 +1,5 @@
# Makefile for gentoo-syntax
-distapp = gentoo-syntax
-distver := $(shell date -u +%Y%m%d)
-distpkg := $(distapp)-$(distver)
-
PREFIX = ${HOME}/.vim/
files = $(wildcard \
@@ -40,9 +36,5 @@ uninstall-files: $(foreach a, $(sort $(files)), \
uninstall-file-%: $(subst _,/,$*)
[ ! -f "$(PREFIX)/$(subst _,/,$*)" ] || rm "$(PREFIX)/$(subst _,/,$*)"
-tag:
- git tag -s $(distpkg)
- @echo "tag created, remember to push it"
-
clean:
find . -name '*~' | xargs rm || true
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] proj/gentoo-syntax:master commit in: /
@ 2022-02-23 22:27 Michał Górny
0 siblings, 0 replies; 18+ messages in thread
From: Michał Górny @ 2022-02-23 22:27 UTC (permalink / raw
To: gentoo-commits
commit: cf5f268f8b19262515105739bdcc112cd2a6cdbc
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 23 22:27:06 2022 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Feb 23 22:27:06 2022 +0000
URL: https://gitweb.gentoo.org/proj/gentoo-syntax.git/commit/?id=cf5f268f
Makefile: add a new "tag" target
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
Makefile | 3 +++
1 file changed, 3 insertions(+)
diff --git a/Makefile b/Makefile
index 91ed461..04bfcdb 100644
--- a/Makefile
+++ b/Makefile
@@ -28,6 +28,9 @@ install-dir-%:
install-file-%: $(subst _,/,$*)
cp "$(subst _,/,$*)" "$(PREFIX)/$(subst _,/,$*)"
+tag:
+ git tag -s v$$(( $$(git tag -l --sort=-creatordate | sed -n -e 's:^v::p') + 1 ))
+
uninstall : uninstall-files
uninstall-files: $(foreach a, $(sort $(files)), \
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] proj/gentoo-syntax:master commit in: /
@ 2022-07-13 5:26 Michał Górny
0 siblings, 0 replies; 18+ messages in thread
From: Michał Górny @ 2022-07-13 5:26 UTC (permalink / raw
To: gentoo-commits
commit: 3bc67579b990d53cdcf2ba9b016995b41d2b26a3
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 13 05:26:36 2022 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Jul 13 05:26:36 2022 +0000
URL: https://gitweb.gentoo.org/proj/gentoo-syntax.git/commit/?id=3bc67579
Fix tag rule for multiple existing tags
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
index 04bfcdb..9d2d016 100644
--- a/Makefile
+++ b/Makefile
@@ -29,7 +29,7 @@ install-file-%: $(subst _,/,$*)
cp "$(subst _,/,$*)" "$(PREFIX)/$(subst _,/,$*)"
tag:
- git tag -s v$$(( $$(git tag -l --sort=-creatordate | sed -n -e 's:^v::p') + 1 ))
+ git tag -s v$$(( $$(git tag -l --sort=-creatordate | sed -n -e 's:^v::p' | head -n 1) + 1 ))
uninstall : uninstall-files
^ permalink raw reply related [flat|nested] 18+ messages in thread
end of thread, other threads:[~2022-07-13 5:27 UTC | newest]
Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-02 17:20 [gentoo-commits] proj/gentoo-syntax:master commit in: / Tim Harder
-- strict thread matches above, loose matches on Subject: below --
2022-07-13 5:26 Michał Górny
2022-02-23 22:27 Michał Górny
2022-02-23 15:51 Michał Górny
2022-02-23 15:45 Michał Górny
2022-02-23 15:45 Michał Górny
2021-09-11 14:09 Mike Gilbert
2021-02-07 0:29 Vadim Misbakh-Soloviov
2016-03-06 0:23 Tim Harder
2016-03-06 0:23 Tim Harder
2016-03-06 0:09 Tim Harder
2016-02-02 17:29 Tim Harder
2014-11-29 8:00 Tim Harder
2014-11-29 5:15 Tim Harder
2014-11-29 5:15 Tim Harder
2014-11-29 5:15 Tim Harder
2014-11-02 22:04 Tim Harder
2012-02-14 3:28 Christian Ruppert
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox