Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
RKWard
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
5
Issues
5
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Education
RKWard
Commits
c267219e
Commit
c267219e
authored
Apr 04, 2016
by
Thomas Friedrichsmeier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bookkeeping and more conservative runtime dependencies
parent
c0aeb3ef
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
5 deletions
+9
-5
debian-official/changelog
debian-official/changelog
+4
-2
debian-official/rules
debian-official/rules
+2
-2
debian/changelog
debian/changelog
+2
-0
debian/rules
debian/rules
+1
-1
No files found.
debian-official/changelog
View file @
c267219e
...
...
@@ -2,8 +2,10 @@ rkward (0.6.5-1) UNRELEASED; urgency=low
* new upstream release
(unchanged with respect to ~rc1)
* fix debian/watch file
* switch to dh-based rules file
!!!TODO!!!: Does this fix the rkward-data build for binary-arch problem?
* always use build-time version of r-base-core as runtime dependency, even
if most builds would actually be backwards compatible
* switch to dh-based rules file. This also fixes missing separation between
arch-dependent and arch-independent build targets
* !!!TODO!!!: Make build really reproducible (fix for earlier attempt upstream)
closes: #783290
...
...
debian-official/rules
View file @
c267219e
...
...
@@ -62,7 +62,7 @@ override_dh_shlibdeps:
dh_shlibdeps
# unfortunately, the r-base-core dependency can not be found by dh_shlibdeps, so we need to get at the version manually
# NOTE: This "if" is currently always true (see build-deps), but left here, for convenience, in case we get into trouble
# with binary incompatibility (
backward / foward
) again, in the future.
# with binary incompatibility (
esp. foward incompatibility
) again, in the future.
@if [ "$(RMAJOR)" -eq "3" ] && [ "$(RMINOR)" -ge "0" ] ; then \
echo "rvers=r-base-core (>=
3.0
.0)" >> $(CURDIR)/debian/rkward.substvars ; \
echo "rvers=r-base-core (>=
$(RMAJOR).$(RMINOR)
.0)" >> $(CURDIR)/debian/rkward.substvars ; \
fi
debian/changelog
View file @
c267219e
rkward (0.6.5-1) UNRELEASED; urgency=low
* new upstream release
* fix debian/watch file
* always use build-time version of r-base-core as runtime dependency, even
if most builds would actually be backwards compatible
* split architecture independent files into new rkward-data package
* bump standards version to 3.9.7 (no changes needed)
* strip testing locale "x-test" from package
...
...
debian/rules
View file @
c267219e
...
...
@@ -133,7 +133,7 @@ binary-arch: build install
dh_shlibdeps
# unfortunately, the r-base-core dependency can not be found by dh_shlibdeps, so we need to get at the version manually
@
if
[
"
$(RMAJOR)
"
-eq
"3"
]
&&
[
"
$(RMINOR)
"
-ge
"0"
]
;
then
\
echo
"rvers=r-base-core (>=
3.0.0
)"
>>
$(CURDIR)
/debian/rkward.substvars
;
\
echo
"rvers=r-base-core (>=
$(RVERS)
)"
>>
$(CURDIR)
/debian/rkward.substvars
;
\
else
\
if
[
"
$(RMAJOR)
"
-eq
"2"
]
&&
[
"
$(RMINOR)
"
-ge
"14"
]
;
then
\
echo
"rvers=r-base-core (>= 2.9.0), r-base-core (<< 3.0.0)"
>>
$(CURDIR)
/debian/rkward.substvars
;
\
...
...
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