Branch: refs/heads/master Author: Frank Lanitz frank@frank.uvena.de Committer: Frank Lanitz frank@frank.uvena.de Date: Sat, 26 Oct 2013 18:54:40 UTC Commit: d0b808fad0bfa65281f079da1b8774c94742e1f3 https://github.com/geany/geany-plugins/commit/d0b808fad0bfa65281f079da1b8774...
Log Message: ----------- Merge pull request #118 from rpallai/wscripts
waf build scripts for new plugins
Modified Paths: -------------- .gitignore autoclose/wscript_build autoclose/wscript_configure pairtaghighlighter/wscript_build pairtaghighlighter/wscript_configure
Modified: .gitignore 2 files changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -53,7 +53,7 @@ Makefile.in /*.tar.* /TODO.* /.waf-* -.lock-wafbuild +.lock-waf*
#----------------------------------------------------------------------- # /po/
Modified: autoclose/wscript_build 28 files changed, 28 insertions(+), 0 deletions(-) =================================================================== @@ -0,0 +1,28 @@ +# -*- coding: utf-8 -*- +# +# WAF build script for geany-plugins - Autoclose +# +# Copyright 2013 Roland Pallai <rpallai(at)magex(dot)hu> +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +# + +from build.wafutils import build_plugin + + +name = 'Autoclose' +includes = ['autoclose/src'] + +build_plugin(bld, name, includes=includes)
Modified: autoclose/wscript_configure 22 files changed, 22 insertions(+), 0 deletions(-) =================================================================== @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +# +# WAF build script for geany-plugins - Autoclose +# +# Copyright 2013 Roland Pallai <rpallai(at)magex(dot)hu> +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +# + +from build.wafutils import check_cfg_cached, check_c_header_cached
Modified: pairtaghighlighter/wscript_build 28 files changed, 28 insertions(+), 0 deletions(-) =================================================================== @@ -0,0 +1,28 @@ +# -*- coding: utf-8 -*- +# +# WAF build script for geany-plugins - Pairtaghighlighter +# +# Copyright 2013 Roland Pallai <rpallai(at)magex(dot)hu> +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +# + +from build.wafutils import build_plugin + + +name = 'Pairtaghighlighter' +includes = ['pairtaghighlighter/src'] + +build_plugin(bld, name, includes=includes)
Modified: pairtaghighlighter/wscript_configure 25 files changed, 25 insertions(+), 0 deletions(-) =================================================================== @@ -0,0 +1,25 @@ +# -*- coding: utf-8 -*- +# +# WAF build script for geany-plugins - Pairtaghighlighter +# +# Copyright 2013 Roland Pallai <rpallai(at)magex(dot)hu> +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +# + +from build.wafutils import check_cfg_cached, check_c_header_cached + + +check_c_header_cached(conf, header_name='string.h', mandatory=True)
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).