From: "Joonas Niilola" <juippis@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-p2p/classified-ads/
Date: Fri, 22 Apr 2022 06:18:09 +0000 (UTC) [thread overview]
Message-ID: <1650608286.e3fe8d6581e5257e2ded8028ab355a12822f2c7a.juippis@gentoo> (raw)
commit: e3fe8d6581e5257e2ded8028ab355a12822f2c7a
Author: Antti Järvinen <antti.jarvinen <AT> katiska <DOT> org>
AuthorDate: Sat Apr 16 16:49:59 2022 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Fri Apr 22 06:18:06 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3fe8d65
net-p2p/classified-ads: Upstream v0.14 version bump.
?doc is now a build dependecy. Return value of virtx is explicitly tested.
Closes: https://bugs.gentoo.org/836741
Signed-off-by: Antti Järvinen <antti.jarvinen <AT> katiska.org>
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
net-p2p/classified-ads/Manifest | 2 +
net-p2p/classified-ads/classified-ads-0.14.ebuild | 84 +++++++++++++++++++++++
2 files changed, 86 insertions(+)
diff --git a/net-p2p/classified-ads/Manifest b/net-p2p/classified-ads/Manifest
index b5e187ba6003..1939a64e0d59 100644
--- a/net-p2p/classified-ads/Manifest
+++ b/net-p2p/classified-ads/Manifest
@@ -1,2 +1,4 @@
DIST classified-ads-0.13.tar.gz 2656104 BLAKE2B d02f723d7371abc2a8c0a6bfde300c8a4f16e5fcc43a17c5d8b8cce4ab21371df82b734e5813ebded6672e8448b7e8ee19c68836926dcc7af1824bfa173de0ef SHA512 7b6114705ac5867223e4e74c13aad47a4a38c24cd5e062e50dd7c0a5829ff011151a93562b1a5ab37f04fe3d6a93258e9ca4845748bbb02db882818284fe4a3a
+DIST classified-ads-0.14.tar.gz 2657632 BLAKE2B e3b405cb4c706a17158871b571a28f8a024b87e73e758858cec2387a7889ddf1ee5af2ce84b151d31bb5271991531380a2f177028022e2f5e28d7720926ebf8e SHA512 1d68c494f1f680b36fd8997183d222c8c4fd852cb4278947aed1744ba49d49d1cbb04ee06d6952ab22096c6d8b87b940c66d518cb26757fe03f17b3d1ce6dddb
DIST classified-ads-graphics-0.13.tar.gz 340476 BLAKE2B c9bac95f0e620a671959f0eb8c719cd70be5c9340ccb3bc3baa7eae669b5201d3127880b9006a4031e09be09e72754c8ec07824b3581e3af691c3944d5b32d21 SHA512 c59f65f37a8e4dddb753dbcdec835e946d9de021c5273319b3cd95ef1c3343715ce4b87d76b2d96264acc791a6cced32967521c74978131bd76fbcfc37bb344d
+DIST classified-ads-graphics-0.14.tar.gz 340476 BLAKE2B c9bac95f0e620a671959f0eb8c719cd70be5c9340ccb3bc3baa7eae669b5201d3127880b9006a4031e09be09e72754c8ec07824b3581e3af691c3944d5b32d21 SHA512 c59f65f37a8e4dddb753dbcdec835e946d9de021c5273319b3cd95ef1c3343715ce4b87d76b2d96264acc791a6cced32967521c74978131bd76fbcfc37bb344d
diff --git a/net-p2p/classified-ads/classified-ads-0.14.ebuild b/net-p2p/classified-ads/classified-ads-0.14.ebuild
new file mode 100644
index 000000000000..fd127beed1fe
--- /dev/null
+++ b/net-p2p/classified-ads/classified-ads-0.14.ebuild
@@ -0,0 +1,84 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit qmake-utils virtualx xdg
+
+DESCRIPTION="Program for displaying classified advertisement items"
+HOMEPAGE="http://katiska.org/classified-ads/"
+SRC_URI="https://github.com/operatornormal/classified-ads/archive/${PV}.tar.gz
+ -> classified-ads-${PV}.tar.gz
+ https://github.com/operatornormal/classified-ads/blob/graphics/preprocessed.tar.gz?raw=true
+ -> classified-ads-graphics-${PV}.tar.gz"
+
+LICENSE="LGPL-2.1+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+IUSE="doc test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="app-arch/bzip2
+ dev-lang/tcl:=
+ dev-lang/tk:=
+ dev-libs/openssl:0=
+ dev-qt/qtcore:5
+ dev-qt/qtgui:5
+ dev-qt/qtmultimedia:5[widgets]
+ dev-qt/qtnetwork:5[ssl]
+ dev-qt/qtprintsupport:5
+ dev-qt/qtsql:5[sqlite]
+ dev-qt/qtwidgets:5
+ media-libs/opus
+ net-libs/libnatpmp
+ net-libs/miniupnpc:=
+ sys-apps/file
+ sys-libs/zlib
+ virtual/libintl"
+
+DEPEND="${RDEPEND}
+ test? ( dev-libs/libgcrypt:0
+ dev-qt/qttest:5
+ sys-devel/gdb:0 )"
+
+BDEPEND="sys-devel/gettext
+ doc? ( app-doc/doxygen )"
+
+src_prepare() {
+ # preprocessed graphics are unpacked into wrong directory
+ # so lets move them into correct location:
+ mv ../ui/* ui/ || die
+ default
+}
+
+src_configure() {
+ eqmake5 examplefiles.path=/usr/share/doc/${PF}/examples
+ if use test; then
+ cd testca || die
+ eqmake5
+ fi
+}
+
+src_compile() {
+ emake
+ if use doc; then
+ pushd doc > /dev/null || die
+ doxygen || die
+ popd > /dev/null || die
+ fi
+ if use test; then
+ emake -C testca
+ fi
+}
+
+src_test() {
+ # testca will return 0 if all unit tests pass
+ virtx ./testca/testca || die
+}
+
+src_install() {
+ docompress -x /usr/share/doc/
+ emake install INSTALL_ROOT="${D}" DESTDIR="${D}"
+ use doc && dodoc -r doc/doxygen.generated/html/.
+}
next reply other threads:[~2022-04-22 6:18 UTC|newest]
Thread overview: 29+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-04-22 6:18 Joonas Niilola [this message]
-- strict thread matches above, loose matches on Subject: below --
2023-05-07 8:01 [gentoo-commits] repo/gentoo:master commit in: net-p2p/classified-ads/ Joonas Niilola
2022-07-02 17:35 Joonas Niilola
2021-06-22 18:19 Sam James
2020-09-20 13:51 David Seifert
2018-08-18 7:19 Michał Górny
2018-02-11 11:12 Michał Górny
2018-01-05 15:38 Ulrich Müller
2017-11-26 23:23 David Seifert
2017-09-09 16:13 Michael Palimaka
2017-09-09 16:13 Michael Palimaka
2016-07-08 19:06 Patrice Clement
2016-05-29 14:19 Pacho Ramos
2016-05-16 9:31 Ian Delaney
2016-05-12 2:50 Ian Delaney
2016-05-12 2:50 Ian Delaney
2016-05-07 21:24 Michał Górny
2016-05-03 6:45 Ian Delaney
2016-05-03 6:45 Ian Delaney
2016-05-03 6:45 Ian Delaney
2016-05-03 6:45 Ian Delaney
2016-05-03 3:41 Ian Delaney
2016-05-03 3:41 Ian Delaney
2016-05-03 3:41 Ian Delaney
2016-05-03 3:41 Ian Delaney
2015-12-27 10:08 Ian Delaney
2015-12-27 10:08 Ian Delaney
2015-12-27 10:08 Ian Delaney
2015-10-13 4:41 Ian Delaney
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1650608286.e3fe8d6581e5257e2ded8028ab355a12822f2c7a.juippis@gentoo \
--to=juippis@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox