public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Manuel Rüger" <mrueg@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libassuan/
Date: Tue, 19 Jan 2016 21:23:26 +0000 (UTC)	[thread overview]
Message-ID: <1453238595.b86cefcb9c06565bc574721b7d2d4fd3c2f5c1f2.mrueg@gentoo> (raw)

commit:     b86cefcb9c06565bc574721b7d2d4fd3c2f5c1f2
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 19 21:23:15 2016 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Tue Jan 19 21:23:15 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b86cefcb

dev-libs/libassuan: Version bump

Package-Manager: portage-2.2.27

 dev-libs/libassuan/Manifest               |  1 +
 dev-libs/libassuan/libassuan-2.4.2.ebuild | 38 +++++++++++++++++++++++++++++++
 2 files changed, 39 insertions(+)

diff --git a/dev-libs/libassuan/Manifest b/dev-libs/libassuan/Manifest
index 71ed8ba..ed746e5 100644
--- a/dev-libs/libassuan/Manifest
+++ b/dev-libs/libassuan/Manifest
@@ -5,3 +5,4 @@ DIST libassuan-2.2.0.tar.bz2 516800 SHA256 7df58ed70be4b694f77efd1f3b3f103c6311b
 DIST libassuan-2.2.1.tar.bz2 542381 SHA256 949285bb79345362cb72a40c798defefc007031c60f2f10251720bf60a9de2de SHA512 7788c7c1163bbad659e308d7dc4254f9d6c27ff6bf9d9fad2ef7b9f07392799a3c0f57c6cbcc5f39aecaabb9ba8150044a969099b8d53d2eaf47d6022f1d9c4b WHIRLPOOL 2c6d8038b58122f0e2215f99f472400295c0f4a97dd65b4e0b78ffaf242d3e6b79d4eb3cec9e894e43ec307010e57111b5da08cce66bed2b37501680e6064772
 DIST libassuan-2.3.0.tar.bz2 544229 SHA256 87c999f572047fa22a79ab5de4c8a1a5a91f292561b69573965cac7751320452 SHA512 5d13d61b181faee2d61790318d0a4124ecec7616fa1720f90f3c697ca2f56911d7fc935a3ac99eb0c95c5a740e78968b70b28ade614abfd045a9c9ac6d1a14d6 WHIRLPOOL 7ed4e000c523e77f46a4abeb360abf6ae088773586eacb221228d893f61fe78ee0e5d5669bfffd16f96a2d8831b62e71cd0e30a32e96cc651ddf2ba57d52d471
 DIST libassuan-2.4.1.tar.bz2 586464 SHA256 c5738a55efd101438a25d86dc0c342a8e5da1339161a4eee1bbdc2088b88b71f SHA512 bfafa27e410cf714e3a85f11b4c02ec316a3748d257bd4b41ab5480360d5de05b5350d50d87c8e037392fcc74628a856243387a55056294d942161cc8df1784f WHIRLPOOL 37710c9b10fa0a3e0851ebdb153b97c2db2525d679b217312880002590775d75852698d09237e6db95654d986487073ee0d1ba6aca0e7c4f91d78ea822701e02
+DIST libassuan-2.4.2.tar.bz2 587631 SHA256 bb06dc81380b74bf1b64d5849be5c0409a336f3b4c45f20ac688e86d1b5bcb20 SHA512 175f9807b7c960750d8177bc879be1476b7948c9af17cce48a60e8ef35cf1f62dc0909fe6c53898d0ac0b991aa22d6aa0720bfbc48894a89775d32f287ea9f7b WHIRLPOOL 597ace887107703411f600f6b3116ce5cfbec77820a595cd82e665c2609ca2c7d25392420d19238ee4e1291116de16067dd46bc53fce8eff71edaaba1e0c1094

diff --git a/dev-libs/libassuan/libassuan-2.4.2.ebuild b/dev-libs/libassuan/libassuan-2.4.2.ebuild
new file mode 100644
index 0000000..e47dc8d
--- /dev/null
+++ b/dev-libs/libassuan/libassuan-2.4.2.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit libtool eutils
+
+DESCRIPTION="IPC library used by GnuPG and GPGME"
+HOMEPAGE="http://www.gnupg.org/related_software/libassuan/index.en.html"
+SRC_URI="mirror://gnupg/${PN}/${P}.tar.bz2"
+
+LICENSE="GPL-3 LGPL-2.1"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE="static-libs"
+
+RDEPEND=">=dev-libs/libgpg-error-1.8"
+DEPEND="${RDEPEND}"
+
+DOCS=( AUTHORS ChangeLog NEWS README THANKS TODO )
+
+src_prepare() {
+	default
+
+	# for Solaris .so
+	elibtoolize
+}
+
+src_configure() {
+	econf $(use_enable static-libs static)
+}
+
+src_install() {
+	default
+	# ppl need to use libassuan-config for --cflags and --libs
+	prune_libtool_files
+}


             reply	other threads:[~2016-01-19 21:23 UTC|newest]

