mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-18 03:23:20 -04:00
Merge updates from master
This commit is contained in:
@@ -1,11 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM 'http://www.gentoo.org/dtd/metadata.dtd'>
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>denis7774@gmail.com</email>
|
||||
<name>Denis Reva</name>
|
||||
<description>Partial maintainer</description>
|
||||
</maintainer>
|
||||
<longdescription lang="en">
|
||||
Folly (acronymed loosely after Facebook Open Source Library) is a library of C++14 components designed with practicality and efficiency in mind. Folly contains a variety of core library components used extensively at Facebook. In particular, it's often a dependency of Facebook's other open source C++ efforts and place where those projects can share code.
|
||||
It complements (as opposed to competing against) offerings such as Boost and of course std. In fact, we embark on defining our own component only when something we need is either not available, or does not meet the needed performance profile. We endeavor to remove things from folly if or when std or Boost obsoletes them.
|
||||
|
||||
@@ -64,7 +64,7 @@ src_prepare() {
|
||||
append-cxxflags '-O3 -DNDEBUG'
|
||||
|
||||
# headers is not a valid boost component
|
||||
sed -i -e '/find_package(Boost/s/headers //' CMakeLists.txt || die
|
||||
sed -i -e '/find_package(Boost/{s/headers //;s/CONFIG //}' CMakeLists.txt || die
|
||||
|
||||
# Allow skip submodule downloading
|
||||
rm .gitmodules
|
||||
|
||||
@@ -109,6 +109,9 @@ DEPEND="${RDEPEND}"
|
||||
|
||||
S="${WORKDIR}/${PN}-v${PV}"
|
||||
|
||||
# Rust packages ignore CFLAGS and LDFLAGS so let's silence the QA warnings.
|
||||
QA_FLAGS_IGNORED="usr/bin/gemserv"
|
||||
|
||||
src_prepare() {
|
||||
# Fix paths in systemd unit.
|
||||
sed -i 's@/path/to/bin /path/to/config@'"${EPREFIX}"'/usr/bin/gemserv '"${EPREFIX}"'/etc/gemserv/config.toml@' \
|
||||
|
||||
@@ -103,6 +103,9 @@ DEPEND="${RDEPEND}"
|
||||
|
||||
S="${WORKDIR}/${PN}-v${PV}"
|
||||
|
||||
# Rust packages ignore CFLAGS and LDFLAGS so let's silence the QA warnings.
|
||||
QA_FLAGS_IGNORED="usr/bin/gemserv"
|
||||
|
||||
src_prepare() {
|
||||
# Fix paths in systemd unit.
|
||||
sed -i 's@/path/to/bin /path/to/config@'"${EPREFIX}"'/usr/bin/gemserv '"${EPREFIX}"'/etc/gemserv/config.toml@' \
|
||||
|
||||
@@ -1,11 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM 'http://www.gentoo.org/dtd/metadata.dtd'>
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>denis7774@gmail.com</email>
|
||||
<name>Denis Reva</name>
|
||||
<description>Partial maintainer</description>
|
||||
</maintainer>
|
||||
<longdescription lang="en">
|
||||
DwarFS is a read-only file system with a focus on achieving very high compression ratios in particular for very redundant data.
|
||||
This probably doesn't sound very exciting, because if it's redundant, it should compress well. However, I found that other read-only, compressed file systems don't do a very good job at making use of this redundancy. See here for a comparison with other compressed file systems.
|
||||
|
||||
@@ -27,7 +27,7 @@ FILECAPS=(
|
||||
)
|
||||
|
||||
src_compile() {
|
||||
emake V=1 CC="$(tc-getCC)" PKG_CONFIG="$(tc-getPKG_CONFIG)"
|
||||
emake V=1 CC="$(tc-getCC)" PKG_CONFIG="$(tc-getPKG_CONFIG)" NO_FLTO=1
|
||||
}
|
||||
|
||||
src_install() {
|
||||
|
||||
Reference in New Issue
Block a user