Hello community, here is the log from the commit of package hwinfo for openSUSE:Factory checked in at 2013-01-10 13:05:41 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/hwinfo (Old) and /work/SRC/openSUSE:Factory/.hwinfo.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "hwinfo", Maintainer is "[email protected]" Changes: -------- --- /work/SRC/openSUSE:Factory/hwinfo/hwinfo.changes 2012-08-07 08:09:37.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.hwinfo.new/hwinfo.changes 2013-01-10 13:05:43.000000000 +0100 @@ -1,0 +2,11 @@ +Wed Jan 9 13:58:00 CET 2013 - [email protected] + +- moved man pages into git + +------------------------------------------------------------------- +Tue Nov 6 14:22:44 UTC 2012 - [email protected] + +- cleanup of spec +- added missing manual pages + +------------------------------------------------------------------- Old: ---- hwinfo-20.0.tar.bz2 New: ---- hwinfo-20.1.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ hwinfo.spec ++++++ --- /var/tmp/diff_new_pack.BGISbJ/_old 2013-01-10 13:05:44.000000000 +0100 +++ /var/tmp/diff_new_pack.BGISbJ/_new 2013-01-10 13:05:44.000000000 +0100 @@ -1,7 +1,7 @@ # # spec file for package hwinfo # -# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2013 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 @@ -20,6 +20,7 @@ BuildRequires: doxygen BuildRequires: flex BuildRequires: perl-XML-Parser +BuildRequires: pkg-config BuildRequires: udev %if 0%{?rhel_version} == 0 BuildRequires: perl-XML-Writer @@ -33,9 +34,11 @@ Summary: Hardware Library License: GPL-2.0+ Group: Hardware/Other -Version: 20.0 +# Until migration to github this should be correct url +Url: http://gitorious.org/opensuse/hwinfo +Version: 20.1 Release: 0 -Source: hwinfo-20.0.tar.bz2 +Source: hwinfo-20.1.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-build %description @@ -49,7 +52,10 @@ Group: Development/Libraries/C and C++ Provides: libhddev Obsoletes: libhddev -Requires: %name = %version perl-XML-Parser udev wireless-tools +Requires: %name = %version +Requires: perl-XML-Parser +Requires: udev +Requires: wireless-tools %if 0%{?rhel_version} == 0 Requires: perl-XML-Writer %endif @@ -69,21 +75,23 @@ %setup %build -# This package failed when testing with -Wl,-as-needed being default. -# So we disable it here, if you want to retest, just delete this comment and the line below. -export SUSE_ASNEEDED=0 make static - install -d -m 755 %{buildroot}%{_libdir} - install -m 644 src/libhd.a %{buildroot}%{_libdir} + # make copy of static library for installation + cp src/libhd.a . make clean make LIBDIR=%{_libdir} make doc - gzip -9c doc/hwinfo.8 >hwinfo.8.gz %install make install DESTDIR=%{buildroot} LIBDIR=%{_libdir} - install -d -m 755 %{buildroot}%{_mandir}/man8 - install -m 644 hwinfo.8.gz %{buildroot}%{_mandir}/man8 + install -m 644 libhd.a %{buildroot}%{_libdir} + install -d -m 755 %{buildroot}%{_mandir}/man8/ + install -d -m 755 %{buildroot}%{_mandir}/man1/ + install -m 644 doc/check_hd.1 %{buildroot}%{_mandir}/man1/ + install -m 644 doc/convert_hd.1 %{buildroot}%{_mandir}/man1/ + install -m 644 doc/getsysinfo.1 %{buildroot}%{_mandir}/man1/ + install -m 644 doc/mk_isdnhwdb.1 %{buildroot}%{_mandir}/man1/ + install -m 644 doc/hwinfo.8 %{buildroot}%{_mandir}/man8/ mkdir -p %{buildroot}/var/lib/hardware/udi %clean @@ -100,7 +108,9 @@ /usr/sbin/getsysinfo %{_libdir}/libhd.so.* %doc README -%doc %{_mandir}/man8/hwinfo.8.gz +%doc %{_mandir}/man1/getsysinfo.1* +%doc %{_mandir}/man1/mk_isdnhwdb.1* +%doc %{_mandir}/man8/hwinfo.8* %dir /var/lib/hardware %dir /var/lib/hardware/udi %dir /usr/share/hwinfo @@ -110,6 +120,8 @@ %defattr(-,root,root) /usr/sbin/check_hd /usr/sbin/convert_hd +%doc %{_mandir}/man1/convert_hd.1* +%doc %{_mandir}/man1/check_hd.1* %{_libdir}/libhd.so %{_libdir}/libhd.a %{_libdir}/pkgconfig/hwinfo.pc ++++++ hwinfo-20.0.tar.bz2 -> hwinfo-20.1.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/hwinfo-20.0/VERSION new/hwinfo-20.1/VERSION --- old/hwinfo-20.0/VERSION 2012-08-06 11:55:14.000000000 +0200 +++ new/hwinfo-20.1/VERSION 2013-01-09 13:57:57.000000000 +0100 @@ -1 +1 @@ -20.0 +20.1 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/hwinfo-20.0/changelog new/hwinfo-20.1/changelog --- old/hwinfo-20.0/changelog 2012-08-06 11:55:16.000000000 +0200 +++ new/hwinfo-20.1/changelog 2013-01-09 13:57:59.000000000 +0100 @@ -1,3 +1,6 @@ +2013-01-09: HEAD + - Boris Manojlovic: add missing man pages + 2012-05-22: 20.0 - change multi-interface detection to work with old sysfs layout (bnc #739368, bnc #693090) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/hwinfo-20.0/doc/check_hd.1 new/hwinfo-20.1/doc/check_hd.1 --- old/hwinfo-20.0/doc/check_hd.1 1970-01-01 01:00:00.000000000 +0100 +++ new/hwinfo-20.1/doc/check_hd.1 2013-01-09 13:57:39.000000000 +0100 @@ -0,0 +1,84 @@ +.TH CHECK_HD "1" "User Commands" +.SH NAME +manual page for check_hd +.SH SYNOPSIS +.B check_hd +[\fIoptions\fR] \fIfiles\fR +.SH DESCRIPTION +Try to put hardware data into a consistent form. +.TP +\fB\-\-check\fR +do a lot of checks and remove unnecessary data +.TP +\fB\-\-sort\fR +sort data +.TP +\fB\-\-reverse\fR +reverse sorting order +.TP +\fB\-\-split\fR +write separate entries for each key +.TP +\fB\-\-with\-source\fR +add comment to each item indicating info source +.TP +\fB\-\-mini\fR +minimal data base (basically driver info only) +.TP +\fB\-\-join\-keys\-first\fR +when combining similar items, join entries with +common keys first (default is common values first) +.TP +\fB\-\-cfile\fR file +create C file to be included in libhd +.TP +\fB\-\-no\-compact\fR +don't try to make C version as small as possible +.TP +\fB\-\-out\fR file +write results to file, default is "hd.ids" +.TP +\fB\-\-log\fR file +write log info to file, default is "hd.log" +.IP +Note: check_hd works with libhd/hwinfo internal format only; +to convert to other formats, use convert_hd +.PP +Try to put hardware data into a consistent form. +.TP +\fB\-\-check\fR +do a lot of checks and remove unnecessary data +.TP +\fB\-\-sort\fR +sort data +.TP +\fB\-\-reverse\fR +reverse sorting order +.TP +\fB\-\-split\fR +write separate entries for each key +.TP +\fB\-\-with\-source\fR +add comment to each item indicating info source +.TP +\fB\-\-mini\fR +minimal data base (basically driver info only) +.TP +\fB\-\-join\-keys\-first\fR +when combining similar items, join entries with +common keys first (default is common values first) +.TP +\fB\-\-cfile\fR file +create C file to be included in libhd +.TP +\fB\-\-no\-compact\fR +don't try to make C version as small as possible +.TP +\fB\-\-out\fR file +write results to file, default is "hd.ids" +.TP +\fB\-\-log\fR file +write log info to file, default is "hd.log" +.IP +Note: check_hd works with libhd/hwinfo internal format only; +to convert to other formats, use convert_hd diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/hwinfo-20.0/doc/convert_hd.1 new/hwinfo-20.1/doc/convert_hd.1 --- old/hwinfo-20.0/doc/convert_hd.1 1970-01-01 01:00:00.000000000 +0100 +++ new/hwinfo-20.1/doc/convert_hd.1 2013-01-09 13:57:39.000000000 +0100 @@ -0,0 +1,29 @@ +.TH CONVERT_HD "1" "User Commands" +.SH NAME +convert_hd +.SH SYNOPSIS +.B convert_hd +[\fIoptions\fR] \fIfiles\fR +.SH DESCRIPTION +Convert various hardware info to libhd/hwinfo internal format or to XML. +.TP +\fB\-\-ids\fR +write internal format (default) to "hd.ids" +.TP +\fB\-\-no\-ids\fR +do not write internal format +.TP +\fB\-\-xml\fR +write XML to "hd.xml", DTD to "hd.dtd" +.TP +\fB\-\-no\-xml\fR +do not write XML (default) +.TP +\fB\-\-with\-source\fR +add comment to each item indicating info source +.TP +\fB\-\-internal\-dtd\fR +generate internal dtd +.IP +Note: for more sophisticated operations on hardware data use check_hd. +.IP diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/hwinfo-20.0/doc/getsysinfo.1 new/hwinfo-20.1/doc/getsysinfo.1 --- old/hwinfo-20.0/doc/getsysinfo.1 1970-01-01 01:00:00.000000000 +0100 +++ new/hwinfo-20.1/doc/getsysinfo.1 2013-01-09 13:57:39.000000000 +0100 @@ -0,0 +1,10 @@ +.TH GETSYSINFO "1" "getsysinfo" "User Commands" +.SH NAME +getsysinfo +.SH SYNOPSIS +.B getsysinfo + +.SH DESCRIPTION +Collect some system data that are useful for debugging +hardware detection bugs. +.PP diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/hwinfo-20.0/doc/mk_isdnhwdb.1 new/hwinfo-20.1/doc/mk_isdnhwdb.1 --- old/hwinfo-20.0/doc/mk_isdnhwdb.1 1970-01-01 01:00:00.000000000 +0100 +++ new/hwinfo-20.1/doc/mk_isdnhwdb.1 2013-01-09 13:57:39.000000000 +0100 @@ -0,0 +1,8 @@ +.TH mk_isdnhwdb "1" "mk_isdnhwdb" "User Commands" +.SH NAME +mk_isdnhwdb +.SH SYNOPSIS +.B mk_isdnhwdb + +.SH DESCRIPTION +.PP -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
