Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
apk-tools
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
2
Merge Requests
2
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Adélie Linux
apk-tools
Commits
e4554c09
Verified
Commit
e4554c09
authored
Jul 09, 2019
by
Max Rees
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add: always use UTC for virtual package versions
parent
530a6e68
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
2 deletions
+1
-2
add.c
src/add.c
+1
-1
solver.sh
test/solver.sh
+0
-1
No files found.
src/add.c
View file @
e4554c09
...
...
@@ -90,7 +90,7 @@ static struct apk_package *create_virtual_package(struct apk_database *db, struc
time_t
now
=
apk_time
();
pid_t
pid
=
getpid
();
local
time_r
(
&
now
,
&
tm
);
gm
time_r
(
&
now
,
&
tm
);
strftime
(
ver
,
sizeof
ver
,
"%Y%m%d.%H%M%S"
,
&
tm
);
virtpkg
=
apk_pkg_new
();
...
...
test/solver.sh
View file @
e4554c09
...
...
@@ -4,7 +4,6 @@ get_block() {
awk
'/^@'
$1
'/{p=1;next} /^@/{p=0} p{print}'
}
export
TZ
=
UTC
APK_TEST
=
"../src/apk-test"
TEST_TO_RUN
=
"
$@
"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment