Accepting request 520411 from home:psych0naut

Revised per review of Request 520372

OBS-URL: https://build.opensuse.org/request/show/520411
OBS-URL: https://build.opensuse.org/package/show/devel:tools/gpp?expand=0&rev=1
This commit is contained in:
Martin Pluskal 2017-09-03 08:49:17 +00:00 committed by Git OBS Bridge
commit aa560edd54
5 changed files with 89 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.osc

3
gpp-2.25.tar.bz2 Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:16ba9329208f587f96172f951ad3d24a81afea6a5b7836fe87955726eacdd19f
size 137361

9
gpp.changes Normal file
View File

@ -0,0 +1,9 @@
-------------------------------------------------------------------
Sat Sep 2 20:51:50 UTC 2017 - psychonaut@nothingisreal.com
- Improved compliance with openSUSE spec file guidelines
-------------------------------------------------------------------
Tue Dec 27 00:00:00 UTC 2016 - psychonaut@nothingisreal.com
- Initial build

53
gpp.spec Normal file
View File

@ -0,0 +1,53 @@
#
# spec file for package gpp
#
# Copyright (c) 2017 Tristan Miller <psychonaut@nothingisreal.com>
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
Summary: Generic Preprocessor
Name: gpp
Version: 2.25
Release: 0
License: LGPL-3.0+
Group: Development/Tools/Other
URL: https://logological.org/gpp/
Source0: https://files.nothingisreal.com/%{name}/%{name}-%{version}.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
BuildRequires: gcc
%description
GPP is a general-purpose preprocessor with customizable syntax,
suitable for a wide range of preprocessing tasks. Its independence
from any one programming language makes it much more versatile than
the C preprocessor (cpp), while its syntax is lighter and more
flexible than that of GNU m4. There are built-in macros for use with
C/C++, LaTeX, HTML, XHTML, and Prolog files.
%prep
%setup -q
%build
%{_configure} --prefix=%{_prefix} --docdir=%{_docdir}/%{name}
make %{?_smp_mflags}
%install
%make_install
%files
%defattr(-,root,root,-)
%{_bindir}/gpp
%{_docdir}/%{name}
%{_mandir}/man1/gpp.1.gz
%changelog