Up the release version to 2.38

Signed-off-by: Andrew G. Morgan <morgan@kernel.org>
This commit is contained in:
Andrew G. Morgan 2020-07-05 14:07:52 -07:00
parent 42afb6ac6b
commit 19eebc5846
4 changed files with 15 additions and 9 deletions

View File

@ -38,12 +38,15 @@ LIBDIR=$(lib_prefix)/$(lib)
PKGCONFIGDIR=$(LIBDIR)/pkgconfig
GOPKGDIR=$(prefix)/share/gocode/src
# Common defines for libcap
# Common version number defines for libcap
LIBTITLE=libcap
VERSION=2
MINOR=37
MINOR=38
# Go modules have their own semantics.
# Go modules have their own semantics. I plan to leave this value at 0
# and keep it there. The Go packages should always remain backwardly
# compatible, but I may have to up it if Go's syntax changes in a
# backwards incompatible manner. (Let's hope not.)
GOMAJOR=0
# Compilation specifics

11
README
View File

@ -32,14 +32,17 @@ bugs can be found at:
$ sudo make install
installs the library libcap.XX.Y in /lib[64]/
default installs the library libcap.XX.Y in /lib[64]/
the binaries in /sbin/
the header files in /usr/include
the {libcap,libpsx}.pc files in /usr/lib[64]/pkgconfig
the Go packages (if built) under /usr/share/gocode/src
For some example programs look in the progs/ directory. Specifically,
capsh, getpcaps, setcap and getcap. Go example programs are to be
found in the go/ directory.
For some example C programs look in the progs/ directory. Specifically,
capsh, getpcaps, setcap and getcap.
Go example programs are to be found in the goapps/ directory. There
are also some more complicated integration tests in the go/ directory.
Cheers

View File

@ -2,4 +2,4 @@ module kernel.org/pub/linux/libs/security/libcap/cap
go 1.11
require kernel.org/pub/linux/libs/security/libcap/psx v0.2.37
require kernel.org/pub/linux/libs/security/libcap/psx v0.2.38

View File

@ -2,4 +2,4 @@ module web.go
go 1.11
require kernel.org/pub/linux/libs/security/libcap/cap v0.2.37 // indirect
require kernel.org/pub/linux/libs/security/libcap/cap v0.2.38 // indirect