public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: app-misc/khal/files/, app-misc/khal/
@ 2022-02-02 15:49 Amy Liffey
  0 siblings, 0 replies; 2+ messages in thread
From: Amy Liffey @ 2022-02-02 15:49 UTC (permalink / raw
  To: gentoo-commits

commit:     c5fd35ce0be1729319b73caeb7ee08d47c8712ec
Author:     Amy Liffey <amynka <AT> gentoo <DOT> org>
AuthorDate: Wed Feb  2 15:40:18 2022 +0000
Commit:     Amy Liffey <amynka <AT> gentoo <DOT> org>
CommitDate: Wed Feb  2 15:47:53 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5fd35ce

app-misc/khal: version bump 0.10.4

Closes: https://bugs.gentoo.org/796014
Closes: https://bugs.gentoo.org/774732
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Amy Liffey <amynka <AT> gentoo.org>

 app-misc/khal/Manifest                         |  1 +
 app-misc/khal/files/khal-0.10.4-add-etag.patch | 10 ++++++
 app-misc/khal/khal-0.10.4.ebuild               | 45 ++++++++++++++++++++++++++
 3 files changed, 56 insertions(+)

diff --git a/app-misc/khal/Manifest b/app-misc/khal/Manifest
index d201adab37f0..53d3f40407cf 100644
--- a/app-misc/khal/Manifest
+++ b/app-misc/khal/Manifest
@@ -1,2 +1,3 @@
 DIST khal-0.10.1.tar.gz 173636 BLAKE2B 97158bc78dfbda3a3555df3588c61f6a5e8b20d71921099a74ba997eb7ccef05ed931e930afbb09f9c125f3e0e782143dd2cdf4d0da6bd09952765b9117d6ac4 SHA512 5b81a60099c201fa112ab17740b73edb17b29efa1548086766d57d9d595451e7d779aad5a2ce7a2afc78050116782ff6696c4bd284021a5e12c87fe361d15e47
 DIST khal-0.10.2.tar.gz 182534 BLAKE2B 0c7c4ab1234ebe90ef9ad8291f2a0087a3f6a60d25f5426445eedadb25f236b3598dacc051e959a108ad472efc56628bf7ba11ed714c885d956f1a8f905029ca SHA512 e15449b73175190f02b6fe5774a8feef8a5390966da3836624c94a044d146cc6e8a73985d991042fbb617f736c6759ded387a65292529e71f5b2f34bc80a686e
+DIST khal-0.10.4.tar.gz 185736 BLAKE2B 0cb9deb793f577bbcedcbba4788988973ee9d0ab71fdd30a01142a54434767d74b1d10e5bfa5f6a2feb9f18a8a9fe22717d4a38a07ab5e30b331c87b79a79f39 SHA512 b32f1bfe5d3a3976278726a6570eb345a5ad44f63a52b75f045fd0509d145edd5b76e11a10acffd9c3982edc124f93daec34a37c39299c2311796c0314016eb6

diff --git a/app-misc/khal/files/khal-0.10.4-add-etag.patch b/app-misc/khal/files/khal-0.10.4-add-etag.patch
new file mode 100644
index 000000000000..14b9e6df71bf
--- /dev/null
+++ b/app-misc/khal/files/khal-0.10.4-add-etag.patch
@@ -0,0 +1,10 @@
+--- a/khal/ui/__init__.py	2022-02-02 16:30:20.507169060 +0100
++++ b/khal/ui/__init__.py	2022-02-02 16:30:46.497378047 +0100
+@@ -1109,6 +1109,7 @@
+             account, href, etag = part.split('\n', 2)
+             event = self.collection.get_event(href, account)
+             event.delete_instance(rec_id)
++            event.etag = etag
+             self.collection.update(event)
+
+     def keypress(self, size, key):

diff --git a/app-misc/khal/khal-0.10.4.ebuild b/app-misc/khal/khal-0.10.4.ebuild
new file mode 100644
index 000000000000..3fb13770ef22
--- /dev/null
+++ b/app-misc/khal/khal-0.10.4.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8,9} )
+PYTHON_REQ_USE="sqlite"
+
+inherit distutils-r1
+
+DESCRIPTION="A CalDAV based calendar"
+HOMEPAGE="https://lostpackets.de/khal/"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
+
+RDEPEND="dev-python/click[${PYTHON_USEDEP}]
+	dev-python/click-log[${PYTHON_USEDEP}]
+	>=dev-python/icalendar-4.0.3[${PYTHON_USEDEP}]
+	>=dev-python/urwid-1.3.0[${PYTHON_USEDEP}]
+	dev-python/pyxdg[${PYTHON_USEDEP}]
+	dev-python/pytz[${PYTHON_USEDEP}]
+	dev-python/python-dateutil[${PYTHON_USEDEP}]
+	dev-python/configobj[${PYTHON_USEDEP}]
+	>=dev-python/atomicwrites-0.1.7[${PYTHON_USEDEP}]
+	<dev-python/tzlocal-3[${PYTHON_USEDEP}]
+	dev-python/setproctitle[${PYTHON_USEDEP}]"
+BDEPEND=">dev-python/setuptools_scm-1.12.0[${PYTHON_USEDEP}]
+	dev-python/vdirsyncer[${PYTHON_USEDEP}]
+	dev-python/freezegun[${PYTHON_USEDEP}]"
+
+# https://github.com/pimutils/khal/issues/793
+PATCHES=( "${FILESDIR}/${P}-add-etag.patch" )
+DOCS=( AUTHORS.txt CHANGELOG.rst CONTRIBUTING.rst README.rst khal.conf.sample )
+
+distutils_enable_tests pytest
+
+src_install() {
+	distutils-r1_src_install
+
+	insinto /usr/share/zsh/site-functions
+	doins misc/__khal
+}


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-misc/khal/files/, app-misc/khal/
@ 2023-05-06  9:40 Sam James
  0 siblings, 0 replies; 2+ messages in thread
