Compare commits

..

3 commits

Author SHA1 Message Date
Fedora Release Engineering
b800695445 dist-git conversion 2010-07-29 14:35:01 +00:00
Silas Sewell
4a58b37eb0 Initial import 2010-07-26 23:27:03 +00:00
0206dd767f Initialize branch F-13 for txmpp 2010-07-26 22:41:38 +00:00
4 changed files with 72 additions and 1 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
txmpp-0.0.2.tar.gz

View file

@ -1 +0,0 @@
2014-06-04 - This package was already retired in pkgdb/blocked in koji, but no dead.package file existed. The original retirement reason is unclear.

1
sources Normal file
View file

@ -0,0 +1 @@
dec646a9113aaada5eb423bfcd0f5a92 txmpp-0.0.2.tar.gz

70
txmpp.spec Normal file
View file

@ -0,0 +1,70 @@
Name: txmpp
Version: 0.0.2
Release: 3%{?dist}
Summary: A C++ XMPP library
Group: System Environment/Libraries
License: BSD
URL: http://www.tidg.org/txmpp
Source0: http://github.com/downloads/tidg/txmpp/%{name}-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: expat-devel >= 2.0.1
BuildRequires: openssl-devel
BuildRequires: scons
%description
txmpp is a permissively licensed C++ XMPP library.
%package devel
Summary: Development files for %{name}
Group: Development/Libraries
Requires: %{name} = %{version}-%{release}
%description devel
txmpp is a permissively licensed C++ XMPP library.
The %{name}-devel package contains libraries and header files for
developing applications that use %{name}.
%prep
%setup -q
%build
scons %{?_smp_mflags} --flags="%{optflags}"
%install
rm -rf %{buildroot}
scons %{?_smp_mflags} --flags="%{optflags}" --install \
--includedir=%{buildroot}/%{_includedir} \
--libdir=%{buildroot}/%{_libdir}
%clean
rm -rf %{buildroot}
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%files
%defattr(-,root,root,-)
%doc AUTHORS CHANGELOG LICENSE README.md
%{_libdir}/*.so.*
%files devel
%defattr(-,root,root,-)
%{_includedir}/txmpp
%{_libdir}/*.so
%changelog
* Sun Jul 25 2010 Silas Sewell <silas@sewell.ch> - 0.0.2-3
- Remove expat2
* Sun Jul 25 2010 Silas Sewell <silas@sewell.ch> - 0.0.2-2
- Remove documentation from devel package
- Fix main package group
* Fri Jul 02 2010 Silas Sewell <silas@sewell.ch> - 0.0.2-1
- Release 0.0.2
- Include AUTHORS & CHANGELOG
* Tue Jun 15 2010 Silas Sewell <silas@sewell.ch> - 0.0.1-1
- Initial build