Compare commits

...

4 Commits

Author SHA1 Message Date
Sebastian Lackner
17c1053de4 Release 1.7.34-1 (Debian/Ubuntu specific dependency fix).
The package rename caused some problems on Debian/Ubuntu. This updated version should
hopefully fix those. Other distributions which do not use debian/{rules,control} for
packaging are unaffected by these changes.
2015-01-11 19:25:22 +01:00
Sebastian Lackner
b56948f392 debian/rules: Second attempt to fix Debian/Ubuntu dependencies, this time by providing the compatibility symlinks in the main package. 2015-01-11 13:42:15 +01:00
Michael MĂĽller
7850f8bd74 Fix debian control file 2015-01-11 07:19:23 +01:00
Sebastian Lackner
25a137c8c6 debian/control: Add explicit dependency from wine-compholio dummy packages to subpackages. 2015-01-11 05:32:52 +01:00
3 changed files with 15 additions and 14 deletions

View File

@@ -37,7 +37,7 @@ Wine. All those differences are also documented on the
Included bug fixes and improvements
===================================
**Bugs fixed in Wine Staging 1.7.34 [135]:**
**Bugs fixed in Wine Staging 1.7.34-1 [135]:**
* ATL IOCS data should not be stored in GWLP_USERDATA ([Wine Bug #21767](https://bugs.winehq.org/show_bug.cgi?id=21767))
* Add Dynamic DST exceptions for Israel Standard Time ([Wine Bug #36374](https://bugs.winehq.org/show_bug.cgi?id=36374))

4
debian/changelog vendored
View File

@@ -1,3 +1,7 @@
wine-staging (1.7.34-1) unstable; urgency=low
* Debian/Ubuntu specific package dependency fix (no changes for other distros).
-- Sebastian Lackner <sebastian@fds-team.de> Sun, 11 Jan 2015 19:14:09 +0100
wine-staging (1.7.34) unstable; urgency=low
* Huge rewrite of patchupdate.py, deprecation of Makefile based way to apply patches.
* Rename debian package from 'wine-compholio' to 'wine-staging' and provide compatibility package.

23
debian/rules vendored
View File

@@ -60,19 +60,16 @@ override_dh_install:
ln -s "/opt/wine-staging/bin/$$_file" "debian/wine-compholio/opt/wine-compholio/bin/$$_file"; \
done
if [ -e debian/wine-staging-i386 ]; then \
mkdir -p debian/wine-compholio-i386/opt/wine-compholio/bin; \
for _file in $$(ls "debian/wine-staging-i386/opt/wine-staging/bin"); do \
ln -s "/opt/wine-staging/bin/$$_file" "debian/wine-compholio-i386/opt/wine-compholio/bin/$$_file"; \
done \
fi
if [ -e debian/wine-staging-amd64 ]; then \
mkdir -p debian/wine-compholio-amd64/opt/wine-compholio/bin; \
for _file in $$(ls "debian/wine-staging-amd64/opt/wine-staging/bin"); do \
ln -s "/opt/wine-staging/bin/$$_file" "debian/wine-compholio-amd64/opt/wine-compholio/bin/$$_file"; \
done \
fi
# Architecture specific compatibility symlinks
ifeq ($(DEB_HOST_ARCH),amd64)
for _file in wine wine-preloader wine64 wine64-preloader; do \
ln -s "/opt/wine-staging/bin/$$_file" "debian/wine-compholio/opt/wine-compholio/bin/$$_file"; \
done
else
for _file in wine wine-preloader; do \
ln -s "/opt/wine-staging/bin/$$_file" "debian/wine-compholio/opt/wine-compholio/bin/$$_file"; \
done
endif
override_dh_strip:
dh_strip -Xwine-pthread -Xwine-kthread --dbg-package=wine-staging-dbg