Package Details: se-git 3.0.1.r47.g0d06c10-1

Git Clone URL: https://aur.archlinux.org/se-git.git (read-only, click to copy)
Package Base: se-git
Description: A screen oriented version of the classic UNIX text editor ed.
Upstream URL: https://github.com/screen-editor/se
Licenses: PublicDomain
Conflicts: se
Submitter: aksr
Maintainer: aksr
Last Packager: aksr
Votes: 0
Popularity: 0.000000
First Submitted: 2021-04-11 12:34 (UTC)
Last Updated: 2021-04-11 12:34 (UTC)

Dependencies (2)

Required by (0)

Sources (1)

Latest Comments

tpenguinltg commented on 2026-03-02 02:59 (UTC)

I noticed this as I was fixing the se AUR package: as of upstream commit fb64040 (Aug. 5, 2023), se is now licensed under the 0BSD. No changes need to be made to the package function since it reuses the same COPYING file, but the license variable in the PKGBUILD should be updated accordingly.

The PKGBUILD should also probably have provides=("${pkgname%-*}") in addition to the conflicts=("${pkgname%-*}") that's already there.

diff --git a/PKGBUILD b/PKGBUILD
index 2ae3a12..92d0da4 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,14 +1,15 @@
 # Maintainer: aksr <aksr at t-com dot me>
 pkgname=se-git
 pkgver=3.0.1.r47.g0d06c10
 pkgrel=1
 pkgdesc='A screen oriented version of the classic UNIX text editor ed.'
 arch=('i686' 'x86_64')
 url='https://github.com/screen-editor/se'
-license=('publicdomain')
+license=('0BSD')
 depends=('ncurses')
 makedepends=('git')
+provides=("${pkgname%-*}")
 conflicts=("${pkgname%-*}")
 source=("$pkgname::git+$url")
 md5sums=('SKIP')