public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Michael Palimaka" <kensington@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/qxmledit/
Date: Sun, 18 Jun 2017 11:04:29 +0000 (UTC)	[thread overview]
Message-ID: <1497783861.994a9453e54910e8a60659df76e0ae1e797f32e9.kensington@gentoo> (raw)

commit:     994a9453e54910e8a60659df76e0ae1e797f32e9
Author:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 18 11:04:12 2017 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Sun Jun 18 11:04:21 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=994a9453

app-editors/qxmledit: version bump 0.9.7

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 app-editors/qxmledit/Manifest              |  1 +
 app-editors/qxmledit/qxmledit-0.9.7.ebuild | 70 ++++++++++++++++++++++++++++++
 2 files changed, 71 insertions(+)

diff --git a/app-editors/qxmledit/Manifest b/app-editors/qxmledit/Manifest
index 58702fd3086..1b0ef648da3 100644
--- a/app-editors/qxmledit/Manifest
+++ b/app-editors/qxmledit/Manifest
@@ -1,2 +1,3 @@
 DIST qxmledit-0.9.5-src.tgz 19653021 SHA256 ac6341f1ceb004e64e070c6e99b5c3be3cfdf7d81a5556e79d99beb2f9eab43f SHA512 d54672af9154dcae4486b72a14024f23bcec834dae9c6ec082496b532d750d2411f64ae0dfbd66da7817027e2f4cd6ed1bc7e065ceb822ef2e4d60d14a308609 WHIRLPOOL 37e32dcca088693d5ffb591e812a93b3d8815eaab341a45d5c2a0278c0db18dc9788593ed7dd8ca8411d5d0ac1034c8a0dac8bd9c1b3a09fe22697dd97716d98
 DIST qxmledit-0.9.6-src.tgz 22661917 SHA256 46928b059d9c00c96d98a5ab0bb6249abdd9225b2bbf280bbb8e0f54a894e964 SHA512 d2cf6ae630a84305b10d4a362859500b52e4d6e03e4f1852b953178ac023a13eb9e90f8da8cf6633dcf5a3cfbf5a44affb69465eb91240ccc22b0256100a685f WHIRLPOOL 784362b4738bc5606f942a48a1dfade4a264227c4feb2597bdfa10759b1c96e68ec824ca56550a20c5322d790ce7b82728c1ca4d774370fcbbbbc5dfa3953846
+DIST qxmledit-0.9.7-1-src.tgz 20151952 SHA256 bcb694f01db5e4f4bedec81f823d498c6270f78da6a0c5963c52956f6c81c443 SHA512 c2304c0d46925f36ae2e411bae805406df60339bbce1f030ebbbe42b203133770ff011cb9751e79ac6807f21425e73f3f66f7081a5b14d6701522c2aa1e9a9df WHIRLPOOL 6f037cc63ec40446bee41e9eab8646f2c349bc3525d01c5e5cce417932b3020e1b79da71f356f64bac963bfb063a34ea0a3b44b8f17d051b8b4509a09172be3f

diff --git a/app-editors/qxmledit/qxmledit-0.9.7.ebuild b/app-editors/qxmledit/qxmledit-0.9.7.ebuild
new file mode 100644
index 00000000000..cfb94f95329
--- /dev/null
+++ b/app-editors/qxmledit/qxmledit-0.9.7.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit eutils qmake-utils xdg-utils
+
+DESCRIPTION="Simple Qt-based XML editor"
+HOMEPAGE="http://qxmledit.org/"
+SRC_URI="mirror://sourceforge/${PN}/${P}-1-src.tgz"
+
+LICENSE="LGPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="
+	dev-qt/qtconcurrent:5
+	dev-qt/qtcore:5
+	dev-qt/qtgui:5
+	dev-qt/qtnetwork:5
+	dev-qt/qtopengl:5
+	dev-qt/qtprintsupport:5
+	dev-qt/qtscxml:5
+	dev-qt/qtsql:5
+	dev-qt/qtsvg:5
+	dev-qt/qtwidgets:5
+	dev-qt/qtxml:5
+	dev-qt/qtxmlpatterns:5
+"
+RDEPEND="${DEPEND}"
+
+DOCS=( AUTHORS NEWS README )
+
+S=${WORKDIR}/${P}-1
+
+src_prepare() {
+	default
+
+	# bug 568746
+	sed -i -e '/QMAKE_CXXFLAGS/s:-Werror::' \
+		src/{QXmlEdit,QXmlEditWidget,sessions/QXmlEditSessions}.pro || die
+}
+
+src_configure() {
+	export \
+		QXMLEDIT_INST_DIR="${EPREFIX}/usr/bin" \
+		QXMLEDIT_INST_LIB_DIR="${EPREFIX}/usr/$(get_libdir)" \
+		QXMLEDIT_INST_INCLUDE_DIR="${EPREFIX}/usr/include/${PN}" \
+		QXMLEDIT_INST_DATA_DIR="${EPREFIX}/usr/share/${PN}" \
+		QXMLEDIT_INST_DOC_DIR="${EPREFIX}/usr/share/doc/${PF}"
+
+	eqmake5
+}
+
+src_install() {
+	emake INSTALL_ROOT="${D}" install
+
+	doicon install_scripts/environment/icon/qxmledit.png
+	domenu install_scripts/environment/desktop/QXmlEdit.desktop
+	einstalldocs
+}
+
+pkg_postinst() {
+	xdg_desktop_database_update
+}
+
+pkg_postrm() {
+	xdg_desktop_database_update
+}


             reply	other threads:[~2017-06-18 11:04 UTC|newest]

Thread overview: 41+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-06-18 11:04 Michael Palimaka [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-09-05 19:54 [gentoo-commits] repo/gentoo:master commit in: app-editors/qxmledit/ Petr Vaněk
2024-06-06 17:28 Arthur Zamarin
2024-06-06 16:58 Arthur Zamarin
2024-02-23 11:49 Arthur Zamarin
2024-02-23 11:20 Arthur Zamarin
2024-02-22 20:16 Arthur Zamarin
2019-08-12  6:16 Andreas Sturmlechner
2019-08-11 21:30 Thomas Deutschmann
2019-08-08  7:43 Agostino Sarubbo
2019-03-07 13:13 Michael Palimaka
2019-03-07 13:13 Michael Palimaka
2019-03-07 13:13 Michael Palimaka
2018-06-30  1:52 Michael Palimaka
2018-01-25 14:06 Michael Palimaka
2017-12-22  9:57 Michael Palimaka
2017-09-30  7:22 Michael Palimaka
2017-09-11 12:17 Michael Palimaka
2017-09-11 12:17 Michael Palimaka
2017-09-11 12:17 Michael Palimaka
2017-09-11 12:17 Michael Palimaka
2017-09-11 12:17 Michael Palimaka
2017-09-11 12:17 Michael Palimaka
2017-03-04  7:09 Michael Palimaka
2017-01-26 14:55 Michael Palimaka
2017-01-26 14:53 Agostino Sarubbo
2017-01-26 14:45 Agostino Sarubbo
2016-11-12 13:38 Michael Palimaka
2016-08-11 14:38 Michael Palimaka
2016-08-11 14:38 Michael Palimaka
2016-06-09 11:50 Michael Palimaka
2016-06-08 15:54 Michael Palimaka
2016-06-08 15:54 Michael Palimaka
2016-06-07 23:45 Davide Pesavento
2016-06-06 16:15 Agostino Sarubbo
2016-05-30 16:04 Davide Pesavento
2016-05-30 16:04 Davide Pesavento
2016-04-02 19:02 Davide Pesavento
2016-02-27  3:10 Davide Pesavento
2015-12-15 17:55 Michael Palimaka
2015-09-01 18:38 Tobias Klausmann

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=1497783861.994a9453e54910e8a60659df76e0ae1e797f32e9.kensington@gentoo \
    --to=kensington@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