* [gentoo-commits] repo/gentoo:master commit in: dev-libs/aws-c-common/
@ 2019-09-20 15:36 Joonas Niilola
0 siblings, 0 replies; 8+ messages in thread
From: Joonas Niilola @ 2019-09-20 15:36 UTC (permalink / raw
To: gentoo-commits
commit: 43a1809326dbc4c1401479a948d1776c597bcf88
Author: Sven Eden <yamakuzure <AT> gmx <DOT> net>
AuthorDate: Thu Aug 15 16:15:44 2019 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Fri Sep 20 15:23:28 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43a18093
dev-libs/aws-c-common: Core c99 package for AWS SDK for C
Includes cross-platform primitives, configuration, data structures, and
error handling.
Dependency for dev-libs/aws-sdk-cpp-1.7.178
Signed-off-by: Sven Eden <yamakuzure <AT> gmx.net>
Bug: https://bugs.gentoo.org/666494
Package-Manager: Portage-2.3.71, Repoman-2.3.17
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
dev-libs/aws-c-common/Manifest | 1 +
dev-libs/aws-c-common/aws-c-common-0.4.11.ebuild | 23 +++++++++++++++++++++++
dev-libs/aws-c-common/metadata.xml | 16 ++++++++++++++++
3 files changed, 40 insertions(+)
diff --git a/dev-libs/aws-c-common/Manifest b/dev-libs/aws-c-common/Manifest
new file mode 100644
index 00000000000..88ca38b4ca5
--- /dev/null
+++ b/dev-libs/aws-c-common/Manifest
@@ -0,0 +1 @@
+DIST aws-c-common-0.4.11.tar.gz 306933 BLAKE2B 5a2370a3696e4d90b67bc03fbf88f152e1a2d6e4d4a9ff2a9423a2cf18c14a1e3b6d978250c3359f4ebb2cf5e524e416b11604dc09dc45f5c8a5a6f982b344a7 SHA512 1e00f6aa025578978551fc8ca1bc09b448f79ac28bdc969af4312569ffca035d656dc68825da15ad8f4f890bbdb03327c624147dded1ce402e9dab1726290890
diff --git a/dev-libs/aws-c-common/aws-c-common-0.4.11.ebuild b/dev-libs/aws-c-common/aws-c-common-0.4.11.ebuild
new file mode 100644
index 00000000000..e67469eec70
--- /dev/null
+++ b/dev-libs/aws-c-common/aws-c-common-0.4.11.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake-utils
+
+DESCRIPTION="Core c99 package for AWS SDK for C"
+HOMEPAGE="https://github.com/awslabs/aws-c-common"
+SRC_URI="https://github.com/awslabs/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+IUSE="test"
+
+src_configure() {
+ local mycmakeargs=(
+ -DBUILD_TESTING=$(usex test)
+ )
+ cmake-utils_src_configure
+}
diff --git a/dev-libs/aws-c-common/metadata.xml b/dev-libs/aws-c-common/metadata.xml
new file mode 100644
index 00000000000..682226376a6
--- /dev/null
+++ b/dev-libs/aws-c-common/metadata.xml
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>yamakuzure@gmx.net</email>
+ <name>Sven Eden</name>
+ </maintainer>
+ <maintainer type="project">
+ <email>proxy-maint@gentoo.org</email>
+ <name>Proxy Maintainers</name>
+ </maintainer>
+ <longdescription>
+ Core c99 package for AWS SDK for C. Includes cross-platform primitives,
+ configuration, data structures, and error handling.
+ </longdescription>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/aws-c-common/
@ 2020-01-06 13:14 Andreas Sturmlechner
0 siblings, 0 replies; 8+ messages in thread
From: Andreas Sturmlechner @ 2020-01-06 13:14 UTC (permalink / raw
To: gentoo-commits
commit: bf9bd67f3e327072095d390d173ac84be6496b9b
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 6 13:07:45 2020 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Mon Jan 6 13:13:27 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf9bd67f
dev-libs/aws-c-common: Switch to cmake.eclass
Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
dev-libs/aws-c-common/aws-c-common-0.4.11.ebuild | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/dev-libs/aws-c-common/aws-c-common-0.4.11.ebuild b/dev-libs/aws-c-common/aws-c-common-0.4.11.ebuild
index f3ee9be44b1..b41fd8dcf44 100644
--- a/dev-libs/aws-c-common/aws-c-common-0.4.11.ebuild
+++ b/dev-libs/aws-c-common/aws-c-common-0.4.11.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-inherit cmake-utils
+inherit cmake
DESCRIPTION="Core c99 package for AWS SDK for C"
HOMEPAGE="https://github.com/awslabs/aws-c-common"
@@ -20,5 +20,5 @@ src_configure() {
local mycmakeargs=(
-DBUILD_TESTING=$(usex test)
)
- cmake-utils_src_configure
+ cmake_src_configure
}
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/aws-c-common/
@ 2020-08-24 17:45 Jonas Stein
0 siblings, 0 replies; 8+ messages in thread
From: Jonas Stein @ 2020-08-24 17:45 UTC (permalink / raw
To: gentoo-commits
commit: 8cda6e22c3c127ef376f8764c64e69d6fd26d746
Author: Jonas Stein <jstein <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 24 17:39:18 2020 +0000
Commit: Jonas Stein <jstein <AT> gentoo <DOT> org>
CommitDate: Mon Aug 24 17:45:03 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8cda6e22
dev-libs/aws-c-common: Maintainer retired
Proxied maintainer retired due to inactivity.
Bug: https://bugs.gentoo.org/633138
Package-Manager: Portage-3.0.4, Repoman-2.3.23
Signed-off-by: Jonas Stein <jstein <AT> gentoo.org>
dev-libs/aws-c-common/metadata.xml | 9 +--------
1 file changed, 1 insertion(+), 8 deletions(-)
diff --git a/dev-libs/aws-c-common/metadata.xml b/dev-libs/aws-c-common/metadata.xml
index 682226376a6..88030cf0f62 100644
--- a/dev-libs/aws-c-common/metadata.xml
+++ b/dev-libs/aws-c-common/metadata.xml
@@ -1,14 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <maintainer type="person">
- <email>yamakuzure@gmx.net</email>
- <name>Sven Eden</name>
- </maintainer>
- <maintainer type="project">
- <email>proxy-maint@gentoo.org</email>
- <name>Proxy Maintainers</name>
- </maintainer>
+ <!-- maintainer-needed -->
<longdescription>
Core c99 package for AWS SDK for C. Includes cross-platform primitives,
configuration, data structures, and error handling.
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/aws-c-common/
@ 2020-09-28 11:34 Joonas Niilola
0 siblings, 0 replies; 8+ messages in thread
From: Joonas Niilola @ 2020-09-28 11:34 UTC (permalink / raw
To: gentoo-commits
commit: f0164a268f6928151ee982bd1237179690d3430c
Author: Sven Eden <sven.eden <AT> prydeworx <DOT> com>
AuthorDate: Thu Sep 17 14:38:59 2020 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Mon Sep 28 11:25:04 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0164a26
dev-libs/aws-c-common: Bump to 0.4.57 and add static-libs USE flag
Bug: https://bugs.gentoo.org/695418
Bug: https://bugs.gentoo.org/717572
Closes: https://bugs.gentoo.org/695418
Closes: https://bugs.gentoo.org/717572
Package-Manager: Portage-3.0.7, Repoman-3.0.1
Signed-off-by: Sven Eden <sven.eden <AT> prydeworx.com>
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
dev-libs/aws-c-common/Manifest | 2 +-
.../{aws-c-common-0.4.11.ebuild => aws-c-common-0.4.57.ebuild} | 3 ++-
dev-libs/aws-c-common/metadata.xml | 9 ++++++++-
3 files changed, 11 insertions(+), 3 deletions(-)
diff --git a/dev-libs/aws-c-common/Manifest b/dev-libs/aws-c-common/Manifest
index 88ca38b4ca5..2b7630e5d4a 100644
--- a/dev-libs/aws-c-common/Manifest
+++ b/dev-libs/aws-c-common/Manifest
@@ -1 +1 @@
-DIST aws-c-common-0.4.11.tar.gz 306933 BLAKE2B 5a2370a3696e4d90b67bc03fbf88f152e1a2d6e4d4a9ff2a9423a2cf18c14a1e3b6d978250c3359f4ebb2cf5e524e416b11604dc09dc45f5c8a5a6f982b344a7 SHA512 1e00f6aa025578978551fc8ca1bc09b448f79ac28bdc969af4312569ffca035d656dc68825da15ad8f4f890bbdb03327c624147dded1ce402e9dab1726290890
+DIST aws-c-common-0.4.57.tar.gz 418954 BLAKE2B cfb268d92e90343e01756b571d0d7fa1269a144b933b5dfae6e5fb92a2b384ff73bf14ad830b53427ad37e9dbd9a0afff5b571108869a69a8d466982a2e6c6ef SHA512 77a9110a067e3057ae3cb90ee0b1fa42e18595e476b803f83711ecc164053db73683df2fccf75ad992b7d08e142cb31d6a70f87ce2f3b87ce28ee1e8151b3c62
diff --git a/dev-libs/aws-c-common/aws-c-common-0.4.11.ebuild b/dev-libs/aws-c-common/aws-c-common-0.4.57.ebuild
similarity index 87%
rename from dev-libs/aws-c-common/aws-c-common-0.4.11.ebuild
rename to dev-libs/aws-c-common/aws-c-common-0.4.57.ebuild
index f0198268ad0..f12798d2668 100644
--- a/dev-libs/aws-c-common/aws-c-common-0.4.11.ebuild
+++ b/dev-libs/aws-c-common/aws-c-common-0.4.57.ebuild
@@ -12,12 +12,13 @@ SRC_URI="https://github.com/awslabs/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
-IUSE="test"
+IUSE="static-libs test"
RESTRICT="!test? ( test )"
src_configure() {
local mycmakeargs=(
+ -DBUILD_SHARED_LIBS=$(usex !static-libs)
-DBUILD_TESTING=$(usex test)
)
cmake_src_configure
diff --git a/dev-libs/aws-c-common/metadata.xml b/dev-libs/aws-c-common/metadata.xml
index 88030cf0f62..e3151ef13d4 100644
--- a/dev-libs/aws-c-common/metadata.xml
+++ b/dev-libs/aws-c-common/metadata.xml
@@ -1,7 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <!-- maintainer-needed -->
+ <maintainer type="person">
+ <email>sven.eden@prydeworx.com</email>
+ <name>Sven Eden</name>
+ </maintainer>
+ <maintainer type="project">
+ <email>proxy-maint@gentoo.org</email>
+ <name>Proxy Maintainers</name>
+ </maintainer>
<longdescription>
Core c99 package for AWS SDK for C. Includes cross-platform primitives,
configuration, data structures, and error handling.
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/aws-c-common/
@ 2020-12-13 11:00 Joonas Niilola
0 siblings, 0 replies; 8+ messages in thread
From: Joonas Niilola @ 2020-12-13 11:00 UTC (permalink / raw
To: gentoo-commits
commit: 7c7499b49249dde455f921a924bbea6e812a1e09
Author: Sven Eden <sven.eden <AT> prydeworx <DOT> com>
AuthorDate: Tue Dec 8 07:52:44 2020 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Sun Dec 13 10:50:20 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c7499b4
dev-libs/aws-c-common: Version 0.4.62 Bump; Block cmake-3.19.{0,1}
This commit updates to version 0.4.62 with the following enhancements
* Print CMake version when configuring. [0]
* Re-adding SOVERSION to CMakeLists.txt [1]
* Disabled MSVC 2015's non-constant aggregate initializer warning [2]
* Do not use addr2line by default, backtrace_symbols will do the job
[3]
* Fixed memtrace/stack decoding test so it works more robustly
* Removes an unnecessary API hopefully before anyone uses it
externally
Also block dev-util/cmake-3.19.0 and dev-util/cmake-3.19.1, which
introduced a regression causing configure phase to fail. [4]
[0] https://github.com/awslabs/aws-c-common/pull/701
[1] https://github.com/awslabs/aws-c-common/pull/702
[2] https://github.com/awslabs/aws-c-common/pull/738
[3] https://github.com/awslabs/aws-c-common/pull/739
[4] https://gitlab.kitware.com/cmake/cmake/-/issues/21529
Closes: https://bugs.gentoo.org/755932
Package-Manager: Portage-3.0.11, Repoman-3.0.2
Signed-off-by: Sven Eden <sven.eden <AT> prydeworx.com>
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
dev-libs/aws-c-common/Manifest | 1 +
dev-libs/aws-c-common/aws-c-common-0.4.62.ebuild | 34 ++++++++++++++++++++++++
2 files changed, 35 insertions(+)
diff --git a/dev-libs/aws-c-common/Manifest b/dev-libs/aws-c-common/Manifest
index 2b7630e5d4a..5403e346954 100644
--- a/dev-libs/aws-c-common/Manifest
+++ b/dev-libs/aws-c-common/Manifest
@@ -1 +1,2 @@
DIST aws-c-common-0.4.57.tar.gz 418954 BLAKE2B cfb268d92e90343e01756b571d0d7fa1269a144b933b5dfae6e5fb92a2b384ff73bf14ad830b53427ad37e9dbd9a0afff5b571108869a69a8d466982a2e6c6ef SHA512 77a9110a067e3057ae3cb90ee0b1fa42e18595e476b803f83711ecc164053db73683df2fccf75ad992b7d08e142cb31d6a70f87ce2f3b87ce28ee1e8151b3c62
+DIST aws-c-common-0.4.62.tar.gz 411263 BLAKE2B b9eb8eab8fceb949adcb96bc98987c318dcc70dae2cb8ecdcdf36c306be97158a64208c4bcc2452c83f03708cd7fb5401639558bc9bea946234f4b6b4c8eaec1 SHA512 7f31d739a3376404016bd509b40656d7620bddfb77a7f988306f2dcb2b03a03387855d845c2b9f63194d0bf2182a8d96392dba6c2bf847eaeb008115561d73ba
diff --git a/dev-libs/aws-c-common/aws-c-common-0.4.62.ebuild b/dev-libs/aws-c-common/aws-c-common-0.4.62.ebuild
new file mode 100644
index 00000000000..4d03853e528
--- /dev/null
+++ b/dev-libs/aws-c-common/aws-c-common-0.4.62.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake
+
+DESCRIPTION="Core c99 package for AWS SDK for C"
+HOMEPAGE="https://github.com/awslabs/aws-c-common"
+SRC_URI="https://github.com/awslabs/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="static-libs test"
+
+RESTRICT="!test? ( test )"
+
+BDEPEND="
+ || ( <dev-util/cmake-3.19.0
+ >dev-util/cmake-3.19.1 )
+"
+
+PATCHES=(
+ "${FILESDIR}"/${PN}-0.4.57-remove-Werror-CFLAG.patch
+)
+
+src_configure() {
+ local mycmakeargs=(
+ -DBUILD_SHARED_LIBS=$(usex !static-libs)
+ -DBUILD_TESTING=$(usex test)
+ )
+ cmake_src_configure
+}
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/aws-c-common/
@ 2020-12-13 11:00 Joonas Niilola
0 siblings, 0 replies; 8+ messages in thread
From: Joonas Niilola @ 2020-12-13 11:00 UTC (permalink / raw
To: gentoo-commits
commit: b67eb10d56ad364978fae61ea20326e1fec618d7
Author: Sven Eden <sven.eden <AT> prydeworx <DOT> com>
AuthorDate: Tue Dec 8 07:53:33 2020 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Sun Dec 13 10:50:20 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b67eb10d
dev-libs/aws-c-common: Remove obsolete ebuild
Package-Manager: Portage-3.0.11, Repoman-3.0.2
Signed-off-by: Sven Eden <sven.eden <AT> prydeworx.com>
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
dev-libs/aws-c-common/Manifest | 1 -
.../aws-c-common/aws-c-common-0.4.57-r1.ebuild | 29 ----------------------
2 files changed, 30 deletions(-)
diff --git a/dev-libs/aws-c-common/Manifest b/dev-libs/aws-c-common/Manifest
index 5403e346954..a6c552fe907 100644
--- a/dev-libs/aws-c-common/Manifest
+++ b/dev-libs/aws-c-common/Manifest
@@ -1,2 +1 @@
-DIST aws-c-common-0.4.57.tar.gz 418954 BLAKE2B cfb268d92e90343e01756b571d0d7fa1269a144b933b5dfae6e5fb92a2b384ff73bf14ad830b53427ad37e9dbd9a0afff5b571108869a69a8d466982a2e6c6ef SHA512 77a9110a067e3057ae3cb90ee0b1fa42e18595e476b803f83711ecc164053db73683df2fccf75ad992b7d08e142cb31d6a70f87ce2f3b87ce28ee1e8151b3c62
DIST aws-c-common-0.4.62.tar.gz 411263 BLAKE2B b9eb8eab8fceb949adcb96bc98987c318dcc70dae2cb8ecdcdf36c306be97158a64208c4bcc2452c83f03708cd7fb5401639558bc9bea946234f4b6b4c8eaec1 SHA512 7f31d739a3376404016bd509b40656d7620bddfb77a7f988306f2dcb2b03a03387855d845c2b9f63194d0bf2182a8d96392dba6c2bf847eaeb008115561d73ba
diff --git a/dev-libs/aws-c-common/aws-c-common-0.4.57-r1.ebuild b/dev-libs/aws-c-common/aws-c-common-0.4.57-r1.ebuild
deleted file mode 100644
index 120faea56d6..00000000000
--- a/dev-libs/aws-c-common/aws-c-common-0.4.57-r1.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake
-
-DESCRIPTION="Core c99 package for AWS SDK for C"
-HOMEPAGE="https://github.com/awslabs/aws-c-common"
-SRC_URI="https://github.com/awslabs/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="static-libs test"
-
-RESTRICT="!test? ( test )"
-
-PATCHES=(
- "${FILESDIR}"/${P}-remove-Werror-CFLAG.patch
-)
-
-src_configure() {
- local mycmakeargs=(
- -DBUILD_SHARED_LIBS=$(usex !static-libs)
- -DBUILD_TESTING=$(usex test)
- )
- cmake_src_configure
-}
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/aws-c-common/
@ 2020-12-13 11:00 Joonas Niilola
0 siblings, 0 replies; 8+ messages in thread
From: Joonas Niilola @ 2020-12-13 11:00 UTC (permalink / raw
To: gentoo-commits
commit: ea9983e07205e693fc5e011d7fd6ae79a2ae992d
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 13 10:57:56 2020 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Sun Dec 13 10:59:50 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea9983e0
dev-libs/aws-c-common: WhitespaceFound
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
dev-libs/aws-c-common/aws-c-common-0.4.62.ebuild | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/dev-libs/aws-c-common/aws-c-common-0.4.62.ebuild b/dev-libs/aws-c-common/aws-c-common-0.4.62.ebuild
index 4d03853e528..7f1ab8b2b7e 100644
--- a/dev-libs/aws-c-common/aws-c-common-0.4.62.ebuild
+++ b/dev-libs/aws-c-common/aws-c-common-0.4.62.ebuild
@@ -17,8 +17,10 @@ IUSE="static-libs test"
RESTRICT="!test? ( test )"
BDEPEND="
- || ( <dev-util/cmake-3.19.0
- >dev-util/cmake-3.19.1 )
+ || (
+ >dev-util/cmake-3.19.1
+ <dev-util/cmake-3.19.0
+ )
"
PATCHES=(
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/aws-c-common/
@ 2024-04-17 21:02 Conrad Kostecki
0 siblings, 0 replies; 8+ messages in thread
From: Conrad Kostecki @ 2024-04-17 21:02 UTC (permalink / raw
To: gentoo-commits
commit: 4ae6b3743de2864f2cb7e23defdf134d5639d3c8
Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Fri Apr 12 16:44:15 2024 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Wed Apr 17 21:01:29 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ae6b374
dev-libs/aws-c-common: add missing remote-id
Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
dev-libs/aws-c-common/metadata.xml | 3 +++
1 file changed, 3 insertions(+)
diff --git a/dev-libs/aws-c-common/metadata.xml b/dev-libs/aws-c-common/metadata.xml
index e467b78655b3..74ef5bba7d8a 100644
--- a/dev-libs/aws-c-common/metadata.xml
+++ b/dev-libs/aws-c-common/metadata.xml
@@ -9,6 +9,9 @@
<email>proxy-maint@gentoo.org</email>
<name>Proxy Maintainers</name>
</maintainer>
+ <upstream>
+ <remote-id type="github">awslabs/aws-c-common</remote-id>
+ </upstream>
<longdescription>
Core c99 package for AWS SDK for C. Includes cross-platform primitives,
configuration, data structures, and error handling.
^ permalink raw reply related [flat|nested] 8+ messages in thread
end of thread, other threads:[~2024-04-17 21:02 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-09-20 15:36 [gentoo-commits] repo/gentoo:master commit in: dev-libs/aws-c-common/ Joonas Niilola
-- strict thread matches above, loose matches on Subject: below --
2020-01-06 13:14 Andreas Sturmlechner
2020-08-24 17:45 Jonas Stein
2020-09-28 11:34 Joonas Niilola
2020-12-13 11:00 Joonas Niilola
2020-12-13 11:00 Joonas Niilola
2020-12-13 11:00 Joonas Niilola
2024-04-17 21:02 Conrad Kostecki
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox