public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libomemo/
@ 2021-02-21 23:49 Sebastian Pipping
  0 siblings, 0 replies; 13+ messages in thread
From: Sebastian Pipping @ 2021-02-21 23:49 UTC (permalink / raw
  To: gentoo-commits

commit:     e5b0261c5a2f4225c909cdcb5268ff55ffebc447
Author:     Sebastian Pipping <sping <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 21 23:48:04 2021 +0000
Commit:     Sebastian Pipping <sping <AT> gentoo <DOT> org>
CommitDate: Sun Feb 21 23:49:18 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5b0261c

net-libs/libomemo: Add flag static-libs

Closes: https://bugs.gentoo.org/771993
Signed-off-by: Sebastian Pipping <sping <AT> gentoo.org>
Package-Manager: Portage-3.0.14, Repoman-3.0.2

 .../libomemo/{libomemo-0.7.1.ebuild => libomemo-0.7.1-r1.ebuild}    | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/net-libs/libomemo/libomemo-0.7.1.ebuild b/net-libs/libomemo/libomemo-0.7.1-r1.ebuild
similarity index 89%
rename from net-libs/libomemo/libomemo-0.7.1.ebuild
rename to net-libs/libomemo/libomemo-0.7.1-r1.ebuild
index 3e2871fed15..8a2cf69b5d4 100644
--- a/net-libs/libomemo/libomemo-0.7.1.ebuild
+++ b/net-libs/libomemo/libomemo-0.7.1-r1.ebuild
@@ -10,7 +10,7 @@ SRC_URI="https://github.com/gkdr/libomemo/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE=""
+IUSE="static-libs"
 
 RDEPEND="
 	dev-db/sqlite
@@ -43,4 +43,8 @@ src_install() {
 	fi
 
 	einstalldocs
+
+	if ! use static-libs ; then
+		rm "${D}/usr/${libdir}/libomemo.a" || die
+	fi
 }


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/libomemo/
@ 2021-02-22 21:09 Sebastian Pipping
  0 siblings, 0 replies; 13+ messages in thread
From: Sebastian Pipping @ 2021-02-22 21:09 UTC (permalink / raw
  To: gentoo-commits

commit:     ddd573d5ec6a8e0c9ed86160bd01dabf739dae03
Author:     Sebastian Pipping <sping <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 22 20:48:18 2021 +0000
Commit:     Sebastian Pipping <sping <AT> gentoo <DOT> org>
CommitDate: Mon Feb 22 20:48:18 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ddd573d5

net-libs/libomemo: Fix tests

Closes: https://bugs.gentoo.org/772029
Signed-off-by: Sebastian Pipping <sping <AT> gentoo.org>
Package-Manager: Portage-3.0.14, Repoman-3.0.2

 net-libs/libomemo/libomemo-0.7.1-r1.ebuild | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/net-libs/libomemo/libomemo-0.7.1-r1.ebuild b/net-libs/libomemo/libomemo-0.7.1-r1.ebuild
index 8a2cf69b5d4..b600dd64054 100644
--- a/net-libs/libomemo/libomemo-0.7.1-r1.ebuild
+++ b/net-libs/libomemo/libomemo-0.7.1-r1.ebuild
@@ -10,7 +10,7 @@ SRC_URI="https://github.com/gkdr/libomemo/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="static-libs"
+IUSE="static-libs test"
 
 RDEPEND="
 	dev-db/sqlite
@@ -21,8 +21,11 @@ RDEPEND="
 DEPEND="
 	${RDEPEND}
 	virtual/pkgconfig
+	test? ( dev-util/cmocka )
 	"
 
+RESTRICT="!test? ( test )"
+
 PATCHES=(
 	"${FILESDIR}"/${P}-so-symlinks.patch
 )


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/libomemo/
@ 2021-02-22 21:09 Sebastian Pipping
  0 siblings, 0 replies; 13+ messages in thread
From: Sebastian Pipping @ 2021-02-22 21:09 UTC (permalink / raw
  To: gentoo-commits

commit:     3d7820a27516c5860a8d0eecda10e6fce659dc82
Author:     Sebastian Pipping <sping <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 22 21:00:42 2021 +0000
Commit:     Sebastian Pipping <sping <AT> gentoo <DOT> org>
CommitDate: Mon Feb 22 21:01:30 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d7820a2

net-libs/libomemo: Fix pkg-config libdir for amd64

Signed-off-by: Sebastian Pipping <sping <AT> gentoo.org>
Package-Manager: Portage-3.0.14, Repoman-3.0.2

 .../libomemo/{libomemo-0.7.1-r1.ebuild => libomemo-0.7.1-r2.ebuild}     | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/net-libs/libomemo/libomemo-0.7.1-r1.ebuild b/net-libs/libomemo/libomemo-0.7.1-r2.ebuild
similarity index 89%
rename from net-libs/libomemo/libomemo-0.7.1-r1.ebuild
rename to net-libs/libomemo/libomemo-0.7.1-r2.ebuild
index b600dd64054..2350a7e5f4d 100644
--- a/net-libs/libomemo/libomemo-0.7.1-r1.ebuild
+++ b/net-libs/libomemo/libomemo-0.7.1-r2.ebuild
@@ -43,6 +43,8 @@ src_install() {
 	local libdir="$(get_libdir)"
 	if [[ ${libdir} != lib ]]; then
 		mv "${D}"/usr/{lib,${libdir}} || die
+		sed "s|^libdir=.*|libdir=\${prefix}/${libdir}|" \
+				-i "${D}/usr/${libdir}/pkgconfig/libomemo.pc" || die
 	fi
 
 	einstalldocs


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/libomemo/
@ 2021-04-03 22:15 Sam James
  0 siblings, 0 replies; 13+ messages in thread
From: Sam James @ 2021-04-03 22:15 UTC (permalink / raw
  To: gentoo-commits

commit:     dc0a5d1292429a562b8d745aef583dbe845b6ab5
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Apr  3 22:14:30 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Apr  3 22:14:30 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc0a5d12

net-libs/libomemo: Stabilize 0.7.1-r2 amd64, #779817

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-libs/libomemo/libomemo-0.7.1-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libomemo/libomemo-0.7.1-r2.ebuild b/net-libs/libomemo/libomemo-0.7.1-r2.ebuild
index 2350a7e5f4d..4cc1bdb184c 100644
--- a/net-libs/libomemo/libomemo-0.7.1-r2.ebuild
+++ b/net-libs/libomemo/libomemo-0.7.1-r2.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://github.com/gkdr/libomemo/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="static-libs test"
 
 RDEPEND="


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/libomemo/
@ 2021-04-03 22:15 Sam James
  0 siblings, 0 replies; 13+ messages in thread
From: Sam James @ 2021-04-03 22:15 UTC (permalink / raw
  To: gentoo-commits

commit:     1493236f3bd03577a6a4128d9a4e3123adc7b21d
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Apr  3 22:14:49 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Apr  3 22:14:49 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1493236f

net-libs/libomemo: Stabilize 0.7.1-r2 x86, #779817

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-libs/libomemo/libomemo-0.7.1-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libomemo/libomemo-0.7.1-r2.ebuild b/net-libs/libomemo/libomemo-0.7.1-r2.ebuild
index 4cc1bdb184c..38d49c0e398 100644
--- a/net-libs/libomemo/libomemo-0.7.1-r2.ebuild
+++ b/net-libs/libomemo/libomemo-0.7.1-r2.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://github.com/gkdr/libomemo/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="static-libs test"
 
 RDEPEND="


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/libomemo/
@ 2022-02-15  1:59 Sebastian Pipping
  0 siblings, 0 replies; 13+ messages in thread
From: Sebastian Pipping @ 2022-02-15  1:59 UTC (permalink / raw
  To: gentoo-commits

commit:     e4d887b2d811b34fc17ca3d641be942a736509f2
Author:     Sebastian Pipping <sping <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 15 01:56:14 2022 +0000
Commit:     Sebastian Pipping <sping <AT> gentoo <DOT> org>
CommitDate: Tue Feb 15 01:56:14 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4d887b2

net-libs/libomemo: 0.8.0

Signed-off-by: Sebastian Pipping <sping <AT> gentoo.org>
Package-Manager: Portage-3.0.30, Repoman-3.0.3

 net-libs/libomemo/Manifest              |  1 +
 net-libs/libomemo/libomemo-0.8.0.ebuild | 51 +++++++++++++++++++++++++++++++++
 2 files changed, 52 insertions(+)

diff --git a/net-libs/libomemo/Manifest b/net-libs/libomemo/Manifest
index 910b73b72493..708dbeb43cff 100644
--- a/net-libs/libomemo/Manifest
+++ b/net-libs/libomemo/Manifest
@@ -1 +1,2 @@
 DIST libomemo-0.7.1.tar.gz 23770 BLAKE2B a3909650e399075f62026bd048a667a276a6cd7197ac18ddf9e3c12f57e5fd9cb2f5532ba69d0836af87e1415a5ffdc1746cf90a596dcf255265a64e921f039d SHA512 e5769dee4db7be246853e47e29ded9eefad2f62422951ce5dd0c1acee3bb92131c0423f09bc716be0f55fb02c747f07a6d5b2c656bdfeee0ee148252c51a1050
+DIST libomemo-0.8.0.tar.gz 25743 BLAKE2B 9b13aaaa21f16425fcecf963e187c5b686986e6bb01255c78042ea64e48d2c75a06729d1ad6e6b26d62d191e7d99305b7a8f1e07078221c6d14a12f587bf0743 SHA512 ff90de81928754f56bd2c6f3fcc83c13bb87d346e9bbedd6327bec33aab61a79061a709d541082723840205eb631b1a5493a43a5824e9e87e257d370692a606b

diff --git a/net-libs/libomemo/libomemo-0.8.0.ebuild b/net-libs/libomemo/libomemo-0.8.0.ebuild
new file mode 100644
index 000000000000..14c96fe495e2
--- /dev/null
+++ b/net-libs/libomemo/libomemo-0.8.0.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Implementation of OMEMO (XEP-0384) in C"
+HOMEPAGE="https://github.com/gkdr/libomemo"
+SRC_URI="https://github.com/gkdr/libomemo/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="static-libs test"
+
+RDEPEND="
+	dev-db/sqlite
+	dev-libs/glib
+	dev-libs/libgcrypt
+	dev-libs/mxml
+	"
+DEPEND="
+	${RDEPEND}
+	virtual/pkgconfig
+	test? ( dev-util/cmocka )
+	"
+
+RESTRICT="!test? ( test )"
+
+DOCS=( CHANGELOG.md README.md )
+
+src_compile() {
+	emake PREFIX=/usr
+}
+
+src_install() {
+	emake DESTDIR="${D}" PREFIX=/usr install
+
+	# Respect libdir other than /usr/lib, e.g. /usr/lib64
+	local libdir="$(get_libdir)"
+	if [[ ${libdir} != lib ]]; then
+		mv "${D}"/usr/{lib,${libdir}} || die
+		sed "s|^libdir=.*|libdir=\${prefix}/${libdir}|" \
+				-i "${D}/usr/${libdir}/pkgconfig/libomemo.pc" || die
+	fi
+
+	einstalldocs
+
+	if ! use static-libs ; then
+		rm "${D}/usr/${libdir}/libomemo.a" || die
+	fi
+}


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/libomemo/
@ 2022-04-10 21:49 Sebastian Pipping
  0 siblings, 0 replies; 13+ messages in thread
From: Sebastian Pipping @ 2022-04-10 21:49 UTC (permalink / raw
  To: gentoo-commits

commit:     63810c7074d2e992fc53f4789a61dbcc36426f7f
Author:     Sebastian Pipping <sping <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 10 21:46:38 2022 +0000
Commit:     Sebastian Pipping <sping <AT> gentoo <DOT> org>
CommitDate: Sun Apr 10 21:49:02 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63810c70

net-libs/libomemo: 0.8.1

Signed-off-by: Sebastian Pipping <sping <AT> gentoo.org>
Package-Manager: Portage-3.0.30, Repoman-3.0.3

 net-libs/libomemo/Manifest              |  1 +
 net-libs/libomemo/libomemo-0.8.1.ebuild | 31 +++++++++++++++++++++++++++++++
 2 files changed, 32 insertions(+)

diff --git a/net-libs/libomemo/Manifest b/net-libs/libomemo/Manifest
index 708dbeb43cff..5ca884943e14 100644
--- a/net-libs/libomemo/Manifest
+++ b/net-libs/libomemo/Manifest
@@ -1,2 +1,3 @@
 DIST libomemo-0.7.1.tar.gz 23770 BLAKE2B a3909650e399075f62026bd048a667a276a6cd7197ac18ddf9e3c12f57e5fd9cb2f5532ba69d0836af87e1415a5ffdc1746cf90a596dcf255265a64e921f039d SHA512 e5769dee4db7be246853e47e29ded9eefad2f62422951ce5dd0c1acee3bb92131c0423f09bc716be0f55fb02c747f07a6d5b2c656bdfeee0ee148252c51a1050
 DIST libomemo-0.8.0.tar.gz 25743 BLAKE2B 9b13aaaa21f16425fcecf963e187c5b686986e6bb01255c78042ea64e48d2c75a06729d1ad6e6b26d62d191e7d99305b7a8f1e07078221c6d14a12f587bf0743 SHA512 ff90de81928754f56bd2c6f3fcc83c13bb87d346e9bbedd6327bec33aab61a79061a709d541082723840205eb631b1a5493a43a5824e9e87e257d370692a606b
+DIST libomemo-0.8.1.tar.gz 28648 BLAKE2B b75ad298946dff680705ba0927293ea30cb8bf616a417c6584cef9f84e0894c5581462782a4b1003bf9e530695eea10bba9f37ae94e957a0008a35c862f17f62 SHA512 452c7ff9eb809de37df24bd0857c30c1e1ed1d4638c8338bb101f6d5a31be700f174f4fe65fb8ccd5358a674f8397a0eb54d8e03abfdce57cea60bcd4959f40a

diff --git a/net-libs/libomemo/libomemo-0.8.1.ebuild b/net-libs/libomemo/libomemo-0.8.1.ebuild
new file mode 100644
index 000000000000..ba4a9ee43a58
--- /dev/null
+++ b/net-libs/libomemo/libomemo-0.8.1.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake
+
+DESCRIPTION="Implementation of OMEMO (XEP-0384) in C"
+HOMEPAGE="https://github.com/gkdr/libomemo"
+SRC_URI="https://github.com/gkdr/libomemo/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND="
+	dev-db/sqlite
+	dev-libs/glib
+	dev-libs/libgcrypt
+	dev-libs/mxml
+	"
+DEPEND="
+	${RDEPEND}
+	virtual/pkgconfig
+	test? ( dev-util/cmocka )
+	"
+
+RESTRICT="!test? ( test )"
+
+DOCS=( CHANGELOG.md README.md )


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/libomemo/
@ 2022-04-11 18:58 Sebastian Pipping
  0 siblings, 0 replies; 13+ messages in thread
From: Sebastian Pipping @ 2022-04-11 18:58 UTC (permalink / raw
  To: gentoo-commits

commit:     ac39fc8141126f2eb27c9fe4d052007b97219109
Author:     Sebastian Pipping <sping <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 11 18:57:06 2022 +0000
Commit:     Sebastian Pipping <sping <AT> gentoo <DOT> org>
CommitDate: Mon Apr 11 18:57:56 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac39fc81

net-libs/libomemo: Make 0.8.1 USE=-test work without dev-util/cmocka

Closes: https://bugs.gentoo.org/837827
Signed-off-by: Sebastian Pipping <sping <AT> gentoo.org>
Package-Manager: Portage-3.0.30, Repoman-3.0.3

 net-libs/libomemo/libomemo-0.8.1.ebuild | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/net-libs/libomemo/libomemo-0.8.1.ebuild b/net-libs/libomemo/libomemo-0.8.1.ebuild
index ba4a9ee43a58..5871eea1c6cb 100644
--- a/net-libs/libomemo/libomemo-0.8.1.ebuild
+++ b/net-libs/libomemo/libomemo-0.8.1.ebuild
@@ -29,3 +29,10 @@ DEPEND="
 RESTRICT="!test? ( test )"
 
 DOCS=( CHANGELOG.md README.md )
+
+src_configure() {
+	local mycmakeargs=(
+		-DOMEMO_WITH_TESTS=$(usex test)
+	)
+	cmake_src_configure
+}


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/libomemo/
@ 2022-11-29  1:18 Sebastian Pipping
  0 siblings, 0 replies; 13+ messages in thread
From: Sebastian Pipping @ 2022-11-29  1:18 UTC (permalink / raw
  To: gentoo-commits

commit:     d2cee130155aac3dd5337281d157eddde8f04f4d
Author:     Sebastian Pipping <sping <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 29 01:08:12 2022 +0000
Commit:     Sebastian Pipping <sping <AT> gentoo <DOT> org>
CommitDate: Tue Nov 29 01:08:12 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2cee130

net-libs/libomemo: MissingRemoteId

Signed-off-by: Sebastian Pipping <sping <AT> gentoo.org>

 net-libs/libomemo/metadata.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/net-libs/libomemo/metadata.xml b/net-libs/libomemo/metadata.xml
index 6a22e9e318bb..5b29f2b47b16 100644
--- a/net-libs/libomemo/metadata.xml
+++ b/net-libs/libomemo/metadata.xml
@@ -5,4 +5,7 @@
 		<email>sping@gentoo.org</email>
 		<name>Sebastian Pipping</name>
 	</maintainer>
+	<upstream>
+		<remote-id type="github">gkdr/libomemo</remote-id>
+	</upstream>
 </pkgmetadata>


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/libomemo/
@ 2022-12-20 23:57 Sam James
  0 siblings, 0 replies; 13+ messages in thread
From: Sam James @ 2022-12-20 23:57 UTC (permalink / raw
  To: gentoo-commits

commit:     1d407f6746ef7786835733c35c69c44d050cf91c
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 20 23:56:52 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Dec 20 23:56:52 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d407f67

net-libs/libomemo: Stabilize 0.8.1 x86, #887525

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-libs/libomemo/libomemo-0.8.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libomemo/libomemo-0.8.1.ebuild b/net-libs/libomemo/libomemo-0.8.1.ebuild
index 5871eea1c6cb..a2acc9f85875 100644
--- a/net-libs/libomemo/libomemo-0.8.1.ebuild
+++ b/net-libs/libomemo/libomemo-0.8.1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/gkdr/libomemo/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE="test"
 
 RDEPEND="


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/libomemo/
@ 2022-12-20 23:57 Sam James
  0 siblings, 0 replies; 13+ messages in thread
From: Sam James @ 2022-12-20 23:57 UTC (permalink / raw
  To: gentoo-commits

commit:     b782ac134516584cacecfdb6cc1d7e1a5299bba5
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 20 23:56:53 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Dec 20 23:56:53 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b782ac13

net-libs/libomemo: Stabilize 0.8.1 amd64, #887525

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-libs/libomemo/libomemo-0.8.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libomemo/libomemo-0.8.1.ebuild b/net-libs/libomemo/libomemo-0.8.1.ebuild
index a2acc9f85875..18729549f129 100644
--- a/net-libs/libomemo/libomemo-0.8.1.ebuild
+++ b/net-libs/libomemo/libomemo-0.8.1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/gkdr/libomemo/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 IUSE="test"
 
 RDEPEND="


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/libomemo/
@ 2022-12-24 14:49 Andreas Sturmlechner
  0 siblings, 0 replies; 13+ messages in thread
From: Andreas Sturmlechner @ 2022-12-24 14:49 UTC (permalink / raw
  To: gentoo-commits

commit:     d8e67939746308e2440b7cdb398659dd724f02d3
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Wed Dec 21 08:10:30 2022 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat Dec 24 14:48:04 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8e67939

net-libs/libomemo: drop 0.7.1-r2, 0.8.0

Bug: https://bugs.gentoo.org/887525
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 net-libs/libomemo/Manifest                 |  2 --
 net-libs/libomemo/libomemo-0.7.1-r2.ebuild | 55 ------------------------------
 net-libs/libomemo/libomemo-0.8.0.ebuild    | 51 ---------------------------
 3 files changed, 108 deletions(-)

diff --git a/net-libs/libomemo/Manifest b/net-libs/libomemo/Manifest
index 5ca884943e14..b39ff0896a86 100644
--- a/net-libs/libomemo/Manifest
+++ b/net-libs/libomemo/Manifest
@@ -1,3 +1 @@
-DIST libomemo-0.7.1.tar.gz 23770 BLAKE2B a3909650e399075f62026bd048a667a276a6cd7197ac18ddf9e3c12f57e5fd9cb2f5532ba69d0836af87e1415a5ffdc1746cf90a596dcf255265a64e921f039d SHA512 e5769dee4db7be246853e47e29ded9eefad2f62422951ce5dd0c1acee3bb92131c0423f09bc716be0f55fb02c747f07a6d5b2c656bdfeee0ee148252c51a1050
-DIST libomemo-0.8.0.tar.gz 25743 BLAKE2B 9b13aaaa21f16425fcecf963e187c5b686986e6bb01255c78042ea64e48d2c75a06729d1ad6e6b26d62d191e7d99305b7a8f1e07078221c6d14a12f587bf0743 SHA512 ff90de81928754f56bd2c6f3fcc83c13bb87d346e9bbedd6327bec33aab61a79061a709d541082723840205eb631b1a5493a43a5824e9e87e257d370692a606b
 DIST libomemo-0.8.1.tar.gz 28648 BLAKE2B b75ad298946dff680705ba0927293ea30cb8bf616a417c6584cef9f84e0894c5581462782a4b1003bf9e530695eea10bba9f37ae94e957a0008a35c862f17f62 SHA512 452c7ff9eb809de37df24bd0857c30c1e1ed1d4638c8338bb101f6d5a31be700f174f4fe65fb8ccd5358a674f8397a0eb54d8e03abfdce57cea60bcd4959f40a

diff --git a/net-libs/libomemo/libomemo-0.7.1-r2.ebuild b/net-libs/libomemo/libomemo-0.7.1-r2.ebuild
deleted file mode 100644
index 38d49c0e3988..000000000000
--- a/net-libs/libomemo/libomemo-0.7.1-r2.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="Implementation of OMEMO (XEP-0384) in C"
-HOMEPAGE="https://github.com/gkdr/libomemo"
-SRC_URI="https://github.com/gkdr/libomemo/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="static-libs test"
-
-RDEPEND="
-	dev-db/sqlite
-	dev-libs/glib
-	dev-libs/libgcrypt
-	dev-libs/mxml
-	"
-DEPEND="
-	${RDEPEND}
-	virtual/pkgconfig
-	test? ( dev-util/cmocka )
-	"
-
-RESTRICT="!test? ( test )"
-
-PATCHES=(
-	"${FILESDIR}"/${P}-so-symlinks.patch
-)
-
-DOCS=( CHANGELOG.md README.md )
-
-src_compile() {
-	emake PREFIX=/usr
-}
-
-src_install() {
-	emake DESTDIR="${D}" PREFIX=/usr install
-
-	# Respect libdir other than /usr/lib, e.g. /usr/lib64
-	local libdir="$(get_libdir)"
-	if [[ ${libdir} != lib ]]; then
-		mv "${D}"/usr/{lib,${libdir}} || die
-		sed "s|^libdir=.*|libdir=\${prefix}/${libdir}|" \
-				-i "${D}/usr/${libdir}/pkgconfig/libomemo.pc" || die
-	fi
-
-	einstalldocs
-
-	if ! use static-libs ; then
-		rm "${D}/usr/${libdir}/libomemo.a" || die
-	fi
-}

diff --git a/net-libs/libomemo/libomemo-0.8.0.ebuild b/net-libs/libomemo/libomemo-0.8.0.ebuild
deleted file mode 100644
index 14c96fe495e2..000000000000
--- a/net-libs/libomemo/libomemo-0.8.0.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="Implementation of OMEMO (XEP-0384) in C"
-HOMEPAGE="https://github.com/gkdr/libomemo"
-SRC_URI="https://github.com/gkdr/libomemo/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="static-libs test"
-
-RDEPEND="
-	dev-db/sqlite
-	dev-libs/glib
-	dev-libs/libgcrypt
-	dev-libs/mxml
-	"
-DEPEND="
-	${RDEPEND}
-	virtual/pkgconfig
-	test? ( dev-util/cmocka )
-	"
-
-RESTRICT="!test? ( test )"
-
-DOCS=( CHANGELOG.md README.md )
-
-src_compile() {
-	emake PREFIX=/usr
-}
-
-src_install() {
-	emake DESTDIR="${D}" PREFIX=/usr install
-
-	# Respect libdir other than /usr/lib, e.g. /usr/lib64
-	local libdir="$(get_libdir)"
-	if [[ ${libdir} != lib ]]; then
-		mv "${D}"/usr/{lib,${libdir}} || die
-		sed "s|^libdir=.*|libdir=\${prefix}/${libdir}|" \
-				-i "${D}/usr/${libdir}/pkgconfig/libomemo.pc" || die
-	fi
-
-	einstalldocs
-
-	if ! use static-libs ; then
-		rm "${D}/usr/${libdir}/libomemo.a" || die
-	fi
-}


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/libomemo/
@ 2024-04-18 19:48 Conrad Kostecki
  0 siblings, 0 replies; 13+ messages in thread
From: Conrad Kostecki @ 2024-04-18 19:48 UTC (permalink / raw
  To: gentoo-commits

commit:     7d2ee66645bd49df1a0f3b6b0ef38c2b84ae480c
Author:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 18 19:45:51 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=7d2ee666

net-libs/libomemo: update mxml deps

Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>

 net-libs/libomemo/{libomemo-0.8.1.ebuild => libomemo-0.8.1-r1.ebuild} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-libs/libomemo/libomemo-0.8.1.ebuild b/net-libs/libomemo/libomemo-0.8.1-r1.ebuild
similarity index 92%
rename from net-libs/libomemo/libomemo-0.8.1.ebuild
rename to net-libs/libomemo/libomemo-0.8.1-r1.ebuild
index 18729549f129..e53dabe9e607 100644
--- a/net-libs/libomemo/libomemo-0.8.1.ebuild
+++ b/net-libs/libomemo/libomemo-0.8.1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -18,7 +18,7 @@ RDEPEND="
 	dev-db/sqlite
 	dev-libs/glib
 	dev-libs/libgcrypt
-	dev-libs/mxml
+	dev-libs/mxml:0
 	"
 DEPEND="
 	${RDEPEND}


^ permalink raw reply related	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2024-04-18 19:48 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-04-18 19:48 [gentoo-commits] repo/gentoo:master commit in: net-libs/libomemo/ Conrad Kostecki
  -- strict thread matches above, loose matches on Subject: below --
2022-12-24 14:49 Andreas Sturmlechner
2022-12-20 23:57 Sam James
2022-12-20 23:57 Sam James
2022-11-29  1:18 Sebastian Pipping
2022-04-11 18:58 Sebastian Pipping
2022-04-10 21:49 Sebastian Pipping
2022-02-15  1:59 Sebastian Pipping
2021-04-03 22:15 Sam James
2021-04-03 22:15 Sam James
2021-02-22 21:09 Sebastian Pipping
2021-02-22 21:09 Sebastian Pipping
2021-02-21 23:49 Sebastian Pipping

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox