Mailinglist Archive: opensuse-commit (857 mails)

< Previous Next >
commit libotr
  • From: root@xxxxxxxxxxxxxxx (h_root)
  • Date: Mon, 12 Nov 2007 21:54:46 +0100
  • Message-id: <20071112205446.DF5BB678335@xxxxxxxxxxxxxxx>

Hello community,

here is the log from the commit of package libotr
checked in at Mon Nov 12 21:54:46 CET 2007.

--------
--- libotr/libotr.changes 2006-10-07 11:15:20.000000000 +0200
+++ /mounts/work_src_done/STABLE/libotr/libotr.changes 2007-10-09
06:02:53.000000000 +0200
@@ -1,0 +2,10 @@
+Tue Oct 9 06:02:16 CEST 2007 - crrodriguez@xxxxxxx
+
+- update to version 3.1.0
+- run ldconfig
+- make autobuild happy fixing the warnings
+- fix devel package dependencies.
+- remove static libraries
+- use library packaging policy
+
+-------------------------------------------------------------------

Old:
----
libotr-3.0.0.tar.gz

New:
----
libotr-3.1.0.tar.bz2

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ libotr.spec ++++++
--- /var/tmp/diff_new_pack.HA6400/_old 2007-11-12 21:53:29.000000000 +0100
+++ /var/tmp/diff_new_pack.HA6400/_new 2007-11-12 21:53:29.000000000 +0100
@@ -1,7 +1,7 @@
#
-# spec file for package libotr (Version 3.0.0)
+# spec file for package libotr (Version 3.1.0)
#
-# Copyright (c) 2006 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2007 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.
#
@@ -12,14 +12,14 @@

Name: libotr
BuildRequires: libgcrypt-devel
-Version: 3.0.0
-Release: 22
-URL: http://www.cypherpunks.ca/otr/
+Version: 3.1.0
+Release: 1
+Url: http://www.cypherpunks.ca/otr/
Group: Development/Libraries/C and C++
-License: LGPL
+License: LGPL v2.1 or later
Summary: "Off The Record" messaging library toolkit
-Source: http://www.cypherpunks.ca/otr/%{name}-%{version}.tar.gz
-Autoreqprov: on
+Source: http://www.cypherpunks.ca/otr/%{name}-%{version}.tar.bz2
+AutoReqProv: on
BuildRoot: %{_tmppath}/%{name}-%{version}-build

%description
@@ -40,10 +40,35 @@
--------
Nikita Borisov and Ian Goldberg <otr@xxxxxxxxxxxxxx>

+%package -n libotr2
+Summary: "Off The Record" messaging library toolkit
+Group: Development/Libraries/C and C++
+#openSUSE 10.3
+Provides: %{name} = %{version}
+Obsoletes: %{name} <= 3.0.0
+
+%description -n libotr2
+Off-the-Record (OTR) Messaging allows you to have private conversations
+over instant messaging by providing: Encryption No one else can read
+your instant messages. Authentication You are assured the correspondent
+is who you think it is. Deniability The messages you send do not have
+digital signatures that are checkable by a third party. Anyone can
+forge messages after a conversation to make them look like they came
+from you. However, during a conversation, your correspondent is assured
+the messages he sees are authentic and unmodified. Perfect forward
+secrecy If you lose control of your private keys, no previous
+conversation is compromised.
+
+
+
+Authors:
+--------
+ Nikita Borisov and Ian Goldberg <otr@xxxxxxxxxxxxxx>
+
%package devel
-Summary: libotr: include files and development libraries
+Summary: Include files and development libraries
Group: Development/Libraries/C and C++
-Requires: glibc-devel, libgpg-error-devel, libgcrypt-devel libotr
+Requires: libotr2 = %{version} libgcrypt-devel

%description devel
Headers and development libraries for libotr
@@ -54,8 +79,30 @@
--------
Nikita Borisov and Ian Goldberg <otr@xxxxxxxxxxxxxx>

+%package tools
+Summary: "Off The Record" messaging library toolkit
+Group: Development/Libraries/C and C++
+
+%description tools
+Off-the-Record (OTR) Messaging allows you to have private conversations
+over instant messaging by providing: Encryption No one else can read
+your instant messages. Authentication You are assured the correspondent
+is who you think it is. Deniability The messages you send do not have
+digital signatures that are checkable by a third party. Anyone can
+forge messages after a conversation to make them look like they came
+from you. However, during a conversation, your correspondent is assured
+the messages he sees are authentic and unmodified. Perfect forward
+secrecy If you lose control of your private keys, no previous
+conversation is compromised.
+
+
+
+Authors:
+--------
+ Nikita Borisov and Ian Goldberg <otr@xxxxxxxxxxxxxx>
+
%prep
-%setup
+%setup -q

%build
%ifarch %arm
@@ -63,35 +110,48 @@
%else
export CFLAGS="$RPM_OPT_FLAGS"
%endif
-./configure\
- --prefix=/usr \
- --libdir=/usr/%{_lib} \
- --mandir=%{_mandir}
-make %_smp_mflags
+autoreconf -fi
+%configure --disable-static --with-pic
+%{__make} %{?jobs:-j%jobs}
+
+%check
+%{__make} check

%install
-rm -rf $RPM_BUILD_ROOT
-make DESTDIR=$RPM_BUILD_ROOT install
+%{__make} DESTDIR=%{buildroot} install
+%{__rm} -f %{buildroot}%{_libdir}/libotr.la

%clean
-rm -rf $RPM_BUILD_ROOT
+%{__rm} -rf %{buildroot}

-%files
+%files tools
%defattr (-, root, root)
-%doc COPYING README COPYING.LIB AUTHORS NEWS ChangeLog
-/usr/bin/otr*
-/usr/%{_lib}/libotr.so.*
+%{_bindir}/otr*
%{_mandir}/man1/otr*

-%files devel
+%files -n libotr2
%defattr (-, root, root)
-%dir /usr/include/libotr
-/usr/include/libotr/*
-/usr/%{_lib}/libotr.so
-/usr/%{_lib}/libotr.*a
-/usr/share/aclocal/libotr.m4
+%{_libdir}/libotr.so.2*

-%changelog -n libotr
+%files devel
+%defattr (-, root, root)
+%doc COPYING README COPYING.LIB AUTHORS NEWS ChangeLog
+%dir %{_includedir}/libotr
+%{_includedir}/libotr/*.h
+%{_libdir}/libotr.so
+%{_datadir}/aclocal/libotr.m4
+
+%post -n libotr2 -p /sbin/ldconfig
+
+%postun -n libotr2 -p /sbin/ldconfig
+%changelog
+* Tue Oct 09 2007 - crrodriguez@xxxxxxx
+- update to version 3.1.0
+- run ldconfig
+- make autobuild happy fixing the warnings
+- fix devel package dependencies.
+- remove static libraries
+- use library packaging policy
* Sat Oct 07 2006 - aj@xxxxxxx
- Add dependency on base package.
* Wed Jan 25 2006 - mls@xxxxxxx


++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++



Remember to have fun...

---------------------------------------------------------------------
To unsubscribe, e-mail: opensuse-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: opensuse-commit+help@xxxxxxxxxxxx

< Previous Next >
This Thread
  • No further messages