mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-18 11:33:15 -04:00
Merge updates from master
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
diff --git a/Makefile b/Makefile
|
||||
index fa6e2ff..529ed74 100644
|
||||
index fa6e2ff..ca2603f 100644
|
||||
--- a/Makefile
|
||||
+++ b/Makefile
|
||||
@@ -1,3 +1,14 @@
|
||||
@@ -17,28 +17,21 @@ index fa6e2ff..529ed74 100644
|
||||
# WITH_OPENSSL=1 enables OpenSSL 1.1+ support
|
||||
ifeq ($(WITH_OPENSSL),1)
|
||||
override CFLAGS += -DLIBUS_USE_OPENSSL
|
||||
@@ -33,13 +44,33 @@ ifeq ($(WITH_ASAN),1)
|
||||
@@ -33,13 +44,27 @@ ifeq ($(WITH_ASAN),1)
|
||||
endif
|
||||
|
||||
override CFLAGS += -std=c11 -Isrc
|
||||
-override LDFLAGS += uSockets.a
|
||||
|
||||
-# By default we build the uSockets.a static library
|
||||
-default:
|
||||
+static:
|
||||
default:
|
||||
rm -f *.o
|
||||
- $(CC) $(CFLAGS) -flto -O3 -c src/*.c src/eventing/*.c src/crypto/*.c
|
||||
- $(AR) rvs uSockets.a *.o
|
||||
+ $(CC) $(CFLAGS) -c src/*.c src/eventing/*.c src/crypto/*.c
|
||||
+ $(AR) rvs libusockets.a *.o
|
||||
+
|
||||
+dynamic:
|
||||
+ rm -f *.o
|
||||
+ $(CC) -fPIC -c src/*.c src/eventing/*.c src/crypto/*.c $(CFLAGS)
|
||||
+ $(AR) rvs libusockets.a *.o
|
||||
+ $(CC) -shared -fPIC -Wl,-soname,$(LIBTARGET) $(CFLAGS) -o $(LIBTARGET) *.o $(LDFLAGS)
|
||||
+
|
||||
+default: static dynamic
|
||||
+
|
||||
+install:
|
||||
+ # install the folders needed (making sure that the exist)
|
||||
+ install -d "$(DESTDIR)$(libdir)" \
|
||||
@@ -56,7 +49,7 @@ index fa6e2ff..529ed74 100644
|
||||
|
||||
# Builds all examples
|
||||
.PHONY: examples
|
||||
@@ -52,4 +83,5 @@ swift_examples:
|
||||
@@ -52,4 +77,5 @@ swift_examples:
|
||||
clean:
|
||||
rm -f *.o
|
||||
rm -f *.a
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>gentoo@aisha.cc</email>
|
||||
<name>Aisha Tammy</name>
|
||||
</maintainer>
|
||||
<use>
|
||||
<flag name="libuv">Enable bindings to use the libuv dispatcher</flag>
|
||||
</use>
|
||||
<maintainer type="person">
|
||||
<email>gentoo@aisha.cc</email>
|
||||
<name>Aisha Tammy</name>
|
||||
</maintainer>
|
||||
<use>
|
||||
<flag name="libuv">Enable bindings to use the libuv dispatcher</flag>
|
||||
</use>
|
||||
</pkgmetadata>
|
||||
|
||||
@@ -27,7 +27,6 @@ DEPEND="ssl? (
|
||||
)
|
||||
libuv? ( dev-libs/libuv[static-libs?] )
|
||||
"
|
||||
BDEPEND="${DEPEND}"
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
PATCHES=(
|
||||
@@ -36,19 +35,18 @@ PATCHES=(
|
||||
|
||||
src_compile() {
|
||||
# the Makefile uses environment variables
|
||||
emake -j1 \
|
||||
LIBusockets_VERSION=${PV} \
|
||||
WITH_OPENSSL=$(usex ssl 1 0) \
|
||||
WITH_LIBUV=$(usex libuv 1 0) \
|
||||
default
|
||||
emake LIBusockets_VERSION=${PV} \
|
||||
WITH_OPENSSL=$(usex ssl 1 0) \
|
||||
WITH_LIBUV=$(usex libuv 1 0) \
|
||||
default
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake -j1 \
|
||||
libdir="/usr/$(get_libdir)" \
|
||||
prefix="/usr" DESTDIR="${D}" \
|
||||
LIBusockets_VERSION=${PV} \
|
||||
install
|
||||
emake libdir="/usr/$(get_libdir)" \
|
||||
prefix="/usr" \
|
||||
DESTDIR="${D}" \
|
||||
LIBusockets_VERSION=${PV} \
|
||||
install
|
||||
einstalldocs
|
||||
if ! use static-libs; then
|
||||
rm "${D}/usr/$(get_libdir)/libusockets.a" || die
|
||||
@@ -27,7 +27,6 @@ DEPEND="ssl? (
|
||||
)
|
||||
libuv? ( dev-libs/libuv[static-libs?] )
|
||||
"
|
||||
BDEPEND="${DEPEND}"
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
PATCHES=(
|
||||
@@ -36,19 +35,18 @@ PATCHES=(
|
||||
|
||||
src_compile() {
|
||||
# the Makefile uses environment variables
|
||||
emake -j1 \
|
||||
LIBusockets_VERSION=${PV} \
|
||||
WITH_OPENSSL=$(usex ssl 1 0) \
|
||||
WITH_LIBUV=$(usex libuv 1 0) \
|
||||
default
|
||||
emake LIBusockets_VERSION=${PV} \
|
||||
WITH_OPENSSL=$(usex ssl 1 0) \
|
||||
WITH_LIBUV=$(usex libuv 1 0) \
|
||||
default
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake -j1 \
|
||||
libdir="/usr/$(get_libdir)" \
|
||||
prefix="/usr" DESTDIR="${D}" \
|
||||
LIBusockets_VERSION=${PV} \
|
||||
install
|
||||
emake libdir="/usr/$(get_libdir)" \
|
||||
prefix="/usr" \
|
||||
DESTDIR="${D}" \
|
||||
LIBusockets_VERSION=${PV} \
|
||||
install
|
||||
einstalldocs
|
||||
if ! use static-libs; then
|
||||
rm "${D}/usr/$(get_libdir)/libusockets.a" || die
|
||||
|
||||
@@ -1 +1 @@
|
||||
DIST purritobin-0.2.1.tar.gz 9487 BLAKE2B 1aa4e44b5d79d4da6c05195ed5aa187e8c4c2864905b0f225d4e6a0c65b469c046b2172d8b2108588955930dbfc2ab01f6d01b191fd988ebdb7b5714cda2bbd9 SHA512 4dbcc473b2f4df399a572a9ae588c32564eb0d807411448a4da701d2982bc72d45dd2fb5256b9cf1b6d6b3c06b588a18ac7a2f980758763f699fe54d11207ddb
|
||||
DIST purritobin-0.2.2.tar.gz 11223 BLAKE2B da28aab88578a076f3fb795264d8dc35fb279c9ce6ed170187b9269cd80c135e9f03b06bf5668f55272b6bc479aefedfe389a0b58eb52eac7d6a9c9129f42de4 SHA512 5bf64e62333f72a98c5e00b45885012212df6d88a609c7b71aecccb89b87ea6370567efa7a5b6c9ed0f09fb6b5ba15cb2769f67509fa6ee49a00ce19e5968f18
|
||||
|
||||
@@ -20,10 +20,10 @@ LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
IUSE="libuv static-libs"
|
||||
|
||||
DEPEND="net-libs/usockets[libuv=,static-libs?]
|
||||
RDEPEND="net-libs/usockets[libuv=,static-libs?]
|
||||
libuv? ( >=dev-libs/libuv-1.35.0[static-libs?] )
|
||||
"
|
||||
BDEPEND="
|
||||
DEPEND="${RDEPEND}
|
||||
www-apps/uwebsockets
|
||||
"
|
||||
|
||||
@@ -20,10 +20,10 @@ LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
IUSE="libuv static-libs"
|
||||
|
||||
DEPEND="net-libs/usockets[libuv=,static-libs?]
|
||||
RDEPEND="net-libs/usockets[libuv=,static-libs?]
|
||||
libuv? ( >=dev-libs/libuv-1.35.0[static-libs?] )
|
||||
"
|
||||
BDEPEND="
|
||||
DEPEND="${RDEPEND}
|
||||
www-apps/uwebsockets
|
||||
"
|
||||
|
||||
|
||||
@@ -1 +1 @@
|
||||
DIST uwebsockets-18.6.0.tar.gz 264309 BLAKE2B c1cea128b6b0d5b7df30bb2aba97b0ac7207392755090e6950c61ab1847dd146b4a6c95dcd18065f3e969cfeaf3c5ffc09b17a5a34b6c5531b767a23df322386 SHA512 f748c90cb5cc83f119a27bd10d3043643cdc1bd617ccbd5460086e96114af8cbd9583c590bb9506b77f447c4e91b1f0be0493e3504af3d4f52d543a4f02826ba
|
||||
DIST uwebsockets-18.7.0.tar.gz 264566 BLAKE2B 83e5cbf08c9f46f377128f1c2447eb148fb36a4a5acd9658e64c81d820be3a639fd081639859356c2131b4487b60e09ebe21824378282ad8d7347bcdc64e8aee SHA512 6dafd3eb9a86ebcc873ea5fe35bce46e40f415945197171d2dbfa71a28d57a3338bf61c594b00f5f5009f61dc3d0811f3d444b341270bf57613bfd1aa2c0e090
|
||||
|
||||
@@ -1,24 +0,0 @@
|
||||
diff --git a/Makefile b/Makefile
|
||||
index ae71753..d057e96 100644
|
||||
--- a/Makefile
|
||||
+++ b/Makefile
|
||||
@@ -1,3 +1,9 @@
|
||||
+DESTDIR ?=
|
||||
+
|
||||
+prefix ?= "/usr/local"
|
||||
+exec_prefix ?= "$(prefix)"
|
||||
+includedir?= "$(exec_prefix)/include/uWebSockets"
|
||||
+
|
||||
EXAMPLE_FILES := HelloWorld EchoServer BroadcastingEchoServer
|
||||
THREADED_EXAMPLE_FILES := HelloWorldThreaded EchoServerThreaded
|
||||
override CXXFLAGS += -lpthread -Wconversion -std=c++17 -Isrc -IuSockets/src
|
||||
@@ -38,3 +44,9 @@ all:
|
||||
clean:
|
||||
rm -rf $(EXAMPLE_FILES) $(THREADED_EXAMPLE_FILES)
|
||||
rm -rf fuzzing/*.o benchmarks/*.o
|
||||
+install:
|
||||
+ # create the folder for the header files
|
||||
+ install -d "$(DESTDIR)$(includedir)/f2"
|
||||
+ # now install the header files
|
||||
+ install -m 644 src/*.h "$(DESTDIR)$(includedir)/"
|
||||
+ install -m 644 src/f2/function2.hpp "$(DESTDIR)$(includedir)/f2/"
|
||||
@@ -1,2 +1,2 @@
|
||||
DIST kImageAnnotator-0.2.1.tar.gz 107027 BLAKE2B 247ea31f3dfd90fd175b879c3fe06a50ee2ce8f3f2ce395efa1882fe8abc4be4e5a739782054682336cf327fe288d24b17971c89dfaf7f5202ba3f607165b0f2 SHA512 6f9d03b6d0d020c90fa050ac6be30b680db8dd3a2035db80856bb69c9e6ef0228b2d152c5f234caf6d3fe2d8433b17fbdfee728246f2a8c339936b6ba051a52b
|
||||
DIST kImageAnnotator-0.3.0.tar.gz 128019 BLAKE2B 412748b432e41e6bdc01aa7270cbb32342016423beeca537c92096641e06f9a82a0ce7d1779fb25aec51e6e4c9451778fc339bb3c82edcdc56657ac810859447 SHA512 0d9e4ab5bdef1554e3b476e0d0e8f2ad08387abd94d9167c2b4987b0857294618b7a6626640381dade10c7eedaa5dec9e449715b46437c1d9a044142c15b7617
|
||||
DIST kImageAnnotator-0.3.1.tar.gz 130708 BLAKE2B 5491ca5b3d11bfeeb92366d737251bfeb5a19631e37269d8edc4b9799d86f93ac276aa1edd34ed0aa27fff2b2fbfe07044150ef90b3dfe59d40f7669c547cce8 SHA512 5953b4083328a632c889b8a7bef0e61ef7dd9c6dfdeb9cf99fa248409116f2757ca63ff98e1695b46dfb24d818bf296c89abb7609af1b06034f814557e1c5af0
|
||||
|
||||
@@ -1,10 +0,0 @@
|
||||
--- a/src/annotations/undo/AddCommand.cpp
|
||||
+++ b/src/annotations/undo/AddCommand.cpp
|
||||
@@ -29,7 +29,6 @@ AddCommand::AddCommand(AbstractAnnotationItem *item, AnnotationArea *annotationA
|
||||
|
||||
AddCommand::~AddCommand()
|
||||
{
|
||||
- delete mItem;
|
||||
}
|
||||
|
||||
void AddCommand::undo()
|
||||
@@ -1,36 +0,0 @@
|
||||
From 94b08e1a3cef1d826ccae09a1287c2d5e327a293 Mon Sep 17 00:00:00 2001
|
||||
From: Dave Flogeras <dflogeras2@gmail.com>
|
||||
Date: Fri, 19 Jun 2020 09:23:29 -0300
|
||||
Subject: [PATCH] Include GNUInstallDirs before using variables that rely on
|
||||
it.
|
||||
|
||||
This was subtle because when building by hand, and running cmake
|
||||
multiple times, it seems to cache the variable. However when building
|
||||
for Gentoo in an ebuild, cmake makes one pass, and the
|
||||
CMAKE_INSTALL_DATAROOTDIR variable is empty. This results in the
|
||||
translation files going in the wrong place.
|
||||
---
|
||||
CMakeLists.txt | 3 ++-
|
||||
1 file changed, 2 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
||||
index 12ad227..5c14937 100644
|
||||
--- a/CMakeLists.txt
|
||||
+++ b/CMakeLists.txt
|
||||
@@ -11,6 +11,8 @@ set(CMAKE_AUTORCC ON)
|
||||
option(BUILD_TESTS "Build Unit Tests" OFF)
|
||||
option(BUILD_EXAMPLE "Build Example Application" ON)
|
||||
|
||||
+include(GNUInstallDirs)
|
||||
+
|
||||
if (WIN32)
|
||||
set(KIMAGEANNOTATOR_LANG_INSTAL_DIR "translations")
|
||||
elseif (APPLE)
|
||||
@@ -27,7 +29,6 @@ if (UNIX)
|
||||
find_package(X11 REQUIRED)
|
||||
endif ()
|
||||
|
||||
-include(GNUInstallDirs)
|
||||
include(FeatureSummary)
|
||||
|
||||
set(KCOLORPICKER_MIN_VERSION "0.1.4")
|
||||
@@ -22,10 +22,3 @@ RDEPEND="${DEPEND}"
|
||||
BDEPEND=""
|
||||
|
||||
S="${WORKDIR}/${MY_P}"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
eapply "${FILESDIR}"/fix-undo-command-delete-items-that-are-required.patch
|
||||
eapply "${FILESDIR}"/include-gnuinstalldirs-before-use.patch
|
||||
cmake_src_prepare
|
||||
}
|
||||
@@ -1,2 +1,2 @@
|
||||
DIST ksnip-1.6.2.tar.gz 221518 BLAKE2B a2e08b3dcfa448790a165a15e4e0c76771168d03756778b53ea79d7ebc3aad5efa50a18a6d4755a5c85ba3867e5d8e0c534af2cd0e7886db70ba407fb36185ff SHA512 2e40d12524a6a0d5bf321f7e5554a0a423e3fe7861118b6d6fc95e01e9558e63ce1519ed234ac514f3ade88d1d3261fb8f693e89d097059e1607f9bfd5227573
|
||||
DIST ksnip-1.7.0.tar.gz 335727 BLAKE2B 2b7aab75917dfe5a5a2cf77ea96c78d35c6483705999e1a0be6de0ae00aa3c4a1ea5b6ea3923fc5624fe13cba4133e180367db224b094f4b2625d8b53951c2ec SHA512 833a8c07cdb71dd3437686b1eb350f45caa70614114145901dd05b3db9b62bc83702b258e5f414306d779e0febeba8605b586fc57f55907dc9bbb50da5a08703
|
||||
DIST ksnip-1.7.1.tar.gz 340654 BLAKE2B 76f14b3a1b664e4877e19fb9b0e4620b20bb01f5c0d1e14671250a058f9e39170f385dd3aca53e9325de091c29c8bd17ae85127ec622cf751a387f6b09a5bbda SHA512 8d978fd4d5844427b041091e79f01e308ed9defbe393fc1ac72b4f5607c114f1c30ccb963c79ebe32559e58cb2c60aeaba7a288aee9d16f6ed6a637466396cd3
|
||||
|
||||
@@ -21,7 +21,7 @@ RDEPEND="
|
||||
dev-qt/qtprintsupport:5
|
||||
dev-qt/qtx11extras:5
|
||||
dev-qt/qtxml:5
|
||||
>=x11-libs/kimageannotator-0.3.0
|
||||
>=x11-libs/kimageannotator-0.3.1
|
||||
x11-libs/libxcb"
|
||||
BDEPEND=""
|
||||
|
||||
Reference in New Issue
Block a user