Re: ports/mail/openwebmail - how to find last source before removal ?
Eugene Grosbein <[email protected]>
| Newsgroups | gmane.os.freebsd.devel.ports |
|---|---|
| Message-ID | <[email protected]> |
17.09.2025 22:26, Julian H. Stacey wrote: > Hi ports@ people, > How does one find the last release that had ports/mail/openwebmail ? > I failed to find it with Log in > https://cgit.freebsd.org/ports/log/mail/Makefile > Maybe because it was gone before 12.4-RELEASE > & maybe old SVN logs were lost converting to Git ? > > I could do a tedious series of samples, examining many ports trees, > but I presume git has a method ? (I have a local git tree, but not skilled). In a root of your local hit three for ports do: git log -- mail/openwebmail This gives you a hash of latest (removal) commit: 3c9b734022681d3361f88dd9c398a2eaa0033a0e The do: git show 3c9b734022681d3361f88dd9c398a2eaa0033a0e -- mail/openwebmail/Makefile This gives you exact contents of the port's Makefile that was removed starting with: -# Created by: Yen-Ming Lee <[email protected]> -# $FreeBSD$ - -PORTNAME= openwebmail -PORTVERSION= 2.53 -PORTREVISION= 5 -CATEGORIES= mail -MASTER_SITES= http://openwebmail.acatysmoof.com/download/release/ \ - http://openwebmail.org/openwebmail/download/release/ ... Eugene