summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gentoo.org>2021-05-30 16:54:56 -0700
committerMatt Turner <mattst88@gentoo.org>2021-05-30 18:58:21 -0700
commita56b7a1db207a43f8db0bed297eef1083a0afeef (patch)
treec456ca502e0ef948a82f5db1175c95a751a5b693
parentnet-libs/libsoup: Drop old versions (diff)
downloadgentoo-a56b7a1db207a43f8db0bed297eef1083a0afeef.tar.gz
gentoo-a56b7a1db207a43f8db0bed297eef1083a0afeef.tar.bz2
gentoo-a56b7a1db207a43f8db0bed297eef1083a0afeef.zip
net-libs/phodav: Drop old versions
Signed-off-by: Matt Turner <mattst88@gentoo.org>
-rw-r--r--net-libs/phodav/Manifest1
-rw-r--r--net-libs/phodav/metadata.xml3
-rw-r--r--net-libs/phodav/phodav-2.2.ebuild58
3 files changed, 0 insertions, 62 deletions
diff --git a/net-libs/phodav/Manifest b/net-libs/phodav/Manifest
index 543b0b63754a..01dc91841c08 100644
--- a/net-libs/phodav/Manifest
+++ b/net-libs/phodav/Manifest
@@ -1,2 +1 @@
-DIST phodav-2.2.tar.xz 294216 BLAKE2B e7062f933f407dff339b050a8b735e733fa41634cc34b0a37556b283b941ff620ae59a2ed3b7bce41530195f33a9fb3113f89e37190bb046352d90d72a750468 SHA512 1d16716c1bda674a6695b651e9b1bcb4b7cfefd9b60291ed3f5691f4f6f45f68a970d99fc4820bed0484cf0a43c1bf32e4d208fcc239ac0c0b7a75bf779e8913
DIST phodav-2.5.tar.xz 62992 BLAKE2B aca0141c20c727dd27af3760caf27ec0f7a4936c3c35dbdb60a8a15b5bd75ebd97dfef8bb96f50b266d7a0e53fb8c0e21416dea855ff107b362dba0e89283a64 SHA512 4b6cd6a40118bf9c042abcfc3e7cb593b620922aae4dd3daf77682bf9da2030a0958bc0206531d5950f85551ef8f5da21fb21c54b9bd5e56b880f54e0983bc01
diff --git a/net-libs/phodav/metadata.xml b/net-libs/phodav/metadata.xml
index 60f44adfbc68..53c3a7d09c48 100644
--- a/net-libs/phodav/metadata.xml
+++ b/net-libs/phodav/metadata.xml
@@ -9,7 +9,4 @@
<email>virtualization@gentoo.org</email>
<name>Gentoo Virtualization Project</name>
</maintainer>
- <use>
- <flag name="spice">Install the spice-webdavd guest agent</flag>
- </use>
</pkgmetadata>
diff --git a/net-libs/phodav/phodav-2.2.ebuild b/net-libs/phodav/phodav-2.2.ebuild
deleted file mode 100644
index 4ccb85882334..000000000000
--- a/net-libs/phodav/phodav-2.2.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-GNOME2_LA_PUNT="yes"
-
-inherit gnome2 systemd udev
-
-DESCRIPTION="WebDav server implementation using libsoup"
-HOMEPAGE="https://wiki.gnome.org/phodav"
-
-LICENSE="LGPL-2.1+"
-SLOT="2.0"
-KEYWORDS="~alpha amd64 arm ~arm64 ppc ppc64 x86"
-IUSE="spice systemd zeroconf"
-
-# It included g_uuid_* symbols of its own from an unapplied patch to glib; now that they
-# were merged, it conflicts and crashes. Ensure glib versions from >2.51 are used, so it
-# doesn't break badly when phodav-2.2 is upgraded to before glib to 2.52
-RDEPEND="
- >=dev-libs/glib-2.51:2
- >=net-libs/libsoup-2.48:2.4
- dev-libs/libxml2
- zeroconf? ( net-dns/avahi[dbus] )
-"
-DEPEND="${RDEPEND}
- >=dev-util/gtk-doc-am-1.10
- >=dev-util/intltool-0.40.0
- sys-devel/gettext
- virtual/pkgconfig
-"
-
-src_configure() {
- gnome2_src_configure \
- --disable-static \
- --program-suffix=-${SLOT} \
- $(use_with zeroconf avahi) \
- --with-udevdir=$(get_udevdir) \
- --with-systemdsystemunitdir=$(systemd_get_systemunitdir)
-
- if ! use zeroconf ; then
- sed -i -e 's|avahi-daemon.service||' data/spice-webdavd.service || die
- fi
-}
-
-src_install() {
- gnome2_src_install
-
- if use spice ; then
- if ! use systemd ; then
- newinitd "${FILESDIR}/spice-webdavd.initd" spice-webdavd
- udev_dorules "${FILESDIR}/70-spice-webdavd.rules"
- rm -r "${D}$(systemd_get_systemunitdir)" || die
- fi
- else
- rm -r "${D}"{/usr/sbin,$(get_udevdir),$(systemd_get_systemunitdir)} || die
- fi
-}