Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=V1G5HQd5; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=0KKOzQpE Received: by mail.netbsd.org (Postfix, from userid 605) id BD37E84F0B; Thu, 21 Mar 2024 00:09:52 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1710979793; bh=iF4hhupe/kWBWjeQ365ujroc0WVwyrrpUXqaMiSKvgE=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=V1G5HQd5aAmy1auI1lRwgqSpzicZFtHKE3CLI+DmD5L5O4/pgUrxWdqa0Id47+DTp 3IJU8mBy0GSQKVCBhENsl1ohuQFu808AHVM9DwCLCGbgA/kWw2THCNNGu2aRYDqQt3 O8fJBU4glf8DP3RsWqH6K8RbY8ntBd0RHvayZGpk= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 1658F84D1B for ; Thu, 21 Mar 2024 00:07:29 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Authentication-Results: mail.netbsd.org (amavisd-new); dkim=pass (1024-bit key) header.d=netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id bFQouf6gWOFU for ; Thu, 21 Mar 2024 00:07:28 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 248EE84D08 for ; Thu, 21 Mar 2024 00:07:28 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1710979648; bh=iF4hhupe/kWBWjeQ365ujroc0WVwyrrpUXqaMiSKvgE=; h=Date:From:Subject:To:Reply-To; b=0KKOzQpEi2C87F7FeKKiopCvFYEDDmdqjUr5Zsei61oLgpHueUqUBzEPzthcFDID/ FYroCE7blyfc88MS/29KvK4zIkau8u6dIYtAbGDwF7+j0r1OFHyE2h5USXr7i3uYPn +YkCCW4n59xQLudiFF+I6LVmkris8heImqzBmDyw= Received: by cvs.NetBSD.org (Postfix, from userid 500) id 148DAFA2C; Thu, 21 Mar 2024 00:07:28 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_171097964879700" MIME-Version: 1.0 Date: Thu, 21 Mar 2024 00:07:28 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/editors To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20240321000728.148DAFA2C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_171097964879700 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Thu Mar 21 00:07:28 UTC 2024 Modified Files: pkgsrc/editors: Makefile Added Files: pkgsrc/editors/moe: DESCR Makefile PLIST distinfo Log Message: import editors/moe GNU moe is a console text editor for ISO-8859 and ASCII character encodings. It has a modeless, user-friendly interface, online help, multiple windows, global search/replace (on all buffers at once), block operations, automatic indentation, word wrapping, file name completion, directory browser, duplicate removal from prompt histories, delimiter matching, text conversion from/to UTF-8, romanization, etc. The file size, line length, number of buffers, and undo/redo capability are only limited by the amount of memory available and the size of the address space of your machine. Moe respects your work. By default it won't automatically add, change, or remove a single byte in your files. Moe is a WYTIWYG (what you type is what you get) editor. Moe can easily edit thousands of files at the same time. To generate a diff of this commit: cvs rdiff -u -r1.248 -r1.249 pkgsrc/editors/Makefile cvs rdiff -u -r0 -r1.1 pkgsrc/editors/moe/DESCR pkgsrc/editors/moe/Makefile \ pkgsrc/editors/moe/PLIST pkgsrc/editors/moe/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_171097964879700 Content-Disposition: inline Content-Length: 4130 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/editors/Makefile diff -u pkgsrc/editors/Makefile:1.248 pkgsrc/editors/Makefile:1.249 --- pkgsrc/editors/Makefile:1.248 Mon Mar 18 07:16:53 2024 +++ pkgsrc/editors/Makefile Thu Mar 21 00:07:27 2024 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.248 2024/03/18 07:16:53 wiz Exp $ +# $NetBSD: Makefile,v 1.249 2024/03/21 00:07:27 nia Exp $ # COMMENT= Text and binary editors @@ -91,6 +91,7 @@ SUBDIR+= mg2a SUBDIR+= micro SUBDIR+= mined SUBDIR+= mle +SUBDIR+= moe SUBDIR+= mule-ucs SUBDIR+= nano SUBDIR+= ne Added files: Index: pkgsrc/editors/moe/DESCR diff -u /dev/null pkgsrc/editors/moe/DESCR:1.1 --- /dev/null Thu Mar 21 00:07:28 2024 +++ pkgsrc/editors/moe/DESCR Thu Mar 21 00:07:27 2024 @@ -0,0 +1,14 @@ +GNU moe is a console text editor for ISO-8859 and ASCII character encodings. +It has a modeless, user-friendly interface, online help, multiple windows, +global search/replace (on all buffers at once), block operations, automatic +indentation, word wrapping, file name completion, directory browser, duplicate +removal from prompt histories, delimiter matching, text conversion from/to +UTF-8, romanization, etc. The file size, line length, number of buffers, +and undo/redo capability are only limited by the amount of memory available +and the size of the address space of your machine. + +Moe respects your work. By default it won't automatically add, change, or +remove a single byte in your files. Moe is a WYTIWYG (what you type is what +you get) editor. + +Moe can easily edit thousands of files at the same time. Index: pkgsrc/editors/moe/Makefile diff -u /dev/null pkgsrc/editors/moe/Makefile:1.1 --- /dev/null Thu Mar 21 00:07:28 2024 +++ pkgsrc/editors/moe/Makefile Thu Mar 21 00:07:27 2024 @@ -0,0 +1,50 @@ +# $NetBSD: Makefile,v 1.1 2024/03/21 00:07:27 nia Exp $ + +DISTNAME= moe-1.14 +CATEGORIES= editors +MASTER_SITES= ${MASTER_SITE_GNU:=moe/} +EXTRACT_SUFX= .tar.lz + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= https://www.gnu.org/software/moe/ +COMMENT= Modeless, user-friendly console text editor +LICENSE= gnu-gpl-v2 + +HAS_CONFIGURE= yes +INFO_FILES= yes +USE_TOOLS+= makeinfo +USE_LANGUAGES= c c++ + +FAKE_NCURSES= yes + +EGDIR= ${PREFIX}/share/examples/moe +CONF_FILES= ${EGDIR}/moe.conf ${PKG_SYSCONFDIR}/moe.conf + +CONFIGURE_ARGS+= --prefix=${PREFIX} +CONFIGURE_ARGS+= --mandir=${PREFIX}/${PKGMANDIR} +CONFIGURE_ARGS+= --infodir=${PREFIX}/${PKGINFODIR} +CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR} +CONFIGURE_ARGS+= CXX=${CXX:Q} +CONFIGURE_ARGS+= CXXFLAGS=${CXXFLAGS:Q} +CONFIGURE_ARGS+= CPPFLAGS=${CPPFLAGS:Q} +CONFIGURE_ARGS+= LDFLAGS=${LDFLAGS:Q} +CONFIGURE_ARGS+= LIBS=${LIBS:Q} +CONFIGURE_ARGS+= MAKEINFO=${MAKEINFO} + +INSTALLATION_DIRS+= bin +INSTALLATION_DIRS+= ${PKGINFODIR} +INSTALLATION_DIRS+= ${PKGMANDIR}/man1 +INSTALLATION_DIRS+= share/examples/moe + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/moe \ + ${DESTDIR}${PREFIX}/bin/moe + ${INSTALL_DATA} ${WRKSRC}/doc/moe.1 \ + ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/moe.1 + ${INSTALL_DATA} ${WRKSRC}/doc/moe.info \ + ${DESTDIR}${PREFIX}/${PKGINFODIR}/moe.info + ${INSTALL_DATA} ${WRKSRC}/moe.conf \ + ${DESTDIR}${PREFIX}/share/examples/moe/moe.conf + +.include "../../mk/curses.buildlink3.mk" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/editors/moe/PLIST diff -u /dev/null pkgsrc/editors/moe/PLIST:1.1 --- /dev/null Thu Mar 21 00:07:28 2024 +++ pkgsrc/editors/moe/PLIST Thu Mar 21 00:07:27 2024 @@ -0,0 +1,5 @@ +@comment $NetBSD: PLIST,v 1.1 2024/03/21 00:07:27 nia Exp $ +bin/moe +info/moe.info +man/man1/moe.1 +share/examples/moe/moe.conf Index: pkgsrc/editors/moe/distinfo diff -u /dev/null pkgsrc/editors/moe/distinfo:1.1 --- /dev/null Thu Mar 21 00:07:28 2024 +++ pkgsrc/editors/moe/distinfo Thu Mar 21 00:07:27 2024 @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1 2024/03/21 00:07:27 nia Exp $ + +BLAKE2s (moe-1.14.tar.lz) = aaed2a81253c0f776a56af66aa4a210964bfb860647d76cf7b647f16220cf0ee +SHA512 (moe-1.14.tar.lz) = db45f7c05b9a1a06085b2604eb8e9857caeb7d3a56a4815df208806bbbf19cc47b19776619635c70860142cb8bb775c0eaf31b9b07698cc83b74f1c6d6f47d5c +Size (moe-1.14.tar.lz) = 92905 bytes --_----------=_171097964879700--