From: "Fabian Köster" <fabian.koester@posteo.de>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/user/sogo-connector:master commit in: app-pda/sogo-connector/
Date: Wed, 20 Jul 2016 08:32:49 +0000 (UTC) [thread overview]
Message-ID: <1469003552.2312bcf85dd3d18856b5ec4ad20793b53df4cd82.fabian_koester@gentoo> (raw)
commit: 2312bcf85dd3d18856b5ec4ad20793b53df4cd82
Author: Fabian Köster <gentoo <AT> posteo <DOT> de>
AuthorDate: Wed Jul 20 08:32:32 2016 +0000
Commit: Fabian Köster <fabian.koester <AT> posteo <DOT> de>
CommitDate: Wed Jul 20 08:32:32 2016 +0000
URL: https://gitweb.gentoo.org/repo/user/sogo-connector.git/commit/?id=2312bcf8
Add ebuild for sogo-connector-31.0.3
app-pda/sogo-connector/Manifest | 1 +
.../sogo-connector/sogo-connector-31.0.3.ebuild | 39 ++++++++++++++++++++++
2 files changed, 40 insertions(+)
diff --git a/app-pda/sogo-connector/Manifest b/app-pda/sogo-connector/Manifest
index 882501a..1665a65 100644
--- a/app-pda/sogo-connector/Manifest
+++ b/app-pda/sogo-connector/Manifest
@@ -2,3 +2,4 @@ AUX makefile.patch 710 SHA256 963eb156004265e92e2f0d52398b4a335e448e1729f512f285
AUX sogo-connector-24.0.6-makefile.patch 979 SHA256 16b8b65cce99d05c3de1a7a3e6d0c694d85d7ee75a11a4734c0d6b383ceeba38 SHA512 9e08f2e4641f82ca406e9ef13e958f462f09a32fc2a8f5b97f50cdbb3e3d7cb9dcc3b7dccc45b80caf6753ffed7a4aa02fdd48287810d56e39bee7b44d5bb8c7 WHIRLPOOL 9061298c6f3cf599706ce7d45df98b837dc552acc2db05163f5827a6ded4efe8f35ee2bd72a3fbcddda808921dde24fb16853055ad48f54e0062d0259daf1466
DIST sogo-connector-31.0.2.zip 294316 SHA256 da45c22bdb36eb9188f983b71b4f8c23e0ad2a82b10f1fa22fa7ed0aecc66706 SHA512 22efecde020e640ae52a255c0d870b9c7f8644da1daa4bab1f61cf139d983ca1c32d021f5a9626d45b30c9a01ad20dbc3576a4b19a34ffde5ea7b7c61df00d70 WHIRLPOOL 3e28d7737941f298ea1ec028354617071d96de5f4cf2eb2710606e5c242250b74d40de0df857c3c78d25f93e6b4aacadfea36600e67b1ce5e339ac5d98b1b1df
EBUILD sogo-connector-31.0.2.ebuild 989 SHA256 73ea05f45f1bd49529b070aabced428d863ce18a42fc4de8843b34aa0c148500 SHA512 105a25693e44e72bc2c783e9a948acf688e4be8981c70b9daf33f05e44201840d94643296eaef1dee9b99614bf00a0171398158a9a0267c5fc193d38925ba368 WHIRLPOOL ec3c76f377946de465c71af1eb552d003c86023e3c173c302da20984afa63ef2e5e4af39304d3ed1c3518b04dfedf5cbfd14adfbb1a4a9e60341ce95f668832a
+EBUILD sogo-connector-31.0.3.ebuild 1119 SHA256 23d2e069441a9dea1c1f5b380d386bac45eca122a76f9213221ba406d5151ac0 SHA512 779a8d7d1a2d5d31f176871cf4e5796522d228d4291190b14f190cbd67a550ce9871f7c15cf1ad5f28785dc2af49bf6df39605549f62b37aa63053060c9b462f WHIRLPOOL 98681f8c6e807b5fe95cfe73d4fc428c3ff9a63ae72995f731a7bd22186574fcc5e803d69d9e3e22ca47a9f7a0052d739246207e5eb660d83fbb29d8ad94cd1d
diff --git a/app-pda/sogo-connector/sogo-connector-31.0.3.ebuild b/app-pda/sogo-connector/sogo-connector-31.0.3.ebuild
new file mode 100644
index 0000000..1cc180a
--- /dev/null
+++ b/app-pda/sogo-connector/sogo-connector-31.0.3.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+inherit eutils versionator git-r3
+
+DESCRIPTION="CardDAV plugin for mail-client/thunderbird"
+HOMEPAGE="http://www.sogo.nu/downloads/frontends.html"
+THUNDERBIRD_VERSION="$(get_major_version )"
+
+KEYWORDS="~amd64 ~x86"
+SLOT="0"
+LICENSE="GPL-2"
+IUSE=""
+
+EGIT_REPO_URI="git@github.com:inverse-inc/sogo-connector.tb31.git"
+EGIT_COMMIT="0b0959bd023c5e19784948c82bdc0c0db95c94b5"
+#SRC_URI="https://github.com/inverse-inc/${PN}.tb${THUNDERBIRD_VERSION}/archive/${P}.zip"
+
+RDEPEND="|| ( =mail-client/thunderbird-31*[lightning] =mail-client/thunderbird-38*[lightning] )"
+
+DEPEND="${RDEPEND}"
+S="${WORKDIR}/${PN}.tb${THUNDERBIRD_VERSION}-${P}"
+
+src_prepare() {
+ epatch "${FILESDIR}/makefile.patch"
+}
+
+src_install() {
+ declare MOZILLA_FIVE_HOME="/usr/$(get_libdir)/thunderbird"
+
+ emid=$(sed -n '/em:id=/!d; s/\s*em:id="//; s/"\s*//; p; q' install.rdf)
+
+ dodir ${MOZILLA_FIVE_HOME}/extensions/${emid} || die
+ cd "${ED}"${MOZILLA_FIVE_HOME}/extensions/${emid} || die
+ unzip "${S}/${P}.xpi" || die
+}
next reply other threads:[~2016-07-20 8:32 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-07-20 8:32 Fabian Köster [this message]
-- strict thread matches above, loose matches on Subject: below --
2020-04-02 8:59 [gentoo-commits] repo/user/sogo-connector:master commit in: app-pda/sogo-connector/ Fabian Köster
2019-10-29 8:14 Fabian Köster
2018-12-28 8:04 Fabian Köster
2018-11-02 8:04 Fabian Köster
2018-11-02 8:03 Fabian Köster
2018-11-01 20:18 Fabian Köster
2016-07-20 9:00 Fabian Köster
2016-07-20 8:54 Fabian Köster
2016-07-20 8:34 Fabian Köster
2016-06-09 12:15 Fabian Köster
2016-05-30 6:09 Fabian Köster
2015-11-12 14:50 Fabian Köster
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=1469003552.2312bcf85dd3d18856b5ec4ad20793b53df4cd82.fabian_koester@gentoo \
--to=fabian.koester@posteo.de \
--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