From: Sam James @ 2023-05-06  9:40 UTC (permalink / raw
  To: gentoo-commits

commit:     510178ca1d410ca4206c7da9e736c0fdfc91323f
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat May  6 09:10:08 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat May  6 09:40:01 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=510178ca

app-misc/khal: drop 0.10.4-r1, 0.10.5

Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-misc/khal/Manifest                         |  2 --
 app-misc/khal/files/khal-0.10.4-add-etag.patch | 10 ------
 app-misc/khal/khal-0.10.4-r1.ebuild            | 45 --------------------------
 app-misc/khal/khal-0.10.5.ebuild               | 40 -----------------------
 4 files changed, 97 deletions(-)

diff --git a/app-misc/khal/Manifest b/app-misc/khal/Manifest
index 781dd1a99e48..009660e83961 100644
--- a/app-misc/khal/Manifest
+++ b/app-misc/khal/Manifest
@@ -1,3 +1 @@
-DIST khal-0.10.4.tar.gz 185736 BLAKE2B 0cb9deb793f577bbcedcbba4788988973ee9d0ab71fdd30a01142a54434767d74b1d10e5bfa5f6a2feb9f18a8a9fe22717d4a38a07ab5e30b331c87b79a79f39 SHA512 b32f1bfe5d3a3976278726a6570eb345a5ad44f63a52b75f045fd0509d145edd5b76e11a10acffd9c3982edc124f93daec34a37c39299c2311796c0314016eb6
-DIST khal-0.10.5.tar.gz 188468 BLAKE2B 195e61fcff7cff1308f2819ec54c5733acebb5ace18f88afa8fc561926857dab3e0e0b82d1f7e3e0235e69ed9ad56544d6eeb95a9e9829dc078d49ebf96c0485 SHA512 f7b1e4d4934757ec7458fc4e73c6b6c5ee6b1c64f6cdc3e61771a2f05041515e4afb73b4a17cbc577747039b689ddd66503e120648c4bfe4e33113a3de6f3d14
 DIST khal-0.11.1.tar.gz 193942 BLAKE2B 12f98781b9a64710537f7728a087f24ef1d73600e957eac7b699948047c1676a9c91a38a415741c6acd94a7ba72014d4b009425edab249225c8bef23b94c0387 SHA512 c4fd25dc4981f4937562949b78f81d3e57b7ef54f7f6d96855645ca239eea9dec7ee6f3c957a67261e7ae2975ab55b36a686db476b03f4fd0bacce94e834b239

diff --git a/app-misc/khal/files/khal-0.10.4-add-etag.patch b/app-misc/khal/files/khal-0.10.4-add-etag.patch
deleted file mode 100644
index 14b9e6df71bf..000000000000
--- a/app-misc/khal/files/khal-0.10.4-add-etag.patch
+++ /dev/null
@@ -1,10 +0,0 @@
---- a/khal/ui/__init__.py	2022-02-02 16:30:20.507169060 +0100
-+++ b/khal/ui/__init__.py	2022-02-02 16:30:46.497378047 +0100
-@@ -1109,6 +1109,7 @@
-             account, href, etag = part.split('\n', 2)
-             event = self.collection.get_event(href, account)
-             event.delete_instance(rec_id)
-+            event.etag = etag
-             self.collection.update(event)
-
-     def keypress(self, size, key):

diff --git a/app-misc/khal/khal-0.10.4-r1.ebuild b/app-misc/khal/khal-0.10.4-r1.ebuild
deleted file mode 100644
index dc6aeab6505c..000000000000
--- a/app-misc/khal/khal-0.10.4-r1.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{9..10} )
-PYTHON_REQ_USE="sqlite"
-
-inherit distutils-r1
-
-DESCRIPTION="A CalDAV based calendar"
-HOMEPAGE="https://lostpackets.de/khal/"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
-
-RDEPEND="dev-python/click[${PYTHON_USEDEP}]
-	dev-python/click-log[${PYTHON_USEDEP}]
-	>=dev-python/icalendar-4.0.3[${PYTHON_USEDEP}]
-	>=dev-python/urwid-1.3.0[${PYTHON_USEDEP}]
-	dev-python/pyxdg[${PYTHON_USEDEP}]
-	dev-python/pytz[${PYTHON_USEDEP}]
-	dev-python/python-dateutil[${PYTHON_USEDEP}]
-	dev-python/configobj[${PYTHON_USEDEP}]
-	>=dev-python/atomicwrites-0.1.7[${PYTHON_USEDEP}]
-	dev-python/tzlocal[${PYTHON_USEDEP}]
-	dev-python/setproctitle[${PYTHON_USEDEP}]"
-BDEPEND=">dev-python/setuptools-scm-1.12.0[${PYTHON_USEDEP}]
-	dev-python/vdirsyncer[${PYTHON_USEDEP}]
-	dev-python/freezegun[${PYTHON_USEDEP}]"
-
-# https://github.com/pimutils/khal/issues/793
-PATCHES=( "${FILESDIR}/${P}-add-etag.patch" )
-DOCS=( AUTHORS.txt CHANGELOG.rst CONTRIBUTING.rst README.rst khal.conf.sample )
-
-distutils_enable_tests pytest
-
-src_install() {
-	distutils-r1_src_install
-
-	insinto /usr/share/zsh/site-functions
-	doins misc/__khal
-}

diff --git a/app-misc/khal/khal-0.10.5.ebuild b/app-misc/khal/khal-0.10.5.ebuild
deleted file mode 100644
index cc3838fb5aa1..000000000000
--- a/app-misc/khal/khal-0.10.5.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_10 )
-PYTHON_REQ_USE="sqlite"
-DISTUTILS_USE_PEP517=setuptools
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="A CalDAV based calendar"
-HOMEPAGE="https://lostpackets.de/khal/ https://github.com/pimutils/khal"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
-
-RDEPEND="
-	dev-python/click[${PYTHON_USEDEP}]
-	dev-python/click-log[${PYTHON_USEDEP}]
-	dev-python/icalendar[${PYTHON_USEDEP}]
-	dev-python/urwid[${PYTHON_USEDEP}]
-	dev-python/pyxdg[${PYTHON_USEDEP}]
-	dev-python/pytz[${PYTHON_USEDEP}]
-	dev-python/python-dateutil[${PYTHON_USEDEP}]
-	dev-python/configobj[${PYTHON_USEDEP}]
-	dev-python/atomicwrites[${PYTHON_USEDEP}]
-	dev-python/tzlocal[${PYTHON_USEDEP}]
-	dev-python/setproctitle[${PYTHON_USEDEP}]
-"
-BDEPEND="
-	dev-python/setuptools-scm[${PYTHON_USEDEP}]
-	dev-python/vdirsyncer[${PYTHON_USEDEP}]
-	dev-python/freezegun[${PYTHON_USEDEP}]
-"
-
-DOCS=( AUTHORS.txt CHANGELOG.rst CONTRIBUTING.rst README.rst khal.conf.sample )
-
-distutils_enable_tests pytest


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2023-05-06  9:40 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-05-06  9:40 [gentoo-commits] repo/gentoo:master commit in: app-misc/khal/files/, app-misc/khal/ Sam James
  -- strict thread matches above, loose matches on Subject: below --
2022-02-02 15:49 Amy Liffey

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox