[gentoo-commits] repo/gentoo:master commit in: net-libs/libotr/files/, net-libs/libotr/

2023-10-04 Thread Sam James
commit: 0bda0617c2f10663b24210f00dea77208f9f59a3
Author: Sam James  gentoo  org>
AuthorDate: Wed Oct  4 15:10:18 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Oct  4 15:10:45 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0bda0617

net-libs/libotr: don't redefine _FORTIFY_SOURCE

Closes: https://bugs.gentoo.org/895680
Signed-off-by: Sam James  gentoo.org>

 .../libotr-4.1.1-dont-clobber-fortify-source.patch | 23 +
 net-libs/libotr/libotr-4.1.1-r2.ebuild | 40 ++
 2 files changed, 63 insertions(+)

diff --git 
a/net-libs/libotr/files/libotr-4.1.1-dont-clobber-fortify-source.patch 
b/net-libs/libotr/files/libotr-4.1.1-dont-clobber-fortify-source.patch
new file mode 100644
index ..af9330b97d3a
--- /dev/null
+++ b/net-libs/libotr/files/libotr-4.1.1-dont-clobber-fortify-source.patch
@@ -0,0 +1,23 @@
+Don't clobber our toolchain defaults.
+
+https://bugs.gentoo.org/895680
+--- a/configure.ac
 b/configure.ac
+@@ -151,7 +151,7 @@ AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [
+ ])], have_clang=yes, have_clang=no)
+ 
+ if test x$enable_gcc_hardening != xno; then
+-CFLAGS="$CFLAGS -D_FORTIFY_SOURCE=2"
++CFLAGS="$CFLAGS"
+ if test x$have_clang = xyes; then
+OTR_CHECK_CFLAGS(-Qunused-arguments)
+ fi
+@@ -181,6 +181,8 @@ if test x$enable_linker_hardening != xno; then
+ OTR_CHECK_LDFLAGS(-z relro -z now, "$all_ldflags_for_check", 
"$all_libs_for_check")
+ fi
+ 
++AX_ADD_FORTIFY_SOURCE
++
+ AC_OUTPUT([Makefile src/Makefile toolkit/Makefile tests/Makefile 
tests/utils/Makefile libotr.pc
+tests/utils/tap/Makefile
+tests/unit/Makefile

diff --git a/net-libs/libotr/libotr-4.1.1-r2.ebuild 
b/net-libs/libotr/libotr-4.1.1-r2.ebuild
new file mode 100644
index ..d1082fa841cc
--- /dev/null
+++ b/net-libs/libotr/libotr-4.1.1-r2.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools
+
+DESCRIPTION="(OTR) Messaging allows you to have private conversations over 
instant messaging"
+HOMEPAGE="https://otr.cypherpunks.ca;
+SRC_URI="https://otr.cypherpunks.ca/${P}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
+
+RDEPEND="
+   dev-libs/libgcrypt:=
+   dev-libs/libgpg-error:=
+"
+DEPEND="${RDEPEND}"
+# autoconf-archive for F_S patch
+BDEPEND="sys-devel/autoconf-archive"
+
+PATCHES=(
+   "${FILESDIR}/${PN}-4.1.1-fix-build-with-libgcrypt-1.10.patch"
+   "${FILESDIR}/${PN}-4.1.1-dont-clobber-fortify-source.patch"
+)
+
+src_prepare() {
+   default
+   eautoreconf
+}
+
+src_install() {
+   default
+   dodoc UPGRADING
+
+   # no static archives, #465686
+   find "${ED}" -name '*.la' -delete || die
+}



[gentoo-commits] repo/gentoo:master commit in: net-libs/libotr/

2022-11-14 Thread Sam James
commit: 436525dad8e0fb1acd08213cc3c22d1c9f19e969
Author: Pascal Jäger  leimstift  de>
AuthorDate: Thu Nov 10 23:06:42 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 15 02:24:25 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=436525da

net-libs/libotr: fix clang16 configure

Closes: https://bugs.gentoo.org/879733

Signed-off-by: Pascal Jäger  leimstift.de>
Signed-off-by: Sam James  gentoo.org>

 net-libs/libotr/libotr-4.1.1.ebuild | 7 +++
 1 file changed, 7 insertions(+)

diff --git a/net-libs/libotr/libotr-4.1.1.ebuild 
b/net-libs/libotr/libotr-4.1.1.ebuild
index bc5fc8199758..9dae661b4ebb 100644
--- a/net-libs/libotr/libotr-4.1.1.ebuild
+++ b/net-libs/libotr/libotr-4.1.1.ebuild
@@ -3,6 +3,8 @@
 
 EAPI=8
 
+inherit autotools
+
 DESCRIPTION="(OTR) Messaging allows you to have private conversations over 
instant messaging"
 HOMEPAGE="https://otr.cypherpunks.ca;
 SRC_URI="https://otr.cypherpunks.ca/${P}.tar.gz;
@@ -20,6 +22,11 @@ PATCHES=(
"${FILESDIR}/${PN}-4.1.1-fix-build-with-libgcrypt-1.10.patch"
 )
 
+src_prepare() {
+   default
+   eautoreconf
+}
+
 src_install() {
default
dodoc UPGRADING



[gentoo-commits] repo/gentoo:master commit in: net-libs/libotr/, x11-plugins/pidgin-otr/

2022-11-14 Thread Sam James
commit: b70f9c2fd860b4a13b01951c257edbb49b696923
Author: Pascal Jäger  leimstift  de>
AuthorDate: Thu Nov 10 23:30:47 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 15 02:24:25 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b70f9c2f

x11-plugins/pidgin-otr: fix clang16 configure

Closes: https://bugs.gentoo.org/879787

Signed-off-by: Pascal Jäger  leimstift.de>
Closes: https://github.com/gentoo/gentoo/pull/28218
Signed-off-by: Sam James  gentoo.org>

 net-libs/libotr/{libotr-4.1.1.ebuild => libotr-4.1.1-r1.ebuild}| 0
 .../{pidgin-otr-4.0.2-r1.ebuild => pidgin-otr-4.0.2-r2.ebuild} | 7 +++
 2 files changed, 7 insertions(+)

diff --git a/net-libs/libotr/libotr-4.1.1.ebuild 
b/net-libs/libotr/libotr-4.1.1-r1.ebuild
similarity index 100%
rename from net-libs/libotr/libotr-4.1.1.ebuild
rename to net-libs/libotr/libotr-4.1.1-r1.ebuild

diff --git a/x11-plugins/pidgin-otr/pidgin-otr-4.0.2-r1.ebuild 
b/x11-plugins/pidgin-otr/pidgin-otr-4.0.2-r2.ebuild
similarity index 91%
rename from x11-plugins/pidgin-otr/pidgin-otr-4.0.2-r1.ebuild
rename to x11-plugins/pidgin-otr/pidgin-otr-4.0.2-r2.ebuild
index fce6c905d795..e6f68bb0cbb3 100644
--- a/x11-plugins/pidgin-otr/pidgin-otr-4.0.2-r1.ebuild
+++ b/x11-plugins/pidgin-otr/pidgin-otr-4.0.2-r2.ebuild
@@ -3,6 +3,8 @@
 
 EAPI=8
 
+inherit autotools
+
 DESCRIPTION="(OTR) Messaging allows you to have private conversations over 
instant messaging"
 HOMEPAGE="http://www.cypherpunks.ca/otr/;
 SRC_URI="http://www.cypherpunks.ca/otr/${P}.tar.gz;
@@ -24,6 +26,11 @@ BDEPEND="
 
 DOCS=( AUTHORS ChangeLog NEWS README )
 
+src_prepare() {
+   default
+   eautoreconf
+}
+
 src_install() {
default
 



[gentoo-commits] repo/gentoo:master commit in: net-libs/libotr/

2022-05-25 Thread WANG Xuerui
commit: 75ca9166b2dc7b98e575d644f759cf6a99f24bd6
Author: WANG Xuerui  gentoo  org>
AuthorDate: Thu May 26 04:06:36 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Thu May 26 04:44:40 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75ca9166

net-libs/libotr: keyword 4.1.1 for ~loong

Tests passed on real hardware.

Signed-off-by: WANG Xuerui  gentoo.org>

 net-libs/libotr/libotr-4.1.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libotr/libotr-4.1.1.ebuild 
b/net-libs/libotr/libotr-4.1.1.ebuild
index aae1bbc9b0c9..bc5fc8199758 100644
--- a/net-libs/libotr/libotr-4.1.1.ebuild
+++ b/net-libs/libotr/libotr-4.1.1.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://otr.cypherpunks.ca/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ppc ppc64 ~riscv ~s390 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
 
 RDEPEND="
dev-libs/libgcrypt:0=



[gentoo-commits] repo/gentoo:master commit in: net-libs/libotr/files/, net-libs/libotr/

2022-04-01 Thread Sam James
commit: f0ead0194a4732ad6109b934c4f6db7c1cd174df
Author: Christophe Lermytte  lermytte  be>
AuthorDate: Fri Apr  1 13:14:36 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Apr  2 03:30:21 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0ead019

net-libs/libotr: fix build with libgcrypt-1.10

Also, because of the move to EAPI 8 we no longer need to override 
src_configure()
to disable static libraries

Signed-off-by: Christophe Lermytte  lermytte.be>
Closes: https://github.com/gentoo/gentoo/pull/24847
Signed-off-by: Sam James  gentoo.org>

 .../files/libotr-4.1.1-fix-build-with-libgcrypt-1.10.patch  | 11 +++
 net-libs/libotr/libotr-4.1.1.ebuild | 13 ++---
 2 files changed, 17 insertions(+), 7 deletions(-)

diff --git 
a/net-libs/libotr/files/libotr-4.1.1-fix-build-with-libgcrypt-1.10.patch 
b/net-libs/libotr/files/libotr-4.1.1-fix-build-with-libgcrypt-1.10.patch
new file mode 100644
index ..1aa60f478b88
--- /dev/null
+++ b/net-libs/libotr/files/libotr-4.1.1-fix-build-with-libgcrypt-1.10.patch
@@ -0,0 +1,11 @@
+https://bugs.gentoo.org/836572
+--- a/tests/regression/client/client.c
 b/tests/regression/client/client.c
+@@ -26,6 +26,7 @@
+ #include 
+ #include 
+ #include 
++#include 
+ #include 
+ #include 
+ #include 

diff --git a/net-libs/libotr/libotr-4.1.1.ebuild 
b/net-libs/libotr/libotr-4.1.1.ebuild
index c4976292c2ca..aae1bbc9b0c9 100644
--- a/net-libs/libotr/libotr-4.1.1.ebuild
+++ b/net-libs/libotr/libotr-4.1.1.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=8
 
 DESCRIPTION="(OTR) Messaging allows you to have private conversations over 
instant messaging"
 HOMEPAGE="https://otr.cypherpunks.ca;
@@ -10,21 +10,20 @@ SRC_URI="https://otr.cypherpunks.ca/${P}.tar.gz;
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos"
-IUSE=""
 
 RDEPEND="
dev-libs/libgcrypt:0=
dev-libs/libgpg-error:0="
 DEPEND="${RDEPEND}"
 
-src_configure() {
-   econf --disable-static
-}
+PATCHES=(
+   "${FILESDIR}/${PN}-4.1.1-fix-build-with-libgcrypt-1.10.patch"
+)
 
 src_install() {
default
dodoc UPGRADING
 
# no static archives, #465686
-   find "${D}" -name '*.la' -delete || die
+   find "${ED}" -name '*.la' -delete || die
 }



[gentoo-commits] repo/gentoo:master commit in: net-libs/libotr/

2019-12-23 Thread Lars Wendler
commit: ae23c3687d1f058f4580f5a6d4fa8bbb891bcb14
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Dec 23 13:06:23 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Dec 23 13:08:46 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae23c368

net-libs/libotr: Dropped package to maintainer-needed

Package-Manager: Portage-2.3.82, Repoman-2.3.20
Signed-off-by: Lars Wendler  gentoo.org>

 net-libs/libotr/metadata.xml | 5 +
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/net-libs/libotr/metadata.xml b/net-libs/libotr/metadata.xml
index 95aa13f6c5e..7a38bb90096 100644
--- a/net-libs/libotr/metadata.xml
+++ b/net-libs/libotr/metadata.xml
@@ -1,8 +1,5 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   polynomia...@gentoo.org
-   Lars Wendler
-   
+   
 



[gentoo-commits] repo/gentoo:master commit in: net-libs/libotr/

2019-10-20 Thread David Seifert
commit: 2cefb7db913129009c3d7b9f555d11bba972da04
Author: David Seifert  gentoo  org>
AuthorDate: Sun Oct 20 14:30:55 2019 +
Commit: David Seifert  gentoo  org>
CommitDate: Sun Oct 20 14:30:55 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2cefb7db

net-libs/libotr: [QA] Do not install static archives

Closes: https://bugs.gentoo.org/465686
Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: David Seifert  gentoo.org>

 net-libs/libotr/libotr-4.1.1.ebuild | 17 ++---
 1 file changed, 14 insertions(+), 3 deletions(-)

diff --git a/net-libs/libotr/libotr-4.1.1.ebuild 
b/net-libs/libotr/libotr-4.1.1.ebuild
index ed4e3b66ff8..ce15add6ba4 100644
--- a/net-libs/libotr/libotr-4.1.1.ebuild
+++ b/net-libs/libotr/libotr-4.1.1.ebuild
@@ -12,8 +12,19 @@ SLOT="0"
 KEYWORDS="alpha amd64 arm arm64 hppa ia64 ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
 IUSE=""
 
-RDEPEND=">=dev-libs/libgcrypt-1.2:0
-   dev-libs/libgpg-error"
+RDEPEND="
+   dev-libs/libgcrypt:0=
+   dev-libs/libgpg-error:0="
 DEPEND="${RDEPEND}"
 
-DOCS=( AUTHORS ChangeLog NEWS README UPGRADING )
+src_configure() {
+   econf --disable-static
+}
+
+src_install() {
+   default
+   dodoc UPGRADING
+
+   # no static archives, #465686
+   find "${D}" -name '*.la' -delete || die
+}



[gentoo-commits] repo/gentoo:master commit in: net-libs/libotr/

2019-04-02 Thread Mikle Kolyada
commit: 75b818eb9778f420f1048ce973a28492808f7a37
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Apr  2 19:18:55 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Apr  2 19:19:21 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75b818eb

net-libs/libotr: alpha/arm/ia64 stable

Needed by net-irc/irssi

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

 net-libs/libotr/libotr-4.1.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libotr/libotr-4.1.1.ebuild 
b/net-libs/libotr/libotr-4.1.1.ebuild
index cfa95fc7dec..79640ff065f 100644
--- a/net-libs/libotr/libotr-4.1.1.ebuild
+++ b/net-libs/libotr/libotr-4.1.1.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://otr.cypherpunks.ca/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ppc ppc64 ~s390 sparc x86 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 ~s390 sparc x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
 IUSE=""
 
 RDEPEND=">=dev-libs/libgcrypt-1.2:0



[gentoo-commits] repo/gentoo:master commit in: net-libs/libotr/

2019-02-15 Thread Mikle Kolyada
commit: 31660ab8dc247592220864095076a76411af29c5
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sat Feb 16 07:43:44 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sat Feb 16 07:43:44 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31660ab8

net-libs/libotr: mark ~s390

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 net-libs/libotr/libotr-4.1.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-libs/libotr/libotr-4.1.1.ebuild 
b/net-libs/libotr/libotr-4.1.1.ebuild
index f533f0de1de..8306659f8c7 100644
--- a/net-libs/libotr/libotr-4.1.1.ebuild
+++ b/net-libs/libotr/libotr-4.1.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -9,7 +9,7 @@ SRC_URI="https://otr.cypherpunks.ca/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ppc ppc64 sparc x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ppc ppc64 ~s390 sparc x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
 IUSE=""
 
 RDEPEND=">=dev-libs/libgcrypt-1.2:0



[gentoo-commits] repo/gentoo:master commit in: net-libs/libotr/

2017-01-29 Thread Fabian Groffen
commit: b82918f2cc62ba2c49cbbef4c1cb730c76778147
Author: Fabian Groffen  gentoo  org>
AuthorDate: Sun Jan 29 19:31:50 2017 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Sun Jan 29 19:33:30 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b82918f2

net-libs/libotr: dropped ~ia64-linux ~x86-freebsd

Package-Manager: portage-2.3.3

 net-libs/libotr/libotr-4.1.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-libs/libotr/libotr-4.1.1.ebuild 
b/net-libs/libotr/libotr-4.1.1.ebuild
index aafa181..1874b74 100644
--- a/net-libs/libotr/libotr-4.1.1.ebuild
+++ b/net-libs/libotr/libotr-4.1.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -10,7 +10,7 @@ SRC_URI="https://otr.cypherpunks.ca/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ppc ppc64 sparc x86 ~x86-fbsd 
~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ppc ppc64 sparc x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
 IUSE=""
 
 RDEPEND=">=dev-libs/libgcrypt-1.2:0



[gentoo-commits] repo/gentoo:master commit in: net-libs/libotr/

2016-03-20 Thread Lars Wendler
commit: 5ed342342229bc85319440341dc14d48d373d5e6
Author: Lars Wendler  gentoo  org>
AuthorDate: Sun Mar 20 17:20:29 2016 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sun Mar 20 17:23:26 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ed34234

net-libs/libotr: Security cleanup (bug #576914).

Package-Manager: portage-2.2.28
Signed-off-by: Lars Wendler  gentoo.org>

 net-libs/libotr/Manifest|  2 --
 net-libs/libotr/libotr-3.2.1.ebuild | 19 ---
 net-libs/libotr/libotr-4.1.0.ebuild | 20 
 3 files changed, 41 deletions(-)

diff --git a/net-libs/libotr/Manifest b/net-libs/libotr/Manifest
index 9dbd1b7..ae81f75 100644
--- a/net-libs/libotr/Manifest
+++ b/net-libs/libotr/Manifest
@@ -1,3 +1 @@
-DIST libotr-3.2.1.tar.gz 414684 SHA256 
d428eaa584984baa09450cca07742e0ac8fc62401f3a1c556e3025023369cdf4 SHA512 
7dfac85cb7dd1a95481330ecf3bfe54477a9de7e20370919386e8aa9553e374a2d3587d7b4bb654d1a30bd1c47e41c577f7b78f4007c5cb97f2f6a2c63078899
 WHIRLPOOL 
96593df2cc3f5e5e606e14170c3706b1dc17f2142821d827d2e5ae1473b923eacc95909f489f18a700539e07de2042e39df36157f724ba79916591c8ccca594b
-DIST libotr-4.1.0.tar.gz 576771 SHA256 
4fdb891940ec89d300190a98f69a9138248dcb8c8d337633fb981b8d0a9cd930 SHA512 
3c6a6bf8ee64467484519187d1bc86001d5ae6ceb169e9c828f7750a1db3dadfef677b828a5d292e5caa12f874711df4fd2db977d48dc968e9f0edc2eab58e3e
 WHIRLPOOL 
ffd9f0ae542a2013554547ca37059cba91f3c5b4966a870d5df6f82a794da4aee318c3e1d1dbd23405a67990f9aee750281d6083d1ded59048191981dc59af16
 DIST libotr-4.1.1.tar.gz 655791 SHA256 
8b3b182424251067a952fb4e6c7b95a21e644fbb27fbd5f8af2b2ed87ca419f5 SHA512 
c957206235b9f627542f23a645c822ea1b318d83fa655f41ed8d9a3c0dddf30b88f0ca82060026af155e48ecb13969dc9270831f20304669794151f666ae5cb0
 WHIRLPOOL 
159cfd76e4de87de7cd6afb83309fee3b910436daf4dfa2832cac637eb0b58d77f2063fb8fa0325bd90717a31e5d971ddfaf2c3d3ab785612cc53eeca3234d7c

diff --git a/net-libs/libotr/libotr-3.2.1.ebuild 
b/net-libs/libotr/libotr-3.2.1.ebuild
deleted file mode 100644
index 1ba0561..000
--- a/net-libs/libotr/libotr-3.2.1.ebuild
+++ /dev/null
@@ -1,19 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-DESCRIPTION="(OTR) Messaging allows you to have private conversations over 
instant messaging"
-HOMEPAGE="https://otr.cypherpunks.ca;
-SRC_URI="http://www.cypherpunks.ca/otr/${P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ppc ppc64 sparc x86 ~x86-fbsd 
~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x86-macos"
-
-RDEPEND=">=dev-libs/libgcrypt-1.2:0
-   dev-libs/libgpg-error"
-DEPEND="${RDEPEND}"
-
-DOCS=( AUTHORS ChangeLog NEWS README UPGRADING )

diff --git a/net-libs/libotr/libotr-4.1.0.ebuild 
b/net-libs/libotr/libotr-4.1.0.ebuild
deleted file mode 100644
index a6ed648..000
--- a/net-libs/libotr/libotr-4.1.0.ebuild
+++ /dev/null
@@ -1,20 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-DESCRIPTION="(OTR) Messaging allows you to have private conversations over 
instant messaging"
-HOMEPAGE="https://otr.cypherpunks.ca;
-SRC_URI="https://otr.cypherpunks.ca/${P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ppc ppc64 sparc x86 ~x86-fbsd 
~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x86-macos"
-IUSE=""
-
-RDEPEND=">=dev-libs/libgcrypt-1.2:0
-   dev-libs/libgpg-error"
-DEPEND="${RDEPEND}"
-
-DOCS=( AUTHORS ChangeLog NEWS README UPGRADING )



[gentoo-commits] repo/gentoo:master commit in: net-libs/libotr/

2016-03-19 Thread Agostino Sarubbo
commit: 861eacb67cfb738ee3b5b61c1b0a65f8245f0ca9
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Mar 16 11:47:27 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Mar 16 11:51:06 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=861eacb6

net-libs/libotr: ppc stable wrt bug #576914

Package-Manager: portage-2.2.26
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 net-libs/libotr/libotr-4.1.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libotr/libotr-4.1.1.ebuild 
b/net-libs/libotr/libotr-4.1.1.ebuild
index 46d77b8..bfe15a4 100644
--- a/net-libs/libotr/libotr-4.1.1.ebuild
+++ b/net-libs/libotr/libotr-4.1.1.ebuild
@@ -10,7 +10,7 @@ SRC_URI="https://otr.cypherpunks.ca/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~ppc ppc64 ~sparc x86 ~x86-fbsd 
~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ppc ppc64 ~sparc x86 ~x86-fbsd 
~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x86-macos"
 IUSE=""
 
 RDEPEND=">=dev-libs/libgcrypt-1.2:0



[gentoo-commits] repo/gentoo:master commit in: net-libs/libotr/

2016-03-19 Thread Agostino Sarubbo
commit: 766404d72fa51b9d0270a337fe48c4bdaa9b6812
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat Mar 19 11:34:00 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat Mar 19 11:34:00 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=766404d7

net-libs/libotr: sparc stable wrt bug #576914

Package-Manager: portage-2.2.26
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 net-libs/libotr/libotr-4.1.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libotr/libotr-4.1.1.ebuild 
b/net-libs/libotr/libotr-4.1.1.ebuild
index bfe15a4..aafa181 100644
--- a/net-libs/libotr/libotr-4.1.1.ebuild
+++ b/net-libs/libotr/libotr-4.1.1.ebuild
@@ -10,7 +10,7 @@ SRC_URI="https://otr.cypherpunks.ca/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ppc ppc64 ~sparc x86 ~x86-fbsd 
~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ppc ppc64 sparc x86 ~x86-fbsd 
~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x86-macos"
 IUSE=""
 
 RDEPEND=">=dev-libs/libgcrypt-1.2:0



[gentoo-commits] repo/gentoo:master commit in: net-libs/libotr/

2016-03-12 Thread Jeroen Roovers
commit: bc4459670f4451507436566e186540c0f18d545b
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sat Mar 12 09:11:58 2016 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sat Mar 12 09:11:58 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc445967

net-libs/libotr: Stable for HPPA PPC64 (bug #576914).

Package-Manager: portage-2.2.28
RepoMan-Options: --ignore-arches

 net-libs/libotr/libotr-4.1.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libotr/libotr-4.1.1.ebuild 
b/net-libs/libotr/libotr-4.1.1.ebuild
index 206fe0c..46d77b8 100644
--- a/net-libs/libotr/libotr-4.1.1.ebuild
+++ b/net-libs/libotr/libotr-4.1.1.ebuild
@@ -10,7 +10,7 @@ SRC_URI="https://otr.cypherpunks.ca/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd 
~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~ppc ppc64 ~sparc x86 ~x86-fbsd 
~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x86-macos"
 IUSE=""
 
 RDEPEND=">=dev-libs/libgcrypt-1.2:0



[gentoo-commits] repo/gentoo:master commit in: net-libs/libotr/

2016-03-10 Thread Agostino Sarubbo
commit: 6cc88c93771e03112162c60b218b7a7abd56dcfc
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Mar 10 16:16:51 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Mar 10 16:16:51 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6cc88c93

net-libs/libotr: x86 stable wrt bug #576914

Package-Manager: portage-2.2.26
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 net-libs/libotr/libotr-4.1.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libotr/libotr-4.1.1.ebuild 
b/net-libs/libotr/libotr-4.1.1.ebuild
index 7605b70..206fe0c 100644
--- a/net-libs/libotr/libotr-4.1.1.ebuild
+++ b/net-libs/libotr/libotr-4.1.1.ebuild
@@ -10,7 +10,7 @@ SRC_URI="https://otr.cypherpunks.ca/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd 
~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x86-macos"
 IUSE=""
 
 RDEPEND=">=dev-libs/libgcrypt-1.2:0



[gentoo-commits] repo/gentoo:master commit in: net-libs/libotr/

2016-03-10 Thread Agostino Sarubbo
commit: bce890d8e760221efa2f38e1026decf8cb88b11f
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Mar 10 16:13:36 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Mar 10 16:13:36 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bce890d8

net-libs/libotr: amd64 stable wrt bug #576914

Package-Manager: portage-2.2.26
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 net-libs/libotr/libotr-4.1.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libotr/libotr-4.1.1.ebuild 
b/net-libs/libotr/libotr-4.1.1.ebuild
index 50ec55d..7605b70 100644
--- a/net-libs/libotr/libotr-4.1.1.ebuild
+++ b/net-libs/libotr/libotr-4.1.1.ebuild
@@ -10,7 +10,7 @@ SRC_URI="https://otr.cypherpunks.ca/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x86-macos"
 IUSE=""
 
 RDEPEND=">=dev-libs/libgcrypt-1.2:0



[gentoo-commits] repo/gentoo:master commit in: net-libs/libotr/

2016-03-08 Thread Lars Wendler
commit: 9256a32e110b1523a6a6c725121b9b453a4ae0fd
Author: Lars Wendler  gentoo  org>
AuthorDate: Tue Mar  8 08:43:31 2016 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Tue Mar  8 08:59:32 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9256a32e

net-libs/libotr: Security bump to version 4.1.1

Package-Manager: portage-2.2.27
Signed-off-by: Lars Wendler  gentoo.org>

 net-libs/libotr/Manifest|  1 +
 net-libs/libotr/libotr-4.1.1.ebuild | 20 
 2 files changed, 21 insertions(+)

diff --git a/net-libs/libotr/Manifest b/net-libs/libotr/Manifest
index 393fde5..9dbd1b7 100644
--- a/net-libs/libotr/Manifest
+++ b/net-libs/libotr/Manifest
@@ -1,2 +1,3 @@
 DIST libotr-3.2.1.tar.gz 414684 SHA256 
d428eaa584984baa09450cca07742e0ac8fc62401f3a1c556e3025023369cdf4 SHA512 
7dfac85cb7dd1a95481330ecf3bfe54477a9de7e20370919386e8aa9553e374a2d3587d7b4bb654d1a30bd1c47e41c577f7b78f4007c5cb97f2f6a2c63078899
 WHIRLPOOL 
96593df2cc3f5e5e606e14170c3706b1dc17f2142821d827d2e5ae1473b923eacc95909f489f18a700539e07de2042e39df36157f724ba79916591c8ccca594b
 DIST libotr-4.1.0.tar.gz 576771 SHA256 
4fdb891940ec89d300190a98f69a9138248dcb8c8d337633fb981b8d0a9cd930 SHA512 
3c6a6bf8ee64467484519187d1bc86001d5ae6ceb169e9c828f7750a1db3dadfef677b828a5d292e5caa12f874711df4fd2db977d48dc968e9f0edc2eab58e3e
 WHIRLPOOL 
ffd9f0ae542a2013554547ca37059cba91f3c5b4966a870d5df6f82a794da4aee318c3e1d1dbd23405a67990f9aee750281d6083d1ded59048191981dc59af16
+DIST libotr-4.1.1.tar.gz 655791 SHA256 
8b3b182424251067a952fb4e6c7b95a21e644fbb27fbd5f8af2b2ed87ca419f5 SHA512 
c957206235b9f627542f23a645c822ea1b318d83fa655f41ed8d9a3c0dddf30b88f0ca82060026af155e48ecb13969dc9270831f20304669794151f666ae5cb0
 WHIRLPOOL 
159cfd76e4de87de7cd6afb83309fee3b910436daf4dfa2832cac637eb0b58d77f2063fb8fa0325bd90717a31e5d971ddfaf2c3d3ab785612cc53eeca3234d7c

diff --git a/net-libs/libotr/libotr-4.1.1.ebuild 
b/net-libs/libotr/libotr-4.1.1.ebuild
new file mode 100644
index 000..50ec55d
--- /dev/null
+++ b/net-libs/libotr/libotr-4.1.1.ebuild
@@ -0,0 +1,20 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DESCRIPTION="(OTR) Messaging allows you to have private conversations over 
instant messaging"
+HOMEPAGE="https://otr.cypherpunks.ca;
+SRC_URI="https://otr.cypherpunks.ca/${P}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x86-macos"
+IUSE=""
+
+RDEPEND=">=dev-libs/libgcrypt-1.2:0
+   dev-libs/libgpg-error"
+DEPEND="${RDEPEND}"
+
+DOCS=( AUTHORS ChangeLog NEWS README UPGRADING )



[gentoo-commits] repo/gentoo:master commit in: net-libs/libotr/

2016-01-17 Thread Lars Wendler
commit: 02293398d9df784679af46639790a86f891f88af
Author: Lars Wendler  gentoo  org>
AuthorDate: Sun Jan 17 23:02:31 2016 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sun Jan 17 23:04:35 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02293398

net-libs/libotr: Took over maintenance.

Package-Manager: portage-2.2.26
Signed-off-by: Lars Wendler  gentoo.org>

 net-libs/libotr/metadata.xml | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/net-libs/libotr/metadata.xml b/net-libs/libotr/metadata.xml
index 3e2b418..c916951 100644
--- a/net-libs/libotr/metadata.xml
+++ b/net-libs/libotr/metadata.xml
@@ -1,5 +1,8 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-net-im
+   
+   polynomia...@gentoo.org
+   Lars Wendler
+