Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • jspricke/python-apt
  • NorwayFun/python-apt
  • schopin/python-apt
  • otto/python-apt
  • byang/python-apt
  • shadmod/python-apt
  • sukhichev/python-apt
  • raviksharma/python-apt
  • lumin/python-apt
  • nozzy123nozzy/python-apt
  • bdrung/python-apt
  • bwduncan/python-apt
  • dekkers/python-apt
  • corytodd/python-apt
  • qyanu/python-apt
  • Aristo/python-apt
  • phd/python-apt
  • enr0n/python-apt
  • tintou/python-apt
  • mak/python-apt
  • vorlon/python-apt
  • eblom/python-apt
  • HeroesLoveToRoujiamo/python-apt
  • esherrill/python-apt
  • tai271828/python-apt
  • janitor-team/proposed/python-apt
  • danialbehzadi/python-apt
  • simpoir-guest/python-apt
  • ddstreet/python-apt
  • dannf/python-apt
  • techalchemy-guest/python-apt
  • apt-team/python-apt
  • mvo/python-apt
  • prahal/python-apt
  • rbalint/python-apt
  • jak/python-apt
  • evgeni/python-apt
  • jelmer/python-apt
  • qudongfang-guest/python-apt
  • jbicha/python-apt
  • hertzog/python-apt
  • cwendling-guest/python-apt
  • nicoo/python-apt
  • waveform/python-apt
44 results
Show changes
Commits on Source (1)
......@@ -14,7 +14,6 @@ Build-Depends: apt (>= 1.0.9.4),
libapt-pkg-dev (>= 1.9.11~),
python3-all (>= 3.3),
python3-all-dev (>= 3.3),
python3-all-dbg (>= 3.3),
python3-distutils,
python3-distutils-extra (>= 2.0),
python3-setuptools,
......@@ -72,7 +71,7 @@ Multi-Arch: allowed
Depends: ${python3:Depends}, ${shlibs:Depends}, ${misc:Depends}, python-apt-common, distro-info-data
Recommends: lsb-release, iso-codes
Provides: ${python3:Provides}
Suggests: python3-apt-dbg, python-apt-doc, apt
Suggests: python-apt-doc, apt
Breaks: python-apt (<< 0.7.98+nmu1),
apt-xapian-index (<< 0.51~),
kthresher (<= 1.4.0-1)
......@@ -89,19 +88,3 @@ Description: Python 3 interface to libapt-pkg
.
The included 'aptsources' Python interface provides an abstraction of
the sources.list configuration on the repository and the distro level.
Package: python3-apt-dbg
Architecture: any
Multi-Arch: allowed
Section: debug
Breaks: python-apt (<< 0.7.98+nmu1)
Replaces: python-apt (<< 0.7.98+nmu1)
Depends: ${python3:Depends}, python3-apt (= ${binary:Version}), ${shlibs:Depends},
${misc:Depends}
Provides: ${python3:Provides}
Description: Python 3 interface to libapt-pkg (debug extension)
The apt_pkg Python 3 interface will provide full access to the internal
libapt-pkg structures allowing Python 3 programs to easily perform a
variety of functions.
.
This package contains the extension built for the Python debug interpreter.
......@@ -29,16 +29,14 @@ override_dh_auto_install:
mkdir -p debian/python-apt-common/usr/share/
mv debian/python3-apt/usr/share/locale debian/python-apt-common/usr/share/
mv debian/python3-apt/usr/share/python-apt debian/python-apt-common/usr/share/
rm -r debian/python3-*/usr/share/locale
rm -r debian/python3-*/usr/share/python-apt
rmdir debian/python3-*/usr/share
rmdir debian/python3-apt/usr/share
override_dh_installdocs:
dh_installdocs -p python3-apt -p python3-apt-dbg --link-doc=python3-apt
dh_installdocs -p python3-apt --link-doc=python3-apt
dh_installdocs --remaining-packages
override_dh_strip:
dh_strip -p python3-apt --dbg-package=python3-apt-dbg
dh_strip -p python3-apt --dbgsym-migration='python3-apt-dbg (<< 2.3.1~)'
override_dh_compress:
dh_compress -X.js -X_static/* -X _sources/* -X_sources/*/* -X.inv
......