[gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-sipe/
commit: 62c17690edfb5f18610fbe0395b74d8b8f6b7e17
Author: Cristian Othón Martínez Vera cfuga mx>
AuthorDate: Fri Dec 12 05:19:15 2025 +
Commit: Sam James gentoo org>
CommitDate: Sat Jan 10 12:53:42 2026 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62c17690
x11-plugins/pidgin-sipe: further fixes suggested by @PPN-SD
* add dependency on sys-devel/gettext
* fix dependencies with USE=dbus
* move dev-libs/appstream dependency to BDEPEND
* unconditionaly depend on slotted dev-libs/glib
* add dependency on media-libs/gst-plugins-base:1.0 with USE=video
* substitute dodoc with einstalldocs
* fix dependencies with USE=!openssl
* update dev-libs/gmime slot to 3.0
Signed-off-by: Cristian Othón Martínez Vera cfuga.mx>
Part-of: https://github.com/gentoo/gentoo/pull/43578
Closes: https://github.com/gentoo/gentoo/pull/43578
Signed-off-by: Sam James gentoo.org>
.../pidgin-sipe/pidgin-sipe-1.25.0-r4.ebuild | 24 ++
1 file changed, 15 insertions(+), 9 deletions(-)
diff --git a/x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0-r4.ebuild
b/x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0-r4.ebuild
index d4c7d6618527..73364830369b 100644
--- a/x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0-r4.ebuild
+++ b/x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0-r4.ebuild
@@ -17,29 +17,35 @@ IUSE="dbus debug kerberos ocs2005-message-hack openssl test
voice"
RESTRICT="!test? ( test )"
RDEPEND="
- dev-libs/gmime:2.6
+ >=dev-libs/glib-2.18.0:2
+ dev-libs/gmime:3.0
dev-libs/libxml2:=
- net-im/pidgin[dbus?]
+ net-im/pidgin
+ dbus? (
+ net-im/pidgin[dbus]
+ sys-apps/dbus
+ )
kerberos? ( virtual/krb5 )
openssl? ( dev-libs/openssl:= )
- !openssl? ( dev-libs/nss )
- test? ( dev-libs/appstream )
+ !openssl? (
+ dev-libs/nspr
+ dev-libs/nss
+ )
voice? (
- >=dev-libs/glib-2.28.0
>=net-libs/libnice-0.1.0
+ media-libs/gst-plugins-base:1.0
media-libs/gstreamer:1.0
net-im/pidgin[v4l]
net-libs/farstream:0.2
)
- !voice? (
- >=dev-libs/glib-2.12.0:2
- )
"
DEPEND="${RDEPEND}"
BDEPEND="
dev-util/intltool
+ sys-devel/gettext
virtual/pkgconfig
+ test? ( dev-libs/appstream )
"
PATCHES=(
@@ -71,7 +77,7 @@ src_configure() {
src_install() {
emake install DESTDIR="${D}"
- dodoc AUTHORS ChangeLog NEWS TODO README
+ einstalldocs
find "${ED}" -type f -name "*.la" -delete || die
}
[gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-sipe/
commit: aeac356a41f5d8236d5bf5d2924ff5ae7f75993b Author: Cristian Othón Martínez Vera cfuga mx> AuthorDate: Tue Aug 26 22:36:46 2025 + Commit: Sam James gentoo org> CommitDate: Sat Jan 10 12:53:41 2026 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aeac356a x11-plugins/pidgin-sipe: remove telepathy USE flag, add myself as maintainer Signed-off-by: Cristian Othón Martínez Vera cfuga.mx> Part-of: https://github.com/gentoo/gentoo/pull/43578 Signed-off-by: Sam James gentoo.org> x11-plugins/pidgin-sipe/metadata.xml | 13 +++- .../pidgin-sipe/pidgin-sipe-1.25.0-r4.ebuild | 76 ++ 2 files changed, 86 insertions(+), 3 deletions(-) diff --git a/x11-plugins/pidgin-sipe/metadata.xml b/x11-plugins/pidgin-sipe/metadata.xml index e7d8bfdc253b..d43d54c5a401 100644 --- a/x11-plugins/pidgin-sipe/metadata.xml +++ b/x11-plugins/pidgin-sipe/metadata.xml @@ -1,15 +1,22 @@ https://www.gentoo.org/dtd/metadata.dtd";> - - An Open Implementation of SIP/Simple protocol for Live Communications Server 2003/2005/2007 and Lync. + An Open Implementation of SIP/Simple protocol for Live Communications Server 2003/2005/2007 and Lync/Skype for Business. + [email protected] +Cristian Othón Martínez Vera + + [email protected] +Proxy Maintainers + Disable message timeout for OCS2005 clients which causes "false" not delivered error messages +Enable crypto support via dev-libs/openssl Support use as a telepathy backend Enable experimental voice/video support -Enable crypto support via dev-libs/openssl sipe diff --git a/x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0-r4.ebuild b/x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0-r4.ebuild new file mode 100644 index ..73c175d73cc5 --- /dev/null +++ b/x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0-r4.ebuild @@ -0,0 +1,76 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Pidgin Plug-in SIPE (Sip Exchange Protocol)" +HOMEPAGE="https://sipe.sourceforge.io/"; +SRC_URI="https://downloads.sourceforge.net/sipe/${P}.tar.gz"; + +inherit autotools + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +IUSE="dbus debug kerberos ocs2005-message-hack openssl test voice" +RESTRICT="!test? ( test )" + +RDEPEND=" + dev-libs/gmime:2.6 + dev-libs/libxml2:= + net-im/pidgin[dbus?] + kerberos? ( virtual/krb5 ) + openssl? ( dev-libs/openssl:= ) + !openssl? ( dev-libs/nss ) + test? ( dev-libs/appstream ) + voice? ( + >=dev-libs/glib-2.28.0 + >=net-libs/libnice-0.1.0 + media-libs/gstreamer:1.0 + net-libs/farstream:0.2 + ) + !voice? ( + >=dev-libs/glib-2.12.0:2 + ) +" + +DEPEND="${RDEPEND}" +BDEPEND=" + dev-util/intltool + virtual/pkgconfig +" + +PATCHES=( + "${FILESDIR}"/${PN}-1.25.0-bashisms.patch + "${FILESDIR}"/${PN}-1.25.0-libxml2.patch + "${FILESDIR}"/${PN}-1.25.0-appstreamcli.patch +) + +src_prepare() { + default + eautoreconf +} + +src_configure() { + local myeconfargs=( + --enable-purple + --disable-quality-check + --disable-telepathy + $(use_enable debug) + $(use_enable ocs2005-message-hack) + $(use_with dbus) + $(use_with kerberos krb5) + $(use_with voice vv) + $(use_enable !openssl nss) + $(use_enable openssl) + ) + econf "${myeconfargs[@]}" +} + +src_install() { + emake install DESTDIR="${D}" + dodoc AUTHORS ChangeLog NEWS TODO README + + find "${ED}" -type f -name "*.la" -delete || die +}
[gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-sipe/
commit: 84f975771564130083d9ac76b863031226f2bcdf Author: Cristian Othón Martínez Vera cfuga mx> AuthorDate: Wed Aug 27 14:44:41 2025 + Commit: Sam James gentoo org> CommitDate: Sat Jan 10 12:53:42 2026 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84f97577 x11-plugins/pidgin-sipe: USE=voice depends on net-im/pidgin[v4l] Closes: https://bugs.gentoo.org/821451 Signed-off-by: Cristian Othón Martínez Vera cfuga.mx> Part-of: https://github.com/gentoo/gentoo/pull/43578 Signed-off-by: Sam James gentoo.org> x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0-r4.ebuild | 1 + 1 file changed, 1 insertion(+) diff --git a/x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0-r4.ebuild b/x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0-r4.ebuild index 73c175d73cc5..d4c7d6618527 100644 --- a/x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0-r4.ebuild +++ b/x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0-r4.ebuild @@ -28,6 +28,7 @@ RDEPEND=" >=dev-libs/glib-2.28.0 >=net-libs/libnice-0.1.0 media-libs/gstreamer:1.0 + net-im/pidgin[v4l] net-libs/farstream:0.2 ) !voice? (
[gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-sipe/
commit: 3889a7ed17dda7618c21069396e01aef0d91a588 Author: Sam James gentoo org> AuthorDate: Fri Jul 25 07:02:38 2025 + Commit: Sam James gentoo org> CommitDate: Fri Jul 25 07:02:38 2025 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3889a7ed x11-plugins/pidgin-sipe: stabilize 1.25.0-r3 for amd64, x86 Lost in 0bef22095f30ce5df932c8085d5f6f6fb324f21b. Signed-off-by: Sam James gentoo.org> x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0-r3.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0-r3.ebuild b/x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0-r3.ebuild index 745ac29d7ad4..950346dd0eb3 100644 --- a/x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0-r3.ebuild +++ b/x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0-r3.ebuild @@ -11,7 +11,7 @@ inherit autotools LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="dbus debug kerberos ocs2005-message-hack openssl telepathy test voice" RESTRICT="!test? ( test )"
[gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-sipe/, x11-plugins/pidgin-sipe/files/
commit: 0bef22095f30ce5df932c8085d5f6f6fb324f21b
Author: Cristian Othón Martínez Vera cfuga mx>
AuthorDate: Tue Jun 10 19:19:01 2025 +
Commit: Sam James gentoo org>
CommitDate: Fri Jul 25 06:50:18 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0bef2209
x11-plugins/pidgin-sipe: fix compilation with libxml2 >= 2.12, fix tests,
update HOMEPAGE
I bumped with this when I was trying to rebuild it after the libxml2 subslot op
Closes: https://bugs.gentoo.org/730118
Closes: https://bugs.gentoo.org/932640
Signed-off-by: Cristian Othón Martínez Vera cfuga.mx>
Part-of: https://github.com/gentoo/gentoo/pull/42536
Closes: https://github.com/gentoo/gentoo/pull/42536
Signed-off-by: Sam James gentoo.org>
.../files/pidgin-sipe-1.25.0-appstreamcli.patch| 27 ++
.../files/pidgin-sipe-1.25.0-libxml2.patch | 63 ++
...25.0-r2.ebuild => pidgin-sipe-1.25.0-r3.ebuild} | 36 +++--
3 files changed, 111 insertions(+), 15 deletions(-)
diff --git
a/x11-plugins/pidgin-sipe/files/pidgin-sipe-1.25.0-appstreamcli.patch
b/x11-plugins/pidgin-sipe/files/pidgin-sipe-1.25.0-appstreamcli.patch
new file mode 100644
index ..123a031b3f83
--- /dev/null
+++ b/x11-plugins/pidgin-sipe/files/pidgin-sipe-1.25.0-appstreamcli.patch
@@ -0,0 +1,27 @@
+
+https://repo.or.cz/siplcs.git/commit/cb7e7be214a03acb4348c65b0e2194e86c5d55f4
+Bug: https://bugs.gentoo.org/730118
+
+From: Stefan Becker
+Date: Mon, 22 Jan 2024 22:53:54 +0200
+Subject: [PATCH] purple: add support for latest appstreamcli
+
+Newest version no longer accepts the --nonet option. Add another variant
+that uses --no-net instead.
+--- a/src/purple/Makefile.am
b/src/purple/Makefile.am
+@@ -160,7 +160,8 @@ check: validate-metainfo
+
+ .PHONY: validate-metainfo
+ validate-metainfo: $(pidginmetainfofile_DATA)
+- appstreamcli validate --pedantic --nonet $< || \
+- appstreamcli validate --pedantic $< || \
+- appstream-validate $<
++ appstreamcli validate --pedantic --no-net $< || \
++ appstreamcli validate --pedantic --nonet $< || \
++ appstreamcli validate --pedantic $< || \
++ appstream-validate$<
+ endif
+--
+2.11.4.GIT
+
diff --git a/x11-plugins/pidgin-sipe/files/pidgin-sipe-1.25.0-libxml2.patch
b/x11-plugins/pidgin-sipe/files/pidgin-sipe-1.25.0-libxml2.patch
new file mode 100644
index ..57b2cc12aef4
--- /dev/null
+++ b/x11-plugins/pidgin-sipe/files/pidgin-sipe-1.25.0-libxml2.patch
@@ -0,0 +1,63 @@
+
+https://repo.or.cz/siplcs.git/commit/8c37bad762decd3aad86cfe758187a610804b196
+Bug: https://bugs.gentoo.org/932640
+
+From: Stefan Becker
+Date: Mon, 22 Jan 2024 22:47:20 +0200
+Subject: [PATCH] xml: update for libxml2 >= 2.12 API changes
+
+- error callback is now passed a const error
+- provide alternative implementation for the deprecated
+ xmlSAXUserParseMemory() API
+--- a/src/core/sipe-xml.c
b/src/core/sipe-xml.c
+@@ -154,7 +154,13 @@ static void callback_error(void *user_data, const char
*msg, ...)
+ g_free(errmsg);
+ }
+
+-static void callback_serror(void *user_data, xmlErrorPtr error)
++static void callback_serror(void *user_data,
++#if LIBXML_VERSION > 21200
++ const xmlError *error
++#else
++ xmlErrorPtr error
++#endif
++)
+ {
+ struct _parser_data *pd = user_data;
+
+@@ -217,8 +223,31 @@ sipe_xml *sipe_xml_parse(const gchar *string, gsize
length)
+ if (string && length) {
+ struct _parser_data *pd = g_new0(struct _parser_data, 1);
+
++#if LIBXML_VERSION > 21200
++ xmlParserCtxtPtr ctxt = xmlNewSAXParserCtxt(&parser, pd);
++
++ if (ctxt) {
++ xmlCtxtReadMemory(ctxt,
++string,
++length,
++NULL,
++NULL,
++0);
++
++ pd->error = !ctxt->wellFormed;
++
++ if (ctxt->myDoc) {
++ xmlFreeDoc(ctxt->myDoc);
++ ctxt->myDoc = NULL;
++ }
++
++ xmlFreeParserCtxt(ctxt);
++ } else
++ pd->error = TRUE;
++#else
+ if (xmlSAXUserParseMemory(&parser, pd, string, length))
+ pd->error = TRUE;
++#endif
+
+ if (pd->error) {
+ sipe_xml_free(pd->root);
+--
+2.11.4.GIT
+
diff --git a/x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0-r2.ebuild
b/x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0-r3.ebuild
similarity index 82%
rename from x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0-r2.ebuild
rename to x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0-r3.ebuild
index 09f283beed58..745ac29d7ad4 100644
--- a/x11-plugins/pidgin-sip
[gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-sipe/
commit: 18eecd1fb228bb8dc3fa2212d8cacf5cd55a6954
Author: Alfred Wingate protonmail com>
AuthorDate: Sat May 3 17:16:20 2025 +
Commit: Sam James gentoo org>
CommitDate: Mon Jun 9 03:11:50 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18eecd1f
x11-plugins/pidgin-sipe: add dev-libs/libxml2 subslot op for incoming ABI break
Signed-off-by: Alfred Wingate protonmail.com>
Part-of: https://github.com/gentoo/gentoo/pull/41919
Signed-off-by: Sam James gentoo.org>
.../{pidgin-sipe-1.25.0-r1.ebuild => pidgin-sipe-1.25.0-r2.ebuild}| 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0-r1.ebuild
b/x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0-r2.ebuild
similarity index 96%
rename from x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0-r1.ebuild
rename to x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0-r2.ebuild
index b1c06e93f654..09f283beed58 100644
--- a/x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0-r1.ebuild
+++ b/x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2024 Gentoo Authors
+# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -17,7 +17,7 @@ IUSE="dbus debug kerberos ocs2005-message-hack openssl
telepathy voice"
RDEPEND="
dev-libs/gmime:2.6
- dev-libs/libxml2
+ dev-libs/libxml2:=
openssl? ( dev-libs/openssl:= )
!openssl? ( dev-libs/nss )
kerberos? ( virtual/krb5 )
[gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-sipe/files/, x11-plugins/pidgin-sipe/
commit: 92fb4cb5f29e7ef6f0fa932a82b7021ddec9c49f
Author: Cristian Othón Martínez Vera cfuga mx>
AuthorDate: Fri Jun 23 21:44:55 2023 +
Commit: Joonas Niilola gentoo org>
CommitDate: Fri Jul 14 06:52:18 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92fb4cb5
x11-plugins/pidgin-sipe: fix bashisms in configure script
Bug: https://bugs.gentoo.org/730118
Signed-off-by: Cristian Othón Martínez Vera cfuga.mx>
Closes: https://github.com/gentoo/gentoo/pull/31586
Signed-off-by: Joonas Niilola gentoo.org>
.../files/pidgin-sipe-1.25.0-bashisms.patch| 53 ++
.../pidgin-sipe/pidgin-sipe-1.25.0-r1.ebuild | 11 -
2 files changed, 63 insertions(+), 1 deletion(-)
diff --git a/x11-plugins/pidgin-sipe/files/pidgin-sipe-1.25.0-bashisms.patch
b/x11-plugins/pidgin-sipe/files/pidgin-sipe-1.25.0-bashisms.patch
new file mode 100644
index ..083d41bd0fde
--- /dev/null
+++ b/x11-plugins/pidgin-sipe/files/pidgin-sipe-1.25.0-bashisms.patch
@@ -0,0 +1,53 @@
+Fix bashisms in configure script.
+
+Bug: https://bugs.gentoo.org/821451
+
+--- a/configure.ac
b/configure.ac
+@@ -444,10 +444,10 @@
+
[PKG_CHECK_MODULES(_SIPE_MEDIA_RECHECK_PLEASE_IGNORE, [$purple_pkgconfig >=
2.8.0],
+ dnl check purple pkgconfig for
gstreamer version
+
[gstreamer_pkgconfig=`$PKG_CONFIG --variable=gstreamer $purple_pkgconfig`
+- AS_IF([test
"x$gstreamer_pkgconfig" == x],
+- [AS_IF([test
"x$purple_pkgconfig" == xpurple-3],
++ AS_IF([test
"x$gstreamer_pkgconfig" = x],
++ [AS_IF([test
"x$purple_pkgconfig" = xpurple-3],
+
[gstreamer_pkgconfig=1.0])])
+- AS_IF([test
"x$gstreamer_pkgconfig" == x1.0],
++ AS_IF([test
"x$gstreamer_pkgconfig" = x1.0],
+
[gstreamer_pkgconfig="gstreamer-$gstreamer_pkgconfig
gstreamer-rtp-$gstreamer_pkgconfig"
+
+ AC_MSG_NOTICE([using
packages "$gstreamer_pkgconfig".])
+@@ -556,18 +556,18 @@
+ AM_CONDITIONAL(SIPE_WITH_VV, [test "x$with_purple_vv" != xno])
+
+ dnl raw data RTP streams enable Lync file transfer
+-AM_CONDITIONAL(SIPE_HAVE_XDATA, [test "x$ac_have_xdata" == xyes])
+-AS_IF([test "x$ac_have_xdata" == xyes],
++AM_CONDITIONAL(SIPE_HAVE_XDATA, [test "x$ac_have_xdata" = xyes])
++AS_IF([test "x$ac_have_xdata" = xyes],
+ [AC_DEFINE(HAVE_XDATA, 1, [Define if we have raw data RTP in media
backend.])])
+
+ dnl enable appshare support
+-AM_CONDITIONAL(SIPE_HAVE_APPSHARE, [test "x$ac_have_appshare" == xyes])
+-AS_IF([test "x$ac_have_appshare" == xyes],
++AM_CONDITIONAL(SIPE_HAVE_APPSHARE, [test "x$ac_have_appshare" = xyes])
++AS_IF([test "x$ac_have_appshare" = xyes],
+ [AC_DEFINE(HAVE_APPSHARE, 1, [Define to 1 if we have appshare
support.])])
+
+ dnl RDP server for sharing local desktop
+ AM_CONDITIONAL(SIPE_HAVE_APPSHARE_SERVER, [test "x$ac_have_appshare_server" =
xyes])
+-AS_IF([test "x$ac_have_appshare_server" == xyes],
++AS_IF([test "x$ac_have_appshare_server" = xyes],
+ [AC_DEFINE(HAVE_APPSHARE_SERVER, 1, [Define if appshare server is
enabled.])])
+
+ dnl libpurple API relies on GParameter (deprecated in glib-2.0 >= 2.62.0)
+@@ -584,7 +584,7 @@
+ [We need GValueArray for which no replacement is available])
+ ])
+ dnl libpurple 2.x API relies on G_CONST_RETURN (deprecated in glib-2.0 >=
2.30.0)
+-AS_IF([test "x$purple_pkgconfig" == xpurple],
++AS_IF([test "x$purple_pkgconfig" = xpurple],
+ [AC_DEFINE(GLIB_VERSION_MIN_REQUIRED, GLIB_VERSION_2_28,
+ [libpurple 2.x API uses G_CONST_RETURN])
+ ])
diff --git a/x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0-r1.ebuild
b/x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0-r1.ebuild
index 4b73a6e3e9c1..bbdf8d917086 100644
--- a/x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0-r1.ebuild
+++ b/x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -7,6 +7,8 @@ DESCRIPTION="Pidgin Plug-in SIPE (Sip Exchange Protocol)"
HOMEPAGE="http://sipe.sourceforge.net/";
SRC_URI="mirror://sourceforge/sipe/${P}.tar.gz"
+inherit autotools
+
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
@@ -43,6 +45,13 @@ BDEPEND="
virtual/pkgconfig
"
+src_prepare() {
+ eapply "${FILESDIR}"/${PN}-1.25.0-bashisms.patch
+
+ eautoreconf
+ default
+}
+
src_configure() {
[gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-sipe/
commit: 214c0bd42738b75c66ff3e2f00b776b98441a28b Author: Petr Vaněk atlas cz> AuthorDate: Wed Oct 19 09:13:33 2022 + Commit: Sam James gentoo org> CommitDate: Thu Oct 20 03:52:56 2022 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=214c0bd4 x11-plugins/pidgin-sipe: align longdescription opening and closing tags Signed-off-by: Petr Vaněk atlas.cz> Signed-off-by: Sam James gentoo.org> x11-plugins/pidgin-sipe/metadata.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/x11-plugins/pidgin-sipe/metadata.xml b/x11-plugins/pidgin-sipe/metadata.xml index ce435e0f5671..e7d8bfdc253b 100644 --- a/x11-plugins/pidgin-sipe/metadata.xml +++ b/x11-plugins/pidgin-sipe/metadata.xml @@ -3,8 +3,8 @@ -An Open Implementation of SIP/Simple protocol for Live Communications Server 2003/2005/2007 and Lync. - + An Open Implementation of SIP/Simple protocol for Live Communications Server 2003/2005/2007 and Lync. + Disable message timeout for OCS2005 clients which causes "false" not delivered error messages Support use as a telepathy backend
[gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-sipe/
commit: 332aef3fd3ef4b187004867c89ca77bc30814410
Author: Sam James gentoo org>
AuthorDate: Sun Apr 17 19:15:29 2022 +
Commit: Sam James gentoo org>
CommitDate: Sun Apr 17 19:17:27 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=332aef3f
x11-plugins/pidgin-sipe: drop 1.23.3
Signed-off-by: Sam James gentoo.org>
x11-plugins/pidgin-sipe/Manifest | 1 -
x11-plugins/pidgin-sipe/pidgin-sipe-1.23.3.ebuild | 69 ---
2 files changed, 70 deletions(-)
diff --git a/x11-plugins/pidgin-sipe/Manifest b/x11-plugins/pidgin-sipe/Manifest
index a0ed31fedff9..ca24a5776c95 100644
--- a/x11-plugins/pidgin-sipe/Manifest
+++ b/x11-plugins/pidgin-sipe/Manifest
@@ -1,2 +1 @@
-DIST pidgin-sipe-1.23.3.tar.gz 1298459 BLAKE2B
e15ad7658771fc0d7f5320f6b145e67a6f33603dfe49dd83edbf42fd2e57f117f4cdac53c6b6dba401266ae6c2593bb6078a604c164aa365aa94aa64eb94f1c7
SHA512
3c7481e02f9541818a980df31d135c3eefd8f1e921dcb6cfe3d1ce194b1591531db2c23364b545a912eb3818af207ffc0a19d3310d495db503de954f0547ea31
DIST pidgin-sipe-1.25.0.tar.gz 1395316 BLAKE2B
854832768a5c6605c28fcc02abd2444cd15b58be3be89009ce08aad390664a09235ca4fc6c6288c0e0f8677ba920a30b7e3a418312308dcb229a08817bbf4a3c
SHA512
e9f1f38bb27cfd8e464f2f03aea3153b7d9a1ff7c45876ff06fc8b391e5d69506b793edda5cef0f4b5f281ddd0281ad0f97c82457e1bcc977965805a323d6f0c
diff --git a/x11-plugins/pidgin-sipe/pidgin-sipe-1.23.3.ebuild
b/x11-plugins/pidgin-sipe/pidgin-sipe-1.23.3.ebuild
deleted file mode 100644
index 3e128eb9dcfd..
--- a/x11-plugins/pidgin-sipe/pidgin-sipe-1.23.3.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools
-
-DESCRIPTION="Pidgin Plug-in SIPE (Sip Exchange Protocol)"
-HOMEPAGE="http://sipe.sourceforge.net/";
-SRC_URI="mirror://sourceforge/sipe/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-IUSE="dbus debug kerberos ocs2005-message-hack openssl telepathy voice"
-
-RDEPEND="
- dev-libs/gmime:2.6
- dev-libs/libxml2
- openssl? ( dev-libs/openssl:= )
- !openssl? ( dev-libs/nss )
- kerberos? ( virtual/krb5 )
- voice? (
- >=dev-libs/glib-2.28.0
- >=net-libs/libnice-0.1.0
- media-libs/gstreamer:1.0
- net-libs/farstream:0.2
- )
- !voice? (
- >=dev-libs/glib-2.12.0:2
- )
- net-im/pidgin[dbus?]
- telepathy? (
- >=sys-apps/dbus-1.1.0
- >=dev-libs/dbus-glib-0.61
- >=dev-libs/glib-2.28:2
- >=net-libs/telepathy-glib-0.18.0
- )
-"
-
-DEPEND="dev-util/intltool
- virtual/pkgconfig
- ${RDEPEND}
-"
-
-src_prepare() {
- default
- eautoreconf
-}
-
-src_configure() {
- econf \
- --enable-purple \
- --disable-quality-check \
- $(use_enable telepathy) \
- $(use_enable debug) \
- $(use_enable ocs2005-message-hack) \
- $(use_with dbus) \
- $(use_with kerberos krb5) \
- $(use_with voice vv) \
- $(use_enable !openssl nss) \
- $(use_enable openssl)
-}
-
-src_install() {
- emake install DESTDIR="${D}"
- dodoc AUTHORS ChangeLog NEWS TODO README
-}
[gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-sipe/
commit: 48fc4c273ad71f4c9601cf1cbb748d428298e293
Author: Sam James gentoo org>
AuthorDate: Fri Aug 6 20:42:51 2021 +
Commit: Sam James gentoo org>
CommitDate: Fri Aug 6 20:42:51 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48fc4c27
x11-plugins/pidgin-sipe: Stabilize 1.25.0-r1 x86, #799674
Signed-off-by: Sam James gentoo.org>
x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0-r1.ebuild
b/x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0-r1.ebuild
index 6d8c1c1b906..4b73a6e3e9c 100644
--- a/x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0-r1.ebuild
+++ b/x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0-r1.ebuild
@@ -9,7 +9,7 @@ SRC_URI="mirror://sourceforge/sipe/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
IUSE="dbus debug kerberos ocs2005-message-hack openssl telepathy voice"
[gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-sipe/
commit: 70530a68c4cdeadad00e94db920a9bb896e1ef54
Author: Agostino Sarubbo gentoo org>
AuthorDate: Sun Jul 18 06:31:34 2021 +
Commit: Agostino Sarubbo gentoo org>
CommitDate: Sun Jul 18 06:31:34 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=70530a68
x11-plugins/pidgin-sipe: amd64 stable wrt bug #799674
Package-Manager: Portage-3.0.20, Repoman-3.0.2
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo gentoo.org>
x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0-r1.ebuild
b/x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0-r1.ebuild
index 2e14f7d593d..6d8c1c1b906 100644
--- a/x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0-r1.ebuild
+++ b/x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0-r1.ebuild
@@ -9,7 +9,7 @@ SRC_URI="mirror://sourceforge/sipe/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
IUSE="dbus debug kerberos ocs2005-message-hack openssl telepathy voice"
[gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-sipe/
commit: b1432d4017e325c28c2a0ada7248f103842dcfc4 Author: Ian Whyman gentoo org> AuthorDate: Sun Apr 11 12:23:18 2021 + Commit: Ian Whyman gentoo org> CommitDate: Sun Apr 11 12:23:33 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1432d40 x11-plugins/pidgin-sipe: maintainer-needed Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Ian Whyman gentoo.org> x11-plugins/pidgin-sipe/metadata.xml | 5 + 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/x11-plugins/pidgin-sipe/metadata.xml b/x11-plugins/pidgin-sipe/metadata.xml index c52417e6dbe..930d54b3221 100644 --- a/x11-plugins/pidgin-sipe/metadata.xml +++ b/x11-plugins/pidgin-sipe/metadata.xml @@ -1,10 +1,7 @@ http://www.gentoo.org/dtd/metadata.dtd";> - [email protected] -Ian Whyman - + An Open Implementation of SIP/Simple protocol for Live Communications Server 2003/2005/2007 and Lync.
[gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-sipe/
commit: 90c31061ee9e218f9c619b0c3a060ae2181a70e3
Author: Lars Wendler gentoo org>
AuthorDate: Fri Jan 29 12:36:43 2021 +
Commit: Lars Wendler gentoo org>
CommitDate: Fri Jan 29 12:36:43 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90c31061
x11-plugins/pidgin-sipe: Fixed typo in src_configure
introduced in my commit 9369e81228
Closes: https://bugs.gentoo.org/767847
Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Lars Wendler gentoo.org>
x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0-r1.ebuild
b/x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0-r1.ebuild
index 7aa6dbaf79c..2e14f7d593d 100644
--- a/x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0-r1.ebuild
+++ b/x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0-r1.ebuild
@@ -56,7 +56,7 @@ src_configure() {
$(use_enable !openssl nss)
$(use_enable openssl)
)
- econf "${myeconfsrgs[@]}"
+ econf "${myeconfargs[@]}"
}
src_install() {
[gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-sipe/
commit: f49167d2652bb5859b2d8e2ee3c4f366af4f0660
Author: Lars Wendler gentoo org>
AuthorDate: Fri Jan 29 11:20:35 2021 +
Commit: Lars Wendler gentoo org>
CommitDate: Fri Jan 29 11:20:40 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f49167d2
x11-plugins/pidgin-sipe: Don't install .la files
Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Lars Wendler gentoo.org>
.../{pidgin-sipe-1.25.0.ebuild => pidgin-sipe-1.25.0-r1.ebuild} | 2 ++
1 file changed, 2 insertions(+)
diff --git a/x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0.ebuild
b/x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0-r1.ebuild
similarity index 96%
rename from x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0.ebuild
rename to x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0-r1.ebuild
index 720049ca9f2..7aa6dbaf79c 100644
--- a/x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0.ebuild
+++ b/x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0-r1.ebuild
@@ -62,4 +62,6 @@ src_configure() {
src_install() {
emake install DESTDIR="${D}"
dodoc AUTHORS ChangeLog NEWS TODO README
+
+ find "${ED}" -type f -name "*.la" -delete || die
}
[gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-sipe/
commit: 9369e8122840f055632f556fd97765bcaeb55463
Author: Lars Wendler gentoo org>
AuthorDate: Fri Jan 29 10:56:42 2021 +
Commit: Lars Wendler gentoo org>
CommitDate: Fri Jan 29 10:56:42 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9369e812
x11-plugins/pidgin-sipe: Use BDEPEND in EAPI-7 ebuild
Minor style adjustment in src_configure
Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Lars Wendler gentoo.org>
x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0.ebuild | 29 +--
1 file changed, 16 insertions(+), 13 deletions(-)
diff --git a/x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0.ebuild
b/x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0.ebuild
index dcc5117625f..720049ca9f2 100644
--- a/x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0.ebuild
+++ b/x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -37,23 +37,26 @@ RDEPEND="
)
"
-DEPEND="dev-util/intltool
+DEPEND="${RDEPEND}"
+BDEPEND="
+ dev-util/intltool
virtual/pkgconfig
- ${RDEPEND}
"
src_configure() {
- econf \
- --enable-purple \
- --disable-quality-check \
- $(use_enable telepathy) \
- $(use_enable debug) \
- $(use_enable ocs2005-message-hack) \
- $(use_with dbus) \
- $(use_with kerberos krb5) \
- $(use_with voice vv) \
- $(use_enable !openssl nss) \
+ local myeconfargs=(
+ --enable-purple
+ --disable-quality-check
+ $(use_enable telepathy)
+ $(use_enable debug)
+ $(use_enable ocs2005-message-hack)
+ $(use_with dbus)
+ $(use_with kerberos krb5)
+ $(use_with voice vv)
+ $(use_enable !openssl nss)
$(use_enable openssl)
+ )
+ econf "${myeconfsrgs[@]}"
}
src_install() {
[gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-sipe/
commit: b71d962fd58e2836401150f7f42460d726130d5e
Author: Ian Whyman gentoo org>
AuthorDate: Sat Jan 25 17:29:14 2020 +
Commit: Ian Whyman gentoo org>
CommitDate: Sat Jan 25 17:29:14 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b71d962f
x11-plugins/pidin-sipe: Version bump
Closes: https://bugs.gentoo.org/706182
Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Ian Whyman gentoo.org>
x11-plugins/pidgin-sipe/Manifest| 2 +-
.../{pidgin-sipe-1.24.0.ebuild => pidgin-sipe-1.25.0.ebuild}| 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/x11-plugins/pidgin-sipe/Manifest b/x11-plugins/pidgin-sipe/Manifest
index ce7c20f82a3..a0ed31fedff 100644
--- a/x11-plugins/pidgin-sipe/Manifest
+++ b/x11-plugins/pidgin-sipe/Manifest
@@ -1,2 +1,2 @@
DIST pidgin-sipe-1.23.3.tar.gz 1298459 BLAKE2B
e15ad7658771fc0d7f5320f6b145e67a6f33603dfe49dd83edbf42fd2e57f117f4cdac53c6b6dba401266ae6c2593bb6078a604c164aa365aa94aa64eb94f1c7
SHA512
3c7481e02f9541818a980df31d135c3eefd8f1e921dcb6cfe3d1ce194b1591531db2c23364b545a912eb3818af207ffc0a19d3310d495db503de954f0547ea31
-DIST pidgin-sipe-1.24.0.tar.gz 1322542 BLAKE2B
52ca80e4fb12f24c3406f671d499043f054ea1d4ad6f715d7feafa3df2d2203ccaeb9c0dd8d6214a19b383916d006faf8b284b3c0df9b6fce8926300811898c5
SHA512
9a7906cb6b5514d70b410bac436f6822316b570d1114f684ee96999cf0585816324780428212dd43b0988b22eff615630e9034bb518cb69add890877506b20e3
+DIST pidgin-sipe-1.25.0.tar.gz 1395316 BLAKE2B
854832768a5c6605c28fcc02abd2444cd15b58be3be89009ce08aad390664a09235ca4fc6c6288c0e0f8677ba920a30b7e3a418312308dcb229a08817bbf4a3c
SHA512
e9f1f38bb27cfd8e464f2f03aea3153b7d9a1ff7c45876ff06fc8b391e5d69506b793edda5cef0f4b5f281ddd0281ad0f97c82457e1bcc977965805a323d6f0c
diff --git a/x11-plugins/pidgin-sipe/pidgin-sipe-1.24.0.ebuild
b/x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0.ebuild
similarity index 97%
rename from x11-plugins/pidgin-sipe/pidgin-sipe-1.24.0.ebuild
rename to x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0.ebuild
index 6e1a832817f..dcc5117625f 100644
--- a/x11-plugins/pidgin-sipe/pidgin-sipe-1.24.0.ebuild
+++ b/x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
[gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-sipe/
commit: 01737e193e2777bacc5b6ac4f4c3c52cb08271fc
Author: Ian Whyman gentoo org>
AuthorDate: Sat Jun 15 13:31:45 2019 +
Commit: Ian Whyman gentoo org>
CommitDate: Sat Jun 15 13:31:45 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01737e19
x11-plugins/pidgin-sipe: Drop Old
Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Ian Whyman gentoo.org>
x11-plugins/pidgin-sipe/Manifest | 3 -
x11-plugins/pidgin-sipe/pidgin-sipe-1.22.0.ebuild | 69 ---
x11-plugins/pidgin-sipe/pidgin-sipe-1.23.0.ebuild | 69 ---
x11-plugins/pidgin-sipe/pidgin-sipe-1.23.2.ebuild | 69 ---
4 files changed, 210 deletions(-)
diff --git a/x11-plugins/pidgin-sipe/Manifest b/x11-plugins/pidgin-sipe/Manifest
index e24c3edcd4b..f874c39c159 100644
--- a/x11-plugins/pidgin-sipe/Manifest
+++ b/x11-plugins/pidgin-sipe/Manifest
@@ -1,4 +1 @@
-DIST pidgin-sipe-1.22.0.tar.gz 1255851 BLAKE2B
442206854bc420f8a93a34246f28a923adc83c08a9c113d871f920799e2b33505a14b4181d1b20aa65e03c6d6483b01be22e66ed4496ea8571247bfc560d2a97
SHA512
4135bbf526659663b0b053592d889588574ed2a1bc9346e6ba62960203409e2604552ffb02ed32e2b4bb46c4f40f62089302b301344b9f7b45657e64a585f7ed
-DIST pidgin-sipe-1.23.0.tar.gz 1296050 BLAKE2B
1c69587ab6407b6c83dda349ab9a5ad61e3e1d8936b58d7edd71cbead3f8573ab60f7e95866968ec55163a533077be268d6166354d9d22cd2110e6b2ae1708c0
SHA512
8ed0c353e83707b99059791b97568d874634eb1d5ec1a43031864cc8469dc859e7485eb617fe5e23960c091fb15334a903452827ef8a650ed4d677f3acef
-DIST pidgin-sipe-1.23.2.tar.gz 1297900 BLAKE2B
2e37fc883c04ae9cb3ed562e932f0d207c449f67521c65a64bd52a580386fb822d10814bb7fda7cb0f6a67ae949b428db0b3c160f113c279b2e8440360af14ba
SHA512
150dd41577c571442c664d91b55cff461ce2bd8dfdca6e8c8dffd27ee22c35393031ddcc7e070409ed5206f8cd0f17246f70d9ebfb6c868503a90be989ac34e6
DIST pidgin-sipe-1.23.3.tar.gz 1298459 BLAKE2B
e15ad7658771fc0d7f5320f6b145e67a6f33603dfe49dd83edbf42fd2e57f117f4cdac53c6b6dba401266ae6c2593bb6078a604c164aa365aa94aa64eb94f1c7
SHA512
3c7481e02f9541818a980df31d135c3eefd8f1e921dcb6cfe3d1ce194b1591531db2c23364b545a912eb3818af207ffc0a19d3310d495db503de954f0547ea31
diff --git a/x11-plugins/pidgin-sipe/pidgin-sipe-1.22.0.ebuild
b/x11-plugins/pidgin-sipe/pidgin-sipe-1.22.0.ebuild
deleted file mode 100644
index 9891f280612..000
--- a/x11-plugins/pidgin-sipe/pidgin-sipe-1.22.0.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools eutils
-
-DESCRIPTION="Pidgin Plug-in SIPE (Sip Exchange Protocol)"
-HOMEPAGE="http://sipe.sourceforge.net/";
-SRC_URI="mirror://sourceforge/sipe/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-IUSE="debug kerberos ocs2005-message-hack openssl telepathy voice"
-
-RDEPEND="
- dev-libs/gmime:2.6
- dev-libs/libxml2
- openssl? ( dev-libs/openssl:= )
- !openssl? ( dev-libs/nss )
- kerberos? ( virtual/krb5 )
- voice? (
- >=dev-libs/glib-2.28.0
- >=net-libs/libnice-0.1.0
- media-libs/gstreamer:1.0
- >=net-im/pidgin-2.8.0
- net-libs/farstream:0.2
- )
- !voice? (
- >=dev-libs/glib-2.12.0:2
- net-im/pidgin
- )
- telepathy? (
- >=sys-apps/dbus-1.1.0
- >=dev-libs/dbus-glib-0.61
- >=dev-libs/glib-2.28:2
- >=net-libs/telepathy-glib-0.18.0
- )
-"
-
-DEPEND="dev-util/intltool
- virtual/pkgconfig
- ${RDEPEND}
-"
-
-src_prepare() {
- default
- eautoreconf
-}
-
-src_configure() {
- econf \
- --enable-purple \
- --disable-quality-check \
- $(use_enable telepathy) \
- $(use_enable debug) \
- $(use_enable ocs2005-message-hack) \
- $(use_with kerberos krb5) \
- $(use_with voice vv) \
- $(use_enable !openssl nss) \
- $(use_enable openssl)
-}
-
-src_install() {
- emake install DESTDIR="${D}"
- dodoc AUTHORS ChangeLog NEWS TODO README
-}
diff --git a/x11-plugins/pidgin-sipe/pidgin-sipe-1.23.0.ebuild
b/x11-plugins/pidgin-sipe/pidgin-sipe-1.23.0.ebuild
deleted file mode 100644
index 0f84cb3d0a0..000
--- a/x11-plugins/pidgin-sipe/pidgin-sipe-1.23.0.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools
-
-DESCRIPTION="Pidgin Plug-in SIPE (Sip Exchange Protocol)"
-HOMEPAGE="http://sipe.sourceforge.net/";
-SRC_URI="mirror://sourceforge/sipe/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-IUSE="dbus debug kerberos ocs2005-message-hack openssl telepathy voice"
-
-RDEPEND="
- dev-libs/gmime:2.6
- dev-libs/lib
[gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-sipe/
commit: 19076d6d5296ed8f799643c908cc06fcca3a7d16
Author: Ian Whyman gentoo org>
AuthorDate: Sat Jun 15 13:39:58 2019 +
Commit: Ian Whyman gentoo org>
CommitDate: Sat Jun 15 13:39:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19076d6d
x11-plugins/pidgin-sipe: Version bump
Closes: https://bugs.gentoo.org/686116
Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Ian Whyman gentoo.org>
x11-plugins/pidgin-sipe/Manifest | 1 +
x11-plugins/pidgin-sipe/pidgin-sipe-1.24.0.ebuild | 62 +++
2 files changed, 63 insertions(+)
diff --git a/x11-plugins/pidgin-sipe/Manifest b/x11-plugins/pidgin-sipe/Manifest
index f874c39c159..ce7c20f82a3 100644
--- a/x11-plugins/pidgin-sipe/Manifest
+++ b/x11-plugins/pidgin-sipe/Manifest
@@ -1 +1,2 @@
DIST pidgin-sipe-1.23.3.tar.gz 1298459 BLAKE2B
e15ad7658771fc0d7f5320f6b145e67a6f33603dfe49dd83edbf42fd2e57f117f4cdac53c6b6dba401266ae6c2593bb6078a604c164aa365aa94aa64eb94f1c7
SHA512
3c7481e02f9541818a980df31d135c3eefd8f1e921dcb6cfe3d1ce194b1591531db2c23364b545a912eb3818af207ffc0a19d3310d495db503de954f0547ea31
+DIST pidgin-sipe-1.24.0.tar.gz 1322542 BLAKE2B
52ca80e4fb12f24c3406f671d499043f054ea1d4ad6f715d7feafa3df2d2203ccaeb9c0dd8d6214a19b383916d006faf8b284b3c0df9b6fce8926300811898c5
SHA512
9a7906cb6b5514d70b410bac436f6822316b570d1114f684ee96999cf0585816324780428212dd43b0988b22eff615630e9034bb518cb69add890877506b20e3
diff --git a/x11-plugins/pidgin-sipe/pidgin-sipe-1.24.0.ebuild
b/x11-plugins/pidgin-sipe/pidgin-sipe-1.24.0.ebuild
new file mode 100644
index 000..6e1a832817f
--- /dev/null
+++ b/x11-plugins/pidgin-sipe/pidgin-sipe-1.24.0.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Pidgin Plug-in SIPE (Sip Exchange Protocol)"
+HOMEPAGE="http://sipe.sourceforge.net/";
+SRC_URI="mirror://sourceforge/sipe/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+IUSE="dbus debug kerberos ocs2005-message-hack openssl telepathy voice"
+
+RDEPEND="
+ dev-libs/gmime:2.6
+ dev-libs/libxml2
+ openssl? ( dev-libs/openssl:= )
+ !openssl? ( dev-libs/nss )
+ kerberos? ( virtual/krb5 )
+ voice? (
+ >=dev-libs/glib-2.28.0
+ >=net-libs/libnice-0.1.0
+ media-libs/gstreamer:1.0
+ net-libs/farstream:0.2
+ )
+ !voice? (
+ >=dev-libs/glib-2.12.0:2
+ )
+ net-im/pidgin[dbus?]
+ telepathy? (
+ >=sys-apps/dbus-1.1.0
+ >=dev-libs/dbus-glib-0.61
+ >=dev-libs/glib-2.28:2
+ >=net-libs/telepathy-glib-0.18.0
+ )
+"
+
+DEPEND="dev-util/intltool
+ virtual/pkgconfig
+ ${RDEPEND}
+"
+
+src_configure() {
+ econf \
+ --enable-purple \
+ --disable-quality-check \
+ $(use_enable telepathy) \
+ $(use_enable debug) \
+ $(use_enable ocs2005-message-hack) \
+ $(use_with dbus) \
+ $(use_with kerberos krb5) \
+ $(use_with voice vv) \
+ $(use_enable !openssl nss) \
+ $(use_enable openssl)
+}
+
+src_install() {
+ emake install DESTDIR="${D}"
+ dodoc AUTHORS ChangeLog NEWS TODO README
+}
[gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-sipe/
commit: 3bf2d4acd059f52e869a97714755f1b15216c484
Author: Mikle Kolyada gentoo org>
AuthorDate: Sun Mar 10 13:39:06 2019 +
Commit: Mikle Kolyada gentoo org>
CommitDate: Sun Mar 10 13:39:06 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3bf2d4ac
x11-plugins/pidgin-sipe: amd64 stable wrt bug #678506
Signed-off-by: Mikle Kolyada gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"
x11-plugins/pidgin-sipe/pidgin-sipe-1.23.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/x11-plugins/pidgin-sipe/pidgin-sipe-1.23.3.ebuild
b/x11-plugins/pidgin-sipe/pidgin-sipe-1.23.3.ebuild
index f6d01ced9a2..3e128eb9dcf 100644
--- a/x11-plugins/pidgin-sipe/pidgin-sipe-1.23.3.ebuild
+++ b/x11-plugins/pidgin-sipe/pidgin-sipe-1.23.3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/sipe/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
IUSE="dbus debug kerberos ocs2005-message-hack openssl telepathy voice"
[gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-sipe/
commit: d95cb04f9164cc4e36cafea9a733eacf186e0883
Author: Thomas Deutschmann gentoo org>
AuthorDate: Sat Mar 9 19:14:05 2019 +
Commit: Thomas Deutschmann gentoo org>
CommitDate: Sat Mar 9 19:18:31 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d95cb04f
x11-plugins/pidgin-sipe: x86 stable (bug #678506)
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Thomas Deutschmann gentoo.org>
x11-plugins/pidgin-sipe/pidgin-sipe-1.23.3.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/x11-plugins/pidgin-sipe/pidgin-sipe-1.23.3.ebuild
b/x11-plugins/pidgin-sipe/pidgin-sipe-1.23.3.ebuild
index dfeeb6f126f..f6d01ced9a2 100644
--- a/x11-plugins/pidgin-sipe/pidgin-sipe-1.23.3.ebuild
+++ b/x11-plugins/pidgin-sipe/pidgin-sipe-1.23.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/sipe/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
IUSE="dbus debug kerberos ocs2005-message-hack openssl telepathy voice"
[gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-sipe/
commit: 4946108d199b48872c6baf67d592827935c3468d
Author: Ian Whyman gentoo org>
AuthorDate: Thu Oct 25 18:39:58 2018 +
Commit: Ian Whyman gentoo org>
CommitDate: Thu Oct 25 18:39:58 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4946108d
x11-plugins/pidgin-sipe: bump
Signed-off-by: Ian Whyman gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
x11-plugins/pidgin-sipe/Manifest | 1 +
x11-plugins/pidgin-sipe/pidgin-sipe-1.23.3.ebuild | 69 +++
2 files changed, 70 insertions(+)
diff --git a/x11-plugins/pidgin-sipe/Manifest b/x11-plugins/pidgin-sipe/Manifest
index 9111ff5322e..e24c3edcd4b 100644
--- a/x11-plugins/pidgin-sipe/Manifest
+++ b/x11-plugins/pidgin-sipe/Manifest
@@ -1,3 +1,4 @@
DIST pidgin-sipe-1.22.0.tar.gz 1255851 BLAKE2B
442206854bc420f8a93a34246f28a923adc83c08a9c113d871f920799e2b33505a14b4181d1b20aa65e03c6d6483b01be22e66ed4496ea8571247bfc560d2a97
SHA512
4135bbf526659663b0b053592d889588574ed2a1bc9346e6ba62960203409e2604552ffb02ed32e2b4bb46c4f40f62089302b301344b9f7b45657e64a585f7ed
DIST pidgin-sipe-1.23.0.tar.gz 1296050 BLAKE2B
1c69587ab6407b6c83dda349ab9a5ad61e3e1d8936b58d7edd71cbead3f8573ab60f7e95866968ec55163a533077be268d6166354d9d22cd2110e6b2ae1708c0
SHA512
8ed0c353e83707b99059791b97568d874634eb1d5ec1a43031864cc8469dc859e7485eb617fe5e23960c091fb15334a903452827ef8a650ed4d677f3acef
DIST pidgin-sipe-1.23.2.tar.gz 1297900 BLAKE2B
2e37fc883c04ae9cb3ed562e932f0d207c449f67521c65a64bd52a580386fb822d10814bb7fda7cb0f6a67ae949b428db0b3c160f113c279b2e8440360af14ba
SHA512
150dd41577c571442c664d91b55cff461ce2bd8dfdca6e8c8dffd27ee22c35393031ddcc7e070409ed5206f8cd0f17246f70d9ebfb6c868503a90be989ac34e6
+DIST pidgin-sipe-1.23.3.tar.gz 1298459 BLAKE2B
e15ad7658771fc0d7f5320f6b145e67a6f33603dfe49dd83edbf42fd2e57f117f4cdac53c6b6dba401266ae6c2593bb6078a604c164aa365aa94aa64eb94f1c7
SHA512
3c7481e02f9541818a980df31d135c3eefd8f1e921dcb6cfe3d1ce194b1591531db2c23364b545a912eb3818af207ffc0a19d3310d495db503de954f0547ea31
diff --git a/x11-plugins/pidgin-sipe/pidgin-sipe-1.23.3.ebuild
b/x11-plugins/pidgin-sipe/pidgin-sipe-1.23.3.ebuild
new file mode 100644
index 000..dfeeb6f126f
--- /dev/null
+++ b/x11-plugins/pidgin-sipe/pidgin-sipe-1.23.3.ebuild
@@ -0,0 +1,69 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit autotools
+
+DESCRIPTION="Pidgin Plug-in SIPE (Sip Exchange Protocol)"
+HOMEPAGE="http://sipe.sourceforge.net/";
+SRC_URI="mirror://sourceforge/sipe/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+IUSE="dbus debug kerberos ocs2005-message-hack openssl telepathy voice"
+
+RDEPEND="
+ dev-libs/gmime:2.6
+ dev-libs/libxml2
+ openssl? ( dev-libs/openssl:= )
+ !openssl? ( dev-libs/nss )
+ kerberos? ( virtual/krb5 )
+ voice? (
+ >=dev-libs/glib-2.28.0
+ >=net-libs/libnice-0.1.0
+ media-libs/gstreamer:1.0
+ net-libs/farstream:0.2
+ )
+ !voice? (
+ >=dev-libs/glib-2.12.0:2
+ )
+ net-im/pidgin[dbus?]
+ telepathy? (
+ >=sys-apps/dbus-1.1.0
+ >=dev-libs/dbus-glib-0.61
+ >=dev-libs/glib-2.28:2
+ >=net-libs/telepathy-glib-0.18.0
+ )
+"
+
+DEPEND="dev-util/intltool
+ virtual/pkgconfig
+ ${RDEPEND}
+"
+
+src_prepare() {
+ default
+ eautoreconf
+}
+
+src_configure() {
+ econf \
+ --enable-purple \
+ --disable-quality-check \
+ $(use_enable telepathy) \
+ $(use_enable debug) \
+ $(use_enable ocs2005-message-hack) \
+ $(use_with dbus) \
+ $(use_with kerberos krb5) \
+ $(use_with voice vv) \
+ $(use_enable !openssl nss) \
+ $(use_enable openssl)
+}
+
+src_install() {
+ emake install DESTDIR="${D}"
+ dodoc AUTHORS ChangeLog NEWS TODO README
+}
[gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-sipe/
commit: c6afa0201e1133fe4e269a35c71492c7a5032b9e
Author: Ian Whyman gentoo org>
AuthorDate: Thu Apr 5 19:58:42 2018 +
Commit: Ian Whyman gentoo org>
CommitDate: Thu Apr 5 19:58:58 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6afa020
x11-plugins/pidgin-sipe: Version bump, tidy old
Package-Manager: Portage-2.3.28, Repoman-2.3.9
x11-plugins/pidgin-sipe/Manifest | 2 +-
.../{pidgin-sipe-1.22.1.ebuild => pidgin-sipe-1.23.2.ebuild} | 10 +-
2 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/x11-plugins/pidgin-sipe/Manifest b/x11-plugins/pidgin-sipe/Manifest
index f083628620f..9111ff5322e 100644
--- a/x11-plugins/pidgin-sipe/Manifest
+++ b/x11-plugins/pidgin-sipe/Manifest
@@ -1,3 +1,3 @@
DIST pidgin-sipe-1.22.0.tar.gz 1255851 BLAKE2B
442206854bc420f8a93a34246f28a923adc83c08a9c113d871f920799e2b33505a14b4181d1b20aa65e03c6d6483b01be22e66ed4496ea8571247bfc560d2a97
SHA512
4135bbf526659663b0b053592d889588574ed2a1bc9346e6ba62960203409e2604552ffb02ed32e2b4bb46c4f40f62089302b301344b9f7b45657e64a585f7ed
-DIST pidgin-sipe-1.22.1.tar.gz 1265440 BLAKE2B
88f5ef6473af2b50aab0d2adfb9bccf62c9654a1d80319d5e8e43b18719e875e0b3fda45a76e85a6fd892fd516dcfbf5f5ec4a134b1525972eaf35b9841d5210
SHA512
1fff886b32f7f8cb99a0af710b3a1502f62d27dedb541a9e2d8ae9eaf5eb7be0983216e730ccc912c20eee3d940ed1f789f704ee21736db76d141efda66ec018
DIST pidgin-sipe-1.23.0.tar.gz 1296050 BLAKE2B
1c69587ab6407b6c83dda349ab9a5ad61e3e1d8936b58d7edd71cbead3f8573ab60f7e95866968ec55163a533077be268d6166354d9d22cd2110e6b2ae1708c0
SHA512
8ed0c353e83707b99059791b97568d874634eb1d5ec1a43031864cc8469dc859e7485eb617fe5e23960c091fb15334a903452827ef8a650ed4d677f3acef
+DIST pidgin-sipe-1.23.2.tar.gz 1297900 BLAKE2B
2e37fc883c04ae9cb3ed562e932f0d207c449f67521c65a64bd52a580386fb822d10814bb7fda7cb0f6a67ae949b428db0b3c160f113c279b2e8440360af14ba
SHA512
150dd41577c571442c664d91b55cff461ce2bd8dfdca6e8c8dffd27ee22c35393031ddcc7e070409ed5206f8cd0f17246f70d9ebfb6c868503a90be989ac34e6
diff --git a/x11-plugins/pidgin-sipe/pidgin-sipe-1.22.1.ebuild
b/x11-plugins/pidgin-sipe/pidgin-sipe-1.23.2.ebuild
similarity index 87%
rename from x11-plugins/pidgin-sipe/pidgin-sipe-1.22.1.ebuild
rename to x11-plugins/pidgin-sipe/pidgin-sipe-1.23.2.ebuild
index 8b7372dda46..6eaeda36c6b 100644
--- a/x11-plugins/pidgin-sipe/pidgin-sipe-1.22.1.ebuild
+++ b/x11-plugins/pidgin-sipe/pidgin-sipe-1.23.2.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
-inherit autotools eutils
+inherit autotools
DESCRIPTION="Pidgin Plug-in SIPE (Sip Exchange Protocol)"
HOMEPAGE="http://sipe.sourceforge.net/";
@@ -13,7 +13,7 @@ LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
-IUSE="debug kerberos ocs2005-message-hack openssl telepathy voice"
+IUSE="dbus debug kerberos ocs2005-message-hack openssl telepathy voice"
RDEPEND="
dev-libs/gmime:2.6
@@ -25,13 +25,12 @@ RDEPEND="
>=dev-libs/glib-2.28.0
>=net-libs/libnice-0.1.0
media-libs/gstreamer:1.0
- >=net-im/pidgin-2.8.0
net-libs/farstream:0.2
)
!voice? (
>=dev-libs/glib-2.12.0:2
- net-im/pidgin
)
+ net-im/pidgin[dbus?]
telepathy? (
>=sys-apps/dbus-1.1.0
>=dev-libs/dbus-glib-0.61
@@ -57,6 +56,7 @@ src_configure() {
$(use_enable telepathy) \
$(use_enable debug) \
$(use_enable ocs2005-message-hack) \
+ $(use_with dbus) \
$(use_with kerberos krb5) \
$(use_with voice vv) \
$(use_enable !openssl nss) \
[gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-sipe/
commit: 8201b09a8b89ed14fd2c1c83d1bce94294a40278
Author: Ian Whyman gentoo org>
AuthorDate: Sun Jan 14 13:43:25 2018 +
Commit: Ian Whyman gentoo org>
CommitDate: Sun Jan 14 13:43:37 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8201b09a
x11-plugins/pidgin-sipe: Drop old
Closes: https://bugs.gentoo.org/629210
Package-Manager: Portage-2.3.19, Repoman-2.3.6
x11-plugins/pidgin-sipe/Manifest | 1 -
x11-plugins/pidgin-sipe/pidgin-sipe-1.21.1.ebuild | 66 ---
2 files changed, 67 deletions(-)
diff --git a/x11-plugins/pidgin-sipe/Manifest b/x11-plugins/pidgin-sipe/Manifest
index b94d2f967e6..f083628620f 100644
--- a/x11-plugins/pidgin-sipe/Manifest
+++ b/x11-plugins/pidgin-sipe/Manifest
@@ -1,4 +1,3 @@
-DIST pidgin-sipe-1.21.1.tar.gz 1212621 BLAKE2B
f2fb149a867af1771987857e90eccd0cc9a9624749eafb101b3f1c4e956c63e4f43c237a86925af34a8db81e03b287b1972e19e2bb1315959eb1cb606ef485bb
SHA512
d9b5ad67967c35e29d6742d9d09346c7702a339450de7522aad73f0b379505f24104a306292ee91960c679498073376081479b335eab8eba090e492f444b5378
DIST pidgin-sipe-1.22.0.tar.gz 1255851 BLAKE2B
442206854bc420f8a93a34246f28a923adc83c08a9c113d871f920799e2b33505a14b4181d1b20aa65e03c6d6483b01be22e66ed4496ea8571247bfc560d2a97
SHA512
4135bbf526659663b0b053592d889588574ed2a1bc9346e6ba62960203409e2604552ffb02ed32e2b4bb46c4f40f62089302b301344b9f7b45657e64a585f7ed
DIST pidgin-sipe-1.22.1.tar.gz 1265440 BLAKE2B
88f5ef6473af2b50aab0d2adfb9bccf62c9654a1d80319d5e8e43b18719e875e0b3fda45a76e85a6fd892fd516dcfbf5f5ec4a134b1525972eaf35b9841d5210
SHA512
1fff886b32f7f8cb99a0af710b3a1502f62d27dedb541a9e2d8ae9eaf5eb7be0983216e730ccc912c20eee3d940ed1f789f704ee21736db76d141efda66ec018
DIST pidgin-sipe-1.23.0.tar.gz 1296050 BLAKE2B
1c69587ab6407b6c83dda349ab9a5ad61e3e1d8936b58d7edd71cbead3f8573ab60f7e95866968ec55163a533077be268d6166354d9d22cd2110e6b2ae1708c0
SHA512
8ed0c353e83707b99059791b97568d874634eb1d5ec1a43031864cc8469dc859e7485eb617fe5e23960c091fb15334a903452827ef8a650ed4d677f3acef
diff --git a/x11-plugins/pidgin-sipe/pidgin-sipe-1.21.1.ebuild
b/x11-plugins/pidgin-sipe/pidgin-sipe-1.21.1.ebuild
deleted file mode 100644
index f09eaef8eed..000
--- a/x11-plugins/pidgin-sipe/pidgin-sipe-1.21.1.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit autotools eutils
-
-DESCRIPTION="Pidgin Plug-in SIPE (Sip Exchange Protocol)"
-HOMEPAGE="http://sipe.sourceforge.net/";
-SRC_URI="mirror://sourceforge/sipe/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-IUSE="debug kerberos ocs2005-message-hack openssl telepathy voice"
-
-RDEPEND=">=dev-libs/gmime-2.4.16
- dev-libs/libxml2
- openssl? ( dev-libs/openssl:= )
- !openssl? ( dev-libs/nss )
- kerberos? ( virtual/krb5 )
- voice? (
- >=dev-libs/glib-2.28.0
- >=net-libs/libnice-0.1.0
- media-libs/gstreamer:0.10
- >=net-im/pidgin-2.8.0
- )
- !voice? (
- >=dev-libs/glib-2.12.0:2
- net-im/pidgin
- )
- telepathy? (
- >=sys-apps/dbus-1.1.0
- >=dev-libs/dbus-glib-0.61
- >=dev-libs/glib-2.28:2
- >=net-libs/telepathy-glib-0.18.0
- )
-"
-
-DEPEND="dev-util/intltool
- virtual/pkgconfig
- ${RDEPEND}
-"
-
-src_prepare() {
- eautoreconf
-}
-
-src_configure() {
- econf \
- --enable-purple \
- --disable-quality-check \
- $(use_enable telepathy) \
- $(use_enable debug) \
- $(use_enable ocs2005-message-hack) \
- $(use_with kerberos krb5) \
- $(use_with voice vv) \
- $(use_enable !openssl nss) \
- $(use_enable openssl)
-}
-
-src_install() {
- emake install DESTDIR="${D}"
- dodoc AUTHORS ChangeLog NEWS TODO README
-}
[gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-sipe/
commit: bcbaee13aa6324a78abcefa8e349a9ac376c1525
Author: Ian Whyman gentoo org>
AuthorDate: Sun Dec 17 12:05:36 2017 +
Commit: Ian Whyman gentoo org>
CommitDate: Sun Dec 17 12:05:52 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bcbaee13
x11-plugins/pidgin-sipe: Version Bump
Thanks to Luke Bratch for the inital ebuild.
Closes: https://bugs.gentoo.org/640994
Package-Manager: Portage-2.3.18, Repoman-2.3.6
x11-plugins/pidgin-sipe/Manifest | 1 +
x11-plugins/pidgin-sipe/pidgin-sipe-1.23.0.ebuild | 69 +++
2 files changed, 70 insertions(+)
diff --git a/x11-plugins/pidgin-sipe/Manifest b/x11-plugins/pidgin-sipe/Manifest
index 61e1bb753e4..b94d2f967e6 100644
--- a/x11-plugins/pidgin-sipe/Manifest
+++ b/x11-plugins/pidgin-sipe/Manifest
@@ -1,3 +1,4 @@
DIST pidgin-sipe-1.21.1.tar.gz 1212621 BLAKE2B
f2fb149a867af1771987857e90eccd0cc9a9624749eafb101b3f1c4e956c63e4f43c237a86925af34a8db81e03b287b1972e19e2bb1315959eb1cb606ef485bb
SHA512
d9b5ad67967c35e29d6742d9d09346c7702a339450de7522aad73f0b379505f24104a306292ee91960c679498073376081479b335eab8eba090e492f444b5378
DIST pidgin-sipe-1.22.0.tar.gz 1255851 BLAKE2B
442206854bc420f8a93a34246f28a923adc83c08a9c113d871f920799e2b33505a14b4181d1b20aa65e03c6d6483b01be22e66ed4496ea8571247bfc560d2a97
SHA512
4135bbf526659663b0b053592d889588574ed2a1bc9346e6ba62960203409e2604552ffb02ed32e2b4bb46c4f40f62089302b301344b9f7b45657e64a585f7ed
DIST pidgin-sipe-1.22.1.tar.gz 1265440 BLAKE2B
88f5ef6473af2b50aab0d2adfb9bccf62c9654a1d80319d5e8e43b18719e875e0b3fda45a76e85a6fd892fd516dcfbf5f5ec4a134b1525972eaf35b9841d5210
SHA512
1fff886b32f7f8cb99a0af710b3a1502f62d27dedb541a9e2d8ae9eaf5eb7be0983216e730ccc912c20eee3d940ed1f789f704ee21736db76d141efda66ec018
+DIST pidgin-sipe-1.23.0.tar.gz 1296050 BLAKE2B
1c69587ab6407b6c83dda349ab9a5ad61e3e1d8936b58d7edd71cbead3f8573ab60f7e95866968ec55163a533077be268d6166354d9d22cd2110e6b2ae1708c0
SHA512
8ed0c353e83707b99059791b97568d874634eb1d5ec1a43031864cc8469dc859e7485eb617fe5e23960c091fb15334a903452827ef8a650ed4d677f3acef
diff --git a/x11-plugins/pidgin-sipe/pidgin-sipe-1.23.0.ebuild
b/x11-plugins/pidgin-sipe/pidgin-sipe-1.23.0.ebuild
new file mode 100644
index 000..0f84cb3d0a0
--- /dev/null
+++ b/x11-plugins/pidgin-sipe/pidgin-sipe-1.23.0.ebuild
@@ -0,0 +1,69 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit autotools
+
+DESCRIPTION="Pidgin Plug-in SIPE (Sip Exchange Protocol)"
+HOMEPAGE="http://sipe.sourceforge.net/";
+SRC_URI="mirror://sourceforge/sipe/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+IUSE="dbus debug kerberos ocs2005-message-hack openssl telepathy voice"
+
+RDEPEND="
+ dev-libs/gmime:2.6
+ dev-libs/libxml2
+ openssl? ( dev-libs/openssl:= )
+ !openssl? ( dev-libs/nss )
+ kerberos? ( virtual/krb5 )
+ voice? (
+ >=dev-libs/glib-2.28.0
+ >=net-libs/libnice-0.1.0
+ media-libs/gstreamer:1.0
+ net-libs/farstream:0.2
+ )
+ !voice? (
+ >=dev-libs/glib-2.12.0:2
+ )
+ net-im/pidgin[dbus?]
+ telepathy? (
+ >=sys-apps/dbus-1.1.0
+ >=dev-libs/dbus-glib-0.61
+ >=dev-libs/glib-2.28:2
+ >=net-libs/telepathy-glib-0.18.0
+ )
+"
+
+DEPEND="dev-util/intltool
+ virtual/pkgconfig
+ ${RDEPEND}
+"
+
+src_prepare() {
+ default
+ eautoreconf
+}
+
+src_configure() {
+ econf \
+ --enable-purple \
+ --disable-quality-check \
+ $(use_enable telepathy) \
+ $(use_enable debug) \
+ $(use_enable ocs2005-message-hack) \
+ $(use_with dbus) \
+ $(use_with kerberos krb5) \
+ $(use_with voice vv) \
+ $(use_enable !openssl nss) \
+ $(use_enable openssl)
+}
+
+src_install() {
+ emake install DESTDIR="${D}"
+ dodoc AUTHORS ChangeLog NEWS TODO README
+}
[gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-sipe/
commit: 85dfaee5cbdad359965609241bcb74fc07ddf167
Author: Thomas Deutschmann gentoo org>
AuthorDate: Thu Oct 26 20:44:19 2017 +
Commit: Thomas Deutschmann gentoo org>
CommitDate: Thu Oct 26 20:44:19 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85dfaee5
x11-plugins/pidgin-sipe: x86 stable (bug #632558)
Package-Manager: Portage-2.3.11, Repoman-2.3.3
x11-plugins/pidgin-sipe/pidgin-sipe-1.22.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/x11-plugins/pidgin-sipe/pidgin-sipe-1.22.0.ebuild
b/x11-plugins/pidgin-sipe/pidgin-sipe-1.22.0.ebuild
index 1d964fb0d71..9891f280612 100644
--- a/x11-plugins/pidgin-sipe/pidgin-sipe-1.22.0.ebuild
+++ b/x11-plugins/pidgin-sipe/pidgin-sipe-1.22.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/sipe/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
IUSE="debug kerberos ocs2005-message-hack openssl telepathy voice"
[gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-sipe/
commit: f0ebb7fc9f3519644fc3dd6dc71c3182d24abc75
Author: Manuel Rüger gentoo org>
AuthorDate: Wed Oct 25 23:56:31 2017 +
Commit: Manuel Rüger gentoo org>
CommitDate: Wed Oct 25 23:56:31 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0ebb7fc
x11-plugins/pidgin-sipe: Stable on amd64
Package-Manager: Portage-2.3.12, Repoman-2.3.3
x11-plugins/pidgin-sipe/pidgin-sipe-1.22.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/x11-plugins/pidgin-sipe/pidgin-sipe-1.22.0.ebuild
b/x11-plugins/pidgin-sipe/pidgin-sipe-1.22.0.ebuild
index 8b7372dda46..1d964fb0d71 100644
--- a/x11-plugins/pidgin-sipe/pidgin-sipe-1.22.0.ebuild
+++ b/x11-plugins/pidgin-sipe/pidgin-sipe-1.22.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/sipe/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
IUSE="debug kerberos ocs2005-message-hack openssl telepathy voice"
[gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-sipe/files/
commit: 6e2c3392fa1aafe28d2e56399c1e32a9e9d4db62 Author: Michael Mair-Keimberger gmail com> AuthorDate: Sun Oct 1 13:26:41 2017 + Commit: Patrice Clement gentoo org> CommitDate: Tue Oct 3 22:03:41 2017 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e2c3392 x11-plugins/pidgin-sipe: remove unused patches. Closes: https://github.com/gentoo/gentoo/pull/5827 .../files/pidgin-sipe-1.13.2-fix-sandbox-r1.patch | 29 -- ...dgin-sipe-1.20.1-fix-configure-srtp-check.patch | 12 - 2 files changed, 41 deletions(-) diff --git a/x11-plugins/pidgin-sipe/files/pidgin-sipe-1.13.2-fix-sandbox-r1.patch b/x11-plugins/pidgin-sipe/files/pidgin-sipe-1.13.2-fix-sandbox-r1.patch deleted file mode 100644 index a5628b3cd59..000 --- a/x11-plugins/pidgin-sipe/files/pidgin-sipe-1.13.2-fix-sandbox-r1.patch +++ /dev/null @@ -1,29 +0,0 @@ -# Fix possible sandbox violation when snippet tries to probe for plugins -# Gentoo Bug 409559 - pidgin-sipe-1.13.2/configure.ac2012-03-14 21:53:10.0 + -+++ pidgin-sipe-1.13.2.new2/configure.ac 2012-06-30 22:48:40.081115371 +0100 -@@ -309,23 +309,6 @@ -AC_MSG_CHECKING([for purple SSL support]) -ac_save_LIBS=$LIBS -LIBS="$PURPLE_LIBS" -- AC_RUN_IFELSE( -- [AC_LANG_PROGRAM([[ --#include --#include --#include -- ]], -- [[ -- purple_plugins_init(); -- purple_plugins_probe(G_MODULE_SUFFIX); -- purple_ssl_init(); -- return(purple_ssl_is_supported()?0:1); -- ]])], -- [AC_MSG_RESULT(ok)], -- [AC_MSG_FAILURE([your purple hasn't been compiled with SSL support. --]) -- ], -- [AC_MSG_WARN([cross compiling: not checking])]) -]) - -dnl check whether enable voice and video support diff --git a/x11-plugins/pidgin-sipe/files/pidgin-sipe-1.20.1-fix-configure-srtp-check.patch b/x11-plugins/pidgin-sipe/files/pidgin-sipe-1.20.1-fix-configure-srtp-check.patch deleted file mode 100644 index 204d65cf424..000 --- a/x11-plugins/pidgin-sipe/files/pidgin-sipe-1.20.1-fix-configure-srtp-check.patch +++ /dev/null @@ -1,12 +0,0 @@ -Backport the change from the upstream mob branch for bug #567570 configure.ac -+++ configure.ac -@@ -409,7 +409,7 @@ - [AC_MSG_WARN([cross compiling: not checking])]) -]) - -- AC_COMPILE_IFELSE( -+ AC_LINK_IFELSE( - [AC_LANG_PROGRAM([[ - #include - ]]
[gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-sipe/
commit: 274af5d4d7c538b8934fce64cc05b8939a34230e
Author: Ian Whyman gentoo org>
AuthorDate: Sat Sep 30 16:22:02 2017 +
Commit: Ian Whyman gentoo org>
CommitDate: Sat Sep 30 16:22:02 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=274af5d4
x11-plugins/pidgin-sipe: Drop old
Package-Manager: Portage-2.3.10, Repoman-2.3.3
x11-plugins/pidgin-sipe/Manifest | 2 -
.../pidgin-sipe/pidgin-sipe-1.18.0-r1.ebuild | 67 --
x11-plugins/pidgin-sipe/pidgin-sipe-1.20.1.ebuild | 67 --
3 files changed, 136 deletions(-)
diff --git a/x11-plugins/pidgin-sipe/Manifest b/x11-plugins/pidgin-sipe/Manifest
index 98a1677cdd8..f2539966c21 100644
--- a/x11-plugins/pidgin-sipe/Manifest
+++ b/x11-plugins/pidgin-sipe/Manifest
@@ -1,5 +1,3 @@
-DIST pidgin-sipe-1.18.0.tar.gz 1090904 SHA256
f1388799e3d250fe43643ee8748a6769f67f9c544e3b91fbb25af76b30675efc SHA512
f7d50b26656cd83f13ee24412ca97ab5ffe325c13d32855f9e8c788d5c8a11cb942c12d6888c4992c037320500265441eba9bc8e4eb5c21190eb372abd6b4451
WHIRLPOOL
c97693bf54b0dba3f583891714edb63971b2669d1fc0ed41eb94009cfa2b78e37fdee42db325c74f4e4fc76cf29af5fd7cc67b598a3d672623ec1c392561ba86
-DIST pidgin-sipe-1.20.1.tar.gz 1142762 SHA256
a3538f3eed3a5e9a7f2e12622d9283ddbba88d752b4e6c3c2cd5774a3bc48717 SHA512
26363937ca4d2a3e3c759a4ba2e8039f0e90f25e9fa66f3e1a4cc976c037d9878a1c777a24ddea9d5ce308908e92cd5c80f0e90a574e03ff40e09f863e6d6755
WHIRLPOOL
40e043eca221e4bbd961bbfaf7c2369408f42b97cddf727e0e45ea516049a4fddd08a4481d75dea25870b87f2d367d01c578cbb3e4288c01af71ea0a145f8cbb
DIST pidgin-sipe-1.21.1.tar.gz 1212621 SHA256
92cc5bc581e7b500ffcce51707e003608d5f471c2785500facf63fcab62d7336 SHA512
d9b5ad67967c35e29d6742d9d09346c7702a339450de7522aad73f0b379505f24104a306292ee91960c679498073376081479b335eab8eba090e492f444b5378
WHIRLPOOL
730d4bc6bf0007ec2d52cfd25e9b96a4e0cb2dfdef528b98971416e67b2242a7d72ce41de32bf58bb52591ea85f46174a83091d75a6dc4fcefe4522c83f3e678
DIST pidgin-sipe-1.22.0.tar.gz 1255851 SHA256
1aeb348e2ba79b82b1fd102555f86cdc42eaa6f9e761b771d74c4f9c9cf15fc3 SHA512
4135bbf526659663b0b053592d889588574ed2a1bc9346e6ba62960203409e2604552ffb02ed32e2b4bb46c4f40f62089302b301344b9f7b45657e64a585f7ed
WHIRLPOOL
5714beb478b19b8378faca5ddd04573c2f0996287523fefb51219731817b237f77c98ac3ac027ff45a155b51f49c6ea420a4572f8a020e8edc715e82ef9290aa
DIST pidgin-sipe-1.22.1.tar.gz 1265440 SHA256
f6b7b7475e349c0214eb02814b808b04850113a91dd8e8d2c26e7179a3fd1ae8 SHA512
1fff886b32f7f8cb99a0af710b3a1502f62d27dedb541a9e2d8ae9eaf5eb7be0983216e730ccc912c20eee3d940ed1f789f704ee21736db76d141efda66ec018
WHIRLPOOL
d93e88d111871425ed5c2e36fd359d7f082497482d2865eaabb41cc867aac7ddea730d413aa123fafb3be605ddeb8f59cb89da98b50cddee4b1d1800d8f3c17a
diff --git a/x11-plugins/pidgin-sipe/pidgin-sipe-1.18.0-r1.ebuild
b/x11-plugins/pidgin-sipe/pidgin-sipe-1.18.0-r1.ebuild
deleted file mode 100644
index e2c6b5473f8..000
--- a/x11-plugins/pidgin-sipe/pidgin-sipe-1.18.0-r1.ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit autotools eutils
-
-DESCRIPTION="Pidgin Plug-in SIPE (Sip Exchange Protocol)"
-HOMEPAGE="http://sipe.sourceforge.net/";
-SRC_URI="mirror://sourceforge/sipe/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-IUSE="debug kerberos ocs2005-message-hack openssl telepathy voice"
-
-RDEPEND=">=dev-libs/gmime-2.4.16
- dev-libs/libxml2
- openssl? ( dev-libs/openssl )
- !openssl? ( dev-libs/nss )
- kerberos? ( virtual/krb5 )
- voice? (
- >=dev-libs/glib-2.28.0
- >=net-libs/libnice-0.1.0
- media-libs/gstreamer:0.10
- >=net-im/pidgin-2.8.0
- )
- !voice? (
- >=dev-libs/glib-2.12.0:2
- net-im/pidgin
- )
- telepathy? (
- >=sys-apps/dbus-1.1.0
- >=dev-libs/dbus-glib-0.61
- >=dev-libs/glib-2.28:2
- >=net-libs/telepathy-glib-0.18.0
- )
-"
-
-DEPEND="dev-util/intltool
- virtual/pkgconfig
- ${RDEPEND}
-"
-
-src_prepare() {
- epatch "${FILESDIR}/${PN}-1.13.2-fix-sandbox-r1.patch"
- eautoreconf
-}
-
-src_configure() {
- econf \
- --enable-purple \
- --disable-quality-check \
- $(use_enable telepathy) \
- $(use_enable debug) \
- $(use_enable ocs2005-message-hack) \
- $(use_with kerberos krb5) \
- $(use_with voice vv) \
- $(use_enable !openssl nss) \
- $(use_enable openssl)
-}
-
-src_install() {
- emake install DESTDIR="${D}"
- dodoc AUTHORS ChangeLog NEWS TODO README
-}
diff --git a/x11-plugins/pidgin-sipe/pidgin-sipe-1.20.1.ebuild
b/x11-plugins/pidgin-sipe/pidgin-sipe-1.20.1.ebuild
deleted file mode 100644
index c34633
[gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-sipe/
commit: e1e467dde4705d7326bd585d42da824b01ebe525
Author: Ian Whyman gentoo org>
AuthorDate: Sat Sep 30 16:19:02 2017 +
Commit: Ian Whyman gentoo org>
CommitDate: Sat Sep 30 16:19:02 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e1e467dd
x11-plugins/pidgin-sipe: Version bump, fix gmime slot
Package-Manager: Portage-2.3.10, Repoman-2.3.3
x11-plugins/pidgin-sipe/Manifest | 1 +
x11-plugins/pidgin-sipe/pidgin-sipe-1.22.0.ebuild | 3 ++-
.../{pidgin-sipe-1.22.0.ebuild => pidgin-sipe-1.22.1.ebuild} | 3 ++-
3 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/x11-plugins/pidgin-sipe/Manifest b/x11-plugins/pidgin-sipe/Manifest
index 568b7604ecf..98a1677cdd8 100644
--- a/x11-plugins/pidgin-sipe/Manifest
+++ b/x11-plugins/pidgin-sipe/Manifest
@@ -2,3 +2,4 @@ DIST pidgin-sipe-1.18.0.tar.gz 1090904 SHA256
f1388799e3d250fe43643ee8748a6769f6
DIST pidgin-sipe-1.20.1.tar.gz 1142762 SHA256
a3538f3eed3a5e9a7f2e12622d9283ddbba88d752b4e6c3c2cd5774a3bc48717 SHA512
26363937ca4d2a3e3c759a4ba2e8039f0e90f25e9fa66f3e1a4cc976c037d9878a1c777a24ddea9d5ce308908e92cd5c80f0e90a574e03ff40e09f863e6d6755
WHIRLPOOL
40e043eca221e4bbd961bbfaf7c2369408f42b97cddf727e0e45ea516049a4fddd08a4481d75dea25870b87f2d367d01c578cbb3e4288c01af71ea0a145f8cbb
DIST pidgin-sipe-1.21.1.tar.gz 1212621 SHA256
92cc5bc581e7b500ffcce51707e003608d5f471c2785500facf63fcab62d7336 SHA512
d9b5ad67967c35e29d6742d9d09346c7702a339450de7522aad73f0b379505f24104a306292ee91960c679498073376081479b335eab8eba090e492f444b5378
WHIRLPOOL
730d4bc6bf0007ec2d52cfd25e9b96a4e0cb2dfdef528b98971416e67b2242a7d72ce41de32bf58bb52591ea85f46174a83091d75a6dc4fcefe4522c83f3e678
DIST pidgin-sipe-1.22.0.tar.gz 1255851 SHA256
1aeb348e2ba79b82b1fd102555f86cdc42eaa6f9e761b771d74c4f9c9cf15fc3 SHA512
4135bbf526659663b0b053592d889588574ed2a1bc9346e6ba62960203409e2604552ffb02ed32e2b4bb46c4f40f62089302b301344b9f7b45657e64a585f7ed
WHIRLPOOL
5714beb478b19b8378faca5ddd04573c2f0996287523fefb51219731817b237f77c98ac3ac027ff45a155b51f49c6ea420a4572f8a020e8edc715e82ef9290aa
+DIST pidgin-sipe-1.22.1.tar.gz 1265440 SHA256
f6b7b7475e349c0214eb02814b808b04850113a91dd8e8d2c26e7179a3fd1ae8 SHA512
1fff886b32f7f8cb99a0af710b3a1502f62d27dedb541a9e2d8ae9eaf5eb7be0983216e730ccc912c20eee3d940ed1f789f704ee21736db76d141efda66ec018
WHIRLPOOL
d93e88d111871425ed5c2e36fd359d7f082497482d2865eaabb41cc867aac7ddea730d413aa123fafb3be605ddeb8f59cb89da98b50cddee4b1d1800d8f3c17a
diff --git a/x11-plugins/pidgin-sipe/pidgin-sipe-1.22.0.ebuild
b/x11-plugins/pidgin-sipe/pidgin-sipe-1.22.0.ebuild
index bb979790c0d..8b7372dda46 100644
--- a/x11-plugins/pidgin-sipe/pidgin-sipe-1.22.0.ebuild
+++ b/x11-plugins/pidgin-sipe/pidgin-sipe-1.22.0.ebuild
@@ -15,7 +15,8 @@ KEYWORDS="~amd64 ~x86"
IUSE="debug kerberos ocs2005-message-hack openssl telepathy voice"
-RDEPEND=">=dev-libs/gmime-2.4.16
+RDEPEND="
+ dev-libs/gmime:2.6
dev-libs/libxml2
openssl? ( dev-libs/openssl:= )
!openssl? ( dev-libs/nss )
diff --git a/x11-plugins/pidgin-sipe/pidgin-sipe-1.22.0.ebuild
b/x11-plugins/pidgin-sipe/pidgin-sipe-1.22.1.ebuild
similarity index 97%
copy from x11-plugins/pidgin-sipe/pidgin-sipe-1.22.0.ebuild
copy to x11-plugins/pidgin-sipe/pidgin-sipe-1.22.1.ebuild
index bb979790c0d..8b7372dda46 100644
--- a/x11-plugins/pidgin-sipe/pidgin-sipe-1.22.0.ebuild
+++ b/x11-plugins/pidgin-sipe/pidgin-sipe-1.22.1.ebuild
@@ -15,7 +15,8 @@ KEYWORDS="~amd64 ~x86"
IUSE="debug kerberos ocs2005-message-hack openssl telepathy voice"
-RDEPEND=">=dev-libs/gmime-2.4.16
+RDEPEND="
+ dev-libs/gmime:2.6
dev-libs/libxml2
openssl? ( dev-libs/openssl:= )
!openssl? ( dev-libs/nss )
[gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-sipe/
commit: 06474a8d836941b453d36b15bbdea26571b7edcd
Author: Agostino Sarubbo gentoo org>
AuthorDate: Mon Feb 6 14:53:35 2017 +
Commit: Agostino Sarubbo gentoo org>
CommitDate: Mon Feb 6 14:55:41 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06474a8d
x11-plugins/pidgin-sipe: amd64 stable wrt bug #608336
Package-Manager: portage-2.3.3
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo gentoo.org>
x11-plugins/pidgin-sipe/pidgin-sipe-1.21.1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/x11-plugins/pidgin-sipe/pidgin-sipe-1.21.1.ebuild
b/x11-plugins/pidgin-sipe/pidgin-sipe-1.21.1.ebuild
index 83758ba..becb3fc 100644
--- a/x11-plugins/pidgin-sipe/pidgin-sipe-1.21.1.ebuild
+++ b/x11-plugins/pidgin-sipe/pidgin-sipe-1.21.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$
@@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/sipe/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
IUSE="debug kerberos ocs2005-message-hack openssl telepathy voice"
[gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-sipe/
commit: e245ab22af042a92549fd9daa8d1b92529a40036
Author: Ian Whyman gentoo org>
AuthorDate: Sun Feb 5 15:10:47 2017 +
Commit: Ian Whyman gentoo org>
CommitDate: Sun Feb 5 15:11:38 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e245ab22
x11-plugins/pidgin-sipe: Version bump, Bug 608220
Package-Manager: Portage-2.3.3, Repoman-2.3.1
x11-plugins/pidgin-sipe/Manifest | 1 +
x11-plugins/pidgin-sipe/pidgin-sipe-1.22.0.ebuild | 69 +++
2 files changed, 70 insertions(+)
diff --git a/x11-plugins/pidgin-sipe/Manifest b/x11-plugins/pidgin-sipe/Manifest
index 4685f07..568b760 100644
--- a/x11-plugins/pidgin-sipe/Manifest
+++ b/x11-plugins/pidgin-sipe/Manifest
@@ -1,3 +1,4 @@
DIST pidgin-sipe-1.18.0.tar.gz 1090904 SHA256
f1388799e3d250fe43643ee8748a6769f67f9c544e3b91fbb25af76b30675efc SHA512
f7d50b26656cd83f13ee24412ca97ab5ffe325c13d32855f9e8c788d5c8a11cb942c12d6888c4992c037320500265441eba9bc8e4eb5c21190eb372abd6b4451
WHIRLPOOL
c97693bf54b0dba3f583891714edb63971b2669d1fc0ed41eb94009cfa2b78e37fdee42db325c74f4e4fc76cf29af5fd7cc67b598a3d672623ec1c392561ba86
DIST pidgin-sipe-1.20.1.tar.gz 1142762 SHA256
a3538f3eed3a5e9a7f2e12622d9283ddbba88d752b4e6c3c2cd5774a3bc48717 SHA512
26363937ca4d2a3e3c759a4ba2e8039f0e90f25e9fa66f3e1a4cc976c037d9878a1c777a24ddea9d5ce308908e92cd5c80f0e90a574e03ff40e09f863e6d6755
WHIRLPOOL
40e043eca221e4bbd961bbfaf7c2369408f42b97cddf727e0e45ea516049a4fddd08a4481d75dea25870b87f2d367d01c578cbb3e4288c01af71ea0a145f8cbb
DIST pidgin-sipe-1.21.1.tar.gz 1212621 SHA256
92cc5bc581e7b500ffcce51707e003608d5f471c2785500facf63fcab62d7336 SHA512
d9b5ad67967c35e29d6742d9d09346c7702a339450de7522aad73f0b379505f24104a306292ee91960c679498073376081479b335eab8eba090e492f444b5378
WHIRLPOOL
730d4bc6bf0007ec2d52cfd25e9b96a4e0cb2dfdef528b98971416e67b2242a7d72ce41de32bf58bb52591ea85f46174a83091d75a6dc4fcefe4522c83f3e678
+DIST pidgin-sipe-1.22.0.tar.gz 1255851 SHA256
1aeb348e2ba79b82b1fd102555f86cdc42eaa6f9e761b771d74c4f9c9cf15fc3 SHA512
4135bbf526659663b0b053592d889588574ed2a1bc9346e6ba62960203409e2604552ffb02ed32e2b4bb46c4f40f62089302b301344b9f7b45657e64a585f7ed
WHIRLPOOL
5714beb478b19b8378faca5ddd04573c2f0996287523fefb51219731817b237f77c98ac3ac027ff45a155b51f49c6ea420a4572f8a020e8edc715e82ef9290aa
diff --git a/x11-plugins/pidgin-sipe/pidgin-sipe-1.22.0.ebuild
b/x11-plugins/pidgin-sipe/pidgin-sipe-1.22.0.ebuild
new file mode 100644
index ..fe12ea7
--- /dev/null
+++ b/x11-plugins/pidgin-sipe/pidgin-sipe-1.22.0.ebuild
@@ -0,0 +1,69 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit autotools eutils
+
+DESCRIPTION="Pidgin Plug-in SIPE (Sip Exchange Protocol)"
+HOMEPAGE="http://sipe.sourceforge.net/";
+SRC_URI="mirror://sourceforge/sipe/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+IUSE="debug kerberos ocs2005-message-hack openssl telepathy voice"
+
+RDEPEND=">=dev-libs/gmime-2.4.16
+ dev-libs/libxml2
+ openssl? ( dev-libs/openssl:= )
+ !openssl? ( dev-libs/nss )
+ kerberos? ( virtual/krb5 )
+ voice? (
+ >=dev-libs/glib-2.28.0
+ >=net-libs/libnice-0.1.0
+ media-libs/gstreamer:1.0
+ >=net-im/pidgin-2.8.0
+ net-libs/farstream:0.2
+ )
+ !voice? (
+ >=dev-libs/glib-2.12.0:2
+ net-im/pidgin
+ )
+ telepathy? (
+ >=sys-apps/dbus-1.1.0
+ >=dev-libs/dbus-glib-0.61
+ >=dev-libs/glib-2.28:2
+ >=net-libs/telepathy-glib-0.18.0
+ )
+"
+
+DEPEND="dev-util/intltool
+ virtual/pkgconfig
+ ${RDEPEND}
+"
+
+src_prepare() {
+ default
+ eautoreconf
+}
+
+src_configure() {
+ econf \
+ --enable-purple \
+ --disable-quality-check \
+ $(use_enable telepathy) \
+ $(use_enable debug) \
+ $(use_enable ocs2005-message-hack) \
+ $(use_with kerberos krb5) \
+ $(use_with voice vv) \
+ $(use_enable !openssl nss) \
+ $(use_enable openssl)
+}
+
+src_install() {
+ emake install DESTDIR="${D}"
+ dodoc AUTHORS ChangeLog NEWS TODO README
+}
[gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-sipe/
commit: 7febe53cdb5f59beda844fac7d13e285b336eec5
Author: Ian Whyman gentoo org>
AuthorDate: Sat Jul 2 12:17:39 2016 +
Commit: Ian Whyman gentoo org>
CommitDate: Sat Jul 2 12:17:39 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7febe53c
x11-plugins/pidgin-sipe: Version bump (#585820)
Package-Manager: portage-2.3.0
x11-plugins/pidgin-sipe/Manifest | 1 +
x11-plugins/pidgin-sipe/pidgin-sipe-1.21.1.ebuild | 67 +++
2 files changed, 68 insertions(+)
diff --git a/x11-plugins/pidgin-sipe/Manifest b/x11-plugins/pidgin-sipe/Manifest
index ee5e2bf..4685f07 100644
--- a/x11-plugins/pidgin-sipe/Manifest
+++ b/x11-plugins/pidgin-sipe/Manifest
@@ -1,2 +1,3 @@
DIST pidgin-sipe-1.18.0.tar.gz 1090904 SHA256
f1388799e3d250fe43643ee8748a6769f67f9c544e3b91fbb25af76b30675efc SHA512
f7d50b26656cd83f13ee24412ca97ab5ffe325c13d32855f9e8c788d5c8a11cb942c12d6888c4992c037320500265441eba9bc8e4eb5c21190eb372abd6b4451
WHIRLPOOL
c97693bf54b0dba3f583891714edb63971b2669d1fc0ed41eb94009cfa2b78e37fdee42db325c74f4e4fc76cf29af5fd7cc67b598a3d672623ec1c392561ba86
DIST pidgin-sipe-1.20.1.tar.gz 1142762 SHA256
a3538f3eed3a5e9a7f2e12622d9283ddbba88d752b4e6c3c2cd5774a3bc48717 SHA512
26363937ca4d2a3e3c759a4ba2e8039f0e90f25e9fa66f3e1a4cc976c037d9878a1c777a24ddea9d5ce308908e92cd5c80f0e90a574e03ff40e09f863e6d6755
WHIRLPOOL
40e043eca221e4bbd961bbfaf7c2369408f42b97cddf727e0e45ea516049a4fddd08a4481d75dea25870b87f2d367d01c578cbb3e4288c01af71ea0a145f8cbb
+DIST pidgin-sipe-1.21.1.tar.gz 1212621 SHA256
92cc5bc581e7b500ffcce51707e003608d5f471c2785500facf63fcab62d7336 SHA512
d9b5ad67967c35e29d6742d9d09346c7702a339450de7522aad73f0b379505f24104a306292ee91960c679498073376081479b335eab8eba090e492f444b5378
WHIRLPOOL
730d4bc6bf0007ec2d52cfd25e9b96a4e0cb2dfdef528b98971416e67b2242a7d72ce41de32bf58bb52591ea85f46174a83091d75a6dc4fcefe4522c83f3e678
diff --git a/x11-plugins/pidgin-sipe/pidgin-sipe-1.21.1.ebuild
b/x11-plugins/pidgin-sipe/pidgin-sipe-1.21.1.ebuild
new file mode 100644
index 000..83758ba
--- /dev/null
+++ b/x11-plugins/pidgin-sipe/pidgin-sipe-1.21.1.ebuild
@@ -0,0 +1,67 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit autotools eutils
+
+DESCRIPTION="Pidgin Plug-in SIPE (Sip Exchange Protocol)"
+HOMEPAGE="http://sipe.sourceforge.net/";
+SRC_URI="mirror://sourceforge/sipe/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+IUSE="debug kerberos ocs2005-message-hack openssl telepathy voice"
+
+RDEPEND=">=dev-libs/gmime-2.4.16
+ dev-libs/libxml2
+ openssl? ( dev-libs/openssl:= )
+ !openssl? ( dev-libs/nss )
+ kerberos? ( virtual/krb5 )
+ voice? (
+ >=dev-libs/glib-2.28.0
+ >=net-libs/libnice-0.1.0
+ media-libs/gstreamer:0.10
+ >=net-im/pidgin-2.8.0
+ )
+ !voice? (
+ >=dev-libs/glib-2.12.0:2
+ net-im/pidgin
+ )
+ telepathy? (
+ >=sys-apps/dbus-1.1.0
+ >=dev-libs/dbus-glib-0.61
+ >=dev-libs/glib-2.28:2
+ >=net-libs/telepathy-glib-0.18.0
+ )
+"
+
+DEPEND="dev-util/intltool
+ virtual/pkgconfig
+ ${RDEPEND}
+"
+
+src_prepare() {
+ eautoreconf
+}
+
+src_configure() {
+ econf \
+ --enable-purple \
+ --disable-quality-check \
+ $(use_enable telepathy) \
+ $(use_enable debug) \
+ $(use_enable ocs2005-message-hack) \
+ $(use_with kerberos krb5) \
+ $(use_with voice vv) \
+ $(use_enable !openssl nss) \
+ $(use_enable openssl)
+}
+
+src_install() {
+ emake install DESTDIR="${D}"
+ dodoc AUTHORS ChangeLog NEWS TODO README
+}
[gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-sipe/
commit: 4a28517960f05b1905c477e19cc541f6984c2c8e
Author: Ian Whyman gentoo org>
AuthorDate: Fri Dec 18 11:34:43 2015 +
Commit: Ian Whyman gentoo org>
CommitDate: Fri Dec 18 11:34:43 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a285179
x11-plugins/pidgin-sipe: remove old
Package-Manager: portage-2.2.26
x11-plugins/pidgin-sipe/Manifest | 3 -
x11-plugins/pidgin-sipe/pidgin-sipe-1.19.0.ebuild | 67 ---
x11-plugins/pidgin-sipe/pidgin-sipe-1.19.1.ebuild | 67 ---
x11-plugins/pidgin-sipe/pidgin-sipe-1.20.0.ebuild | 67 ---
4 files changed, 204 deletions(-)
diff --git a/x11-plugins/pidgin-sipe/Manifest b/x11-plugins/pidgin-sipe/Manifest
index 376dbc9..ee5e2bf 100644
--- a/x11-plugins/pidgin-sipe/Manifest
+++ b/x11-plugins/pidgin-sipe/Manifest
@@ -1,5 +1,2 @@
DIST pidgin-sipe-1.18.0.tar.gz 1090904 SHA256
f1388799e3d250fe43643ee8748a6769f67f9c544e3b91fbb25af76b30675efc SHA512
f7d50b26656cd83f13ee24412ca97ab5ffe325c13d32855f9e8c788d5c8a11cb942c12d6888c4992c037320500265441eba9bc8e4eb5c21190eb372abd6b4451
WHIRLPOOL
c97693bf54b0dba3f583891714edb63971b2669d1fc0ed41eb94009cfa2b78e37fdee42db325c74f4e4fc76cf29af5fd7cc67b598a3d672623ec1c392561ba86
-DIST pidgin-sipe-1.19.0.tar.gz 1127851 SHA256
bc144de259e858c57d82ee7ac00a78cc3a0875ab67da6b25be05808ed274c856 SHA512
96fd7f852c7225d2ae71ec4916491c6c4facbddf9f19285334a47b6abbaa80ad7f2aa299fc1b453a7f5782f65b8f56557f5992ba8e3e2c386318d96f1f59824e
WHIRLPOOL
90c1069b38e96f6bc2c39957f9c76635f404a3188abb59004fe3a83e177803db06b6c6bcfdef5cf5fb645d901751130b15e619bf2d8fac17fb70660cf2e2ff2c
-DIST pidgin-sipe-1.19.1.tar.gz 1134961 SHA256
92c8a4611f1594096fac3c5b983df49cb8d1612cab7352799c855fd9dda0454a SHA512
4ac85f5e2ae590677b73ec339051c210173a37c974076d696409c81680e91818d9a3b75a95b4ae556a61ec0246f0cd6fb2a64488902528d5ea75140efef0
WHIRLPOOL
d31044889ae6d9d146e4a9e9bb9fd1ec84ded6597b783cfedb1f1a0478760aeca41fd574bbe8021223957fd6c84cc3082cc2cabdd0da245365573e35697d680f
-DIST pidgin-sipe-1.20.0.tar.gz 1141962 SHA256
3a6b81f40d7a80d5e467c36b92d550b3c5377b39b67953b576308ce257c2a891 SHA512
f0c9df51d3d16aeca5cf04a2cf68c1b61796a5c97ea444d86995d7034994d3e7fa66b8fa258a1fed765d6b055138b397641316c9b4f43b03b7f152ef5d66ecfd
WHIRLPOOL
eb100cac4714d4e7b830e7d50ccf034ec036b121a50348ea3148370fb5a54e130edd910ecdb010df1a23ad8b68b41a206c313ea7ee3f2f8bd37deb469853fcf4
DIST pidgin-sipe-1.20.1.tar.gz 1142762 SHA256
a3538f3eed3a5e9a7f2e12622d9283ddbba88d752b4e6c3c2cd5774a3bc48717 SHA512
26363937ca4d2a3e3c759a4ba2e8039f0e90f25e9fa66f3e1a4cc976c037d9878a1c777a24ddea9d5ce308908e92cd5c80f0e90a574e03ff40e09f863e6d6755
WHIRLPOOL
40e043eca221e4bbd961bbfaf7c2369408f42b97cddf727e0e45ea516049a4fddd08a4481d75dea25870b87f2d367d01c578cbb3e4288c01af71ea0a145f8cbb
diff --git a/x11-plugins/pidgin-sipe/pidgin-sipe-1.19.0.ebuild
b/x11-plugins/pidgin-sipe/pidgin-sipe-1.19.0.ebuild
deleted file mode 100644
index 805a403..000
--- a/x11-plugins/pidgin-sipe/pidgin-sipe-1.19.0.ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit autotools eutils
-
-DESCRIPTION="Pidgin Plug-in SIPE (Sip Exchange Protocol)"
-HOMEPAGE="http://sipe.sourceforge.net/";
-SRC_URI="mirror://sourceforge/sipe/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-IUSE="debug kerberos ocs2005-message-hack openssl telepathy voice"
-
-RDEPEND=">=dev-libs/gmime-2.4.16
- dev-libs/libxml2
- openssl? ( dev-libs/openssl )
- !openssl? ( dev-libs/nss )
- kerberos? ( virtual/krb5 )
- voice? (
- >=dev-libs/glib-2.28.0
- >=net-libs/libnice-0.1.0
- media-libs/gstreamer:0.10
- >=net-im/pidgin-2.8.0
- )
- !voice? (
- >=dev-libs/glib-2.12.0:2
- net-im/pidgin
- )
- telepathy? (
- >=sys-apps/dbus-1.1.0
- >=dev-libs/dbus-glib-0.61
- >=dev-libs/glib-2.28:2
- >=net-libs/telepathy-glib-0.18.0
- )
-"
-
-DEPEND="dev-util/intltool
- virtual/pkgconfig
- ${RDEPEND}
-"
-
-src_prepare() {
- eautoreconf
-}
-
-src_configure() {
- econf \
- --enable-purple \
- --disable-quality-check \
- $(use_enable telepathy) \
- $(use_enable debug) \
- $(use_enable ocs2005-message-hack) \
- $(use_with kerberos krb5) \
- $(use_with voice vv) \
- $(use_enable !openssl nss) \
- $(use_enable openssl)
-}
-
-src_install() {
- emake install DESTDIR="${D}"
- dodoc AUTHORS ChangeLog NEWS TODO README
-}
diff --git a/x11-plugins/pidgin-sipe/pidgin-sipe-1.19.1.ebuild
b/x11-plugins/pidgin-sipe/pidgin-sipe-1.19.1.ebuild
deleted file mode 100644
index 805a403..000
-
[gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-sipe/, x11-plugins/pidgin-sipe/files/
commit: 35c829b8b9a3d6a3f2a67568f65a320f7d6bc1f5
Author: Ian Whyman gentoo org>
AuthorDate: Fri Dec 18 11:47:50 2015 +
Commit: Ian Whyman gentoo org>
CommitDate: Fri Dec 18 11:47:50 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35c829b8
x11-plugins/pidgin-sipe: Fix configure check #567570
Package-Manager: portage-2.2.26
.../files/pidgin-sipe-1.20.1-fix-configure-srtp-check.patch | 12
x11-plugins/pidgin-sipe/pidgin-sipe-1.20.1.ebuild| 1 +
2 files changed, 13 insertions(+)
diff --git
a/x11-plugins/pidgin-sipe/files/pidgin-sipe-1.20.1-fix-configure-srtp-check.patch
b/x11-plugins/pidgin-sipe/files/pidgin-sipe-1.20.1-fix-configure-srtp-check.patch
new file mode 100644
index 000..204d65c
--- /dev/null
+++
b/x11-plugins/pidgin-sipe/files/pidgin-sipe-1.20.1-fix-configure-srtp-check.patch
@@ -0,0 +1,12 @@
+Backport the change from the upstream mob branch for bug #567570
+--- configure.ac
configure.ac
+@@ -409,7 +409,7 @@
+ [AC_MSG_WARN([cross compiling: not checking])])
+])
+
+- AC_COMPILE_IFELSE(
++ AC_LINK_IFELSE(
+ [AC_LANG_PROGRAM([[
+ #include
+ ]]
diff --git a/x11-plugins/pidgin-sipe/pidgin-sipe-1.20.1.ebuild
b/x11-plugins/pidgin-sipe/pidgin-sipe-1.20.1.ebuild
index e145d21..66f25c5 100644
--- a/x11-plugins/pidgin-sipe/pidgin-sipe-1.20.1.ebuild
+++ b/x11-plugins/pidgin-sipe/pidgin-sipe-1.20.1.ebuild
@@ -45,6 +45,7 @@ DEPEND="dev-util/intltool
"
src_prepare() {
+ epatch "${FILESDIR}/${P}-fix-configure-srtp-check.patch"
eautoreconf
}
[gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-sipe/
commit: 091e130dc2c100c402c27be73f3d1a017ae6d8f7
Author: Manuel Rüger gentoo org>
AuthorDate: Sat Nov 7 12:57:24 2015 +
Commit: Manuel Rüger gentoo org>
CommitDate: Sat Nov 7 12:57:24 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=091e130d
x11-plugins/pidgin-sipe: Version bump
Package-Manager: portage-2.2.24
x11-plugins/pidgin-sipe/Manifest | 1 +
x11-plugins/pidgin-sipe/pidgin-sipe-1.20.1.ebuild | 67 +++
2 files changed, 68 insertions(+)
diff --git a/x11-plugins/pidgin-sipe/Manifest b/x11-plugins/pidgin-sipe/Manifest
index 304ef9a..376dbc9 100644
--- a/x11-plugins/pidgin-sipe/Manifest
+++ b/x11-plugins/pidgin-sipe/Manifest
@@ -2,3 +2,4 @@ DIST pidgin-sipe-1.18.0.tar.gz 1090904 SHA256
f1388799e3d250fe43643ee8748a6769f6
DIST pidgin-sipe-1.19.0.tar.gz 1127851 SHA256
bc144de259e858c57d82ee7ac00a78cc3a0875ab67da6b25be05808ed274c856 SHA512
96fd7f852c7225d2ae71ec4916491c6c4facbddf9f19285334a47b6abbaa80ad7f2aa299fc1b453a7f5782f65b8f56557f5992ba8e3e2c386318d96f1f59824e
WHIRLPOOL
90c1069b38e96f6bc2c39957f9c76635f404a3188abb59004fe3a83e177803db06b6c6bcfdef5cf5fb645d901751130b15e619bf2d8fac17fb70660cf2e2ff2c
DIST pidgin-sipe-1.19.1.tar.gz 1134961 SHA256
92c8a4611f1594096fac3c5b983df49cb8d1612cab7352799c855fd9dda0454a SHA512
4ac85f5e2ae590677b73ec339051c210173a37c974076d696409c81680e91818d9a3b75a95b4ae556a61ec0246f0cd6fb2a64488902528d5ea75140efef0
WHIRLPOOL
d31044889ae6d9d146e4a9e9bb9fd1ec84ded6597b783cfedb1f1a0478760aeca41fd574bbe8021223957fd6c84cc3082cc2cabdd0da245365573e35697d680f
DIST pidgin-sipe-1.20.0.tar.gz 1141962 SHA256
3a6b81f40d7a80d5e467c36b92d550b3c5377b39b67953b576308ce257c2a891 SHA512
f0c9df51d3d16aeca5cf04a2cf68c1b61796a5c97ea444d86995d7034994d3e7fa66b8fa258a1fed765d6b055138b397641316c9b4f43b03b7f152ef5d66ecfd
WHIRLPOOL
eb100cac4714d4e7b830e7d50ccf034ec036b121a50348ea3148370fb5a54e130edd910ecdb010df1a23ad8b68b41a206c313ea7ee3f2f8bd37deb469853fcf4
+DIST pidgin-sipe-1.20.1.tar.gz 1142762 SHA256
a3538f3eed3a5e9a7f2e12622d9283ddbba88d752b4e6c3c2cd5774a3bc48717 SHA512
26363937ca4d2a3e3c759a4ba2e8039f0e90f25e9fa66f3e1a4cc976c037d9878a1c777a24ddea9d5ce308908e92cd5c80f0e90a574e03ff40e09f863e6d6755
WHIRLPOOL
40e043eca221e4bbd961bbfaf7c2369408f42b97cddf727e0e45ea516049a4fddd08a4481d75dea25870b87f2d367d01c578cbb3e4288c01af71ea0a145f8cbb
diff --git a/x11-plugins/pidgin-sipe/pidgin-sipe-1.20.1.ebuild
b/x11-plugins/pidgin-sipe/pidgin-sipe-1.20.1.ebuild
new file mode 100644
index 000..e145d21
--- /dev/null
+++ b/x11-plugins/pidgin-sipe/pidgin-sipe-1.20.1.ebuild
@@ -0,0 +1,67 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit autotools eutils
+
+DESCRIPTION="Pidgin Plug-in SIPE (Sip Exchange Protocol)"
+HOMEPAGE="http://sipe.sourceforge.net/";
+SRC_URI="mirror://sourceforge/sipe/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+IUSE="debug kerberos ocs2005-message-hack openssl telepathy voice"
+
+RDEPEND=">=dev-libs/gmime-2.4.16
+ dev-libs/libxml2
+ openssl? ( dev-libs/openssl:= )
+ !openssl? ( dev-libs/nss )
+ kerberos? ( virtual/krb5 )
+ voice? (
+ >=dev-libs/glib-2.28.0
+ >=net-libs/libnice-0.1.0
+ media-libs/gstreamer:0.10
+ >=net-im/pidgin-2.8.0
+ )
+ !voice? (
+ >=dev-libs/glib-2.12.0:2
+ net-im/pidgin
+ )
+ telepathy? (
+ >=sys-apps/dbus-1.1.0
+ >=dev-libs/dbus-glib-0.61
+ >=dev-libs/glib-2.28:2
+ >=net-libs/telepathy-glib-0.18.0
+ )
+"
+
+DEPEND="dev-util/intltool
+ virtual/pkgconfig
+ ${RDEPEND}
+"
+
+src_prepare() {
+ eautoreconf
+}
+
+src_configure() {
+ econf \
+ --enable-purple \
+ --disable-quality-check \
+ $(use_enable telepathy) \
+ $(use_enable debug) \
+ $(use_enable ocs2005-message-hack) \
+ $(use_with kerberos krb5) \
+ $(use_with voice vv) \
+ $(use_enable !openssl nss) \
+ $(use_enable openssl)
+}
+
+src_install() {
+ emake install DESTDIR="${D}"
+ dodoc AUTHORS ChangeLog NEWS TODO README
+}
[gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-sipe/
commit: 6733268d9bade727e278ec6f7caca7fc522b7773
Author: Ian Whyman gentoo org>
AuthorDate: Wed Sep 2 19:21:36 2015 +
Commit: Ian Whyman gentoo org>
CommitDate: Wed Sep 2 19:23:46 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6733268d
x11-plugins/pidgin-sipe: Version bump
This release fixes compatibility with office 365 by adding
support for additional cyphers.
Bug: 558782
x11-plugins/pidgin-sipe/Manifest | 1 +
x11-plugins/pidgin-sipe/pidgin-sipe-1.20.0.ebuild | 67 +++
2 files changed, 68 insertions(+)
diff --git a/x11-plugins/pidgin-sipe/Manifest b/x11-plugins/pidgin-sipe/Manifest
index b864635..304ef9a 100644
--- a/x11-plugins/pidgin-sipe/Manifest
+++ b/x11-plugins/pidgin-sipe/Manifest
@@ -1,3 +1,4 @@
DIST pidgin-sipe-1.18.0.tar.gz 1090904 SHA256
f1388799e3d250fe43643ee8748a6769f67f9c544e3b91fbb25af76b30675efc SHA512
f7d50b26656cd83f13ee24412ca97ab5ffe325c13d32855f9e8c788d5c8a11cb942c12d6888c4992c037320500265441eba9bc8e4eb5c21190eb372abd6b4451
WHIRLPOOL
c97693bf54b0dba3f583891714edb63971b2669d1fc0ed41eb94009cfa2b78e37fdee42db325c74f4e4fc76cf29af5fd7cc67b598a3d672623ec1c392561ba86
DIST pidgin-sipe-1.19.0.tar.gz 1127851 SHA256
bc144de259e858c57d82ee7ac00a78cc3a0875ab67da6b25be05808ed274c856 SHA512
96fd7f852c7225d2ae71ec4916491c6c4facbddf9f19285334a47b6abbaa80ad7f2aa299fc1b453a7f5782f65b8f56557f5992ba8e3e2c386318d96f1f59824e
WHIRLPOOL
90c1069b38e96f6bc2c39957f9c76635f404a3188abb59004fe3a83e177803db06b6c6bcfdef5cf5fb645d901751130b15e619bf2d8fac17fb70660cf2e2ff2c
DIST pidgin-sipe-1.19.1.tar.gz 1134961 SHA256
92c8a4611f1594096fac3c5b983df49cb8d1612cab7352799c855fd9dda0454a SHA512
4ac85f5e2ae590677b73ec339051c210173a37c974076d696409c81680e91818d9a3b75a95b4ae556a61ec0246f0cd6fb2a64488902528d5ea75140efef0
WHIRLPOOL
d31044889ae6d9d146e4a9e9bb9fd1ec84ded6597b783cfedb1f1a0478760aeca41fd574bbe8021223957fd6c84cc3082cc2cabdd0da245365573e35697d680f
+DIST pidgin-sipe-1.20.0.tar.gz 1141962 SHA256
3a6b81f40d7a80d5e467c36b92d550b3c5377b39b67953b576308ce257c2a891 SHA512
f0c9df51d3d16aeca5cf04a2cf68c1b61796a5c97ea444d86995d7034994d3e7fa66b8fa258a1fed765d6b055138b397641316c9b4f43b03b7f152ef5d66ecfd
WHIRLPOOL
eb100cac4714d4e7b830e7d50ccf034ec036b121a50348ea3148370fb5a54e130edd910ecdb010df1a23ad8b68b41a206c313ea7ee3f2f8bd37deb469853fcf4
diff --git a/x11-plugins/pidgin-sipe/pidgin-sipe-1.20.0.ebuild
b/x11-plugins/pidgin-sipe/pidgin-sipe-1.20.0.ebuild
new file mode 100644
index 000..e145d21
--- /dev/null
+++ b/x11-plugins/pidgin-sipe/pidgin-sipe-1.20.0.ebuild
@@ -0,0 +1,67 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit autotools eutils
+
+DESCRIPTION="Pidgin Plug-in SIPE (Sip Exchange Protocol)"
+HOMEPAGE="http://sipe.sourceforge.net/";
+SRC_URI="mirror://sourceforge/sipe/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+IUSE="debug kerberos ocs2005-message-hack openssl telepathy voice"
+
+RDEPEND=">=dev-libs/gmime-2.4.16
+ dev-libs/libxml2
+ openssl? ( dev-libs/openssl:= )
+ !openssl? ( dev-libs/nss )
+ kerberos? ( virtual/krb5 )
+ voice? (
+ >=dev-libs/glib-2.28.0
+ >=net-libs/libnice-0.1.0
+ media-libs/gstreamer:0.10
+ >=net-im/pidgin-2.8.0
+ )
+ !voice? (
+ >=dev-libs/glib-2.12.0:2
+ net-im/pidgin
+ )
+ telepathy? (
+ >=sys-apps/dbus-1.1.0
+ >=dev-libs/dbus-glib-0.61
+ >=dev-libs/glib-2.28:2
+ >=net-libs/telepathy-glib-0.18.0
+ )
+"
+
+DEPEND="dev-util/intltool
+ virtual/pkgconfig
+ ${RDEPEND}
+"
+
+src_prepare() {
+ eautoreconf
+}
+
+src_configure() {
+ econf \
+ --enable-purple \
+ --disable-quality-check \
+ $(use_enable telepathy) \
+ $(use_enable debug) \
+ $(use_enable ocs2005-message-hack) \
+ $(use_with kerberos krb5) \
+ $(use_with voice vv) \
+ $(use_enable !openssl nss) \
+ $(use_enable openssl)
+}
+
+src_install() {
+ emake install DESTDIR="${D}"
+ dodoc AUTHORS ChangeLog NEWS TODO README
+}
