Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
aports
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
alpine
aports
Commits
0a1b441e
Commit
0a1b441e
authored
1 year ago
by
alice
Browse files
Options
Downloads
Patches
Plain Diff
community/accountsservice: skip check
parent
258130d1
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
community/accountsservice/APKBUILD
+6
-1
6 additions, 1 deletion
community/accountsservice/APKBUILD
community/accountsservice/opt-tests.patch
+24
-0
24 additions, 0 deletions
community/accountsservice/opt-tests.patch
with
30 additions
and
1 deletion
community/accountsservice/APKBUILD
+
6
−
1
View file @
0a1b441e
...
...
@@ -21,7 +21,10 @@ subpackages="$pkgname-dev $pkgname-lang lib$pkgname:libs"
source
=
"https://www.freedesktop.org/software/accountsservice/accountsservice-
$pkgver
.tar.xz
musl-fgetspent_r.patch
musl-wtmp.patch
opt-tests.patch
"
# mocklibc fails to build with implicits
options
=
"!check"
build
()
{
abuild-meson
\
...
...
@@ -32,7 +35,8 @@ build() {
-Ddocbook
=
false
\
-Dgtk_doc
=
false
\
-Dadmin_group
=
wheel
\
output
-Dtests
=
"
$(
want_check
&&
echo true
||
echo false
)
"
\
.
output
meson compile
${
JOBS
:+-j
${
JOBS
}}
-C
output
}
...
...
@@ -48,4 +52,5 @@ sha512sums="
c6eb543ce2e07b61bbdfa454e388949bc688517be0536b14f30c66383ed105b15d3fab8b6c62b1eaa08f67d9bdc29b928729d9f7c704f47de4decf0de8e12f89 accountsservice-23.13.9.tar.xz
469392beca8f5941eafaa193c4fcb0472770ee4183ce520416a1b5d6abafe0e201990eb74d06bfbd9e20af08e55aff5f0031f267083f6c6879f0fe4e5028103c musl-fgetspent_r.patch
6d81caed730473d5c94d575c580a236b4267b374bf50588860922a7ecbeef0b2a1d50124fa3ae195c4f26abe8c3bd6df2aea6d27a0ce23e99acef9fff3eb9652 musl-wtmp.patch
cc5ea18d885ccc5a85f5f4191d3157f3953878af289a9cabc373afea67726042144d66fd9f8d08dac7090fc23037ab98adb4101e8378a16ab2eb04043c88378f opt-tests.patch
"
This diff is collapsed.
Click to expand it.
community/accountsservice/opt-tests.patch
0 → 100644
+
24
−
0
View file @
0a1b441e
diff --git a/meson.build b/meson.build
index 4a509e7..5119fab 100644
--- a/meson.build
+++ b/meson.build
@@ -232,7 +232,9 @@
if get_option('gtk_doc')
subdir('doc/libaccountsservice')
endif
-subdir('tests')
+if get_option('tests')
+ subdir('tests')
+endif
configure_file(
output: 'config.h',
diff --git a/meson_options.txt b/meson_options.txt
index b34a0fa..56872c7 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -13,3 +13,4 @@
option('vapi', type: 'boolean', value: true, description : 'Enable Vala bindings
option('docbook', type: 'boolean', value: false, description: 'build documentation (requires xmlto)')
option('gtk_doc', type: 'boolean', value: false, description: 'use gtk-doc to build documentation')
+option('tests', type: 'boolean', value: true, description: 'tests')
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment