public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/kde-sunset:master commit in: dev-libs/qoauth/
@ 2020-08-16 15:57 Andreas Sturmlechner
  0 siblings, 0 replies; 3+ messages in thread
From: Andreas Sturmlechner @ 2020-08-16 15:57 UTC (permalink / raw
  To: gentoo-commits

commit:     b2f91a1beb33b1cd30f0791faefd2660231dc48d
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 14 22:53:56 2020 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sun Aug 16 15:52:07 2020 +0000
URL:        https://gitweb.gentoo.org/proj/kde-sunset.git/commit/?id=b2f91a1b

dev-libs/qoauth: Import from Gentoo ebuild repo before last-rites

Required by kde-plasma/kdeplasma-addons.

Package-Manager: Portage-3.0.2, Repoman-2.3.23
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 dev-libs/qoauth/metadata.xml        |  5 +++
 dev-libs/qoauth/qoauth-1.0.1.ebuild | 68 +++++++++++++++++++++++++++++++++++++
 2 files changed, 73 insertions(+)

diff --git a/dev-libs/qoauth/metadata.xml b/dev-libs/qoauth/metadata.xml
new file mode 100644
index 00000000..6f49eba8
--- /dev/null
+++ b/dev-libs/qoauth/metadata.xml
@@ -0,0 +1,5 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<!-- maintainer-needed -->
+</pkgmetadata>

diff --git a/dev-libs/qoauth/qoauth-1.0.1.ebuild b/dev-libs/qoauth/qoauth-1.0.1.ebuild
new file mode 100644
index 00000000..d3209406
--- /dev/null
+++ b/dev-libs/qoauth/qoauth-1.0.1.ebuild
@@ -0,0 +1,68 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=4
+
+inherit qt4-r2
+
+DESCRIPTION="A Qt-based library for OAuth support"
+HOMEPAGE="https://github.com/ayoy/qoauth/wiki"
+SRC_URI="http://files.ayoy.net/qoauth/release/${PV}/src/${P}-src.tar.bz2"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="amd64 ppc ~ppc64 x86"
+IUSE="debug doc static-libs test"
+
+COMMON_DEPEND="app-crypt/qca:2[debug?,qt4(+)]"
+DEPEND="${COMMON_DEPEND}
+	doc? ( app-doc/doxygen )
+	test? ( dev-qt/qttest:4 )
+"
+RDEPEND="${COMMON_DEPEND}
+	app-crypt/qca:2[ssl]
+"
+
+S=${WORKDIR}/${P}-src
+
+DOCS="README CHANGELOG"
+PATCHES=(
+	# disable functional tests that require network connection
+	# and rely on 3rd party external server (bug #341267)
+	"${FILESDIR}/${P}-disable-ft.patch"
+)
+
+src_prepare() {
+	qt4-r2_src_prepare
+
+	if ! use test; then
+		sed -i -e '/SUBDIRS/s/tests//' ${PN}.pro || die "sed failed"
+	fi
+
+	sed -i -e '/^ *docs \\$/d' \
+		-e '/^ *build_all \\$/d' \
+		-e 's/^\#\(!macx\)/\1/' \
+		src/src.pro || die "sed failed"
+
+	sed -i -e "s/\(.*\)lib$/\1$(get_libdir)/" src/pcfile.sh || die "sed failed"
+}
+
+src_compile() {
+	default
+	if use static-libs; then
+		emake -C src static
+	fi
+}
+
+src_install() {
+	qt4-r2_src_install
+
+	if use static-libs; then
+		dolib.a "${S}"/lib/lib${PN}.a
+	fi
+
+	if use doc; then
+		doxygen "${S}"/Doxyfile || die "failed to generate documentation"
+		dohtml "${S}"/doc/html/*
+	fi
+}


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] proj/kde-sunset:master commit in: dev-libs/qoauth/
@ 2020-12-03  1:04 Andreas Sturmlechner
  0 siblings, 0 replies; 3+ messages in thread
From: Andreas Sturmlechner @ 2020-12-03  1:04 UTC (permalink / raw
  To: gentoo-commits

commit:     f2d21257c0b32d83fb866c5ee3c706217cd7c36f
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Thu Dec  3 00:02:06 2020 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Thu Dec  3 00:45:57 2020 +0000
URL:        https://gitweb.gentoo.org/proj/kde-sunset.git/commit/?id=f2d21257

dev-libs/qoauth: Fix MissingTestRestrict

Package-Manager: Portage-3.0.11, Repoman-3.0.2
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 dev-libs/qoauth/qoauth-1.0.1.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/dev-libs/qoauth/qoauth-1.0.1.ebuild b/dev-libs/qoauth/qoauth-1.0.1.ebuild
index 8f4362f8..abbe36a2 100644
--- a/dev-libs/qoauth/qoauth-1.0.1.ebuild
+++ b/dev-libs/qoauth/qoauth-1.0.1.ebuild
@@ -14,6 +14,8 @@ SLOT="0"
 KEYWORDS="amd64 ~ppc ~ppc64 x86"
 IUSE="debug doc static-libs test"
 
+RESTRICT+=" !test? ( test )"
+
 COMMON_DEPEND="
 	app-crypt/qca:2-qt4[debug?]
 "


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] proj/kde-sunset:master commit in: dev-libs/qoauth/
@ 2020-12-07 18:19 Andreas Sturmlechner
  0 siblings, 0 replies; 3+ messages in thread
From: Andreas Sturmlechner @ 2020-12-07 18:19 UTC (permalink / raw
  To: gentoo-commits

commit:     8bf7564c045874005219c4a782956028aa8b7638
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Mon Dec  7 17:46:11 2020 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Mon Dec  7 18:18:57 2020 +0000
URL:        https://gitweb.gentoo.org/proj/kde-sunset.git/commit/?id=8bf7564c

dev-libs/qoauth: Remove unused library, no revdeps

Last revdep dropped in commit fa17cd1a653ea9fd552f19bb248fb568bf063d55

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 dev-libs/qoauth/metadata.xml        |  5 ---
 dev-libs/qoauth/qoauth-1.0.1.ebuild | 72 -------------------------------------
 2 files changed, 77 deletions(-)

diff --git a/dev-libs/qoauth/metadata.xml b/dev-libs/qoauth/metadata.xml
deleted file mode 100644
index 6f49eba8..00000000
--- a/dev-libs/qoauth/metadata.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<!-- maintainer-needed -->
-</pkgmetadata>

diff --git a/dev-libs/qoauth/qoauth-1.0.1.ebuild b/dev-libs/qoauth/qoauth-1.0.1.ebuild
deleted file mode 100644
index abbe36a2..00000000
--- a/dev-libs/qoauth/qoauth-1.0.1.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit qt4-r2
-
-DESCRIPTION="Qt-based library for OAuth support"
-HOMEPAGE="https://github.com/ayoy/qoauth/wiki"
-SRC_URI="http://files.ayoy.net/qoauth/release/${PV}/src/${P}-src.tar.bz2"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="amd64 ~ppc ~ppc64 x86"
-IUSE="debug doc static-libs test"
-
-RESTRICT+=" !test? ( test )"
-
-COMMON_DEPEND="
-	app-crypt/qca:2-qt4[debug?]
-"
-DEPEND="${COMMON_DEPEND}
-	doc? ( app-doc/doxygen )
-	test? ( dev-qt/qttest:4 )
-"
-RDEPEND="${COMMON_DEPEND}
-	app-crypt/qca:2-qt4[ssl]
-"
-
-S=${WORKDIR}/${P}-src
-
-DOCS="README CHANGELOG"
-PATCHES=(
-	# disable functional tests that require network connection
-	# and rely on 3rd party external server (bug #341267)
-	"${FILESDIR}/${P}-disable-ft.patch"
-)
-
-src_prepare() {
-	qt4-r2_src_prepare
-
-	if ! use test; then
-		sed -i -e '/SUBDIRS/s/tests//' ${PN}.pro || die "sed failed"
-	fi
-
-	sed -i -e '/^ *docs \\$/d' \
-		-e '/^ *build_all \\$/d' \
-		-e 's/^\#\(!macx\)/\1/' \
-		src/src.pro || die "sed failed"
-
-	sed -i -e "s/\(.*\)lib$/\1$(get_libdir)/" src/pcfile.sh || die "sed failed"
-}
-
-src_compile() {
-	default
-	if use static-libs; then
-		emake -C src static
-	fi
-}
-
-src_install() {
-	qt4-r2_src_install
-
-	if use static-libs; then
-		dolib.a "${S}"/lib/lib${PN}.a
-	fi
-
-	if use doc; then
-		doxygen "${S}"/Doxyfile || die "failed to generate documentation"
-		dohtml "${S}"/doc/html/*
-	fi
-}


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-12-07 18:19 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-12-03  1:04 [gentoo-commits] proj/kde-sunset:master commit in: dev-libs/qoauth/ Andreas Sturmlechner
  -- strict thread matches above, loose matches on Subject: below --
2020-12-07 18:19 Andreas Sturmlechner
2020-08-16 15:57 Andreas Sturmlechner

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox