summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2019-03-06 00:57:33 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2019-03-06 00:57:33 +0300
commit335a4a0070ce7303273ef5cf4d4a964b61626a12 (patch)
treecf867c064f7655177736c5967e2041ee166c510a
parente84f22265ec062ef81a5e5072be1bdef91d20f9f (diff)
Release version 1.0.0+2
-rw-r--r--libformat/manifest8
-rw-r--r--libmformat/libmformat/buildfile11
-rw-r--r--libmformat/manifest15
3 files changed, 16 insertions, 18 deletions
diff --git a/libformat/manifest b/libformat/manifest
index adec683..daccc6c 100644
--- a/libformat/manifest
+++ b/libformat/manifest
@@ -1,6 +1,6 @@
: 1
name: libformat
-version: 1.0.0+1
+version: 1.0.0+2
project: hello
summary: The "Hello World" example formatter library
license: MIT
@@ -12,6 +12,6 @@ url: https://git.build2.org/cgit/hello/libformat
src-url: https://git.build2.org/cgit/hello/libformat/tree/libformat
email: users@build2.org
build-email: builds@build2.org
-#builds: all
-depends: * build2 >= 0.8.0-
-depends: * bpkg >= 0.8.0-
+builds: all
+depends: * build2 >= 0.9.0
+depends: * bpkg >= 0.9.0
diff --git a/libmformat/libmformat/buildfile b/libmformat/libmformat/buildfile
index 7f730b4..868ea79 100644
--- a/libmformat/libmformat/buildfile
+++ b/libmformat/libmformat/buildfile
@@ -2,16 +2,19 @@ import int_libs = libstd-modules%liba{std-modules}
lib{mformat}: {mxx cxx}{format} $int_libs
+# Export options.
+#
+lib{mformat}: cxx.export.libs = $int_libs
+
# For pre-releases use the complete version to make sure they cannot be used
-# in place of another pre-release or the final version.
+# in place of another pre-release or the final version. See the version module
+# for details on the version.* variable values.
#
if $version.pre_release
lib{mformat}: bin.lib.version = @"-$version.project_id"
else
lib{mformat}: bin.lib.version = @"-$version.major.$version.minor"
-lib{mformat}: cxx.export.libs = $int_libs
-
# Install into the libmformat/ subdirectory of, say, /usr/include/.
#
-mxx{*}: install = include/$project/
+mxx{*}: install = include/libmformat/
diff --git a/libmformat/manifest b/libmformat/manifest
index 31ebcdf..4133c20 100644
--- a/libmformat/manifest
+++ b/libmformat/manifest
@@ -13,18 +13,13 @@ url: https://git.build2.org/cgit/hello/libformat
src-url: https://git.build2.org/cgit/hello/libformat/tree/libmformat
email: users@build2.org
build-email: builds@build2.org
-#builds: all
-#build-exclude: *-msvc_15u0** ; Broken C++ modules support.
-#build-include: *-msvc_15u**
-#build-include: *-clang_5.**
-#build-include: *-clang_6.**
-#build-exclude: ** ; Requires C++ modules support.
-build-exclude: *-msvc_15u0** ; Broken C++ modules support.
-build-include: *-msvc_15u**
+builds: all
+build-exclude: *-msvc_15.0** ; Broken C++ modules support.
+build-include: *-msvc_15.**
build-include: *-clang_5.**
build-include: *-clang_6.**
build-exclude: ** ; Requires C++ modules support.
requires: c++20
-depends: * build2 >= 0.8.0-
-depends: * bpkg >= 0.8.0-
+depends: * build2 >= 0.9.0
+depends: * bpkg >= 0.9.0
depends: libstd-modules