aboutsummaryrefslogtreecommitdiffstats
path: root/community
diff options
context:
space:
mode:
authorSören Tempel <soeren+git@soeren-tempel.net>2019-08-21 15:03:06 +0200
committerLeonardo Arena <rnalrd@alpinelinux.org>2019-08-28 14:23:12 +0000
commit09ec53216b766c83c2ded4536e8e36122cb44cae (patch)
tree1b9f6d830164c5cf9f539ec6cea79ebdd74ecae9 /community
parent66b0b4367411f77d3188e3c8dfbf7f564ad3ea7e (diff)
downloadaports-09ec53216b766c83c2ded4536e8e36122cb44cae.tar.bz2
aports-09ec53216b766c83c2ded4536e8e36122cb44cae.tar.xz
community/offlineimap: remove aport
No known migration path to python 3. Additionally, the latest release (7.3.0) requires a new dependency (rfc6555) which isn't packaged by alpine currently. Since python 2 is EOL at the end of this year I don't think maintaining this further makes any sense. I personally switched from offlineimap to community/isync.
Diffstat (limited to 'community')
-rw-r--r--community/offlineimap/APKBUILD44
1 files changed, 0 insertions, 44 deletions
diff --git a/community/offlineimap/APKBUILD b/community/offlineimap/APKBUILD
deleted file mode 100644
index 09e785eb5d..0000000000
--- a/community/offlineimap/APKBUILD
+++ /dev/null
@@ -1,44 +0,0 @@
-# Contributor: Sören Tempel <soeren+alpine@soeren-tempel.net>
-# Contributor: Peter Bui <pnutzh4x0r@gmail.com>
-# Maintainer: Sören Tempel <soeren+alpine@soeren-tempel.net>
-pkgname=offlineimap
-pkgver=7.2.4
-pkgrel=0
-pkgdesc="Synchronizes emails between two repositories"
-url="http://www.offlineimap.org"
-arch="noarch"
-license="GPL-2.0-or-later"
-depends="python2 py2-six"
-makedepends="python2-dev asciidoc"
-install=""
-options="!check" # test suite requires credentials for an IMAP and Gmail account
-subpackages="$pkgname-doc"
-source="$pkgname-$pkgver.tar.gz::https://github.com/OfflineIMAP/${pkgname}/archive/v${pkgver}.tar.gz"
-builddir="$srcdir"/$pkgname-$pkgver
-
-build() {
- cd "$builddir"
- python2 setup.py build
-
- cd "$builddir"/docs
- make man
-}
-
-package() {
- cd "$builddir"
- python2 setup.py install --root="${pkgdir}" \
- --optimize=1
-
- for man in docs/*.?; do
- install -Dm644 "$man" \
- "$pkgdir"/usr/share/man/man${man##*.}/${man##*/}
- done
-
- mkdir -p "$pkgdir"/usr/share/doc/$pkgname/examples/
- install -m644 README.md TODO.rst MAINTAINERS.rst Changelog.md \
- "$pkgdir"/usr/share/doc/$pkgname/
- install -m644 offlineimap.conf* \
- "$pkgdir"/usr/share/doc/$pkgname/examples/
-}
-
-sha512sums="837f822a08f5df59f5332c65b33e0186c215a633c5c17f08790f4c2128a4f6470a75eb02e883dd592b456dbc0ba2b32f670cb716eb602dd8a6bdf12ba2d72cd8 offlineimap-7.2.4.tar.gz"