On Wed, Mar 29, 2017 at 11:24:52AM +0100, Stuart Henderson wrote: > On 2017/03/29 11:42, Sebastien Marie wrote: > > Hi, > > > > Here an update for sysclean. It is mostly a documentation update. > > > > Thanks to tj@ and Markus for their help. > > You have this change: > > .Pp > -Obtain the list of old libraries with package using it: > +Obtain a list of old libraries and the package using it: > .Bd -literal -offset indent > # sysclean -p > /usr/lib/libc.so.84.1 git-2.7.0 > /usr/lib/libc.so.84.1 gmake-4.1p0 > .Ed > > Maybe better with ..."a list of old libraries and packages using them"? >
yes. I commited your proposition and released a new 2.2 version with it. Thanks for spotted it. -- Sebastien Marie Index: Makefile =================================================================== RCS file: /cvs/ports/sysutils/sysclean/Makefile,v retrieving revision 1.11 diff -u -p -r1.11 Makefile --- Makefile 28 Feb 2017 09:41:17 -0000 1.11 +++ Makefile 29 Mar 2017 17:52:37 -0000 @@ -1,10 +1,10 @@ # $OpenBSD: Makefile,v 1.11 2017/02/28 09:41:17 sthen Exp $ -COMMENT = help removing obsolete files between OpenBSD upgrades +COMMENT = list obsolete files between OpenBSD upgrades GH_ACCOUNT = semarie GH_PROJECT = sysclean -GH_TAGNAME = 2.0 +GH_TAGNAME = 2.2 CATEGORIES = sysutils HOMEPAGE = https://github.com/semarie/sysclean/ Index: distinfo =================================================================== RCS file: /cvs/ports/sysutils/sysclean/distinfo,v retrieving revision 1.10 diff -u -p -r1.10 distinfo --- distinfo 28 Feb 2017 09:41:17 -0000 1.10 +++ distinfo 29 Mar 2017 17:52:37 -0000 @@ -1,2 +1,2 @@ -SHA256 (sysclean-2.0.tar.gz) = UrORnyXhwykgjPwu8xtWp4okdd2qxQkQ0XRStJ2miEw= -SIZE (sysclean-2.0.tar.gz) = 5608 +SHA256 (sysclean-2.2.tar.gz) = RpROCXtW9Hgwq9DeF0zNSks+S2hZSpbBRe5XOesqZ60= +SIZE (sysclean-2.2.tar.gz) = 5513 Index: pkg/DESCR =================================================================== RCS file: /cvs/ports/sysutils/sysclean/pkg/DESCR,v retrieving revision 1.4 diff -u -p -r1.4 DESCR --- pkg/DESCR 19 Apr 2016 08:32:37 -0000 1.4 +++ pkg/DESCR 29 Mar 2017 17:52:37 -0000 @@ -1,8 +1,8 @@ -sysclean is a script designed to help removing obsolete files between upgrades. +sysclean is a script designed to help remove obsolete files between OpenBSD +upgrades. -sysclean works by comparing a reference root directory against currently -installed files. It considers standard system files, configuration files -installed by default, and packages files. +sysclean compares a reference root directory against the currently installed +files, taking files from both the base system and packages into account. -sysclean doesn't remove any files on the system. It only reports obsolete +sysclean does not remove any files on the system. It only reports obsolete filenames or packages using out-of-date libraries.
