Branch: refs/heads/master
Author: Frank Lanitz <frank(a)frank.uvena.de>
Committer: Frank Lanitz <frank(a)frank.uvena.de>
Date: Sat, 26 Oct 2013 18:54:40 UTC
Commit: d0b808fad0bfa65281f079da1b8774c94742e1f3
https://github.com/geany/geany-plugins/commit/d0b808fad0bfa65281f079da1b877…
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).
Branch: refs/heads/master
Author: Roland Pallai <rpallai(a)magex.hu>
Committer: Roland Pallai <rpallai(a)magex.hu>
Date: Sat, 26 Oct 2013 16:06:01 UTC
Commit: 49eb1dd688b60fa4b57c018e1d0afcd10f2834be
https://github.com/geany/geany-plugins/commit/49eb1dd688b60fa4b57c018e1d0af…
Log Message:
-----------
pairtaghighlighter: waf build script
Modified Paths:
--------------
pairtaghighlighter/wscript_build
pairtaghighlighter/wscript_configure
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).
Branch: refs/heads/master
Author: Roland Pallai <rpallai(a)magex.hu>
Committer: Roland Pallai <rpallai(a)magex.hu>
Date: Sat, 26 Oct 2013 16:05:03 UTC
Commit: 6b58d7b1c6ac83a09bf6954a74f2ebe8f858968b
https://github.com/geany/geany-plugins/commit/6b58d7b1c6ac83a09bf6954a74f2e…
Log Message:
-----------
autoclose: waf build script
Modified Paths:
--------------
autoclose/wscript_build
autoclose/wscript_configure
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
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).