diff --git a/app-portage/appswipe/Manifest b/app-portage/appswipe/Manifest
new file mode 100644
index 0000000000..dfa5dfb8b8
--- /dev/null
+++ b/app-portage/appswipe/Manifest
@@ -0,0 +1 @@
+DIST appswipe-1.1.14.tar.gz 121832 BLAKE2B a6e6afeaba68d21fa766e4278f9dfd4345a609f87ddb7dca459210a8a4aa3119f5381e2ccf2eda3f6c96cdc48db40265c68819f2ffeaecb89094471ca056dcb5 SHA512 a3ed041360483ba302f1d4fc13b5083d5e66fe200891ea1c180f47220c28188376c581b5de09dbbae4d2cee5d30e991c663607d7eea7a250fe839023b5c703be
diff --git a/app-portage/appswipe/appswipe-1.1.14.ebuild b/app-portage/appswipe/appswipe-1.1.14.ebuild
new file mode 100644
index 0000000000..2f77e8206e
--- /dev/null
+++ b/app-portage/appswipe/appswipe-1.1.14.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit desktop qmake-utils
+
+DESCRIPTION="Application for browsing your local Portage repository files"
+HOMEPAGE="https://github.com/k9spud/appswipe"
+SRC_URI="https://github.com/k9spud/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+DEPEND="
+ dev-qt/qtcore
+ dev-qt/qtgui
+ dev-qt/qtsql[sqlite]
+"
+
+RDEPEND="
+ app-portage/gentoolkit
+ app-portage/portage-utils
+ lxde-base/lxterminal
+ ${DEPEND}
+"
+
+src_configure() {
+ eqmake5
+}
+
+src_install() {
+ mv AppSwipe appswipe
+ dobin appswipe
+ mv "${S}/img/appicon.svg" "${S}/img/appswipe.svg"
+ doicon -s scalable "${S}/img/appswipe.svg"
+ domenu ${PN}.desktop
+}
diff --git a/app-portage/appswipe/metadata.xml b/app-portage/appswipe/metadata.xml
new file mode 100644
index 0000000000..b55e1e4d6f
--- /dev/null
+++ b/app-portage/appswipe/metadata.xml
@@ -0,0 +1,12 @@
+
+
+
+
+ co-maintainers welcome
+ brian.gloyer@gmail.com
+ Brian Gloyer
+
+
+ k9spud/appswipe
+
+
diff --git a/app-vim/vimwiki-cli/vimwiki-cli-1.0.0.ebuild b/app-vim/vimwiki-cli/vimwiki-cli-1.0.0.ebuild
index d7b8c2bf46..72d3952fef 100644
--- a/app-vim/vimwiki-cli/vimwiki-cli-1.0.0.ebuild
+++ b/app-vim/vimwiki-cli/vimwiki-cli-1.0.0.ebuild
@@ -3,7 +3,7 @@
EAPI=8
-PYTHON_COMPAT=( python3_{6..10} )
+PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
diff --git a/dev-go/lichen/lichen-0.1.7.ebuild b/dev-go/lichen/lichen-0.1.7.ebuild
index 22647312f9..30ddd791d8 100644
--- a/dev-go/lichen/lichen-0.1.7.ebuild
+++ b/dev-go/lichen/lichen-0.1.7.ebuild
@@ -65,7 +65,7 @@ SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
src_compile() {
- go build -v -work -x -o ${PN} || die
+ ego build -v -work -x -o ${PN} || die
}
src_install() {
diff --git a/dev-octave/quaternion/files/quaternion-2.4.0-build-against-octave-6.patch b/dev-octave/quaternion/files/quaternion-2.4.0-build-against-octave-6.patch
new file mode 100644
index 0000000000..756f872dc8
--- /dev/null
+++ b/dev-octave/quaternion/files/quaternion-2.4.0-build-against-octave-6.patch
@@ -0,0 +1,23 @@
+Description: Build against Octave 6.1
+ Replace deprecated methods is_numeric_type, is_real_type, and
+ is_bool_type by isnumeric, isreal, and islogical, respectively.
+Author: Rafael Laboissière
+Origin: other, https://hg.octave.org/mxe-octave/file/tip/src/of-quaternion-2-dev-fixes.patch
+Bug: https://savannah.gnu.org/bugs/?59163
+Bug-Debian: https://bugs.debian.org/976203
+Forwarded: not-needed
+Last-Update: 2020-12-01
+
+--- octave-quaternion-2.4.0.orig/src/is_real_array.cc
++++ octave-quaternion-2.4.0/src/is_real_array.cc
+@@ -46,8 +46,8 @@ Avoid nasty stuff like @code{true = isre
+ {
+ // args(i).ndims () should be always >= 2
+ if (args(i).ndims () < 2
+- || ! ((args(i).is_numeric_type () && args(i).is_real_type ())
+- || args(i).is_bool_type ()))
++ || ! ((args(i).isnumeric () && args(i).isreal ())
++ || args(i).islogical ()))
+ {
+ retval = false;
+ break;
diff --git a/dev-octave/quaternion/quaternion-2.4.0.ebuild b/dev-octave/quaternion/quaternion-2.4.0.ebuild
index d8ef1a0955..c84091f9d5 100644
--- a/dev-octave/quaternion/quaternion-2.4.0.ebuild
+++ b/dev-octave/quaternion/quaternion-2.4.0.ebuild
@@ -14,3 +14,5 @@ KEYWORDS="~amd64"
DEPEND=">=sci-mathematics/octave-3.8.0"
RDEPEND="${DEPEND}"
+
+PATCHES=( "${FILESDIR}/${P}-build-against-octave-6.patch" )
diff --git a/dev-python/exifread/Manifest b/dev-python/exifread/Manifest
index 3a4f8cbc30..0f724a1a92 100644
--- a/dev-python/exifread/Manifest
+++ b/dev-python/exifread/Manifest
@@ -1 +1,2 @@
DIST exifread-2.3.2.tar.gz 42796 BLAKE2B 0dca89f484a5f21ee2510af6ab069ba76dfeb4a31bc79261951ef062bb695f6f1adc6c7378ecbdf0e1a46540ec767555cb46bb77ab39b002199ac490ca58fd6b SHA512 d37cc6a70793aa894947b1b24f973ff2f9c15ba3dfe99674c5ea61e5a469b259035fc48a1d2c4d4d7021289bad431e57a4e137e2d4feb0c5352b0b162e61376a
+DIST exifread-3.0.0.tar.gz 44891 BLAKE2B 867644edfabaee6c90b4dd540a4225e74df45babee69ac3935644033d0e973b5d06cfc3fbba521ca352bda08eda44548e233c203b66978e4021db28ec45b29d6 SHA512 3b819718f5fc9f7807dc245908c2724d1023ce6345b6f6a84ea0c10d62b47939ae4dce23db868d67b6eeaa07e5c88fd406520106f31883d15442eaabcebb0746
diff --git a/dev-python/exifread/exifread-3.0.0.ebuild b/dev-python/exifread/exifread-3.0.0.ebuild
new file mode 100644
index 0000000000..cc96c03e17
--- /dev/null
+++ b/dev-python/exifread/exifread-3.0.0.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_SETUPTOOLS=bdepend
+MY_PN="exif-py"
+PYTHON_COMPAT=( python3_{8..10} pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="Easy to use Python module to extract Exif metadata from tiff and jpeg files"
+HOMEPAGE="
+ https://pypi.org/project/ExifRead/
+ https://github.com/ianare/exif-py
+"
+SRC_URI="https://github.com/ianare/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/${MY_PN}-${PV}"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
diff --git a/dev-python/types-python-dateutil/Manifest b/dev-python/types-python-dateutil/Manifest
index ecddef1b31..7495b0c3af 100644
--- a/dev-python/types-python-dateutil/Manifest
+++ b/dev-python/types-python-dateutil/Manifest
@@ -1,2 +1,2 @@
-DIST types-python-dateutil-2.8.12.tar.gz 6702 BLAKE2B 1435e834c4c0e6a1a2dfb22e4f98fe2382bb9942d69f44892ce381b9949579361b1cf6efd8e7ec0979101d721877534b19410a4527aa034b5e4c0d382fe7dd0a SHA512 20bc518462ee692ae642a1762c6f958e6d914c9b005b5dad9f68938b7e1a010161d5f23ece1be74dd0adb0dda85be20c81a44efa4ba181bd18f10e74c7a28967
DIST types-python-dateutil-2.8.14.tar.gz 6833 BLAKE2B 5a0ac6d195219956e9416af735b14715ce9beefad02ae2f5898693b2d55f406c5a4039175616dd6f7637d8a22cefae6cb2d82737cb2da86b1e76e1c411df9f41 SHA512 07a392b00157d07f05c6332915c33a3595dcb623b92bf70ed4ad91cccc36334df2cb9f04701288ba42301149d4e78cfdd6ce527772f8261feb11b1ec588eb86d
+DIST types-python-dateutil-2.8.15.tar.gz 6923 BLAKE2B 53bfdff4ebb585d4b0d9c9a22c8e70aae87ce2b154748f54823713e68f8faa21ae3eb7165359e6763b2b0027e5128fedba4d66e6bd70232bd6650cf9bfe425dd SHA512 e2efd88dfc27b5a7ace8147b9a4d924dd32471fe59d65c7ff8bc9576d1d8b5b6bdc83e808cabb35c9a866614debd8fafdd779166efa2b51069056ae9330f9fcc
diff --git a/dev-python/types-python-dateutil/types-python-dateutil-2.8.12.ebuild b/dev-python/types-python-dateutil/types-python-dateutil-2.8.15.ebuild
similarity index 100%
rename from dev-python/types-python-dateutil/types-python-dateutil-2.8.12.ebuild
rename to dev-python/types-python-dateutil/types-python-dateutil-2.8.15.ebuild
diff --git a/dev-python/types-pytz/Manifest b/dev-python/types-pytz/Manifest
index cb5379ea78..3d4131f706 100644
--- a/dev-python/types-pytz/Manifest
+++ b/dev-python/types-pytz/Manifest
@@ -1,2 +1,2 @@
-DIST types-pytz-2021.3.6.tar.gz 3134 BLAKE2B a3be61269c8dcebb1ba6d1ff3f0c5ac383a04783d6d572c7cf5ae48aba02ceebad91092d51f7e1cff3a230597f19be6d03c3fa1b927fbcae943be3ff425a8269 SHA512 d172b3192f4b2e5cec715205507cf04cb8347db29cb0a33dd9d610a4d936e57b7a72ab05e05648c716582ac24b19b48381e16e31075d6ae3f46c904f27073de4
DIST types-pytz-2021.3.7.tar.gz 3179 BLAKE2B d5adca00fbe3c9b97f2cd8292de05016e3f26286403353eed1f177db30578787b29fed93d46d96766aa98e9ae9ae3eb484547a7b335f885d4b48581025f0e116 SHA512 90cefe450b1c866095927588625a595c2a45345af6784b7cef6bc93c7feaf351bea1c4cf37ad938db792e8ad9a74cb9695e8eb3646f7ad96d0bcc7ecef91ac00
+DIST types-pytz-2021.3.8.tar.gz 3253 BLAKE2B 873f8126ecaf5055bcd9aa87f8632cee8cf92f7bfe51f0d0df7217af51053f40fe98f18f511db42eefc2d904cf3f1f11b228cf8c6fa15f5afcbc2e8e91f539fe SHA512 5b7dcf5279be55225ec66f9f9cc657cb3ae21acdcd41322a194a8cc6ccd79e60052191cb664378f414172d9f5d92573ab1f3322e9909ecd1e4ed95b36c7630ba
diff --git a/dev-python/types-pytz/types-pytz-2021.3.6.ebuild b/dev-python/types-pytz/types-pytz-2021.3.8.ebuild
similarity index 100%
rename from dev-python/types-pytz/types-pytz-2021.3.6.ebuild
rename to dev-python/types-pytz/types-pytz-2021.3.8.ebuild
diff --git a/games-util/mangohud/mangohud-0.6.6.1-r1.ebuild b/games-util/mangohud/mangohud-0.6.6.1-r2.ebuild
similarity index 81%
rename from games-util/mangohud/mangohud-0.6.6.1-r1.ebuild
rename to games-util/mangohud/mangohud-0.6.6.1-r2.ebuild
index d9a0a388bc..f237f6f88f 100644
--- a/games-util/mangohud/mangohud-0.6.6.1-r1.ebuild
+++ b/games-util/mangohud/mangohud-0.6.6.1-r2.ebuild
@@ -5,7 +5,7 @@ EAPI=8
PYTHON_COMPAT=( python3_{8..10} )
-inherit python-r1 distutils-r1 meson-multilib
+inherit python-r1 distutils-r1 meson
MY_PV=$(ver_cut 1-3)
[ -n "$(ver_cut 4)" ] && MY_PV_REV="-$(ver_cut 4)"
@@ -39,24 +39,27 @@ BDEPEND="
DEPEND="
dev-python/mako[${PYTHON_USEDEP}]
dev-libs/spdlog
- dev-util/glslang[${MULTILIB_USEDEP}]
+ dev-util/glslang
>=dev-util/vulkan-headers-1.2
- media-libs/vulkan-loader[${MULTILIB_USEDEP}]
- media-libs/libglvnd[$MULTILIB_USEDEP]
- dbus? ( sys-apps/dbus[${MULTILIB_USEDEP}] )
- X? ( x11-libs/libX11[${MULTILIB_USEDEP}] )
+ media-libs/vulkan-loader
+ media-libs/libglvnd
+ dbus? ( sys-apps/dbus )
+ X? ( x11-libs/libX11 )
video_cards_nvidia? (
- x11-drivers/nvidia-drivers[${MULTILIB_USEDEP}]
+ x11-drivers/nvidia-drivers
xnvctrl? ( x11-drivers/nvidia-drivers[static-libs] )
)
- wayland? ( dev-libs/wayland[${MULTILIB_USEDEP}] )
+ wayland? ( dev-libs/wayland )
"
RDEPEND="${DEPEND}"
S="${WORKDIR}/MangoHud-${PV}"
-# PATCHES=( "${FILESDIR}/mangonhud-0.6.6-meson-build.patch" )
+PATCHES=(
+ # "${FILESDIR}/mangonhud-0.6.6-meson-build.patch"
+ "${FILESDIR}/mangohud-0.6.6-meson-fix-spdlog-dep.patch"
+)
src_unpack() {
default
@@ -67,10 +70,9 @@ src_unpack() {
mv ${WORKDIR}/imgui-${IMGUI_VER} ${S}/subprojects/imgui || die
}
-multilib_src_configure() {
+src_configure() {
local emesonargs=(
-Dappend_libdir_mangohud=false
- -Duse_system_spdlog=enabled
-Duse_system_vulkan=enabled
-Dinclude_doc=false
$(meson_feature video_cards_nvidia with_nvml)
diff --git a/net-misc/facebook-ptp/Manifest b/net-misc/facebook-ptp/Manifest
index 886863debe..3236662fed 100644
--- a/net-misc/facebook-ptp/Manifest
+++ b/net-misc/facebook-ptp/Manifest
@@ -11,7 +11,7 @@ DIST cloud.google.com%2Fgo%2Ffirestore%2F@v%2Fv1.1.0.mod 568 BLAKE2B d3d62f2d5c0
DIST cloud.google.com%2Fgo%2Fpubsub%2F@v%2Fv1.0.1.mod 508 BLAKE2B 9915d1d1a768852b3f262784771c8fe2e7e176e61f7d77841f8d3adac571dc141e36c6455c19090cf00a98a7a5ef0c2c887424142e2ecad339f8105b1c30f91e SHA512 8a393b8614207c22c73a706ccc3e66a8a16d2f305ab95d8f70774f13d0bcb7396b0ac5095daa57ebb991225a1db08c3110f1e85c26dd72f3bbcaf73fea536d9c
DIST cloud.google.com%2Fgo%2Fstorage%2F@v%2Fv1.0.0.mod 374 BLAKE2B 4fef9f7da9f23e94efe43be0e279958715949a889c5d51e388f5b66ec9a7cdbf15a717c988883647032998facd71359ad1dcacebcf3334100144abbfa12dac03 SHA512 faf4a02a513ae4c23f931b8917e74a056c528b4267ef3b5b704949283910bfc5d41fdd7264b78d4fc1f6e5b370474a7c9933a2fad36bb5c872006def71f8ed0b
DIST dmitri.shuralyov.com%2Fgpu%2Fmtl%2F@v%2Fv0.0.0-20190408044501-666a987793e9.mod 36 BLAKE2B b430ef9388b0dfe932b201495a00275a6036338c99160d7362556be1e25924584b0802061d193533f23b1f76719dfd6a9484572babd25f1af0e53fd9bf07ac00 SHA512 196affe091247f94ceda4b56629bd62d4ee2b397f2c0f56c9534c02e43531b46705ad33543b58c1a4fc7a48e25e5923db087fe0485a93966a4086581c0d1d3e1
-DIST facebook-ptp-0_pre20210831.tar.gz 87260 BLAKE2B 2fdf0ba512f67ca16202e8e92f81c41b036f978c16438e7945ba243318eb507b6745facc3b768f7a10aa9e1ea429670985b1e2c2fb54991b8c5a4895c158cbe4 SHA512 e7a21e6ef1ed3f5587e69929dbfb7ffb35aebabb7e9a33395f10949b676f730c8dda223166f06c28b420644f90742bf2f69f034516e8290fddb78a044a9ee146
+DIST facebook-ptp-0_pre20211123.tar.gz 92326 BLAKE2B 6567a5193807ab945dc9ee3cf32dcd6ab6f3cac54741a77d77f6247fabed8068bfca10f740cb566559e7f5b38ac8f47cc3d1df089bae94aee90c17d44fc2cb3c SHA512 fe828a9d856fb771520e9b04ed3383ef558e164388c30d3164c39d2c5ff40372e00a87a1700c6750ee03d97267f0f4d26bec9fc5ad62fcbe60ee5af105e5ab37
DIST github.com%2F!burnt!sushi%2Ftoml%2F@v%2Fv0.3.1.mod 34 BLAKE2B ce54a247aef91043830bdf0603c8452ba38eceb1495af6e7a74c9119234a0dc5cd080cb25258c28f5e270acf91189a5ed33e361cbf17de2be5e37dadbda1d90d SHA512 320941bc3b7fb8bc595e6135cbc513a7583d129f0cd92508055291e141191066303cf75148e25198c21f6c6c539a790ea3210f3ecf5de6a2a03b70c753091146
DIST github.com%2F!burnt!sushi%2Fxgb%2F@v%2Fv0.0.0-20160522181843-27f122750802.mod 33 BLAKE2B d234bf9be3dd919cb1f8d33750a24dca68c90fea110fd0ff62f0dba86d2ebbfc66d55fea62745b6383c5607bc91cfd78c9d2cf12df251397e85995c04707caa2 SHA512 dbfa64ac31b25fdbff12110c6f9815abfde65f281e40852e7165499a2cefb6656c74fe0b82f0f018304daa02b83b421e9c15654efabad39787c69c1b2996a79d
DIST github.com%2F!one!of!one%2Fxxhash%2F@v%2Fv1.2.2.mod 34 BLAKE2B 83966cb7de9bb687f99f17c5c89c03718258d2df34e3dda01b96a2fcb1273a0ba0e3253ba5950d5458193d3e54962371317a8fe85020ae338b44e864bd96667f SHA512 9081c69a2480ef726f547047306dc9136211ac7550882e68d458e2c04e5343366cb08f20525a51c804ab9a554dfe8363a1d9660bc0f9e501e1d996f7b6f320e4
diff --git a/net-misc/facebook-ptp/facebook-ptp-0_pre20210831.ebuild b/net-misc/facebook-ptp/facebook-ptp-0_pre20211123.ebuild
similarity index 99%
rename from net-misc/facebook-ptp/facebook-ptp-0_pre20210831.ebuild
rename to net-misc/facebook-ptp/facebook-ptp-0_pre20211123.ebuild
index 8ef826dd63..f287b63a85 100644
--- a/net-misc/facebook-ptp/facebook-ptp-0_pre20210831.ebuild
+++ b/net-misc/facebook-ptp/facebook-ptp-0_pre20211123.ebuild
@@ -1,11 +1,11 @@
-# Copyright 2021 Gentoo Authors
+# Copyright 2021-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit go-module
-COMMIT="8d2a7fdd83c72952338d7bafc1e447bb678cd858"
+COMMIT="a34aaeed7b37620152bd8d81686d588df7a49a64"
EGO_SUM=(
"cloud.google.com/go v0.26.0/go.mod"
"cloud.google.com/go v0.34.0/go.mod"
@@ -355,10 +355,12 @@ KEYWORDS="~amd64"
RDEPEND="net-libs/libpcap"
DEPEND="${RDEPEND}"
+# TODO: oscillatord
+
src_compile() {
for i in pshark ptp4u ptpcheck ziffy ; do
pushd ${i} || die
- go build -x || die
+ go build -x -v || die
popd || die
done
}
diff --git a/sci-libs/qdldl/Manifest b/sci-libs/qdldl/Manifest
new file mode 100644
index 0000000000..8edc2f0a94
--- /dev/null
+++ b/sci-libs/qdldl/Manifest
@@ -0,0 +1 @@
+DIST qdldl-0.1.5_p20211001.tar.gz 18567 BLAKE2B 2863bc53395573f24e3b461a30f336cede15b99aef4ce51899b35b97a7a7b79ffced6220e95a72f8e2900ecedc5a16363a16df9769359cf6a206c328b75eea0b SHA512 16422bc97a0c4cfffdf4c91717272f0cef7d9f6c68fa31ba33879897892b11109e4c8625be040235fcb8015fd9fc224d6ba8890dbe1e628d94ddde41d40dc22c
diff --git a/sci-libs/qdldl/metadata.xml b/sci-libs/qdldl/metadata.xml
new file mode 100644
index 0000000000..75b82a5feb
--- /dev/null
+++ b/sci-libs/qdldl/metadata.xml
@@ -0,0 +1,16 @@
+
+
+
+
+ lssndrbarbieri@gmail.com
+ Alessandro Barbieri
+
+
+ https://github.com/osqp/qdldl/issues
+ osqp/qdldl
+
+
+
diff --git a/sci-libs/qdldl/qdldl-0.1.5_p20211001.ebuild b/sci-libs/qdldl/qdldl-0.1.5_p20211001.ebuild
new file mode 100644
index 0000000000..f6cb5de55b
--- /dev/null
+++ b/sci-libs/qdldl/qdldl-0.1.5_p20211001.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+COMMIT="9fae555ca11046362be143a24cca66c311eeb884"
+
+inherit cmake
+
+DESCRIPTION="A free LDL factorisation routine"
+HOMEPAGE="https://github.com/osqp/qdldl"
+SRC_URI="https://github.com/osqp/${PN}/archive/${COMMIT}.tar.gz -> ${PF}.tar.gz"
+S="${WORKDIR}/${PN}-${COMMIT}"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="coverage single-precision test"
+
+RESTRICT="!test? ( test )"
+
+src_configure() {
+ mycmakeargs=(
+ -DCOVERAGE=$(usex coverage)
+ -DDFLOAT=$(usex single-precision)
+ -DQDLDL_BUILD_STATIC_LIB=$(usex test)
+ -DQDLDL_UNITTESTS=$(usex test)
+
+ -DQDLDL_BUILD_DEMO_EXE=OFF
+ -DQDLDL_BUILD_SHARED_LIB=ON
+ )
+
+ cmake_src_configure
+}
+
+src_install() {
+ cmake_src_install
+ dodoc README.md CHANGELOG.md
+}