* [gentoo-commits] repo/gentoo:master commit in: app-backup/attic/
@ 2015-12-27 2:28 Anthony G. Basile
0 siblings, 0 replies; 9+ messages in thread
From: Anthony G. Basile @ 2015-12-27 2:28 UTC (permalink / raw
To: gentoo-commits
commit: feab38839dca251c536c53a914531a0c63571b0a
Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 27 02:33:30 2015 +0000
Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Sun Dec 27 02:34:09 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=feab3883
app-backup/attic: initial commit
Package-Manager: portage-2.2.24
app-backup/attic/Manifest | 1 +
app-backup/attic/attic-0.16.ebuild | 33 +++++++++++++++++++++++++++++++++
app-backup/attic/attic-9999.ebuild | 33 +++++++++++++++++++++++++++++++++
app-backup/attic/metadata.xml | 8 ++++++++
4 files changed, 75 insertions(+)
diff --git a/app-backup/attic/Manifest b/app-backup/attic/Manifest
new file mode 100644
index 0000000..1f5d623
--- /dev/null
+++ b/app-backup/attic/Manifest
@@ -0,0 +1 @@
+DIST attic-0.16.tar.gz 87985 SHA256 ce44800b08540cbe334f0a4f5da49585850c1eea1bf621c2766bbdcc98a13e09 SHA512 16139cd93bff59414cc1ce3fd68e2dd0aed4937a20bd1003880961ad2e239a1e982fd0d4f6b791165464213b88dea6ccd8e5e59d2087809be2e1bfdfd3b3186c WHIRLPOOL e3f0963cca0ede9d5400393cb5aabf66433c87bbc0dd997e2d63991e69d380113c6a25075ecac0ab61e5807676bf2aa87e72257133df0f2ee879ccaef586e5a3
diff --git a/app-backup/attic/attic-0.16.ebuild b/app-backup/attic/attic-0.16.ebuild
new file mode 100644
index 0000000..b324998
--- /dev/null
+++ b/app-backup/attic/attic-0.16.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+PYTHON_COMPAT=( python3_4 )
+
+inherit distutils-r1
+
+if [[ ${PV} == "9999" ]] ; then
+ EGIT_REPO_URI="https://github.com/jborg/attic.git"
+ inherit git-r3
+else
+ SRC_URI="https://github.com/jborg/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64"
+fi
+
+DESCRIPTION="Attic is a deduplicating backup program written in Python."
+HOMEPAGE="https://attic-backup.org/"
+
+LICENSE="BSD"
+SLOT="0"
+IUSE="libressl"
+
+RDEPEND="
+ dev-python/msgpack[${PYTHON_USEDEP}]
+ !libressl? ( dev-libs/openssl:0 )
+ libressl? ( dev-libs/libressl )
+ dev-python/llfuse[${PYTHON_USEDEP}]"
+
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
+ ${RDEPEND}"
diff --git a/app-backup/attic/attic-9999.ebuild b/app-backup/attic/attic-9999.ebuild
new file mode 100644
index 0000000..b324998
--- /dev/null
+++ b/app-backup/attic/attic-9999.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+PYTHON_COMPAT=( python3_4 )
+
+inherit distutils-r1
+
+if [[ ${PV} == "9999" ]] ; then
+ EGIT_REPO_URI="https://github.com/jborg/attic.git"
+ inherit git-r3
+else
+ SRC_URI="https://github.com/jborg/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64"
+fi
+
+DESCRIPTION="Attic is a deduplicating backup program written in Python."
+HOMEPAGE="https://attic-backup.org/"
+
+LICENSE="BSD"
+SLOT="0"
+IUSE="libressl"
+
+RDEPEND="
+ dev-python/msgpack[${PYTHON_USEDEP}]
+ !libressl? ( dev-libs/openssl:0 )
+ libressl? ( dev-libs/libressl )
+ dev-python/llfuse[${PYTHON_USEDEP}]"
+
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
+ ${RDEPEND}"
diff --git a/app-backup/attic/metadata.xml b/app-backup/attic/metadata.xml
new file mode 100644
index 0000000..1e75873
--- /dev/null
+++ b/app-backup/attic/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer>
+ <email>blueness@gentoo.org</email>
+ <name>Anthony G. Basile</name>
+ </maintainer>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-backup/attic/
@ 2016-02-27 17:43 Anthony G. Basile
0 siblings, 0 replies; 9+ messages in thread
From: Anthony G. Basile @ 2016-02-27 17:43 UTC (permalink / raw
To: gentoo-commits
commit: 034120f4c13e09aa920164427deb1c5cf336073f
Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 27 17:51:11 2016 +0000
Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Sat Feb 27 17:52:55 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=034120f4
app-backup/attic: cython is required to build
Package-Manager: portage-2.2.26
app-backup/attic/attic-0.16.ebuild | 6 ++++--
app-backup/attic/attic-9999.ebuild | 6 ++++--
2 files changed, 8 insertions(+), 4 deletions(-)
diff --git a/app-backup/attic/attic-0.16.ebuild b/app-backup/attic/attic-0.16.ebuild
index b324998..73180b4 100644
--- a/app-backup/attic/attic-0.16.ebuild
+++ b/app-backup/attic/attic-0.16.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
@@ -29,5 +29,7 @@ RDEPEND="
libressl? ( dev-libs/libressl )
dev-python/llfuse[${PYTHON_USEDEP}]"
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
+DEPEND="
+ dev-python/setuptools[${PYTHON_USEDEP}]
+ dev-python/cython[${PYTHON_USEDEP}]
${RDEPEND}"
diff --git a/app-backup/attic/attic-9999.ebuild b/app-backup/attic/attic-9999.ebuild
index b324998..73180b4 100644
--- a/app-backup/attic/attic-9999.ebuild
+++ b/app-backup/attic/attic-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
@@ -29,5 +29,7 @@ RDEPEND="
libressl? ( dev-libs/libressl )
dev-python/llfuse[${PYTHON_USEDEP}]"
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
+DEPEND="
+ dev-python/setuptools[${PYTHON_USEDEP}]
+ dev-python/cython[${PYTHON_USEDEP}]
${RDEPEND}"
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-backup/attic/
@ 2016-02-27 17:43 Anthony G. Basile
0 siblings, 0 replies; 9+ messages in thread
From: Anthony G. Basile @ 2016-02-27 17:43 UTC (permalink / raw
To: gentoo-commits
commit: ccdfc9132bdfcc7231171e7b19354638c0414692
Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 27 17:52:32 2016 +0000
Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Sat Feb 27 17:52:57 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ccdfc913
app-backup/attic: KEYWORD ~x86
Package-Manager: portage-2.2.26
app-backup/attic/attic-0.16.ebuild | 2 +-
app-backup/attic/attic-9999.ebuild | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/app-backup/attic/attic-0.16.ebuild b/app-backup/attic/attic-0.16.ebuild
index 73180b4..909ac1f 100644
--- a/app-backup/attic/attic-0.16.ebuild
+++ b/app-backup/attic/attic-0.16.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == "9999" ]] ; then
inherit git-r3
else
SRC_URI="https://github.com/jborg/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64"
+ KEYWORDS="~amd64 ~x86"
fi
DESCRIPTION="Attic is a deduplicating backup program written in Python."
diff --git a/app-backup/attic/attic-9999.ebuild b/app-backup/attic/attic-9999.ebuild
index 73180b4..909ac1f 100644
--- a/app-backup/attic/attic-9999.ebuild
+++ b/app-backup/attic/attic-9999.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == "9999" ]] ; then
inherit git-r3
else
SRC_URI="https://github.com/jborg/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64"
+ KEYWORDS="~amd64 ~x86"
fi
DESCRIPTION="Attic is a deduplicating backup program written in Python."
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-backup/attic/
@ 2016-03-21 23:22 Anthony G. Basile
0 siblings, 0 replies; 9+ messages in thread
From: Anthony G. Basile @ 2016-03-21 23:22 UTC (permalink / raw
To: gentoo-commits
commit: b2407654cbd678ee1aea9fb94d973e530a0f2cf8
Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 21 23:22:29 2016 +0000
Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Mon Mar 21 23:22:29 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2407654
app-backup/attic: fix openssl and libressl slots
Package-Manager: portage-2.2.26
app-backup/attic/attic-0.16.ebuild | 4 ++--
app-backup/attic/attic-9999.ebuild | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/app-backup/attic/attic-0.16.ebuild b/app-backup/attic/attic-0.16.ebuild
index 909ac1f..188ef01 100644
--- a/app-backup/attic/attic-0.16.ebuild
+++ b/app-backup/attic/attic-0.16.ebuild
@@ -25,8 +25,8 @@ IUSE="libressl"
RDEPEND="
dev-python/msgpack[${PYTHON_USEDEP}]
- !libressl? ( dev-libs/openssl:0 )
- libressl? ( dev-libs/libressl )
+ !libressl? ( dev-libs/openssl:0= )
+ libressl? ( dev-libs/libressl:0= )
dev-python/llfuse[${PYTHON_USEDEP}]"
DEPEND="
diff --git a/app-backup/attic/attic-9999.ebuild b/app-backup/attic/attic-9999.ebuild
index 909ac1f..188ef01 100644
--- a/app-backup/attic/attic-9999.ebuild
+++ b/app-backup/attic/attic-9999.ebuild
@@ -25,8 +25,8 @@ IUSE="libressl"
RDEPEND="
dev-python/msgpack[${PYTHON_USEDEP}]
- !libressl? ( dev-libs/openssl:0 )
- libressl? ( dev-libs/libressl )
+ !libressl? ( dev-libs/openssl:0= )
+ libressl? ( dev-libs/libressl:0= )
dev-python/llfuse[${PYTHON_USEDEP}]"
DEPEND="
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-backup/attic/
@ 2016-10-09 7:47 Pacho Ramos
0 siblings, 0 replies; 9+ messages in thread
From: Pacho Ramos @ 2016-10-09 7:47 UTC (permalink / raw
To: gentoo-commits
commit: 1b480acd5331ef915d32a7f392af1614a999a157
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 9 07:39:38 2016 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sun Oct 9 07:46:38 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b480acd
app-backup/attic: Support python 3.5
Package-Manager: portage-2.3.1
app-backup/attic/attic-0.16.ebuild | 2 +-
app-backup/attic/attic-9999.ebuild | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/app-backup/attic/attic-0.16.ebuild b/app-backup/attic/attic-0.16.ebuild
index 188ef01..dbe39c8 100644
--- a/app-backup/attic/attic-0.16.ebuild
+++ b/app-backup/attic/attic-0.16.ebuild
@@ -4,7 +4,7 @@
EAPI="5"
-PYTHON_COMPAT=( python3_4 )
+PYTHON_COMPAT=( python3_{4,5} )
inherit distutils-r1
diff --git a/app-backup/attic/attic-9999.ebuild b/app-backup/attic/attic-9999.ebuild
index 188ef01..dbe39c8 100644
--- a/app-backup/attic/attic-9999.ebuild
+++ b/app-backup/attic/attic-9999.ebuild
@@ -4,7 +4,7 @@
EAPI="5"
-PYTHON_COMPAT=( python3_4 )
+PYTHON_COMPAT=( python3_{4,5} )
inherit distutils-r1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-backup/attic/
@ 2018-03-09 17:59 Matt Thode
0 siblings, 0 replies; 9+ messages in thread
From: Matt Thode @ 2018-03-09 17:59 UTC (permalink / raw
To: gentoo-commits
commit: 25a5bf5a20f8d3f4323eef363cdd270325497c0a
Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 9 17:22:41 2018 +0000
Commit: Matt Thode <prometheanfire <AT> gentoo <DOT> org>
CommitDate: Fri Mar 9 17:58:44 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25a5bf5a
app-backup/attic: allow use of renamed msgpack
Package-Manager: Portage-2.3.19, Repoman-2.3.6
app-backup/attic/{attic-0.16.ebuild => attic-0.16-r1.ebuild} | 8 +++++++-
app-backup/attic/attic-9999.ebuild | 8 +++++++-
2 files changed, 14 insertions(+), 2 deletions(-)
diff --git a/app-backup/attic/attic-0.16.ebuild b/app-backup/attic/attic-0.16-r1.ebuild
similarity index 81%
rename from app-backup/attic/attic-0.16.ebuild
rename to app-backup/attic/attic-0.16-r1.ebuild
index faaffb46778..3959eafcf9d 100644
--- a/app-backup/attic/attic-0.16.ebuild
+++ b/app-backup/attic/attic-0.16-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="5"
@@ -32,3 +32,9 @@ DEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
dev-python/cython[${PYTHON_USEDEP}]
${RDEPEND}"
+
+python_prepare_all() {
+ # allow use of new (renamed) msgpack
+ sed -i '/msgpack/d' setup.py || die
+ distutils-r1_python_prepare_all
+}
diff --git a/app-backup/attic/attic-9999.ebuild b/app-backup/attic/attic-9999.ebuild
index faaffb46778..3959eafcf9d 100644
--- a/app-backup/attic/attic-9999.ebuild
+++ b/app-backup/attic/attic-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="5"
@@ -32,3 +32,9 @@ DEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
dev-python/cython[${PYTHON_USEDEP}]
${RDEPEND}"
+
+python_prepare_all() {
+ # allow use of new (renamed) msgpack
+ sed -i '/msgpack/d' setup.py || die
+ distutils-r1_python_prepare_all
+}
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-backup/attic/
@ 2018-06-27 17:15 Pacho Ramos
0 siblings, 0 replies; 9+ messages in thread
From: Pacho Ramos @ 2018-06-27 17:15 UTC (permalink / raw
To: gentoo-commits
commit: 41a33c464d8f22edb9394550d13616c85b0ec273
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 27 16:50:49 2018 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Wed Jun 27 17:15:33 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41a33c46
app-backup/attic: Support python3.6
Package-Manager: Portage-2.3.41, Repoman-2.3.9
app-backup/attic/attic-0.16-r1.ebuild | 2 +-
app-backup/attic/attic-9999.ebuild | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/app-backup/attic/attic-0.16-r1.ebuild b/app-backup/attic/attic-0.16-r1.ebuild
index 3959eafcf9d..7734e651f95 100644
--- a/app-backup/attic/attic-0.16-r1.ebuild
+++ b/app-backup/attic/attic-0.16-r1.ebuild
@@ -3,7 +3,7 @@
EAPI="5"
-PYTHON_COMPAT=( python3_{4,5} )
+PYTHON_COMPAT=( python3_{4,5,6} )
inherit distutils-r1
diff --git a/app-backup/attic/attic-9999.ebuild b/app-backup/attic/attic-9999.ebuild
index 3959eafcf9d..7734e651f95 100644
--- a/app-backup/attic/attic-9999.ebuild
+++ b/app-backup/attic/attic-9999.ebuild
@@ -3,7 +3,7 @@
EAPI="5"
-PYTHON_COMPAT=( python3_{4,5} )
+PYTHON_COMPAT=( python3_{4,5,6} )
inherit distutils-r1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-backup/attic/
@ 2020-08-02 20:08 Aaron Bauman
0 siblings, 0 replies; 9+ messages in thread
From: Aaron Bauman @ 2020-08-02 20:08 UTC (permalink / raw
To: gentoo-commits
commit: 8181c90b07d103721b399742e15ca069c53fc190
Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 2 20:08:27 2020 +0000
Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Sun Aug 2 20:08:27 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8181c90b
app-backup/attic: bump EAPI; port to py3_{7,8}
Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
app-backup/attic/attic-0.16-r1.ebuild | 4 ++--
app-backup/attic/attic-9999.ebuild | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/app-backup/attic/attic-0.16-r1.ebuild b/app-backup/attic/attic-0.16-r1.ebuild
index de1ead336ea..4fa4def16ab 100644
--- a/app-backup/attic/attic-0.16-r1.ebuild
+++ b/app-backup/attic/attic-0.16-r1.ebuild
@@ -1,9 +1,9 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI="5"
+EAPI=7
-PYTHON_COMPAT=( python3_6 )
+PYTHON_COMPAT=( python3_{7,8} )
inherit distutils-r1
diff --git a/app-backup/attic/attic-9999.ebuild b/app-backup/attic/attic-9999.ebuild
index de1ead336ea..4fa4def16ab 100644
--- a/app-backup/attic/attic-9999.ebuild
+++ b/app-backup/attic/attic-9999.ebuild
@@ -1,9 +1,9 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI="5"
+EAPI=7
-PYTHON_COMPAT=( python3_6 )
+PYTHON_COMPAT=( python3_{7,8} )
inherit distutils-r1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-backup/attic/
@ 2021-04-30 9:17 Mikle Kolyada
0 siblings, 0 replies; 9+ messages in thread
From: Mikle Kolyada @ 2021-04-30 9:17 UTC (permalink / raw
To: gentoo-commits
commit: ff9cfbddde0d234824ac7e272d1ac48a699ab21f
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 30 09:13:18 2021 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Fri Apr 30 09:17:39 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff9cfbdd
app-backup/attic: remove libressl support
Package-Manager: Portage-3.0.18, Repoman-3.0.2
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
app-backup/attic/attic-0.16-r1.ebuild | 6 ++----
app-backup/attic/attic-9999.ebuild | 6 ++----
2 files changed, 4 insertions(+), 8 deletions(-)
diff --git a/app-backup/attic/attic-0.16-r1.ebuild b/app-backup/attic/attic-0.16-r1.ebuild
index 4fa4def16ab..7d7c173b276 100644
--- a/app-backup/attic/attic-0.16-r1.ebuild
+++ b/app-backup/attic/attic-0.16-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -20,12 +20,10 @@ HOMEPAGE="https://attic-backup.org/"
LICENSE="BSD"
SLOT="0"
-IUSE="libressl"
RDEPEND="
dev-python/msgpack[${PYTHON_USEDEP}]
- !libressl? ( dev-libs/openssl:0= )
- libressl? ( dev-libs/libressl:0= )
+ dev-libs/openssl:0=
dev-python/llfuse[${PYTHON_USEDEP}]"
DEPEND="
diff --git a/app-backup/attic/attic-9999.ebuild b/app-backup/attic/attic-9999.ebuild
index 4fa4def16ab..7d7c173b276 100644
--- a/app-backup/attic/attic-9999.ebuild
+++ b/app-backup/attic/attic-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -20,12 +20,10 @@ HOMEPAGE="https://attic-backup.org/"
LICENSE="BSD"
SLOT="0"
-IUSE="libressl"
RDEPEND="
dev-python/msgpack[${PYTHON_USEDEP}]
- !libressl? ( dev-libs/openssl:0= )
- libressl? ( dev-libs/libressl:0= )
+ dev-libs/openssl:0=
dev-python/llfuse[${PYTHON_USEDEP}]"
DEPEND="
^ permalink raw reply related [flat|nested] 9+ messages in thread
end of thread, other threads:[~2021-04-30 9:17 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-27 17:43 [gentoo-commits] repo/gentoo:master commit in: app-backup/attic/ Anthony G. Basile
-- strict thread matches above, loose matches on Subject: below --
2021-04-30 9:17 Mikle Kolyada
2020-08-02 20:08 Aaron Bauman
2018-06-27 17:15 Pacho Ramos
2018-03-09 17:59 Matt Thode
2016-10-09 7:47 Pacho Ramos
2016-03-21 23:22 Anthony G. Basile
2016-02-27 17:43 Anthony G. Basile
2015-12-27 2:28 Anthony G. Basile
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox