* [gentoo-commits] repo/gentoo:master commit in: net-libs/ortp/
@ 2016-10-09 16:19 Pacho Ramos
0 siblings, 0 replies; 9+ messages in thread
From: Pacho Ramos @ 2016-10-09 16:19 UTC (permalink / raw
To: gentoo-commits
commit: 554be55977758c97913f15c49c56590959a3a5d2
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 9 15:37:18 2016 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sun Oct 9 16:18:40 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=554be559
net-libs/ortp: zrtp support was removed from the tree
Package-Manager: portage-2.3.1
net-libs/ortp/ortp-0.23.0-r1.ebuild | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/net-libs/ortp/ortp-0.23.0-r1.ebuild b/net-libs/ortp/ortp-0.23.0-r1.ebuild
index bdc1b15..683b45e 100644
--- a/net-libs/ortp/ortp-0.23.0-r1.ebuild
+++ b/net-libs/ortp/ortp-0.23.0-r1.ebuild
@@ -13,15 +13,13 @@ LICENSE="LGPL-2.1"
SLOT="0/9"
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~ppc-macos ~x64-macos ~x86-macos"
-IUSE="debug doc examples ipv6 libressl minimal ntp-timestamp ssl srtp zrtp"
-REQUIRED_USE="zrtp? ( srtp )"
+IUSE="debug doc examples ipv6 libressl minimal ntp-timestamp ssl srtp"
RDEPEND="
ssl? (
!libressl? ( dev-libs/openssl:0= )
libressl? ( dev-libs/libressl:= ) )
srtp? ( net-libs/libsrtp:0= )
- zrtp? ( >=net-libs/libzrtpcpp-4.0.0:0= )
"
DEPEND="${RDEPEND}
doc? ( app-doc/doxygen )
@@ -51,13 +49,14 @@ src_configure() {
--enable-libtool-lock
# this is fine as long as we do not link to polarssl
--enable-broken-srtp
+ # zrtp removed from the tree
+ --disable-zrtp
$(use_enable debug)
$(use_enable ipv6)
$(use_enable minimal perf)
$(use_enable ntp-timestamp)
$(use_enable ssl ssl-hmac)
- $(use_enable zrtp)
--with-srtp=$(usex srtp "${EPREFIX}"/usr none)
$(use doc || echo ac_cv_path_DOXYGEN=false)
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/ortp/
@ 2016-10-09 16:19 Pacho Ramos
0 siblings, 0 replies; 9+ messages in thread
From: Pacho Ramos @ 2016-10-09 16:19 UTC (permalink / raw
To: gentoo-commits
commit: 81436a875a39e0afaf17f500b50b1b7d20e92602
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 9 15:36:03 2016 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sun Oct 9 16:18:38 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81436a87
net-libs/ortp: Support libressl (#565236)
Package-Manager: portage-2.3.1
net-libs/ortp/ortp-0.23.0-r1.ebuild | 81 +++++++++++++++++++++++++++++++++++++
1 file changed, 81 insertions(+)
diff --git a/net-libs/ortp/ortp-0.23.0-r1.ebuild b/net-libs/ortp/ortp-0.23.0-r1.ebuild
new file mode 100644
index 00000000..bdc1b15
--- /dev/null
+++ b/net-libs/ortp/ortp-0.23.0-r1.ebuild
@@ -0,0 +1,81 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+inherit eutils
+
+DESCRIPTION="Open Real-time Transport Protocol (RTP, RFC3550) stack"
+HOMEPAGE="http://www.linphone.org/"
+SRC_URI="mirror://nongnu/linphone/${PN}/sources/${P}.tar.gz"
+
+LICENSE="LGPL-2.1"
+SLOT="0/9"
+KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~ppc-macos ~x64-macos ~x86-macos"
+
+IUSE="debug doc examples ipv6 libressl minimal ntp-timestamp ssl srtp zrtp"
+REQUIRED_USE="zrtp? ( srtp )"
+
+RDEPEND="
+ ssl? (
+ !libressl? ( dev-libs/openssl:0= )
+ libressl? ( dev-libs/libressl:= ) )
+ srtp? ( net-libs/libsrtp:0= )
+ zrtp? ( >=net-libs/libzrtpcpp-4.0.0:0= )
+"
+DEPEND="${RDEPEND}
+ doc? ( app-doc/doxygen )
+ virtual/pkgconfig
+"
+
+src_prepare() {
+ default
+ # ${P} is added after ${docdir}
+ if use doc; then
+ sed -i -e 's/$(docdir)\/$(PACKAGE)-$(VERSION)/$(docdir)/' Makefile.in \
+ || die "patching Makefile.in failed"
+ fi
+}
+
+src_configure() {
+ local myeconfargs=(
+ # memcheck is for HP-UX only
+ --disable-memcheck
+ # mode64bit adds +DA2.0W +DS2.0 CFLAGS wich are needed for HP-UX
+ --disable-mode64bit
+ # strict adds -Werror, do not want it
+ --disable-strict
+ # they seriously failed to understand AC_ARG_ENABLE...
+ --disable-tests_enabled
+ --enable-fast-install
+ --enable-libtool-lock
+ # this is fine as long as we do not link to polarssl
+ --enable-broken-srtp
+
+ $(use_enable debug)
+ $(use_enable ipv6)
+ $(use_enable minimal perf)
+ $(use_enable ntp-timestamp)
+ $(use_enable ssl ssl-hmac)
+ $(use_enable zrtp)
+
+ --with-srtp=$(usex srtp "${EPREFIX}"/usr none)
+ $(use doc || echo ac_cv_path_DOXYGEN=false)
+ )
+
+ econf "${myeconfargs[@]}"
+}
+
+src_install() {
+ emake DESTDIR="${D}" pkgdocdir="${EPREFIX}"/usr/share/doc/${PF} \
+ install
+
+ einstalldocs
+
+ prune_libtool_files
+
+ if use examples; then
+ insinto /usr/share/doc/${PF}/examples
+ doins src/tests/*.c
+ fi
+}
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/ortp/
@ 2017-02-04 19:48 Michał Górny
0 siblings, 0 replies; 9+ messages in thread
From: Michał Górny @ 2017-02-04 19:48 UTC (permalink / raw
To: gentoo-commits
commit: 410e92e0d9a3e4057ab5efaa374b67eff7e22fff
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 4 19:35:31 2017 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Feb 4 19:48:36 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=410e92e0
net-libs/ortp: Copy stable keywords to zrtp-free revbump
Copy stable keywords over to the 0.23.0-r1 revbump. The only functional
change is hard-disabling zrtp support. The dependency package has
already been removed from Gentoo, so there is no reason not to clean up
the older version.
net-libs/ortp/ortp-0.23.0-r1.ebuild | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/net-libs/ortp/ortp-0.23.0-r1.ebuild b/net-libs/ortp/ortp-0.23.0-r1.ebuild
index 683b45e..ca88db3 100644
--- a/net-libs/ortp/ortp-0.23.0-r1.ebuild
+++ b/net-libs/ortp/ortp-0.23.0-r1.ebuild
@@ -11,8 +11,7 @@ SRC_URI="mirror://nongnu/linphone/${PN}/sources/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0/9"
-KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~ppc-macos ~x64-macos ~x86-macos"
-
+KEYWORDS="alpha amd64 ia64 ppc ppc64 sparc x86 ~x86-fbsd ~ppc-macos ~x64-macos ~x86-macos"
IUSE="debug doc examples ipv6 libressl minimal ntp-timestamp ssl srtp"
RDEPEND="
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/ortp/
@ 2018-06-20 16:59 Pacho Ramos
0 siblings, 0 replies; 9+ messages in thread
From: Pacho Ramos @ 2018-06-20 16:59 UTC (permalink / raw
To: gentoo-commits
commit: d52220571c9e2280f6eabfcb3dc6aa82c9908969
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 20 16:55:32 2018 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Wed Jun 20 16:59:32 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5222057
net-libs/ortp: Drop old
Package-Manager: Portage-2.3.40, Repoman-2.3.9
net-libs/ortp/Manifest | 1 -
net-libs/ortp/ortp-0.20.0.ebuild | 76 ----------------------------------------
2 files changed, 77 deletions(-)
diff --git a/net-libs/ortp/Manifest b/net-libs/ortp/Manifest
index 039f3ed17eb..896deddf9d4 100644
--- a/net-libs/ortp/Manifest
+++ b/net-libs/ortp/Manifest
@@ -1,2 +1 @@
-DIST ortp-0.20.0.tar.gz 515505 BLAKE2B 94e0127d5e6a13e520a74f193cf8e99325b2605405aea3772ed6bf94dc1b1c4b967b6e608e3a96bda56a022d253e2623e8177c6dec4c4cfc95eb99d192a86013 SHA512 a4d666be6b6825eeb28204001d5d1263c80ef3c07931586e753d3efa8c72d76e993335c4eeaa558209b5d10d5e991ba0c88e2f5c9a35aff46b36d6e76f92b706
DIST ortp-0.23.0.tar.gz 540135 BLAKE2B 46bc411df48f7f8a2fd180ff75dc5f515c36a71bcaced0d3fcf5336ee8e142c6ae6d597ba39a92c38be78ce74d3eb79692f26596f37075829850222cdf381793 SHA512 70560168f1b138ad825e4e836e7ee218bd24b92a2d76666ba2794a4b31cadbdd8fdd40fee78d612187cde6a827005cbd836cdfc13a70947374356fb84a853ea4
diff --git a/net-libs/ortp/ortp-0.20.0.ebuild b/net-libs/ortp/ortp-0.20.0.ebuild
deleted file mode 100644
index 9b860bad5ad..00000000000
--- a/net-libs/ortp/ortp-0.20.0.ebuild
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils
-
-DESCRIPTION="Open Real-time Transport Protocol (RTP, RFC3550) stack"
-HOMEPAGE="http://www.linphone.org/"
-SRC_URI="mirror://nongnu/linphone/${PN}/sources/${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="alpha amd64 ia64 ppc ppc64 sparc x86 ~x86-fbsd ~ppc-macos ~x64-macos ~x86-macos"
-IUSE="debug doc examples ipv6 minimal srtp ssl" # zrtp"
-
-# Note:
-# This package supposedly requires libzrtpcpp-2.0.0
-# but it is incompatible with its API...
-
-RDEPEND="srtp? ( net-libs/libsrtp )
- ssl? ( dev-libs/openssl )"
-# zrtp? ( >=net-libs/libzrtpcpp-2.0.0 )"
-DEPEND="${RDEPEND}
- doc? ( app-doc/doxygen )
- virtual/pkgconfig"
-
-#REQUIRED_USE="zrtp? ( srtp )"
-
-src_prepare() {
- # ${P} is added after ${docdir}
- if use doc; then
- sed -i -e 's/$(docdir)\/$(PACKAGE)-$(VERSION)/$(docdir)/' Makefile.in \
- || die "patching Makefile.in failed"
- fi
-}
-
-src_configure() {
- local myeconfargs=(
- # memcheck is for HP-UX only
- --disable-memcheck
- # mode64bit adds +DA2.0W +DS2.0 CFLAGS wich are needed for HP-UX
- --disable-mode64bit
- # strict adds -Werror, don't want it
- --disable-strict
- # they seriously failed to understand AC_ARG_ENABLE...
- --disable-tests_enabled
- --enable-fast-install
- --enable-libtool-lock
-
- $(use_enable debug)
- $(use_enable ipv6)
- $(use_enable minimal perf)
- $(use_enable ssl ssl-hmac)
-# $(use_enable zrtp)
- --disable-zrtp
-
- "--with-srtp=$(usex srtp "${EPREFIX}"/usr none)"
- $(use doc || echo ac_cv_path_DOXYGEN=false)
- )
-
- econf "${myeconfargs[@]}"
-}
-
-src_install() {
- emake DESTDIR="${D}" pkgdocdir="${EPREFIX}"/usr/share/doc/${PF} \
- install
- dodoc AUTHORS ChangeLog NEWS README TODO
-
- prune_libtool_files
-
- if use examples; then
- insinto /usr/share/doc/${PF}/examples
- doins src/tests/*.c
- fi
-}
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/ortp/
@ 2019-07-29 18:42 Aaron Bauman
0 siblings, 0 replies; 9+ messages in thread
From: Aaron Bauman @ 2019-07-29 18:42 UTC (permalink / raw
To: gentoo-commits
commit: 3903e8830a577ee1f5ebd4e9c876ac60156c5997
Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 29 18:25:30 2019 +0000
Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Mon Jul 29 18:42:01 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3903e883
net-libs/ortp: arm64 stable
Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
Package-Manager: Portage-2.3.69, Repoman-2.3.16
RepoMan-Options: --include-arches="arm64"
net-libs/ortp/ortp-0.23.0-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-libs/ortp/ortp-0.23.0-r1.ebuild b/net-libs/ortp/ortp-0.23.0-r1.ebuild
index 781dc1a78cb..a935eef5e2a 100644
--- a/net-libs/ortp/ortp-0.23.0-r1.ebuild
+++ b/net-libs/ortp/ortp-0.23.0-r1.ebuild
@@ -10,7 +10,7 @@ SRC_URI="mirror://nongnu/linphone/${PN}/sources/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0/9"
-KEYWORDS="alpha amd64 ~arm64 ia64 ppc ppc64 sparc x86 ~x86-fbsd ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="alpha amd64 arm64 ia64 ppc ppc64 sparc x86 ~x86-fbsd ~ppc-macos ~x64-macos ~x86-macos"
IUSE="debug doc examples ipv6 libressl minimal ntp-timestamp ssl srtp"
RDEPEND="
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/ortp/
@ 2021-05-02 10:56 Mikle Kolyada
0 siblings, 0 replies; 9+ messages in thread
From: Mikle Kolyada @ 2021-05-02 10:56 UTC (permalink / raw
To: gentoo-commits
commit: 096af151af31db1b7d5be8cfb0a78f37836f0395
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sun May 2 10:52:59 2021 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sun May 2 10:52:59 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=096af151
net-libs/ortp: remove libressl support
Package-Manager: Portage-3.0.18, Repoman-3.0.2
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
net-libs/ortp/ortp-0.23.0-r1.ebuild | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/net-libs/ortp/ortp-0.23.0-r1.ebuild b/net-libs/ortp/ortp-0.23.0-r1.ebuild
index 8694c0c18b9..a251486bbcc 100644
--- a/net-libs/ortp/ortp-0.23.0-r1.ebuild
+++ b/net-libs/ortp/ortp-0.23.0-r1.ebuild
@@ -11,12 +11,10 @@ SRC_URI="mirror://nongnu/linphone/${PN}/sources/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0/9"
KEYWORDS="~alpha amd64 arm64 ~ia64 ppc ppc64 sparc x86 ~ppc-macos ~x64-macos"
-IUSE="debug doc examples ipv6 libressl minimal ntp-timestamp ssl srtp"
+IUSE="debug doc examples ipv6 minimal ntp-timestamp ssl srtp"
RDEPEND="
- ssl? (
- !libressl? ( dev-libs/openssl:0= )
- libressl? ( dev-libs/libressl:= ) )
+ ssl? ( dev-libs/openssl:0= )
srtp? ( net-libs/libsrtp:0= )
"
DEPEND="${RDEPEND}
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/ortp/
@ 2021-05-31 9:20 David Seifert
0 siblings, 0 replies; 9+ messages in thread
From: David Seifert @ 2021-05-31 9:20 UTC (permalink / raw
To: gentoo-commits
commit: a0dd4dfefd6189a8c48c68fcff57561eae9c5b33
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Mon May 31 09:18:57 2021 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Mon May 31 09:18:57 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0dd4dfe
net-libs/ortp: drop deprecated ltprune eclass
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
Signed-off-by: David Seifert <soap <AT> gentoo.org>
net-libs/ortp/ortp-0.23.0-r1.ebuild | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/net-libs/ortp/ortp-0.23.0-r1.ebuild b/net-libs/ortp/ortp-0.23.0-r1.ebuild
index a251486bbcc..ce209560f3a 100644
--- a/net-libs/ortp/ortp-0.23.0-r1.ebuild
+++ b/net-libs/ortp/ortp-0.23.0-r1.ebuild
@@ -2,7 +2,6 @@
# Distributed under the terms of the GNU General Public License v2
EAPI=6
-inherit ltprune
DESCRIPTION="Open Real-time Transport Protocol (RTP, RFC3550) stack"
HOMEPAGE="http://www.linphone.org/"
@@ -67,7 +66,7 @@ src_install() {
einstalldocs
- prune_libtool_files
+ find "${ED}" -name '*.la' -delete || die
if use examples; then
insinto /usr/share/doc/${PF}/examples
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/ortp/
@ 2021-05-31 17:49 David Seifert
0 siblings, 0 replies; 9+ messages in thread
From: David Seifert @ 2021-05-31 17:49 UTC (permalink / raw
To: gentoo-commits
commit: 74f09a2e636c9dd3abeafb21f13af5f3b63bdcba
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Mon May 31 17:48:45 2021 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Mon May 31 17:48:45 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74f09a2e
net-libs/ortp: drop inactive maintainer
Package-Manager: Portage-3.0.19, Repoman-3.0.3
Signed-off-by: David Seifert <soap <AT> gentoo.org>
net-libs/ortp/metadata.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-libs/ortp/metadata.xml b/net-libs/ortp/metadata.xml
index 6e703ab6666..747f570c5cb 100644
--- a/net-libs/ortp/metadata.xml
+++ b/net-libs/ortp/metadata.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
-<maintainer type="person"><email>chainsaw@gentoo.org</email></maintainer>
+<!-- maintainer-needed -->
<use>
<flag name="ntp-timestamp">Turn on NTP timestamping on received packet</flag>
<flag name="srtp">Add support for Secure RTP</flag>
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/ortp/
@ 2022-02-13 21:08 Conrad Kostecki
0 siblings, 0 replies; 9+ messages in thread
From: Conrad Kostecki @ 2022-02-13 21:08 UTC (permalink / raw
To: gentoo-commits
commit: d798d348c726ecff84e7f956fd5b31e7f47dff18
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 13 00:02:59 2022 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sun Feb 13 21:07:20 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d798d348
net-libs/ortp: fix DeprecatedInsinto
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
net-libs/ortp/ortp-0.23.0-r1.ebuild | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/net-libs/ortp/ortp-0.23.0-r1.ebuild b/net-libs/ortp/ortp-0.23.0-r1.ebuild
index ce209560f3a4..464e2482fe77 100644
--- a/net-libs/ortp/ortp-0.23.0-r1.ebuild
+++ b/net-libs/ortp/ortp-0.23.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -69,7 +69,8 @@ src_install() {
find "${ED}" -name '*.la' -delete || die
if use examples; then
- insinto /usr/share/doc/${PF}/examples
- doins src/tests/*.c
+ docinto examples
+ dodoc src/tests/*.c
+ docompress -x /usr/share/doc/${PF}/examples
fi
}
^ permalink raw reply related [flat|nested] 9+ messages in thread
end of thread, other threads:[~2022-02-13 21:08 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-07-29 18:42 [gentoo-commits] repo/gentoo:master commit in: net-libs/ortp/ Aaron Bauman
-- strict thread matches above, loose matches on Subject: below --
2022-02-13 21:08 Conrad Kostecki
2021-05-31 17:49 David Seifert
2021-05-31 9:20 David Seifert
2021-05-02 10:56 Mikle Kolyada
2018-06-20 16:59 Pacho Ramos
2017-02-04 19:48 Michał Górny
2016-10-09 16:19 Pacho Ramos
2016-10-09 16:19 Pacho Ramos
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox