summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew G. Morgan <morgan@kernel.org>2020-07-05 14:07:52 -0700
committerAndrew G. Morgan <morgan@kernel.org>2020-07-05 14:07:52 -0700
commit19eebc5846cbf31c224dd353df8f595de2cdfea8 (patch)
tree29e8eb9334167ff4cd0bf90a68941be19f77fd7c
parent42afb6ac6b92e4694b97fef5ab1d1fc87d4be0e9 (diff)
downloadlibcap2-libcap-2.38.tar.gz
Signed-off-by: Andrew G. Morgan <morgan@kernel.org>
-rw-r--r--Make.Rules9
-rw-r--r--README11
-rw-r--r--cap/go.mod2
-rw-r--r--goapps/web/go.mod2
4 files changed, 15 insertions, 9 deletions
diff --git a/Make.Rules b/Make.Rules
index a4baa61..19c6715 100644
--- a/Make.Rules
+++ b/Make.Rules
@@ -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
diff --git a/README b/README
index 40c2794..6ba482c 100644
--- a/README
+++ b/README
@@ -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
diff --git a/cap/go.mod b/cap/go.mod
index 2103cb2..1e8b5e8 100644
--- a/cap/go.mod
+++ b/cap/go.mod
@@ -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
diff --git a/goapps/web/go.mod b/goapps/web/go.mod
index c8ca9e5..8a6b1d1 100644
--- a/goapps/web/go.mod
+++ b/goapps/web/go.mod
@@ -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