* [gentoo-commits] repo/gentoo:master commit in: net-libs/jreen/
@ 2016-01-18 14:46 Michael Palimaka
0 siblings, 0 replies; 10+ messages in thread
From: Michael Palimaka @ 2016-01-18 14:46 UTC (permalink / raw
To: gentoo-commits
commit: 2f6e525d538b96557c167ac26c16df149ae60fc4
Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 18 14:46:08 2016 +0000
Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Mon Jan 18 14:46:38 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f6e525d
net-libs/jreen: add missing USE dependency
Gentoo-bug: 572266
Package-Manager: portage-2.2.26
net-libs/jreen/jreen-1.2.0.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/net-libs/jreen/jreen-1.2.0.ebuild b/net-libs/jreen/jreen-1.2.0.ebuild
index 1289f63..b6c08bc 100644
--- a/net-libs/jreen/jreen-1.2.0.ebuild
+++ b/net-libs/jreen/jreen-1.2.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
@@ -29,7 +29,7 @@ DEPEND="
net-libs/libgsasl
sys-libs/zlib
qt4? (
- >=dev-qt/qtcore-4.6.0:4
+ >=dev-qt/qtcore-4.6.0:4[ssl]
>=dev-qt/qtgui-4.6.0:4
)
qt5? (
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/jreen/
@ 2016-03-21 15:13 Johannes Huber
0 siblings, 0 replies; 10+ messages in thread
From: Johannes Huber @ 2016-03-21 15:13 UTC (permalink / raw
To: gentoo-commits
commit: 867c530871a2dd8348d4369f40bacbf80ab40e44
Author: Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 21 15:12:15 2016 +0000
Commit: Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Mon Mar 21 15:12:15 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=867c5308
net-libs/jreen: Version bump 1.2.1
Package-Manager: portage-2.2.28
net-libs/jreen/Manifest | 1 +
net-libs/jreen/jreen-1.2.1.ebuild | 75 +++++++++++++++++++++++++++++++++++++++
2 files changed, 76 insertions(+)
diff --git a/net-libs/jreen/Manifest b/net-libs/jreen/Manifest
index 9bf0273..f6246a0 100644
--- a/net-libs/jreen/Manifest
+++ b/net-libs/jreen/Manifest
@@ -1 +1,2 @@
DIST jreen-1.2.0.tar.gz 279435 SHA256 cee3762015357bfd88f7f3eb71dd7f90ddf37fdff07c5cf99881fda051c5fe1b SHA512 36b5fb892c16fd113574904671c8d5d3da6b50e0ea128b8e24715cb517c97212adcc8641a2a230ba1edd4c7735f46211ea4729f9e27fbea14e292ad098c78b0c WHIRLPOOL 90f0904e35345a21db8fda314455421762e7e7d5f3150bc94d73a70b4337690e16cc69a70f1a4fc2000507172544813b265c34720d7f292fb4f1537dc9df676f
+DIST jreen-1.2.1.tar.gz 279584 SHA256 be5de04b6f54e47bdec92707600441a39e46add958181ad2b5b2d1bf92693fbd SHA512 3ab28cf2a2c2a595892b15acb9e49c7aa64dbb3b2ac13138ce011b16c2c6b3abeb524231d271fb0f4a6da028548ae6995b34bd70ee9c40fb54e6d64fac2633a2 WHIRLPOOL ff0f76b18252b8601e2e3c7a6c784bf3eb579c4e421e44081a24f726ea10a3cb1a3373c4a80bbf51200ddf346cff43453667182c080acd500097a1c28b18fb94
diff --git a/net-libs/jreen/jreen-1.2.1.ebuild b/net-libs/jreen/jreen-1.2.1.ebuild
new file mode 100644
index 0000000..1544368
--- /dev/null
+++ b/net-libs/jreen/jreen-1.2.1.ebuild
@@ -0,0 +1,75 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+if [[ ${PV} != *9999* ]]; then
+ SRC_URI="https://github.com/euroelessar/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64 ~ppc ~x86"
+else
+ GIT_ECLASS="git-r3"
+ EGIT_REPO_URI=( "git://github.com/euroelessar/${PN}" )
+ KEYWORDS=""
+fi
+
+inherit cmake-utils multibuild ${GIT_ECLASS}
+
+DESCRIPTION="Qt XMPP library"
+HOMEPAGE="https://github.com/euroelessar/jreen"
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="debug +qt4 qt5"
+
+REQUIRED_USE="|| ( qt4 qt5 )"
+
+DEPEND="
+ media-libs/speex
+ net-libs/libgsasl
+ sys-libs/zlib
+ qt4? (
+ dev-qt/qtcore:4[ssl]
+ dev-qt/qtgui:4
+ )
+ qt5? (
+ dev-qt/qtcore:5
+ dev-qt/qtnetwork:5
+ )
+"
+RDEPEND="${DEPEND}"
+
+DOCS=( AUTHORS ChangeLog README.md )
+
+pkg_setup() {
+ MULTIBUILD_VARIANTS=( $(usev qt4) $(usev qt5) )
+}
+
+src_configure() {
+ myconfigure() {
+ local mycmakeargs=()
+
+ if [[ ${MULTIBUILD_VARIANT} = qt4 ]]; then
+ mycmakeargs+=( -DJREEN_FORCE_QT4=ON )
+ fi
+ if [[ ${MULTIBUILD_VARIANT} = qt5 ]]; then
+ mycmakeargs+=( -DJREEN_FORCE_QT4=OFF )
+ fi
+
+ cmake-utils_src_configure
+ }
+
+ multibuild_foreach_variant myconfigure
+}
+
+src_compile() {
+ multibuild_foreach_variant cmake-utils_src_compile
+}
+
+src_install() {
+ multibuild_foreach_variant cmake-utils_src_install
+}
+
+src_test() {
+ multibuild_foreach_variant cmake-utils_src_test
+}
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/jreen/
@ 2016-06-16 20:30 Michael Palimaka
0 siblings, 0 replies; 10+ messages in thread
From: Michael Palimaka @ 2016-06-16 20:30 UTC (permalink / raw
To: gentoo-commits
commit: e6d138f3076cce435e36e44118888ec57965b6e2
Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 16 20:29:17 2016 +0000
Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Thu Jun 16 20:30:45 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6d138f3
net-libs/jreen: amd64/x86 stable
Package-Manager: portage-2.3.0_rc1
net-libs/jreen/jreen-1.2.1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/net-libs/jreen/jreen-1.2.1.ebuild b/net-libs/jreen/jreen-1.2.1.ebuild
index 6969640..b0e159e 100644
--- a/net-libs/jreen/jreen-1.2.1.ebuild
+++ b/net-libs/jreen/jreen-1.2.1.ebuild
@@ -6,11 +6,11 @@ EAPI=6
if [[ ${PV} != *9999* ]]; then
SRC_URI="https://github.com/euroelessar/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~ppc ~x86"
+ KEYWORDS="amd64 ~ppc x86"
else
GIT_ECLASS="git-r3"
EGIT_REPO_URI=( "git://github.com/euroelessar/${PN}" )
- KEYWORDS=""
+ KEYWORDS="amd64 x86"
fi
inherit cmake-utils multibuild ${GIT_ECLASS}
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/jreen/
@ 2016-06-16 20:30 Michael Palimaka
0 siblings, 0 replies; 10+ messages in thread
From: Michael Palimaka @ 2016-06-16 20:30 UTC (permalink / raw
To: gentoo-commits
commit: f7c3e95e2c092b92294be661969c8260ce4dd8c1
Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 16 20:29:38 2016 +0000
Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Thu Jun 16 20:30:45 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7c3e95e
net-libs/jreen: remove old
Package-Manager: portage-2.3.0_rc1
net-libs/jreen/Manifest | 1 -
net-libs/jreen/jreen-1.2.0.ebuild | 81 ---------------------------------------
2 files changed, 82 deletions(-)
diff --git a/net-libs/jreen/Manifest b/net-libs/jreen/Manifest
index f6246a0..bfd2a34 100644
--- a/net-libs/jreen/Manifest
+++ b/net-libs/jreen/Manifest
@@ -1,2 +1 @@
-DIST jreen-1.2.0.tar.gz 279435 SHA256 cee3762015357bfd88f7f3eb71dd7f90ddf37fdff07c5cf99881fda051c5fe1b SHA512 36b5fb892c16fd113574904671c8d5d3da6b50e0ea128b8e24715cb517c97212adcc8641a2a230ba1edd4c7735f46211ea4729f9e27fbea14e292ad098c78b0c WHIRLPOOL 90f0904e35345a21db8fda314455421762e7e7d5f3150bc94d73a70b4337690e16cc69a70f1a4fc2000507172544813b265c34720d7f292fb4f1537dc9df676f
DIST jreen-1.2.1.tar.gz 279584 SHA256 be5de04b6f54e47bdec92707600441a39e46add958181ad2b5b2d1bf92693fbd SHA512 3ab28cf2a2c2a595892b15acb9e49c7aa64dbb3b2ac13138ce011b16c2c6b3abeb524231d271fb0f4a6da028548ae6995b34bd70ee9c40fb54e6d64fac2633a2 WHIRLPOOL ff0f76b18252b8601e2e3c7a6c784bf3eb579c4e421e44081a24f726ea10a3cb1a3373c4a80bbf51200ddf346cff43453667182c080acd500097a1c28b18fb94
diff --git a/net-libs/jreen/jreen-1.2.0.ebuild b/net-libs/jreen/jreen-1.2.0.ebuild
deleted file mode 100644
index b6c08bc..0000000
--- a/net-libs/jreen/jreen-1.2.0.ebuild
+++ /dev/null
@@ -1,81 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-if [[ ${PV} != *9999* ]]; then
- SRC_URI="https://github.com/euroelessar/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="amd64 ~ppc x86"
-else
- GIT_ECLASS="git-r3"
- EGIT_REPO_URI=( "git://github.com/euroelessar/${PN}" )
- KEYWORDS=""
-fi
-
-inherit cmake-utils multibuild ${GIT_ECLASS}
-
-DESCRIPTION="Qt XMPP library"
-HOMEPAGE="https://github.com/euroelessar/jreen"
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="debug +qt4 qt5"
-
-REQUIRED_USE="|| ( qt4 qt5 )"
-
-DEPEND="
- media-libs/speex
- net-libs/libgsasl
- sys-libs/zlib
- qt4? (
- >=dev-qt/qtcore-4.6.0:4[ssl]
- >=dev-qt/qtgui-4.6.0:4
- )
- qt5? (
- dev-qt/qtcore:5
- dev-qt/qtnetwork:5
- )
-"
-RDEPEND="${DEPEND}"
-
-DOCS=( AUTHORS ChangeLog README )
-
-pkg_setup() {
- MULTIBUILD_VARIANTS=()
- if use qt4; then
- MULTIBUILD_VARIANTS+=( qt4 )
- fi
- if use qt5; then
- MULTIBUILD_VARIANTS+=( qt5 )
- fi
-}
-
-src_configure() {
- myconfigure() {
- local mycmakeargs=()
-
- if [[ ${MULTIBUILD_VARIANT} = qt4 ]]; then
- mycmakeargs+=( -DJREEN_FORCE_QT4=ON )
- fi
- if [[ ${MULTIBUILD_VARIANT} = qt5 ]]; then
- mycmakeargs+=( -DJREEN_FORCE_QT4=OFF )
- fi
-
- cmake-utils_src_configure
- }
-
- multibuild_foreach_variant myconfigure
-}
-
-src_compile() {
- multibuild_foreach_variant cmake-utils_src_compile
-}
-
-src_install() {
- multibuild_foreach_variant cmake-utils_src_install
-}
-
-src_test() {
- multibuild_foreach_variant cmake-utils_src_test
-}
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/jreen/
@ 2016-11-01 21:12 Johannes Huber
0 siblings, 0 replies; 10+ messages in thread
From: Johannes Huber @ 2016-11-01 21:12 UTC (permalink / raw
To: gentoo-commits
commit: de5b49643ba8d375ca6980493962bbc72ea3c0d5
Author: Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 1 20:50:14 2016 +0000
Commit: Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Tue Nov 1 21:12:24 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de5b4964
net-libs/jreen: Version bump 1.3.0
Package-Manager: portage-2.3.2
net-libs/jreen/Manifest | 1 +
net-libs/jreen/jreen-1.2.1.ebuild | 1 -
net-libs/jreen/{jreen-1.2.1.ebuild => jreen-1.3.0.ebuild} | 4 +---
3 files changed, 2 insertions(+), 4 deletions(-)
diff --git a/net-libs/jreen/Manifest b/net-libs/jreen/Manifest
index bfd2a34..8499573 100644
--- a/net-libs/jreen/Manifest
+++ b/net-libs/jreen/Manifest
@@ -1 +1,2 @@
DIST jreen-1.2.1.tar.gz 279584 SHA256 be5de04b6f54e47bdec92707600441a39e46add958181ad2b5b2d1bf92693fbd SHA512 3ab28cf2a2c2a595892b15acb9e49c7aa64dbb3b2ac13138ce011b16c2c6b3abeb524231d271fb0f4a6da028548ae6995b34bd70ee9c40fb54e6d64fac2633a2 WHIRLPOOL ff0f76b18252b8601e2e3c7a6c784bf3eb579c4e421e44081a24f726ea10a3cb1a3373c4a80bbf51200ddf346cff43453667182c080acd500097a1c28b18fb94
+DIST jreen-1.3.0.tar.gz 287827 SHA256 f93c3d338c011c0945dacb14eb9da3be9541028c9eaa6f2024e688eb8a49b07e SHA512 7b8267aa7d0e18c28dfeb6a1c7c0495d87bd2712fe10a0c6283f0cf89b72d2c67f98f97a812c9f34496af43eb00ddd94b7e60e942634fb03d0119f94a3d08464 WHIRLPOOL 6a6e0f469e344eab2f0c745411091867bddeaeabf0dad8ff8ebb58521d1d9a0b07d6bb389fb9cf937cfc2974b834951baf4de514eef6ae5c087f72c6c0d6f604
diff --git a/net-libs/jreen/jreen-1.2.1.ebuild b/net-libs/jreen/jreen-1.2.1.ebuild
index b0e159e..9924c3d 100644
--- a/net-libs/jreen/jreen-1.2.1.ebuild
+++ b/net-libs/jreen/jreen-1.2.1.ebuild
@@ -10,7 +10,6 @@ if [[ ${PV} != *9999* ]]; then
else
GIT_ECLASS="git-r3"
EGIT_REPO_URI=( "git://github.com/euroelessar/${PN}" )
- KEYWORDS="amd64 x86"
fi
inherit cmake-utils multibuild ${GIT_ECLASS}
diff --git a/net-libs/jreen/jreen-1.2.1.ebuild b/net-libs/jreen/jreen-1.3.0.ebuild
similarity index 93%
copy from net-libs/jreen/jreen-1.2.1.ebuild
copy to net-libs/jreen/jreen-1.3.0.ebuild
index b0e159e..a70bff2 100644
--- a/net-libs/jreen/jreen-1.2.1.ebuild
+++ b/net-libs/jreen/jreen-1.3.0.ebuild
@@ -6,11 +6,10 @@ EAPI=6
if [[ ${PV} != *9999* ]]; then
SRC_URI="https://github.com/euroelessar/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="amd64 ~ppc x86"
+ KEYWORDS="~amd64 ~ppc ~x86"
else
GIT_ECLASS="git-r3"
EGIT_REPO_URI=( "git://github.com/euroelessar/${PN}" )
- KEYWORDS="amd64 x86"
fi
inherit cmake-utils multibuild ${GIT_ECLASS}
@@ -40,7 +39,6 @@ DEPEND="
RDEPEND="${DEPEND}"
DOCS=( AUTHORS ChangeLog README.md )
-PATCHES=( "${FILESDIR}/${PN}-qt5.6.patch" )
pkg_setup() {
MULTIBUILD_VARIANTS=( $(usev qt4) $(usev qt5) )
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/jreen/
@ 2017-01-19 10:37 Agostino Sarubbo
0 siblings, 0 replies; 10+ messages in thread
From: Agostino Sarubbo @ 2017-01-19 10:37 UTC (permalink / raw
To: gentoo-commits
commit: c52d321ac9877a1aa39c4ea3d1737ffd376cd069
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 19 10:36:36 2017 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Thu Jan 19 10:36:36 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c52d321a
net-libs/jreen: amd64 stable wrt bug #606438
Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
net-libs/jreen/jreen-1.3.0.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/net-libs/jreen/jreen-1.3.0.ebuild b/net-libs/jreen/jreen-1.3.0.ebuild
index a70bff2..2939e15 100644
--- a/net-libs/jreen/jreen-1.3.0.ebuild
+++ b/net-libs/jreen/jreen-1.3.0.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$
@@ -6,7 +6,7 @@ EAPI=6
if [[ ${PV} != *9999* ]]; then
SRC_URI="https://github.com/euroelessar/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~ppc ~x86"
+ KEYWORDS="amd64 ~ppc ~x86"
else
GIT_ECLASS="git-r3"
EGIT_REPO_URI=( "git://github.com/euroelessar/${PN}" )
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/jreen/
@ 2017-01-19 10:59 Agostino Sarubbo
0 siblings, 0 replies; 10+ messages in thread
From: Agostino Sarubbo @ 2017-01-19 10:59 UTC (permalink / raw
To: gentoo-commits
commit: 25382775ed69f348133ffe511994bb471816f226
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 19 10:58:41 2017 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Thu Jan 19 10:58:41 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25382775
net-libs/jreen: x86 stable wrt bug #606438
Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
net-libs/jreen/jreen-1.3.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-libs/jreen/jreen-1.3.0.ebuild b/net-libs/jreen/jreen-1.3.0.ebuild
index 2939e15..3900f2b 100644
--- a/net-libs/jreen/jreen-1.3.0.ebuild
+++ b/net-libs/jreen/jreen-1.3.0.ebuild
@@ -6,7 +6,7 @@ EAPI=6
if [[ ${PV} != *9999* ]]; then
SRC_URI="https://github.com/euroelessar/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="amd64 ~ppc ~x86"
+ KEYWORDS="amd64 ~ppc x86"
else
GIT_ECLASS="git-r3"
EGIT_REPO_URI=( "git://github.com/euroelessar/${PN}" )
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/jreen/
@ 2017-11-27 23:58 Andreas Sturmlechner
0 siblings, 0 replies; 10+ messages in thread
From: Andreas Sturmlechner @ 2017-11-27 23:58 UTC (permalink / raw
To: gentoo-commits
commit: 5f1599119320e66090ce36f24941fbfb0261ee64
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 26 22:05:25 2017 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Mon Nov 27 23:57:25 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f159911
net-libs/jreen: Drop old
Package-Manager: Portage-2.3.16, Repoman-2.3.6
net-libs/jreen/jreen-1.3.0.ebuild | 73 ---------------------------------------
1 file changed, 73 deletions(-)
diff --git a/net-libs/jreen/jreen-1.3.0.ebuild b/net-libs/jreen/jreen-1.3.0.ebuild
deleted file mode 100644
index aea62ff6125..00000000000
--- a/net-libs/jreen/jreen-1.3.0.ebuild
+++ /dev/null
@@ -1,73 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-if [[ ${PV} != *9999* ]]; then
- SRC_URI="https://github.com/euroelessar/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="amd64 ~ppc x86"
-else
- GIT_ECLASS="git-r3"
- EGIT_REPO_URI="https://github.com/euroelessar/${PN}.git"
-fi
-
-inherit cmake-utils multibuild ${GIT_ECLASS}
-
-DESCRIPTION="Qt XMPP library"
-HOMEPAGE="https://github.com/euroelessar/jreen"
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="debug +qt4 qt5"
-
-REQUIRED_USE="|| ( qt4 qt5 )"
-
-DEPEND="
- media-libs/speex
- net-libs/libgsasl
- sys-libs/zlib
- qt4? (
- dev-qt/qtcore:4[ssl]
- dev-qt/qtgui:4
- )
- qt5? (
- dev-qt/qtcore:5
- dev-qt/qtnetwork:5
- )
-"
-RDEPEND="${DEPEND}"
-
-DOCS=( AUTHORS ChangeLog README.md )
-
-pkg_setup() {
- MULTIBUILD_VARIANTS=( $(usev qt4) $(usev qt5) )
-}
-
-src_configure() {
- myconfigure() {
- local mycmakeargs=()
-
- if [[ ${MULTIBUILD_VARIANT} = qt4 ]]; then
- mycmakeargs+=( -DJREEN_FORCE_QT4=ON )
- fi
- if [[ ${MULTIBUILD_VARIANT} = qt5 ]]; then
- mycmakeargs+=( -DJREEN_FORCE_QT4=OFF )
- fi
-
- cmake-utils_src_configure
- }
-
- multibuild_foreach_variant myconfigure
-}
-
-src_compile() {
- multibuild_foreach_variant cmake-utils_src_compile
-}
-
-src_install() {
- multibuild_foreach_variant cmake-utils_src_install
-}
-
-src_test() {
- multibuild_foreach_variant cmake-utils_src_test
-}
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/jreen/
@ 2017-11-27 23:58 Andreas Sturmlechner
0 siblings, 0 replies; 10+ messages in thread
From: Andreas Sturmlechner @ 2017-11-27 23:58 UTC (permalink / raw
To: gentoo-commits
commit: 882bf43a70268245456531e33e9caaefdba0a29e
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 26 22:04:54 2017 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Mon Nov 27 23:57:24 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=882bf43a
net-libs/jreen: Drop USE qt4,qt5
Build Qt5-based only.
Package-Manager: Portage-2.3.16, Repoman-2.3.6
net-libs/jreen/jreen-1.3.0-r1.ebuild | 39 ++++++++++++++++++++++++++++++++++++
1 file changed, 39 insertions(+)
diff --git a/net-libs/jreen/jreen-1.3.0-r1.ebuild b/net-libs/jreen/jreen-1.3.0-r1.ebuild
new file mode 100644
index 00000000000..d8834856d8f
--- /dev/null
+++ b/net-libs/jreen/jreen-1.3.0-r1.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+if [[ ${PV} != *9999* ]]; then
+ SRC_URI="https://github.com/euroelessar/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64 ~ppc ~x86"
+else
+ GIT_ECLASS="git-r3"
+ EGIT_REPO_URI="https://github.com/euroelessar/${PN}.git"
+fi
+
+inherit cmake-utils ${GIT_ECLASS}
+
+DESCRIPTION="Qt XMPP library"
+HOMEPAGE="https://github.com/euroelessar/jreen"
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="debug"
+
+DEPEND="
+ dev-qt/qtcore:5
+ dev-qt/qtnetwork:5
+ media-libs/speex
+ net-libs/libgsasl
+ sys-libs/zlib
+"
+RDEPEND="${DEPEND}"
+
+DOCS=( AUTHORS ChangeLog README.md )
+
+src_configure() {
+ local mycmakeargs=(
+ -DJREEN_FORCE_QT4=OFF
+ )
+ cmake-utils_src_configure
+}
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/jreen/
@ 2018-12-12 14:06 Andreas Sturmlechner
0 siblings, 0 replies; 10+ messages in thread
From: Andreas Sturmlechner @ 2018-12-12 14:06 UTC (permalink / raw
To: gentoo-commits
commit: ff21f50cfa61c31287e750d5097654352032e1af
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 13 01:45:16 2018 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Wed Dec 12 14:05:55 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff21f50c
net-libs/jreen: EAPI-7 bump
Package-Manager: Portage-2.3.49, Repoman-2.3.10
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
net-libs/jreen/jreen-1.3.0-r1.ebuild | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/net-libs/jreen/jreen-1.3.0-r1.ebuild b/net-libs/jreen/jreen-1.3.0-r1.ebuild
index d8834856d8f..c004a9cffb9 100644
--- a/net-libs/jreen/jreen-1.3.0-r1.ebuild
+++ b/net-libs/jreen/jreen-1.3.0-r1.ebuild
@@ -1,7 +1,7 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-EAPI=6
+EAPI=7
if [[ ${PV} != *9999* ]]; then
SRC_URI="https://github.com/euroelessar/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
@@ -29,8 +29,6 @@ DEPEND="
"
RDEPEND="${DEPEND}"
-DOCS=( AUTHORS ChangeLog README.md )
-
src_configure() {
local mycmakeargs=(
-DJREEN_FORCE_QT4=OFF
^ permalink raw reply related [flat|nested] 10+ messages in thread
end of thread, other threads:[~2018-12-12 14:06 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-01-19 10:37 [gentoo-commits] repo/gentoo:master commit in: net-libs/jreen/ Agostino Sarubbo
-- strict thread matches above, loose matches on Subject: below --
2018-12-12 14:06 Andreas Sturmlechner
2017-11-27 23:58 Andreas Sturmlechner
2017-11-27 23:58 Andreas Sturmlechner
2017-01-19 10:59 Agostino Sarubbo
2016-11-01 21:12 Johannes Huber
2016-06-16 20:30 Michael Palimaka
2016-06-16 20:30 Michael Palimaka
2016-03-21 15:13 Johannes Huber
2016-01-18 14:46 Michael Palimaka
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox