summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* **/metadata.xml: Replace http by https in DOCTYPE elementUlrich Müller2021-09-111-1/+1
| | | | | Bug: https://bugs.gentoo.org/552720 Signed-off-by: Ulrich Müller <ulm@gentoo.org>
* dev-libs/aws-c-common: Version Bump to 0.5.2Sven Eden2021-03-273-0/+41
| | | | | | Package-Manager: Portage-3.0.17, Repoman-3.0.2 Signed-off-by: Sven Eden <sven.eden@prydeworx.com> Signed-off-by: Joonas Niilola <juippis@gentoo.org>
* */*: Add proxied="yes" for non-@gentoo.org peopleMichał Górny2021-03-161-1/+1
| | | | | | | | | | | | Done via: find -name metadata.xml -exec xml ed -P -L \ -a '/pkgmetadata/maintainer[substring(email, string-length(email) - string-length("@gentoo.org") + 1) != "@gentoo.org"]' \ -t attr -n proxied -v yes {} + Signed-off-by: Michał Górny <mgorny@gentoo.org>
* */*: Add 'proxied="proxy"' for proxy-maint projectMichał Górny2021-03-161-1/+1
| | | | | | | | | | Done via: find -name metadata.xml -exec xml ed -P -L \ -a '//maintainer[email="proxy-maint@gentoo.org"]' \ -t attr -n proxied -v proxy {} + Signed-off-by: Michał Górny <mgorny@gentoo.org>
* dev-libs/aws-c-common: WhitespaceFoundJoonas Niilola2020-12-131-2/+4
| | | | Signed-off-by: Joonas Niilola <juippis@gentoo.org>
* dev-libs/aws-c-common: Remove obsolete ebuildSven Eden2020-12-132-30/+0
| | | | | | Package-Manager: Portage-3.0.11, Repoman-3.0.2 Signed-off-by: Sven Eden <sven.eden@prydeworx.com> Signed-off-by: Joonas Niilola <juippis@gentoo.org>
* dev-libs/aws-c-common: Version 0.4.62 Bump; Block cmake-3.19.{0,1}Sven Eden2020-12-132-0/+35
| | | | | | | | | | | | | | | | | | | | | | | | | | 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@prydeworx.com> Signed-off-by: Joonas Niilola <juippis@gentoo.org>
* dev-libs/aws-c-common: Remove -Werror from build FLAGSSven Eden2020-09-302-0/+15
| | | | | | | | | | | | | | Issue: dev-libs/aws-c-common-0.4.57 uses -Werror for build. Discovered on: amd64 (internal ref: ci) -Werror is not recommended for releases and should always be disabled when encountered in build-logs, because there are numerous cases where this breaks without purpose. Closes: https://bugs.gentoo.org/745093 Package-Manager: Portage-3.0.8, Repoman-3.0.1 Signed-off-by: Sven Eden <sven.eden@prydeworx.com> Signed-off-by: Joonas Niilola <juippis@gentoo.org>
* dev-libs/aws-c-common: Bump to 0.4.57 and add static-libs USE flagSven Eden2020-09-283-3/+11
| | | | | | | | | | | 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@prydeworx.com> Signed-off-by: Joonas Niilola <juippis@gentoo.org>
* dev-libs/aws-c-common: Maintainer retiredJonas Stein2020-08-241-8/+1
| | | | | | | 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@gentoo.org>
* dev-libs/aws-sdk-cpp: Switch to cmake.eclassAndreas Sturmlechner2020-01-061-1/+1
| | | | | Package-Manager: Portage-2.3.84, Repoman-2.3.20 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
* dev-libs/aws-c-common: Switch to cmake.eclassAndreas Sturmlechner2020-01-061-3/+3
| | | | | Package-Manager: Portage-2.3.84, Repoman-2.3.20 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
* */*: [QA] Fix trivial cases of MissingTestRestrictMichał Górny2019-12-111-0/+1
| | | | | | | | | | | | | | | | | | The result was achieved via the following pipeline: pkgcheck scan -c RestrictTestCheck -R FormatReporter \ --format '{category}/{package}/{package}-{version}.ebuild' | xargs -n32 grep -L RESTRICT | xargs -n32 sed -i -e '/^IUSE=.*test/aRESTRICT="!test? ( test )"' The resulting metadata was compared before and after the change. Few Go ebuilds had to be fixed manually due to implicit RESTRICT=strip added by the eclass. Two ebuilds have to be fixed because of multiline IUSE. Suggested-by: Robin H. Johnson <robbat2@gentoo.org> Closes: https://github.com/gentoo/gentoo/pull/13942 Signed-off-by: Michał Górny <mgorny@gentoo.org>
* dev-libs/aws-c-common: Core c99 package for AWS SDK for CSven Eden2019-09-203-0/+40
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@gmx.net> Bug: https://bugs.gentoo.org/666494 Package-Manager: Portage-2.3.71, Repoman-2.3.17 Signed-off-by: Joonas Niilola <juippis@gentoo.org>