From: "Anthony G. Basile" <blueness@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/encfs/
Date: Sun, 29 Apr 2018 11:48:06 +0000 (UTC) [thread overview]
Message-ID: <1525002481.fbb8c64d601ea20fa829b5ee29b5a486603a10f5.blueness@gentoo> (raw)
commit: fbb8c64d601ea20fa829b5ee29b5a486603a10f5
Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 29 11:47:46 2018 +0000
Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Sun Apr 29 11:48:01 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbb8c64d
sys-fs/encfs: remove older versions
Package-Manager: Portage-2.3.24, Repoman-2.3.6
sys-fs/encfs/Manifest | 2 --
sys-fs/encfs/encfs-1.7.5.ebuild | 43 ------------------------------------
sys-fs/encfs/encfs-1.8.1.ebuild | 49 -----------------------------------------
3 files changed, 94 deletions(-)
diff --git a/sys-fs/encfs/Manifest b/sys-fs/encfs/Manifest
index 4260ee260be..8d59e40803f 100644
--- a/sys-fs/encfs/Manifest
+++ b/sys-fs/encfs/Manifest
@@ -1,5 +1,3 @@
-DIST encfs-1.7.5.tar.gz 168162 BLAKE2B 9f8d91f89363690e876f9831566c4c11a9079365b350ca5cece3fdf6b4546a07c4491e6d4bb5548230e66efd1e7edeef1cdd7119f0d90b635dfcf1ef8d59383b SHA512 e0cb9181d9c6c54a36dd19ab7a78d6f9ad0f017129d1addab012e72e00a3bb7e19481a2fbc511fd2a505c8b971cd93a02e556c6420b07acfba68ac3c37d224d7
-DIST encfs-1.8.1.tar.gz 316534 BLAKE2B 318b4ec8e17a7187c299e1287ad1927db2da64c961f1d552cc989191c77d72a6db43e048f48bfa8940814083027875e70d18658b776d060e49e2254e7dda00d4 SHA512 47e6cdded84c65bdb98c14774472a2f9df67f2bea05e4c2e20811d785c5ee458b708030922db9a5b49382495235a329bc8e889d104cc8501cd954119699847c6
DIST encfs-1.9.2.tar.gz 11043181 BLAKE2B 5e1ada5b85166312010dade2537b83d44b67dcfa0cdbdc1cf4076e4a92ed593aed6129457c241492ea8afe7049ab12889dbe292c4d427710ff16c11a67085819 SHA512 7664a2f48dddde77cae005aba70962704b002f60afb2da35c4661f7e4e22ce5c003d3b674ce125fcc72e9f0588164c1f7dbf22f2b9061d0736b8c164c1ec70a5
DIST encfs-1.9.4.tar.gz 2794574 BLAKE2B 95f0a96eedf52984fadfc6fb34c938d61b80310f97dc163cb7f8340fca8d6a56be574190cc56cad00fdfde2b907fc594ecaba3e4f2a90da171c84d8c4ab43630 SHA512 082e35e6eae4730b5e7827eed729422f9d995ebe9e441c5f9725f39cc2f46f014ac1479c7b0a7ce04e9e7228c1a93ecf5b4228e667fc48e6a7d3b68d2324cd0b
DIST encfs-1.9.5.tar.gz 2798888 BLAKE2B d95e0ea8b807e2cbf4c20907bcc1b163c5397402eea934a7155e83c9d18a84db3097e1d4266a5e632acf39ecadf9812d5104b1565d25a149979e0f72523bb09d SHA512 036e08ca9bc13b44742aebdee49bf7029d0c6b7e59cd6dedc9a09da2af99482859f6a79eddf07e3db296edaf45aafc48fe08488840e765682e9b192dd6ae4c46
diff --git a/sys-fs/encfs/encfs-1.7.5.ebuild b/sys-fs/encfs/encfs-1.7.5.ebuild
deleted file mode 100644
index 8d95f5d6548..00000000000
--- a/sys-fs/encfs/encfs-1.7.5.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit autotools eutils multilib
-
-DESCRIPTION="An implementation of encrypted filesystem in user-space using FUSE"
-HOMEPAGE="https://vgough.github.io/encfs/"
-SRC_URI="https://github.com/vgough/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~sparc x86"
-IUSE="xattr"
-
-RDEPEND="dev-libs/boost:=
- dev-libs/openssl:0
- >=dev-libs/rlog-1.4
- >=sys-fs/fuse-2.7.0
- sys-libs/zlib"
-DEPEND="${RDEPEND}
- dev-lang/perl
- virtual/pkgconfig
- xattr? ( sys-apps/attr )
- sys-devel/gettext"
-
-src_prepare() {
- epatch "${FILESDIR}/encfs-1.7.5-fix-pod.patch"
- eautoreconf
-}
-
-src_configure() {
- use xattr || export ac_cv_header_attr_xattr_h=no
-
- econf \
- --disable-dependency-tracking
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die
- dodoc AUTHORS ChangeLog README
- find "${D}" -name '*.la' -delete
-}
diff --git a/sys-fs/encfs/encfs-1.8.1.ebuild b/sys-fs/encfs/encfs-1.8.1.ebuild
deleted file mode 100644
index 6624588a26f..00000000000
--- a/sys-fs/encfs/encfs-1.8.1.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-inherit autotools eutils multilib
-
-DESCRIPTION="An implementation of encrypted filesystem in user-space using FUSE"
-HOMEPAGE="https://vgough.github.io/encfs/"
-SRC_URI="https://github.com/vgough/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~sparc x86"
-IUSE="xattr nls"
-
-RDEPEND="dev-libs/boost:=
- dev-libs/openssl:0
- >=dev-libs/rlog-1.3
- >=sys-fs/fuse-2.5
- sys-libs/zlib"
-# Your libc probably provides xattrs, but to be safe
-# we'll dep on sys-apps/attr. This should be fixed
-# if we ever create a virtual/attr.
-DEPEND="${RDEPEND}
- dev-lang/perl
- virtual/pkgconfig
- xattr? ( sys-apps/attr )
- nls? ( sys-devel/gettext )"
-
-src_prepare() {
- eautoreconf
-}
-
-src_configure() {
- # configure searches for either attr/xattr.h or sys/xattr.h
- use xattr || export ac_cv_header_{attr,sys}_xattr_h=no
-
- econf \
- $(use_enable nls) \
- --disable-valgrind \
- --enable-openssl \
- --disable-dependency-tracking
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die
- dodoc AUTHORS ChangeLog README.md
- find "${D}" -name '*.la' -delete
-}
next reply other threads:[~2018-04-29 11:48 UTC|newest]
Thread overview: 40+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-04-29 11:48 Anthony G. Basile [this message]
-- strict thread matches above, loose matches on Subject: below --
2023-01-29 7:46 [gentoo-commits] repo/gentoo:master commit in: sys-fs/encfs/ Viorel Munteanu
2023-01-29 7:46 Viorel Munteanu
2022-12-25 22:40 Andreas Sturmlechner
2022-07-25 7:09 Agostino Sarubbo
2022-07-22 15:02 Anthony G. Basile
2022-07-22 14:59 Anthony G. Basile
2021-12-07 7:07 Sam James
2021-12-07 6:57 Sam James
2021-12-02 13:53 Arthur Zamarin
2021-12-02 13:53 Arthur Zamarin
2021-12-02 13:53 Arthur Zamarin
2021-05-02 17:47 Mikle Kolyada
2021-01-08 0:53 Sam James
2020-12-30 18:22 Anthony G. Basile
2020-10-16 11:12 Georgy Yakovlev
2019-07-28 21:21 Andreas Sturmlechner
2019-07-28 19:55 Mikle Kolyada
2019-06-14 15:01 Agostino Sarubbo
2019-06-14 9:25 Agostino Sarubbo
2018-09-04 18:38 Sergei Trofimovich
2018-05-17 19:05 Markus Meier
2018-05-02 16:33 Thomas Deutschmann
2018-04-29 21:53 Mikle Kolyada
2018-04-29 20:25 Sergei Trofimovich
2018-04-29 19:41 Sergei Trofimovich
2018-04-29 11:36 Anthony G. Basile
2018-04-28 7:27 Mikle Kolyada
2018-04-13 2:04 Anthony G. Basile
2018-02-01 6:22 Anthony G. Basile
2018-01-18 15:56 Mikle Kolyada
2018-01-18 0:00 Anthony G. Basile
2017-07-25 19:47 Anthony G. Basile
2017-07-25 19:47 Anthony G. Basile
2017-07-25 19:47 Anthony G. Basile
2016-09-20 9:23 Anthony G. Basile
2016-09-16 8:50 Anthony G. Basile
2016-03-29 23:56 Anthony G. Basile
2015-10-10 22:28 Anthony G. Basile
2015-08-14 12:31 Anthony G. Basile
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=1525002481.fbb8c64d601ea20fa829b5ee29b5a486603a10f5.blueness@gentoo \
--to=blueness@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