From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 389D0138334 for ; Mon, 20 Aug 2018 15:31:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0F180E07D7; Mon, 20 Aug 2018 15:31:32 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C0203E07D7 for ; Mon, 20 Aug 2018 15:31:31 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3A0C4335DD0 for ; Mon, 20 Aug 2018 15:31:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DBF6D398 for ; Mon, 20 Aug 2018 15:31:26 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1534779077.91071e948b751433ec8cd4ba9b2b8661dec0e91c.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/dmtx-utils/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/dmtx-utils/Manifest media-gfx/dmtx-utils/dmtx-utils-0.7.5.ebuild media-gfx/dmtx-utils/metadata.xml X-VCS-Directories: media-gfx/dmtx-utils/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 91071e948b751433ec8cd4ba9b2b8661dec0e91c X-VCS-Branch: master Date: Mon, 20 Aug 2018 15:31:26 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 6b4ca1cc-ed26-4fab-98b4-6b8a67cb7473 X-Archives-Hash: e8f2457155b145a6aa53647e5e5c4619 commit: 91071e948b751433ec8cd4ba9b2b8661dec0e91c Author: Andrey Mazo yandex com> AuthorDate: Sun Aug 5 18:21:25 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Aug 20 15:31:17 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91071e94 media-gfx/dmtx-utils: new package, version 0.7.5 Add dmtx-utils package, which provides dmtxread/dmtxwrite/dmtxquery commands. The package is built on top of media-libs/libdmtx library. Closes: https://bugs.gentoo.org/635684 Closes: https://github.com/gentoo/gentoo/pull/9462 Package-Manager: Portage-2.3.40, Repoman-2.3.9 media-gfx/dmtx-utils/Manifest | 1 + media-gfx/dmtx-utils/dmtx-utils-0.7.5.ebuild | 30 ++++++++++++++++++++++++++++ media-gfx/dmtx-utils/metadata.xml | 21 +++++++++++++++++++ 3 files changed, 52 insertions(+) diff --git a/media-gfx/dmtx-utils/Manifest b/media-gfx/dmtx-utils/Manifest new file mode 100644 index 00000000000..a83f1b43702 --- /dev/null +++ b/media-gfx/dmtx-utils/Manifest @@ -0,0 +1 @@ +DIST dmtx-utils-0.7.5.tar.gz 54754 BLAKE2B 0eaaa75dd8f650492f790aa960a6df93509e2bf5b1d0dd4b335a418f1524ee633d8d5f087cfef8b8950fc736dbb8ff702561e48506fa1b85d5846cf87601a197 SHA512 915104150d1cc5877d3012cb3934163b4a8e93f8132082835e8d12a8844d29e4afa06d020f5bd79e4bcacb8c153baadf183885619b7c4eb235d8c8c7041d325a diff --git a/media-gfx/dmtx-utils/dmtx-utils-0.7.5.ebuild b/media-gfx/dmtx-utils/dmtx-utils-0.7.5.ebuild new file mode 100644 index 00000000000..35aad35ab7b --- /dev/null +++ b/media-gfx/dmtx-utils/dmtx-utils-0.7.5.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools + +DESCRIPTION="Tools for reading and writing Data Matrix barcodes" +HOMEPAGE="https://github.com/dmtx/dmtx-utils" +SRC_URI="https://github.com/dmtx/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="LGPL-2.1+" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +RDEPEND=" + >=media-gfx/imagemagick-6.2.4:= + >=media-libs/libdmtx-0.7.0 +" +DEPEND="${RDEPEND}" +BDEPEND=" + virtual/pkgconfig +" + +src_prepare() { + default + + eautoreconf +} diff --git a/media-gfx/dmtx-utils/metadata.xml b/media-gfx/dmtx-utils/metadata.xml new file mode 100644 index 00000000000..3971294e52e --- /dev/null +++ b/media-gfx/dmtx-utils/metadata.xml @@ -0,0 +1,21 @@ + + + + + ahippo@yandex.ru + Andrey Mazo + + + proxy-maint@gentoo.org + Proxy Maintainers + + + Tools for reading and writing two-dimensional Data Matrix barcodes. + The tools are based on libdmtx library. + + + dmtx/dmtx-utils + libdmtx + https://github.com/dmtx/dmtx-utils/issues + +