This is an automated email from the ASF dual-hosted git repository. nickva pushed a commit to branch try-to-fix-build in repository https://gitbox.apache.org/repos/asf/couchdb-pkg.git
commit b60c8d654f31e56f350ffc36997d0648ce3cbdc6 Author: Nick Vatamaniuc <[email protected]> AuthorDate: Fri May 15 23:54:02 2026 -0400 Try to fix resolute package builds ``` 12:52:15 dpkg-buildpackage: error: cannot parse maintainer email address ""CouchDB Developers" <"[email protected]">" from changelog entry 12:52:15 dpkg-buildpackage: info: source package couchdb 12:52:15 dpkg-buildpackage: info: source version 3.5.1-a13d517~resolute 12:52:15 dpkg-buildpackage: info: source distribution UNRELEASED 12:52:15 dpkg-buildpackage: info: source changed by "CouchDB Developers" <"[email protected]"> 12:52:15 make[1]: *** [Makefile:316: dpkg] Error 25 ``` --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 45d4722..b5f2f63 100644 --- a/Makefile +++ b/Makefile @@ -15,8 +15,8 @@ DEBCHANGELOG="Automatically generated package from upstream." JS_DEBCHANGELOG="Automatically generated package from couchdb-ci repository." -export DEBFULLNAME="CouchDB Developers" -export DEBEMAIL="[email protected]" +export DEBFULLNAME=CouchDB Developers +export [email protected] # Default package directory (over-written for RPM based builds) PKGDIR=$(COUCHDIR)
