SHA256
1
0
forked from pool/pidgin-otr
OBS User unknown 2007-11-16 03:43:45 +00:00 committed by Git OBS Bridge
commit 48d825906a
6 changed files with 165 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
pidgin-otr-3.1.0.tar.bz2 Normal file
View File

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

42
pidgin-otr.changes Normal file
View File

@ -0,0 +1,42 @@
-------------------------------------------------------------------
Mon Nov 12 23:54:26 CET 2007 - crrodriguez@suse.de
- rename package to pidgin-otr and update to version 3.1.0 needed
to support libotr 3.1.0
-------------------------------------------------------------------
Tue Jun 12 00:26:01 CEST 2007 - ro@suse.de
- replace gaim-devel by pidgin-devel in buildreq
- add pidgin patch (diff from pidgin-otr-3.0.0)
-------------------------------------------------------------------
Thu Jan 11 12:11:36 CET 2007 - sbrabec@suse.cz
- Prefix changed to /usr.
-------------------------------------------------------------------
Fri Dec 1 12:53:36 CET 2006 - sbrabec@suse.cz
- Build correctly in older products.
-------------------------------------------------------------------
Sat Oct 7 11:12:28 CEST 2006 - aj@suse.de
- Cleanup BuildRequires.
-------------------------------------------------------------------
Wed Jan 25 21:31:29 CET 2006 - mls@suse.de
- converted neededforbuild to BuildRequires
-------------------------------------------------------------------
Wed Nov 9 22:01:44 CET 2005 - bwhiteley@suse.de
- update to version 3.0.0
-------------------------------------------------------------------
Tue Nov 1 22:59:47 CET 2005 - bwhiteley@suse.de
- First time suse package (version 2.0.2)

96
pidgin-otr.spec Normal file
View File

@ -0,0 +1,96 @@
#
# spec file for package pidgin-otr (Version 3.1.0)
#
# 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.
#
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
# norootforbuild
Name: pidgin-otr
BuildRequires: gtk2-devel intltool libotr-devel pidgin-devel update-desktop-files
Version: 3.1.0
Release: 1
Url: http://www.cypherpunks.ca/otr/
Group: Productivity/Networking/Instant Messenger
License: GPL v2 or later
Summary: "Off The Record" end-to-end encryption plugin for gaim
Source: http://www.cypherpunks.ca/otr/%{name}-%{version}.tar.bz2
AutoReqProv: on
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Provides: gaim-otr = %{version}
Obsoletes: gaim-otr <= 3.0.0
%description
This is a gaim plugin which implements Off-the-Record (OTR)
Messaging. OTR allows you to have private conversations over IM
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@cypherpunks.ca>
%prep
%setup -q
%build
export CFLAGS="$RPM_OPT_FLAGS"
autoreconf -fi
%configure --with-pic --disable-static
%{__make} %{?jobs:-j%jobs}
%install
%{__make} DESTDIR=$RPM_BUILD_ROOT install
%{__rm} $RPM_BUILD_ROOT%{_libdir}/pidgin/*.la
%find_lang pidgin-otr
%clean
%{__rm} -rf $RPM_BUILD_ROOT
%files -f pidgin-otr.lang
%defattr (-, root, root)
%doc COPYING README AUTHORS NEWS ChangeLog
%{_libdir}/pidgin/*.so
%changelog
* Mon Nov 12 2007 - crrodriguez@suse.de
- rename package to pidgin-otr and update to version 3.1.0 needed
to support libotr 3.1.0
* Tue Jun 12 2007 - ro@suse.de
- replace gaim-devel by pidgin-devel in buildreq
- add pidgin patch (diff from pidgin-otr-3.0.0)
* Thu Jan 11 2007 - sbrabec@suse.cz
- Prefix changed to /usr.
* Fri Dec 01 2006 - sbrabec@suse.cz
- Build correctly in older products.
* Sat Oct 07 2006 - aj@suse.de
- Cleanup BuildRequires.
* Wed Jan 25 2006 - mls@suse.de
- converted neededforbuild to BuildRequires
* Wed Nov 09 2005 - bwhiteley@suse.de
- update to version 3.0.0
* Tue Nov 01 2005 - bwhiteley@suse.de
- First time suse package (version 2.0.2)

0
ready Normal file
View File