diff options
author | Michael Weber <xmw@gentoo.org> | 2017-12-22 09:51:37 +0100 |
---|---|---|
committer | Michael Weber <xmw@gentoo.org> | 2017-12-22 09:51:49 +0100 |
commit | 9e12f546404f2b91fc7052146f705bdbf5eb44e2 (patch) | |
tree | 82fbeeefbd61438bb6e57dde58edfe3dc509542f /app-backup/backintime/backintime-1.1.12.ebuild | |
parent | sys-block/hpssacli: Bump to v3.10.3.0 (diff) | |
download | gentoo-9e12f546404f2b91fc7052146f705bdbf5eb44e2.tar.gz gentoo-9e12f546404f2b91fc7052146f705bdbf5eb44e2.tar.bz2 gentoo-9e12f546404f2b91fc7052146f705bdbf5eb44e2.zip |
app-backup/backintime: Remove security affected version.
- Remote code execution vulnerability (CVE-2017-16667)
Bug: https://bugs.gentoo.org/636042
- Race condition (CVE-2017-7572)
Bug: https://bugs.gentoo.org/636974
Package-Manager: Portage-2.3.19, Repoman-2.3.6
Diffstat (limited to 'app-backup/backintime/backintime-1.1.12.ebuild')
-rw-r--r-- | app-backup/backintime/backintime-1.1.12.ebuild | 77 |
1 files changed, 0 insertions, 77 deletions
diff --git a/app-backup/backintime/backintime-1.1.12.ebuild b/app-backup/backintime/backintime-1.1.12.ebuild deleted file mode 100644 index 39ccb01f130a..000000000000 --- a/app-backup/backintime/backintime-1.1.12.ebuild +++ /dev/null @@ -1,77 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -PYTHON_COMPAT=( python3_{4,5} ) - -inherit eutils python-single-r1 - -DESCRIPTION="Backup system inspired by TimeVault and FlyBack, with a GUI for GNOME and KDE4" -HOMEPAGE="http://backintime.le-web.org/" -SRC_URI="http://${PN}.le-web.org/download/${PN}/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="qt4" - -DEPEND="${PYTHON_DEPS} - dev-python/dbus-python[${PYTHON_USEDEP}] - dev-python/keyring[${PYTHON_USEDEP}] - net-misc/openssh - net-misc/rsync[xattr,acl]" -RDEPEND="${DEPEND} - qt4? ( dev-python/PyQt4 )" - -REQUIRED_USE="${PYTHON_REQUIRED_USE}" - -src_prepare() { - #fix doc install location - sed -e "s:/doc/${PN}-common:/doc/${PF}:g" \ - -i common/configure || die - sed -e "s:/doc/${PN}-qt4:/doc/${PF}:g" \ - -i qt4/configure || die - sed -e "/addInstallFile \"..\/VERSION/d" \ - -e "/addInstallFile \"..\/LICENSE/d" \ - -e "/addInstallFile \"..\/debian\/copyright/d" \ - -i {qt4,common}/configure || die - - if [ -n ${LINGUAS+x} ] ; then - cd common/po || die - for po in *.po ; do - if ! has ${po/.po} ${LINGUAS} ; then - rm ${po} || die - fi - done - fi -} - -src_configure() { - cd "${S}"/common || die - ./configure --python3 --no-fuse-group || die - if use qt4 ; then - cd "${S}"/qt4 || die - ./configure --python3 || die - fi -} - -src_compile() { - cd "${S}"/common || die - emake - if use qt4 ; then - cd "${S}"/qt4 || die - emake - fi -} - -src_install() { - cd "${S}"/common || die - emake DESTDIR="${D}" install - if use qt4 ; then - cd "${S}"/qt4 || die - emake DESTDIR="${D}" install - fi - - python_optimize "${D}" -} |