From: "Ulrich Müller" <ulm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] proj/gs-elpa:master commit in: gs_elpa/
Date: Sat, 20 May 2023 09:35:31 +0000 (UTC) [thread overview]
Message-ID: <1684575274.5b9e13c7e0e1a45ede9f95a0cf7301b2d474d170.ulm@gentoo> (raw)
commit: 5b9e13c7e0e1a45ede9f95a0cf7301b2d474d170
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Sat May 20 09:34:34 2023 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Sat May 20 09:34:34 2023 +0000
URL: https://gitweb.gentoo.org/proj/gs-elpa.git/commit/?id=5b9e13c7
elpa_db.py: Drop the workaround for sexpdata-0.0.4
The value field was added back in sexpdata-1.0.0:
https://github.com/jd-boyd/sexpdata/commit/861cc5c8c96724b3e34ee1b6e15997b1d136635d
This partially reverts commit a0924d50b6346fe86c7f0db34a92eb9760d1b17a.
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
gs_elpa/elpa_db.py | 11 +++++------
1 file changed, 5 insertions(+), 6 deletions(-)
diff --git a/gs_elpa/elpa_db.py b/gs_elpa/elpa_db.py
old mode 100755
new mode 100644
index c189712..2032603
--- a/gs_elpa/elpa_db.py
+++ b/gs_elpa/elpa_db.py
@@ -82,8 +82,8 @@ class ElpaDBGenerator(DBGenerator):
#DEP_VERSION = 1 #we do not use it at the moment
for entry in sexpdata.cdr(archive_contents):
- desc = entry[PKG_INFO].I
- realname = str(entry[PKG_NAME])
+ desc = entry[PKG_INFO].value()
+ realname = entry[PKG_NAME].value()
if self.in_config([common_config, config], "exclude", realname):
continue
@@ -95,7 +95,7 @@ class ElpaDBGenerator(DBGenerator):
pkg = Package("app-emacs", realname,
'.'.join(map(str, desc[INFO_VERSION])))
- source_type = str(desc[INFO_SRC_TYPE])
+ source_type = desc[INFO_SRC_TYPE].value()
allowed_ords = set(range(ord('a'), ord('z'))) \
| set(range(ord('A'), ord('Z'))) | \
@@ -112,9 +112,8 @@ class ElpaDBGenerator(DBGenerator):
dependencies = serializable_elist(separator="\n\t")
for dep in deps:
- dep = self.convert_dependency(
- [common_config, config], str(dep[DEP_NAME]),
- external=False)
+ dep = self.convert_dependency([common_config, config],
+ dep[DEP_NAME].value(), external = False)
if dep:
dependencies.append(dep)
next reply other threads:[~2023-05-20 9:35 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-05-20 9:35 Ulrich Müller [this message]
-- strict thread matches above, loose matches on Subject: below --
2023-02-19 14:50 [gentoo-commits] proj/gs-elpa:master commit in: gs_elpa/ Ulrich Müller
2021-11-04 14:09 Ulrich Müller
2021-05-05 16:47 Ulrich Müller
2021-05-04 18:25 Ulrich Müller
2021-05-04 18:04 Ulrich Müller
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1684575274.5b9e13c7e0e1a45ede9f95a0cf7301b2d474d170.ulm@gentoo \
--to=ulm@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox