public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Gilles Dartiguelongue" <eva@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/simple-scan/
Date: Sun, 23 Oct 2016 23:01:59 +0000 (UTC)	[thread overview]
Message-ID: <1477263606.b79e0a19fb0574a0b26e0f1d61d51c7d62f6b405.eva@gentoo> (raw)

commit:     b79e0a19fb0574a0b26e0f1d61d51c7d62f6b405
Author:     Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 23 21:44:31 2016 +0000
Commit:     Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
CommitDate: Sun Oct 23 23:00:06 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b79e0a19

media-gfx/simple-scan: version bump 3.20.0 → 3.22.0.1

Package-Manager: portage-2.3.1

 media-gfx/simple-scan/Manifest                    |  1 +
 media-gfx/simple-scan/simple-scan-3.22.0.1.ebuild | 56 +++++++++++++++++++++++
 2 files changed, 57 insertions(+)

diff --git a/media-gfx/simple-scan/Manifest b/media-gfx/simple-scan/Manifest
index 9f68abc..37072fb 100644
--- a/media-gfx/simple-scan/Manifest
+++ b/media-gfx/simple-scan/Manifest
@@ -1,2 +1,3 @@
 DIST simple-scan-3.18.2.tar.xz 510416 SHA256 061b58e5909362200e5cdffcdcc70d1afb8f8948efc1ec8ab592c7783c8939e9 SHA512 d2374bc8d7186647851729c3e3b879fa81fab7a38ba78ea9a4d9a72b7e8a63d6c58fc68602942d21eb350d1255d03bed731ca243ff69ffb88231a1c54f9df8c6 WHIRLPOOL 672a04293fa578fa0f9ce907aa177c3a42f0b52d01159087f856360c5d2bc08ac95b2c7f790c323e5c56d1b4d804ea24573a4b6930fe9116463521ca670254c0
 DIST simple-scan-3.20.0.tar.xz 550444 SHA256 8df5a5a5b06220e98770f11c53db8fc5d0d8d675d1c395f2bcd19fc8656eb62c SHA512 2b06d3d98ad740a864fbe2278d509e958f5b3c8eaf8eb27cc15b4b033986ca7e7c7db301e60a2a0a204b16cb9a27e9d50fefcf956f15685bd79d27375bfd308b WHIRLPOOL 17007ec48097471cf3ea44359b3803249b6fbe692f883998b3d5cfca976580a1a10560f05ff2ae3460fa251d7f9df42ddc117d905317d5f4ac608398b2fb20ed
+DIST simple-scan-3.22.0.1.tar.xz 659564 SHA256 c505b6e63379c9256fbeaa4def3e595fd063d46a8a852ed90218d336291d2b50 SHA512 2513887546c1e6764cffeac26638646b03eaf2f2e5d8013d9c29dfd4fbe200b347f7ee8a94e402497d1e8bdc3ba55d2fb2a740eecc8663c692f75fda2b1607c0 WHIRLPOOL 9fe1bbc2774ace85869fb12084e304e26dff2612bdcd7335de3ad12f803ff9d3ed7fb2b2b64273584782b5ba15ace1acf3cea2f52a2900b5d66b0b67f58cfec8

diff --git a/media-gfx/simple-scan/simple-scan-3.22.0.1.ebuild b/media-gfx/simple-scan/simple-scan-3.22.0.1.ebuild
new file mode 100644
index 00000000..17261a2
--- /dev/null
+++ b/media-gfx/simple-scan/simple-scan-3.22.0.1.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+inherit gnome2 vala versionator
+
+DESCRIPTION="Simple document scanning utility"
+HOMEPAGE="https://launchpad.net/simple-scan"
+
+MY_PV=$(get_version_component_range 1-2)
+SRC_URI="https://launchpad.net/${PN}/${MY_PV}/${PV}/+download/${P}.tar.xz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE="colord" # packagekit
+
+COMMON_DEPEND="
+	>=dev-libs/glib-2.32:2
+	dev-libs/libgusb[vala]
+	>=media-gfx/sane-backends-1.0.20:=
+	>=sys-libs/zlib-1.2.3.1:=
+	virtual/jpeg:0=
+	x11-libs/cairo:=
+	>=x11-libs/gtk+-3:3
+	colord? ( >=x11-misc/colord-0.1.24:=[udev] )
+"
+# packagekit? ( app-admin/packagekit-base )
+RDEPEND="${COMMON_DEPEND}
+	x11-misc/xdg-utils
+	x11-themes/adwaita-icon-theme
+"
+DEPEND="${COMMON_DEPEND}
+	$(vala_depend)
+	app-text/yelp-tools
+	dev-libs/appstream-glib
+	>=sys-devel/gettext-0.19.7
+	virtual/pkgconfig
+"
+
+src_prepare() {
+	# Force build from vala sources due to mismatch between generated
+	# C files and configure switches
+	# https://bugs.launchpad.net/simple-scan/+bug/1462769
+	rm -f src/simple_scan_vala.stamp || die
+	vala_src_prepare
+	gnome2_src_prepare
+}
+
+src_configure() {
+	gnome2_src_configure \
+		--disable-packagekit \
+		$(use_enable colord)
+		# $(use_enable packagekit)
+}


             reply	other threads:[~2016-10-23 23:02 UTC|newest]

Thread overview: 74+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-10-23 23:01 Gilles Dartiguelongue [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-04-14  1:46 [gentoo-commits] repo/gentoo:master commit in: media-gfx/simple-scan/ Pacho Ramos
2024-07-15 19:22 Pacho Ramos
2024-05-28 12:35 Sam James
2023-05-04 16:15 Arthur Zamarin
2023-05-03  7:03 Arthur Zamarin
2023-05-02 20:13 Arthur Zamarin
2023-05-02 19:19 Arthur Zamarin
2023-03-19 23:38 Matt Turner
2023-02-15 11:55 Yixun Lan
2022-11-23 17:52 Jakov Smolić
2022-11-07  7:26 Sam James
2022-11-05  9:58 Arthur Zamarin
2022-10-31  2:56 Matt Turner
2022-09-24 15:34 Matt Turner
2022-05-28  5:05 Sam James
2022-05-28  1:27 Sam James
2022-05-28  1:20 Sam James
2022-04-19 17:57 Matt Turner
2022-03-25 21:56 Matt Turner
2022-01-24 14:49 Sam James
2022-01-24  3:39 Sam James
2022-01-20 10:02 Jakov Smolić
2022-01-20  9:42 Arthur Zamarin
2022-01-13  2:00 Georgy Yakovlev
2021-12-23 11:51 Pacho Ramos
2021-12-19 18:15 Mart Raudsepp
2021-11-11 13:52 Pacho Ramos
2021-09-26 10:34 Pacho Ramos
2021-07-11  9:23 Mart Raudsepp
2021-05-29 15:27 Sam James
2021-05-29  9:02 Sam James
2021-05-29  6:09 Sam James
2021-05-28 19:20 Sam James
2021-05-25 18:51 Matt Turner
2021-04-17 22:23 Matt Turner
2021-04-13 16:12 Matt Turner
2021-04-13 15:00 Sam James
2021-04-01 16:44 Thomas Deutschmann
2021-03-12  8:01 Mikle Kolyada
2020-12-19 15:14 Mart Raudsepp
2020-12-13 12:16 Sergei Trofimovich
2020-11-07 15:23 Mart Raudsepp
2020-08-30 18:09 Sam James
2020-08-30 15:17 Thomas Deutschmann
2020-07-17 20:44 Mart Raudsepp
2020-07-04 15:07 Mart Raudsepp
2020-06-29 15:42 Mikle Kolyada
2020-06-28 14:19 Thomas Deutschmann
2020-06-15 18:04 Sergei Trofimovich
2020-04-29 20:08 Mart Raudsepp
2020-03-21 18:57 Mart Raudsepp
2020-02-19 22:39 Mart Raudsepp
2019-12-23 22:02 Mart Raudsepp
2019-07-28  6:42 Mart Raudsepp
2019-05-18 23:05 Mart Raudsepp
2019-04-25 21:52 Sobhan Mohammadpour
2019-03-22 22:33 Mart Raudsepp
2019-03-22 22:33 Mart Raudsepp
2019-01-12 23:24 Sergei Trofimovich
2019-01-12 23:24 Sergei Trofimovich
2018-02-03 22:46 Mart Raudsepp
2018-01-18  2:44 Mikle Kolyada
2017-08-12 23:15 Gilles Dartiguelongue
2017-04-02 13:03 Mart Raudsepp
2016-10-23 23:01 Gilles Dartiguelongue
2016-07-02 17:12 Pacho Ramos
2016-07-02 17:12 Pacho Ramos
2016-03-06 20:12 Mikle Kolyada
2015-12-14 23:39 Gilles Dartiguelongue
2015-12-12 10:28 Pacho Ramos
2015-11-17 20:23 Pacho Ramos
2015-09-05 17:09 Pacho Ramos
2015-09-05 17:09 Pacho Ramos

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=1477263606.b79e0a19fb0574a0b26e0f1d61d51c7d62f6b405.eva@gentoo \
    --to=eva@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