OBS User unknown 2009-02-11 03:59:27 +00:00 committed by Git OBS Bridge
commit e07cf12df9
7 changed files with 120 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

13
fix_makefile.patch Normal file
View File

@ -0,0 +1,13 @@
diff -ur BUILD/wireless-regdb-2009.01.30/Makefile BUILD2/wireless-regdb-2009.01.30/Makefile
--- BUILD/wireless-regdb-2009.01.30/Makefile 2009-01-30 21:39:04.000000000 +0100
+++ BUILD2/wireless-regdb-2009.01.30/Makefile 2009-02-09 15:19:30.000000000 +0100
@@ -32,7 +32,7 @@
# Distributions wishing to just use John's database
# can just call make install.
install: regulatory.bin.5.gz
- install -o 0 -g 0 -m 755 -d $(DESTDIR)/$(CDRA_PATH)
- install -o 0 -g 0 -m 644 regulatory.bin $(DESTDIR)/$(CDRA_PATH)/regulatory.bin
+ install -m 755 -d $(DESTDIR)/$(CDRA_PATH)
+ install -m 644 regulatory.bin $(DESTDIR)/$(CDRA_PATH)/regulatory.bin
mkdir -p $(DESTDIR)/$(MANDIR)/man5/
install -m 644 -t $(DESTDIR)/$(MANDIR)/man5/ regulatory.bin.5.gz

0
ready Normal file
View File

View File

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

11
wireless-regdb.changes Normal file
View File

@ -0,0 +1,11 @@
-------------------------------------------------------------------
Mon Feb 9 15:14:30 CET 2009 - hschaa@suse.de
- Update to 2009.01.30
- Needed for fate#305301
-------------------------------------------------------------------
Sat Jan 24 13:00:00 CET 2009 - helmut.schaa@googlemail.com
- Initial package

69
wireless-regdb.spec Normal file
View File

@ -0,0 +1,69 @@
#
# spec file for package wireless-regdb (Version 2009.01.30)
#
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# 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/
#
# norootforbuild
Name: wireless-regdb
Summary: 802.11 regulatory domain database
Version: 2009.01.30
Release: 2
%define tarversion %{version}
Group: Hardware/Wifi
License: BSD 3-Clause
Source: %{name}-%{tarversion}.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-build
PreReq: %insserv_prereq %fillup_prereq %install_info_prereq
BuildArch: noarch
Patch0: fix_makefile.patch
%description
The 802.11 regulatory domain database is used by CRDA and provides
allowed frequency ranges for 802.11 wireless drivers.
Authors:
--------
Luis R. Rodriguez <mcgrof@gmail.com>
Johannes Berg <johannes@sipsolutions.net>
Michael Green <Michael.Green@Atheros.com>
%prep
%setup -n %{name}-%{tarversion}
%patch0 -p2
%build
%install
make DESTDIR=$RPM_BUILD_ROOT install
%files
%defattr(-,root,root)
%dir %{_prefix}/lib/crda
%{_prefix}/lib/crda/regulatory.bin
%{_prefix}/share/man/man5/regulatory.bin.5.gz
%clean
test "$RPM_BUILD_ROOT" != "/" && rm -rf $RPM_BUILD_ROOT
%changelog
* Mon Feb 09 2009 hschaa@suse.de
- Update to 2009.01.30
- Needed for fate#305301
* Sat Jan 24 2009 helmut.schaa@googlemail.com
- Initial package