Thread overview: 115+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-01-19 21:23 Manuel Rüger [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-10-14 21:59 [gentoo-commits] repo/gentoo:master commit in: dev-libs/libassuan/ Sam James
2024-10-10 11:04 Arthur Zamarin
2024-10-09  0:06 Jakov Smolić
2024-10-05 14:30 Arthur Zamarin
2024-10-05 13:58 Arthur Zamarin
2024-10-05 13:58 Arthur Zamarin
2024-10-05 11:48 Arthur Zamarin
2024-07-29 19:47 Fabian Groffen
2024-07-28 13:45 Fabian Groffen
2024-06-25  2:34 Sam James
2024-06-25  1:56 Sam James
2024-06-23  1:49 Sam James
2024-06-01  3:46 Ionen Wolkens
2024-04-29  8:12 Arthur Zamarin
2024-04-29  8:05 Arthur Zamarin
2024-03-07 17:28 Sam James
2024-03-07 17:28 Sam James
2023-08-02 11:22 Arthur Zamarin
2023-08-01 18:27 Arthur Zamarin
2023-07-24 10:05 Jakov Smolić
2023-06-20  1:55 Sam James
2023-06-20  1:54 Sam James
2023-02-24 17:37 Sam James
2022-09-23  2:09 Sam James
2022-06-29  7:26 Sam James
2021-11-29 20:48 Sam James
2021-08-16 20:35 James Le Cuirot
2021-06-13 10:46 Sergei Trofimovich
2021-06-13  6:04 Sam James
2021-06-13  6:04 Sam James
2021-06-12 16:07 Sam James
2021-06-12 15:58 Sam James
2021-06-12 15:56 Sam James
2021-06-12 13:46 Sam James
2021-06-12 13:46 Sam James
2021-06-12 13:46 Sam James
2021-03-28 11:29 Sergei Trofimovich
2021-03-28 10:17 Mikle Kolyada
2021-03-28 10:02 Agostino Sarubbo
2021-03-26 20:39 Agostino Sarubbo
2021-03-26 15:31 Agostino Sarubbo
2021-03-26 14:26 Agostino Sarubbo
2021-03-26 13:40 Agostino Sarubbo
2021-03-25 17:52 Sergei Trofimovich
2021-03-22 19:57 Lars Wendler
2021-02-17 22:11 Sam James
2020-10-24 17:17 Lars Wendler
2020-10-24 13:59 Lars Wendler
2020-09-20 13:36 Mikle Kolyada
2020-09-20 13:36 Mikle Kolyada
2020-08-29 20:00 Sam James
2020-01-13 12:52 Mikle Kolyada
2020-01-09 10:56 Kristian Fiskerstrand
2020-01-09  8:58 Lars Wendler
2019-11-01 10:16 Mikle Kolyada
2019-11-01 10:16 Mikle Kolyada
2019-10-09 18:21 Sergei Trofimovich
2019-10-06  5:50 Matt Turner
2019-10-04 13:15 Agostino Sarubbo
2019-10-02 19:08 Agostino Sarubbo
2019-10-02 18:53 Agostino Sarubbo
2019-09-29 21:00 Sergei Trofimovich
2019-09-29 20:54 Sergei Trofimovich
2019-09-29 19:26 Sergei Trofimovich
2019-09-29  9:11 Sergei Trofimovich
2019-08-19 11:30 Lars Wendler
2019-08-19 11:30 Lars Wendler
2019-05-04 18:29 Andreas K. Hüttel
2018-10-29  8:50 Alon Bar-Lev
2018-10-06  0:32 Alon Bar-Lev
2018-10-05 19:27 Alon Bar-Lev
2018-06-18 18:31 Sergei Trofimovich
2018-06-03 10:01 Mikle Kolyada
2018-03-18  8:15 Matt Turner
2018-03-15 16:00 Mikle Kolyada
2018-03-02 20:35 Mart Raudsepp
2018-01-08 22:50 Thomas Deutschmann
2018-01-07 17:38 Mikle Kolyada
2018-01-06 21:38 Sergei Trofimovich
2018-01-06 21:33 Sergei Trofimovich
2018-01-06 20:24 Sergei Trofimovich
2017-12-20 14:22 Kristian Fiskerstrand
2017-04-11  6:52 Alon Bar-Lev
2017-04-11  6:43 Jeroen Roovers
2017-03-25 18:11 Alon Bar-Lev
2017-03-21 14:34 Agostino Sarubbo
2017-03-21 11:31 Michael Weber
2017-03-21 10:01 Alon Bar-Lev
2017-03-20 12:28 Agostino Sarubbo
2017-03-20  6:17 Matt Turner
2017-03-20  6:17 Matt Turner
2017-03-20  6:17 Matt Turner
2017-03-20  6:17 Matt Turner
2017-03-20  1:05 Matt Turner
2017-02-24  4:16 Mike Frysinger
2017-02-06 20:11 Fabian Groffen
2017-01-29 16:08 Fabian Groffen
2017-01-18 14:52 Alon Bar-Lev
2016-11-28 23:06 Thomas Deutschmann
2016-09-27 18:41 Markus Meier
2016-09-25 20:07 Jeroen Roovers
2016-09-21 17:48 Tobias Klausmann
2016-07-14 18:01 Kristian Fiskerstrand
2016-06-26 18:31 Markus Meier
2016-06-20 10:43 Tobias Klausmann
2015-11-27 18:28 Kristian Fiskerstrand
2015-11-10 11:50 Agostino Sarubbo
2015-11-10 11:50 Agostino Sarubbo
2015-09-27  9:00 Markus Meier
2015-09-16  8:43 Tobias Klausmann
2015-09-12  8:25 Agostino Sarubbo
2015-09-08  4:26 Jeroen Roovers
2015-09-07 20:39 Kristian Fiskerstrand
2015-09-05 16:51 Mikle Kolyada

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=1453238595.b86cefcb9c06565bc574721b7d2d4fd3c2f5c1f2.mrueg@gentoo \
    --to=mrueg@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