SHA256
1
0
forked from pool/gperf
OBS User unknown
2007-01-15 23:15:31 +00:00
committed by Git OBS Bridge
commit 38a659f4ed
6 changed files with 240 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
gperf-3.0.2.tar.bz2 Normal file
View File

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

104
gperf.changes Normal file
View File

@@ -0,0 +1,104 @@
-------------------------------------------------------------------
Mon Jul 17 15:38:58 CEST 2006 - ro@suse.de
- update to 3.0.2
- documentation fixes
- Fix #line directives for filenames containing backslashes
- add option --length-table-name
-------------------------------------------------------------------
Wed Jan 25 21:36:18 CET 2006 - mls@suse.de
- converted neededforbuild to BuildRequires
-------------------------------------------------------------------
Sun May 22 01:38:19 CEST 2005 - schwab@suse.de
- Fix missing declaration.
-------------------------------------------------------------------
Mon Oct 20 01:59:56 CEST 2003 - ro@suse.de
- don't build as root
-------------------------------------------------------------------
Mon Jun 16 11:14:19 CEST 2003 - ro@suse.de
- update to 3.0.1 (documentation and testsuite fixes)
-------------------------------------------------------------------
Mon May 19 12:14:25 CEST 2003 - ro@suse.de
- remove unpackaged file
-------------------------------------------------------------------
Thu May 15 12:18:40 CEST 2003 - ro@suse.de
- update to 3.0 with many additional options
-------------------------------------------------------------------
Tue May 13 00:39:16 CEST 2003 - ro@suse.de
- fix file list
-------------------------------------------------------------------
Thu Apr 24 12:20:23 CEST 2003 - ro@suse.de
- fix install_info --delete call and move from preun to postun
-------------------------------------------------------------------
Thu Feb 6 17:16:16 CET 2003 - ro@suse.de
- added install-info macros
-------------------------------------------------------------------
Mon Oct 28 12:53:58 CET 2002 - ro@suse.de
- buildrooted
-------------------------------------------------------------------
Tue Sep 17 17:34:28 CEST 2002 - ro@suse.de
- removed bogus self-provides
-------------------------------------------------------------------
Wed Feb 27 12:30:52 CET 2002 - ro@suse.de
- bzipped source
- added docu files to filelist (#13968)
-------------------------------------------------------------------
Wed Jun 13 13:38:37 CEST 2001 - schwab@suse.de
- Don't link statically any more.
-------------------------------------------------------------------
Sat Sep 30 00:41:31 CEST 2000 - ro@suse.de
- update to 2.7.2
-------------------------------------------------------------------
Mon Sep 25 15:25:15 CEST 2000 - ro@suse.de
- sorted
-------------------------------------------------------------------
Thu Jan 20 18:30:14 CET 2000 - ro@suse.de
- specfile cleanup, man,info -> usr/share
-------------------------------------------------------------------
Mon Sep 13 17:23:57 CEST 1999 - bs@suse.de
- ran old prepare_spec on spec file to switch to new prepare_spec.
-------------------------------------------------------------------
Fri Jan 15 00:40:36 MET 1999 - ro@suse.de
- link statically: needed when rebuilding libstdc++
-------------------------------------------------------------------
Fri Jan 15 00:05:54 MET 1999 - ro@suse.de
- created initial package using jurix dif

109
gperf.spec Normal file
View File

@@ -0,0 +1,109 @@
#
# spec file for package gperf (Version 3.0.2)
#
# Copyright (c) 2006 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
# package are under the same license as the package itself.
#
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
# norootforbuild
Name: gperf
BuildRequires: gcc-c++
License: GPL
Group: Development/Languages/C and C++
PreReq: %install_info_prereq
Autoreqprov: on
Version: 3.0.2
Release: 1
Summary: A Compiler Tool for Generating Perfect Hash Functions
Source: ftp://ftp.gnu.org/pub/gnu/gperf/gperf-%{version}.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
A perfect hash function is simply: a hash function and a data structure
that allows recognition of a key word in a set of words using exactly
one probe into the data structure.
Authors:
--------
Doug Schmidt <schnidt@siam.ics.uci.edu>
Bruno Haible <bruno@linuix.mathematik.uni-karlsruhe.de>
%prep
%setup
%build
CXXFLAGS="$RPM_OPT_FLAGS" CFLAGS="$RPM_OPT_FLAGS" \
./configure --prefix=/usr \
--mandir=%{_mandir} --infodir=%{_infodir} %{_target_cpu}-suse-linux
make
make check
%install
make install DESTDIR=$RPM_BUILD_ROOT
rm -f $RPM_BUILD_ROOT/usr/doc/gperf/gperf.html
rm -f $RPM_BUILD_ROOT/usr/share/doc/gperf/gperf.html
%post
%install_info --info-dir=%{_infodir} %{_infodir}/%{name}.info.gz
%postun
%install_info_delete --info-dir=%{_infodir} %{_infodir}/%{name}.info.gz
%files
%defattr (-,root,root)
%doc README NEWS AUTHORS COPYING ChangeLog doc/*.html
/usr/bin/gperf
%doc %{_infodir}/gperf.info.gz
%doc %{_mandir}/man1/gperf.1.gz
%changelog -n gperf
* Mon Jul 17 2006 - ro@suse.de
- update to 3.0.2
- documentation fixes
- Fix #line directives for filenames containing backslashes
- add option --length-table-name
* Wed Jan 25 2006 - mls@suse.de
- converted neededforbuild to BuildRequires
* Sun May 22 2005 - schwab@suse.de
- Fix missing declaration.
* Mon Oct 20 2003 - ro@suse.de
- don't build as root
* Mon Jun 16 2003 - ro@suse.de
- update to 3.0.1 (documentation and testsuite fixes)
* Mon May 19 2003 - ro@suse.de
- remove unpackaged file
* Thu May 15 2003 - ro@suse.de
- update to 3.0 with many additional options
* Tue May 13 2003 - ro@suse.de
- fix file list
* Thu Apr 24 2003 - ro@suse.de
- fix install_info --delete call and move from preun to postun
* Thu Feb 06 2003 - ro@suse.de
- added install-info macros
* Mon Oct 28 2002 - ro@suse.de
- buildrooted
* Tue Sep 17 2002 - ro@suse.de
- removed bogus self-provides
* Wed Feb 27 2002 - ro@suse.de
- bzipped source
- added docu files to filelist (#13968)
* Wed Jun 13 2001 - schwab@suse.de
- Don't link statically any more.
* Sat Sep 30 2000 - ro@suse.de
- update to 2.7.2
* Mon Sep 25 2000 - ro@suse.de
- sorted
* Thu Jan 20 2000 - ro@suse.de
- specfile cleanup, man,info -> usr/share
* Mon Sep 13 1999 - bs@suse.de
- ran old prepare_spec on spec file to switch to new prepare_spec.
* Fri Jan 15 1999 - ro@suse.de
- link statically: needed when rebuilding libstdc++
* Fri Jan 15 1999 - ro@suse.de
- created initial package using jurix dif

0
ready Normal file
View File