* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/lurch/
@ 2020-03-27 23:23 Sebastian Pipping
0 siblings, 0 replies; 10+ messages in thread
From: Sebastian Pipping @ 2020-03-27 23:23 UTC (permalink / raw
To: gentoo-commits
commit: 468bcbdbc7c8e25e21c6fe48d99fa47be42bca63
Author: Sebastian Pipping <sping <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 27 23:17:34 2020 +0000
Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
CommitDate: Fri Mar 27 23:22:30 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=468bcbdb
x11-plugins/lurch: New package
Closes: https://bugs.gentoo.org/615052
Signed-off-by: Sebastian Pipping <sping <AT> gentoo.org>
Package-Manager: Portage-2.3.92, Repoman-2.3.20
x11-plugins/lurch/Manifest | 1 +
x11-plugins/lurch/lurch-0.6.8.ebuild | 67 ++++++++++++++++++++++++++++++++++++
x11-plugins/lurch/metadata.xml | 8 +++++
3 files changed, 76 insertions(+)
diff --git a/x11-plugins/lurch/Manifest b/x11-plugins/lurch/Manifest
new file mode 100644
index 00000000000..124d5219be3
--- /dev/null
+++ b/x11-plugins/lurch/Manifest
@@ -0,0 +1 @@
+DIST lurch-0.6.8.tar.gz 398267 BLAKE2B 23211e82b80e26105f0d62510dc321abdd818eae21dd9f3e24f6ab01458748df64283acb99371a8ece34248f06e9e04edd35da30c771f45779474b3b43c3a53d SHA512 8b93523049d05a00f1d7286ec9d0d8d03c7ae46793ac72ea08c0d12cb5193324be4805fb6278d6c0f906d9c63db9d7ce6ca2a21442236df51e0ee0b48de6ef1d
diff --git a/x11-plugins/lurch/lurch-0.6.8.ebuild b/x11-plugins/lurch/lurch-0.6.8.ebuild
new file mode 100644
index 00000000000..cb4e4a97bac
--- /dev/null
+++ b/x11-plugins/lurch/lurch-0.6.8.ebuild
@@ -0,0 +1,67 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+CMAKE_MAKEFILE_GENERATOR=emake # since top-level Makefile expects a child Makefile
+
+inherit toolchain-funcs cmake-utils
+
+DESCRIPTION="OMEMO encryption for libpurple (XEP-0384)"
+HOMEPAGE="https://github.com/gkdr/lurch"
+SRC_URI="https://github.com/gkdr/lurch/releases/download/v${PV}/lurch-${PV}-src.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+# NOTE
+# - We cannot unbundle net-libs/libsignal-protocol-c
+# because upstream uses non-API/internal function
+# session_builder_process_pre_key_signal_message
+# - The build systems of axc (ex-libaxolotl)
+# at https://github.com/gkdr/axc and libomemo
+# at https://github.com/gkdr/libomemo build static
+# libraries only (*.a) so it is not clear when or
+# how to best unbundle them, either
+RDEPEND="
+ dev-db/sqlite
+ dev-libs/glib
+ dev-libs/libgcrypt:=
+ dev-libs/libxml2
+ dev-libs/mxml
+ net-im/pidgin:=
+ "
+DEPEND="
+ ${RDEPEND}
+ virtual/pkgconfig
+ "
+
+CMAKE_USE_DIR="${S}"/lib/axc/lib/libsignal-protocol-c
+BUILD_DIR="${CMAKE_USE_DIR}"/build
+
+src_configure() {
+ local mycmakeargs=(
+ -DBUILD_SHARED_LIBS=OFF # top-level Makefile expects .a file
+ -DCMAKE_C_FLAGS=-fPIC
+ )
+ cmake-utils_src_configure
+}
+
+src_compile() {
+ cmake-utils_src_compile
+
+ local makeargs=(
+ CC="$(tc-getCC)"
+ LIBGCRYPT_CONFIG="$(tc-getPROG LIBGCRYPT_CONFIG libgcrypt-config)"
+ PKG_CONFIG="$(tc-getPKG_CONFIG)"
+ XML2_CONFIG="$(tc-getPROG XML2_CONFIG xml2-config)"
+
+ CMAKE=/bin/true # to stop Makefile from calling CMake, once more
+ )
+ emake "${makeargs[@]}"
+}
+
+src_install() {
+ default # use top-level Makefile, not cmake-utils_src_install
+}
diff --git a/x11-plugins/lurch/metadata.xml b/x11-plugins/lurch/metadata.xml
new file mode 100644
index 00000000000..ab886b7f038
--- /dev/null
+++ b/x11-plugins/lurch/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM 'http://www.gentoo.org/dtd/metadata.dtd'>
+<pkgmetadata>
+ <maintainer type="person">
+ <email>sping@gentoo.org</email>
+ <name>Sebastian Pipping</name>
+ </maintainer>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/lurch/
@ 2020-12-03 16:02 Sebastian Pipping
0 siblings, 0 replies; 10+ messages in thread
From: Sebastian Pipping @ 2020-12-03 16:02 UTC (permalink / raw
To: gentoo-commits
commit: 6ba43559b8ffd133fd9ce598e832de9335d1169f
Author: Sebastian Pipping <sping <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 3 15:22:31 2020 +0000
Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
CommitDate: Thu Dec 3 16:02:11 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ba43559
x11-plugins/lurch: Upgrade bundled libomemo
This fixes communication with users of iOS Monal
Related: https://github.com/gkdr/libomemo/issues/24
Signed-off-by: Sebastian Pipping <sping <AT> gentoo.org>
Package-Manager: Portage-3.0.0, Repoman-2.3.23
x11-plugins/lurch/Manifest | 1 +
x11-plugins/lurch/lurch-0.6.8-r1.ebuild | 76 +++++++++++++++++++++++++++++++++
2 files changed, 77 insertions(+)
diff --git a/x11-plugins/lurch/Manifest b/x11-plugins/lurch/Manifest
index 124d5219be3..7bfc6cb7dff 100644
--- a/x11-plugins/lurch/Manifest
+++ b/x11-plugins/lurch/Manifest
@@ -1 +1,2 @@
+DIST libomemo-0.7.0.tar.gz 23678 BLAKE2B 91b57f6c93d5f777996687ea0648d996950bc893314e4e3ee02973c70165a9e533ab6980a420bd270d7a4acaa45da7cf83b401b69e2b305b017a3fbb42d5b4d2 SHA512 f9843a35958e4a7930ed9e9f4bef1e765bd51721d6e79d2c092bad86d26f092d22d1cdd4df1c4017b9434bb84c33e226985136d35dfcbcf9b915eb3cae862fa5
DIST lurch-0.6.8.tar.gz 398267 BLAKE2B 23211e82b80e26105f0d62510dc321abdd818eae21dd9f3e24f6ab01458748df64283acb99371a8ece34248f06e9e04edd35da30c771f45779474b3b43c3a53d SHA512 8b93523049d05a00f1d7286ec9d0d8d03c7ae46793ac72ea08c0d12cb5193324be4805fb6278d6c0f906d9c63db9d7ce6ca2a21442236df51e0ee0b48de6ef1d
diff --git a/x11-plugins/lurch/lurch-0.6.8-r1.ebuild b/x11-plugins/lurch/lurch-0.6.8-r1.ebuild
new file mode 100644
index 00000000000..67d6325288c
--- /dev/null
+++ b/x11-plugins/lurch/lurch-0.6.8-r1.ebuild
@@ -0,0 +1,76 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+CMAKE_MAKEFILE_GENERATOR=emake # since top-level Makefile expects a child Makefile
+
+inherit toolchain-funcs cmake-utils
+
+LIBOMEMO_PV=0.7.0
+DESCRIPTION="OMEMO encryption for libpurple (XEP-0384)"
+HOMEPAGE="https://github.com/gkdr/lurch"
+SRC_URI="https://github.com/gkdr/lurch/releases/download/v${PV}/lurch-${PV}-src.tar.gz -> ${P}.tar.gz
+ https://github.com/gkdr/libomemo/archive/v${LIBOMEMO_PV}.tar.gz -> libomemo-${LIBOMEMO_PV}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+# NOTE
+# - We cannot unbundle net-libs/libsignal-protocol-c
+# because upstream uses non-API/internal function
+# session_builder_process_pre_key_signal_message
+# - The build systems of axc (ex-libaxolotl)
+# at https://github.com/gkdr/axc and libomemo
+# at https://github.com/gkdr/libomemo build static
+# libraries only (*.a) so it is not clear when or
+# how to best unbundle them, either
+RDEPEND="
+ dev-db/sqlite
+ dev-libs/glib
+ dev-libs/libgcrypt:=
+ dev-libs/libxml2
+ dev-libs/mxml
+ net-im/pidgin:=
+ "
+DEPEND="
+ ${RDEPEND}
+ virtual/pkgconfig
+ "
+
+CMAKE_USE_DIR="${S}"/lib/axc/lib/libsignal-protocol-c
+BUILD_DIR="${CMAKE_USE_DIR}"/build
+
+src_prepare() {
+ # Upgrade outdated bundle of libomemo
+ rm -R lib/libomemo || die
+ mv "${WORKDIR}"/libomemo-${LIBOMEMO_PV} lib/libomemo || die
+ cmake-utils_src_prepare
+}
+
+src_configure() {
+ local mycmakeargs=(
+ -DBUILD_SHARED_LIBS=OFF # top-level Makefile expects .a file
+ -DCMAKE_C_FLAGS=-fPIC
+ )
+ cmake-utils_src_configure
+}
+
+src_compile() {
+ cmake-utils_src_compile
+
+ local makeargs=(
+ CC="$(tc-getCC)"
+ LIBGCRYPT_CONFIG="$(tc-getPROG LIBGCRYPT_CONFIG libgcrypt-config)"
+ PKG_CONFIG="$(tc-getPKG_CONFIG)"
+ XML2_CONFIG="$(tc-getPROG XML2_CONFIG xml2-config)"
+
+ CMAKE=/bin/true # to stop Makefile from calling CMake, once more
+ )
+ emake "${makeargs[@]}"
+}
+
+src_install() {
+ default # use top-level Makefile, not cmake-utils_src_install
+}
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/lurch/
@ 2020-12-06 8:14 Joonas Niilola
0 siblings, 0 replies; 10+ messages in thread
From: Joonas Niilola @ 2020-12-06 8:14 UTC (permalink / raw
To: gentoo-commits
commit: fd154c6d9d0386d2ed428d5735366ac1f6875cd1
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 6 08:13:41 2020 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Sun Dec 6 08:13:41 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd154c6d
x11-plugins/lurch: keyword x86 on 0.6.8-r2
Closes: https://bugs.gentoo.org/758668
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
x11-plugins/lurch/lurch-0.6.8-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/x11-plugins/lurch/lurch-0.6.8-r2.ebuild b/x11-plugins/lurch/lurch-0.6.8-r2.ebuild
index d0d3d5c728b..47b9bcf5495 100644
--- a/x11-plugins/lurch/lurch-0.6.8-r2.ebuild
+++ b/x11-plugins/lurch/lurch-0.6.8-r2.ebuild
@@ -16,7 +16,7 @@ SRC_URI="https://github.com/gkdr/lurch/releases/download/v${PV}/lurch-${PV}-src.
LICENSE="GPL-3"
SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 x86"
IUSE=""
# NOTE
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/lurch/
@ 2021-02-21 20:54 Sebastian Pipping
0 siblings, 0 replies; 10+ messages in thread
From: Sebastian Pipping @ 2021-02-21 20:54 UTC (permalink / raw
To: gentoo-commits
commit: a417ade1a93920d05acbbe4c0710a5f7cc8102c2
Author: Sebastian Pipping <sping <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 21 20:50:26 2021 +0000
Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
CommitDate: Sun Feb 21 20:54:33 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a417ade1
x11-plugins/lurch: 0.7.0
Signed-off-by: Sebastian Pipping <sping <AT> gentoo.org>
Package-Manager: Portage-3.0.14, Repoman-3.0.2
x11-plugins/lurch/Manifest | 1 +
x11-plugins/lurch/lurch-0.7.0.ebuild | 49 ++++++++++++++++++++++++++++++++++++
2 files changed, 50 insertions(+)
diff --git a/x11-plugins/lurch/Manifest b/x11-plugins/lurch/Manifest
index 04316110470..ffee016b68c 100644
--- a/x11-plugins/lurch/Manifest
+++ b/x11-plugins/lurch/Manifest
@@ -1,3 +1,4 @@
DIST axc-0.3.3.tar.gz 39497 BLAKE2B 7f13f2ee6bb98fecc3ff5ddb726e19d412d588613be50e6666e8bfdcf248e842b97c00cccbc19fef55c0df50053e0b80539f0573dfa7a54a8c88725735382bc6 SHA512 9fe494eb4a264a31c137a4f21e4a53358d55f6f6b3bd2fab0fbe43c0e85f2372127a2a85d00d2e308f3785b30cf8161de3f696aaf71c232f594ef3c54b8f6771
DIST libomemo-0.7.0.tar.gz 23678 BLAKE2B 91b57f6c93d5f777996687ea0648d996950bc893314e4e3ee02973c70165a9e533ab6980a420bd270d7a4acaa45da7cf83b401b69e2b305b017a3fbb42d5b4d2 SHA512 f9843a35958e4a7930ed9e9f4bef1e765bd51721d6e79d2c092bad86d26f092d22d1cdd4df1c4017b9434bb84c33e226985136d35dfcbcf9b915eb3cae862fa5
DIST lurch-0.6.8.tar.gz 398267 BLAKE2B 23211e82b80e26105f0d62510dc321abdd818eae21dd9f3e24f6ab01458748df64283acb99371a8ece34248f06e9e04edd35da30c771f45779474b3b43c3a53d SHA512 8b93523049d05a00f1d7286ec9d0d8d03c7ae46793ac72ea08c0d12cb5193324be4805fb6278d6c0f906d9c63db9d7ce6ca2a21442236df51e0ee0b48de6ef1d
+DIST lurch-0.7.0.tar.gz 66885 BLAKE2B 1a3cc1dbfd8f999b677b23d02952a3c28c922d438cfe81a3bfd3a03cc49723fcc4d52a549bfc7ecb45616a0c939b0f78a39f73a4439bc5337d4da656e9d42b11 SHA512 082f85d25fbcb184b7b6d827e1e6bac073ad46064a144ca24245164558ca9e0cdfcdc4187ac3da5f8738e0476e759e67801d0fd24598b31e2d86053f8af576b6
diff --git a/x11-plugins/lurch/lurch-0.7.0.ebuild b/x11-plugins/lurch/lurch-0.7.0.ebuild
new file mode 100644
index 00000000000..d2208cd2b12
--- /dev/null
+++ b/x11-plugins/lurch/lurch-0.7.0.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit toolchain-funcs
+
+DESCRIPTION="OMEMO encryption for libpurple (XEP-0384)"
+HOMEPAGE="https://github.com/gkdr/lurch"
+SRC_URI="https://github.com/gkdr/lurch/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3" # likely not GPL-3+, https://github.com/gkdr/lurch/issues/165
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+# NOTE: Some of these dependencies seem like leftovers in the build system
+# and can probably be dropped with lurch >=0.7.1
+# (https://github.com/gkdr/lurch/issues/164)
+RDEPEND="
+ dev-db/sqlite
+ dev-libs/glib
+ dev-libs/libgcrypt:=
+ dev-libs/libxml2
+ dev-libs/mxml
+ net-im/pidgin:=
+ net-libs/libaxc
+ net-libs/libomemo
+ >=net-libs/libsignal-protocol-c-2.3.2
+ "
+DEPEND="
+ ${RDEPEND}
+ virtual/pkgconfig
+ "
+
+src_prepare() {
+ rm -Rv lib/{axc,libomemo} || die # unbundle
+ default
+}
+
+src_compile() {
+ local makeargs=(
+ CC="$(tc-getCC)"
+ LIBGCRYPT_CONFIG="$(tc-getPROG LIBGCRYPT_CONFIG libgcrypt-config)"
+ PKG_CONFIG="$(tc-getPKG_CONFIG)"
+ XML2_CONFIG="$(tc-getPROG XML2_CONFIG xml2-config)"
+ )
+ emake "${makeargs[@]}"
+}
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/lurch/
@ 2021-02-21 20:54 Sebastian Pipping
0 siblings, 0 replies; 10+ messages in thread
From: Sebastian Pipping @ 2021-02-21 20:54 UTC (permalink / raw
To: gentoo-commits
commit: 76c8ef066cfbecba3dbc4f1e518a0367814da09a
Author: Sebastian Pipping <sping <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 21 20:52:22 2021 +0000
Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
CommitDate: Sun Feb 21 20:54:33 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76c8ef06
x11-plugins/lurch: Drop old
Signed-off-by: Sebastian Pipping <sping <AT> gentoo.org>
Package-Manager: Portage-3.0.14, Repoman-3.0.2
x11-plugins/lurch/lurch-0.6.8-r1.ebuild | 76 ---------------------------------
x11-plugins/lurch/lurch-0.6.8.ebuild | 67 -----------------------------
2 files changed, 143 deletions(-)
diff --git a/x11-plugins/lurch/lurch-0.6.8-r1.ebuild b/x11-plugins/lurch/lurch-0.6.8-r1.ebuild
deleted file mode 100644
index 67d6325288c..00000000000
--- a/x11-plugins/lurch/lurch-0.6.8-r1.ebuild
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-CMAKE_MAKEFILE_GENERATOR=emake # since top-level Makefile expects a child Makefile
-
-inherit toolchain-funcs cmake-utils
-
-LIBOMEMO_PV=0.7.0
-DESCRIPTION="OMEMO encryption for libpurple (XEP-0384)"
-HOMEPAGE="https://github.com/gkdr/lurch"
-SRC_URI="https://github.com/gkdr/lurch/releases/download/v${PV}/lurch-${PV}-src.tar.gz -> ${P}.tar.gz
- https://github.com/gkdr/libomemo/archive/v${LIBOMEMO_PV}.tar.gz -> libomemo-${LIBOMEMO_PV}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-# NOTE
-# - We cannot unbundle net-libs/libsignal-protocol-c
-# because upstream uses non-API/internal function
-# session_builder_process_pre_key_signal_message
-# - The build systems of axc (ex-libaxolotl)
-# at https://github.com/gkdr/axc and libomemo
-# at https://github.com/gkdr/libomemo build static
-# libraries only (*.a) so it is not clear when or
-# how to best unbundle them, either
-RDEPEND="
- dev-db/sqlite
- dev-libs/glib
- dev-libs/libgcrypt:=
- dev-libs/libxml2
- dev-libs/mxml
- net-im/pidgin:=
- "
-DEPEND="
- ${RDEPEND}
- virtual/pkgconfig
- "
-
-CMAKE_USE_DIR="${S}"/lib/axc/lib/libsignal-protocol-c
-BUILD_DIR="${CMAKE_USE_DIR}"/build
-
-src_prepare() {
- # Upgrade outdated bundle of libomemo
- rm -R lib/libomemo || die
- mv "${WORKDIR}"/libomemo-${LIBOMEMO_PV} lib/libomemo || die
- cmake-utils_src_prepare
-}
-
-src_configure() {
- local mycmakeargs=(
- -DBUILD_SHARED_LIBS=OFF # top-level Makefile expects .a file
- -DCMAKE_C_FLAGS=-fPIC
- )
- cmake-utils_src_configure
-}
-
-src_compile() {
- cmake-utils_src_compile
-
- local makeargs=(
- CC="$(tc-getCC)"
- LIBGCRYPT_CONFIG="$(tc-getPROG LIBGCRYPT_CONFIG libgcrypt-config)"
- PKG_CONFIG="$(tc-getPKG_CONFIG)"
- XML2_CONFIG="$(tc-getPROG XML2_CONFIG xml2-config)"
-
- CMAKE=/bin/true # to stop Makefile from calling CMake, once more
- )
- emake "${makeargs[@]}"
-}
-
-src_install() {
- default # use top-level Makefile, not cmake-utils_src_install
-}
diff --git a/x11-plugins/lurch/lurch-0.6.8.ebuild b/x11-plugins/lurch/lurch-0.6.8.ebuild
deleted file mode 100644
index cb4e4a97bac..00000000000
--- a/x11-plugins/lurch/lurch-0.6.8.ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-CMAKE_MAKEFILE_GENERATOR=emake # since top-level Makefile expects a child Makefile
-
-inherit toolchain-funcs cmake-utils
-
-DESCRIPTION="OMEMO encryption for libpurple (XEP-0384)"
-HOMEPAGE="https://github.com/gkdr/lurch"
-SRC_URI="https://github.com/gkdr/lurch/releases/download/v${PV}/lurch-${PV}-src.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-# NOTE
-# - We cannot unbundle net-libs/libsignal-protocol-c
-# because upstream uses non-API/internal function
-# session_builder_process_pre_key_signal_message
-# - The build systems of axc (ex-libaxolotl)
-# at https://github.com/gkdr/axc and libomemo
-# at https://github.com/gkdr/libomemo build static
-# libraries only (*.a) so it is not clear when or
-# how to best unbundle them, either
-RDEPEND="
- dev-db/sqlite
- dev-libs/glib
- dev-libs/libgcrypt:=
- dev-libs/libxml2
- dev-libs/mxml
- net-im/pidgin:=
- "
-DEPEND="
- ${RDEPEND}
- virtual/pkgconfig
- "
-
-CMAKE_USE_DIR="${S}"/lib/axc/lib/libsignal-protocol-c
-BUILD_DIR="${CMAKE_USE_DIR}"/build
-
-src_configure() {
- local mycmakeargs=(
- -DBUILD_SHARED_LIBS=OFF # top-level Makefile expects .a file
- -DCMAKE_C_FLAGS=-fPIC
- )
- cmake-utils_src_configure
-}
-
-src_compile() {
- cmake-utils_src_compile
-
- local makeargs=(
- CC="$(tc-getCC)"
- LIBGCRYPT_CONFIG="$(tc-getPROG LIBGCRYPT_CONFIG libgcrypt-config)"
- PKG_CONFIG="$(tc-getPKG_CONFIG)"
- XML2_CONFIG="$(tc-getPROG XML2_CONFIG xml2-config)"
-
- CMAKE=/bin/true # to stop Makefile from calling CMake, once more
- )
- emake "${makeargs[@]}"
-}
-
-src_install() {
- default # use top-level Makefile, not cmake-utils_src_install
-}
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/lurch/
@ 2021-02-22 21:09 Sebastian Pipping
0 siblings, 0 replies; 10+ messages in thread
From: Sebastian Pipping @ 2021-02-22 21:09 UTC (permalink / raw
To: gentoo-commits
commit: e992d85259df64b44aa3e1b0688992fc3ba717be
Author: Sebastian Pipping <sping <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 22 20:51:59 2021 +0000
Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
CommitDate: Mon Feb 22 20:51:59 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e992d852
x11-plugins/lurch: Fix tests
Closes: https://bugs.gentoo.org/772026
Signed-off-by: Sebastian Pipping <sping <AT> gentoo.org>
Package-Manager: Portage-3.0.14, Repoman-3.0.2
x11-plugins/lurch/lurch-0.7.0.ebuild | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/x11-plugins/lurch/lurch-0.7.0.ebuild b/x11-plugins/lurch/lurch-0.7.0.ebuild
index d2208cd2b12..12f3106c5cc 100644
--- a/x11-plugins/lurch/lurch-0.7.0.ebuild
+++ b/x11-plugins/lurch/lurch-0.7.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/gkdr/lurch/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3" # likely not GPL-3+, https://github.com/gkdr/lurch/issues/165
SLOT="0"
KEYWORDS="~amd64 ~x86"
-IUSE=""
+IUSE="test"
# NOTE: Some of these dependencies seem like leftovers in the build system
# and can probably be dropped with lurch >=0.7.1
@@ -31,8 +31,11 @@ RDEPEND="
DEPEND="
${RDEPEND}
virtual/pkgconfig
+ test? ( dev-util/cmocka )
"
+RESTRICT="!test? ( test )"
+
src_prepare() {
rm -Rv lib/{axc,libomemo} || die # unbundle
default
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/lurch/
@ 2021-04-03 22:15 Sam James
0 siblings, 0 replies; 10+ messages in thread
From: Sam James @ 2021-04-03 22:15 UTC (permalink / raw
To: gentoo-commits
commit: 4a9a84ec0f8d2c36995b2e9e6db149a50463ffc2
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 3 22:14:51 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Apr 3 22:14:51 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a9a84ec
x11-plugins/lurch: Stabilize 0.7.0 x86, #779817
Signed-off-by: Sam James <sam <AT> gentoo.org>
x11-plugins/lurch/lurch-0.7.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/x11-plugins/lurch/lurch-0.7.0.ebuild b/x11-plugins/lurch/lurch-0.7.0.ebuild
index fd2c8d05193..dbdcaa1fc95 100644
--- a/x11-plugins/lurch/lurch-0.7.0.ebuild
+++ b/x11-plugins/lurch/lurch-0.7.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/gkdr/lurch/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3" # likely not GPL-3+, https://github.com/gkdr/lurch/issues/165
SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
IUSE="test"
# NOTE: Some of these dependencies seem like leftovers in the build system
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/lurch/
@ 2021-04-03 22:15 Sam James
0 siblings, 0 replies; 10+ messages in thread
From: Sam James @ 2021-04-03 22:15 UTC (permalink / raw
To: gentoo-commits
commit: 8bb696e21870afb3b76639713bf455acb03d1ab8
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 3 22:14:32 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Apr 3 22:14:32 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8bb696e2
x11-plugins/lurch: Stabilize 0.7.0 amd64, #779817
Signed-off-by: Sam James <sam <AT> gentoo.org>
x11-plugins/lurch/lurch-0.7.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/x11-plugins/lurch/lurch-0.7.0.ebuild b/x11-plugins/lurch/lurch-0.7.0.ebuild
index 12f3106c5cc..fd2c8d05193 100644
--- a/x11-plugins/lurch/lurch-0.7.0.ebuild
+++ b/x11-plugins/lurch/lurch-0.7.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/gkdr/lurch/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3" # likely not GPL-3+, https://github.com/gkdr/lurch/issues/165
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
IUSE="test"
# NOTE: Some of these dependencies seem like leftovers in the build system
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/lurch/
@ 2022-11-29 1:44 Sebastian Pipping
0 siblings, 0 replies; 10+ messages in thread
From: Sebastian Pipping @ 2022-11-29 1:44 UTC (permalink / raw
To: gentoo-commits
commit: f4607f4b6eca40c8a4e779f88da74e2b0384d824
Author: Sebastian Pipping <sping <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 29 01:43:13 2022 +0000
Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
CommitDate: Tue Nov 29 01:43:13 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4607f4b
x11-plugins/lurch: MissingRemoteId
Signed-off-by: Sebastian Pipping <sping <AT> gentoo.org>
x11-plugins/lurch/metadata.xml | 3 +++
1 file changed, 3 insertions(+)
diff --git a/x11-plugins/lurch/metadata.xml b/x11-plugins/lurch/metadata.xml
index 6a22e9e318bb..3f7c99e12d7c 100644
--- a/x11-plugins/lurch/metadata.xml
+++ b/x11-plugins/lurch/metadata.xml
@@ -5,4 +5,7 @@
<email>sping@gentoo.org</email>
<name>Sebastian Pipping</name>
</maintainer>
+ <upstream>
+ <remote-id type="github">gkdr/lurch</remote-id>
+ </upstream>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/lurch/
@ 2024-04-18 19:48 Conrad Kostecki
0 siblings, 0 replies; 10+ messages in thread
From: Conrad Kostecki @ 2024-04-18 19:48 UTC (permalink / raw
To: gentoo-commits
commit: 77459520f80df108f55b980d530f77ecf9d98a2d
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 18 19:47:21 2024 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Thu Apr 18 19:48:04 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77459520
x11-plugins/lurch: update deps for mxml
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
x11-plugins/lurch/{lurch-0.6.8-r2.ebuild => lurch-0.6.8-r3.ebuild} | 5 ++---
x11-plugins/lurch/{lurch-0.7.0.ebuild => lurch-0.7.0-r1.ebuild} | 4 ++--
2 files changed, 4 insertions(+), 5 deletions(-)
diff --git a/x11-plugins/lurch/lurch-0.6.8-r2.ebuild b/x11-plugins/lurch/lurch-0.6.8-r3.ebuild
similarity index 97%
rename from x11-plugins/lurch/lurch-0.6.8-r2.ebuild
rename to x11-plugins/lurch/lurch-0.6.8-r3.ebuild
index 47b9bcf5495b..584d96b3834b 100644
--- a/x11-plugins/lurch/lurch-0.6.8-r2.ebuild
+++ b/x11-plugins/lurch/lurch-0.6.8-r3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -17,7 +17,6 @@ SRC_URI="https://github.com/gkdr/lurch/releases/download/v${PV}/lurch-${PV}-src.
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 x86"
-IUSE=""
# NOTE
# The build systems of axc (ex-libaxolotl)
@@ -35,7 +34,7 @@ RDEPEND="
dev-libs/glib
dev-libs/libgcrypt:=
dev-libs/libxml2
- dev-libs/mxml
+ dev-libs/mxml:0
net-im/pidgin:=
>=net-libs/libsignal-protocol-c-2.3.2
"
diff --git a/x11-plugins/lurch/lurch-0.7.0.ebuild b/x11-plugins/lurch/lurch-0.7.0-r1.ebuild
similarity index 95%
rename from x11-plugins/lurch/lurch-0.7.0.ebuild
rename to x11-plugins/lurch/lurch-0.7.0-r1.ebuild
index dbdcaa1fc957..f2f240c868f0 100644
--- a/x11-plugins/lurch/lurch-0.7.0.ebuild
+++ b/x11-plugins/lurch/lurch-0.7.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -22,7 +22,7 @@ RDEPEND="
dev-libs/glib
dev-libs/libgcrypt:=
dev-libs/libxml2
- dev-libs/mxml
+ dev-libs/mxml:0
net-im/pidgin:=
net-libs/libaxc
net-libs/libomemo
^ permalink raw reply related [flat|nested] 10+ messages in thread
end of thread, other threads:[~2024-04-18 19:48 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-04-03 22:15 [gentoo-commits] repo/gentoo:master commit in: x11-plugins/lurch/ Sam James
-- strict thread matches above, loose matches on Subject: below --
2024-04-18 19:48 Conrad Kostecki
2022-11-29 1:44 Sebastian Pipping
2021-04-03 22:15 Sam James
2021-02-22 21:09 Sebastian Pipping
2021-02-21 20:54 Sebastian Pipping
2021-02-21 20:54 Sebastian Pipping
2020-12-06 8:14 Joonas Niilola
2020-12-03 16:02 Sebastian Pipping
2020-03-27 23:23 Sebastian Pipping
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox