mirror of
https://github.com/Project-OSS-Revival/alien.git
synced 2026-04-24 14:00:17 +00:00
Compare commits
17 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ee8794614c | ||
|
|
c4c8e3bc4a | ||
|
|
c6b123e40f | ||
|
|
c83906446f | ||
|
|
6a2e53bc63 | ||
|
|
ccd0532208 | ||
|
|
3985359d47 | ||
|
|
385b2066d3 | ||
|
|
b65f2d6974 | ||
|
|
2989545da6 | ||
|
|
3e7874e029 | ||
|
|
919146ea09 | ||
|
|
7179500cf8 | ||
|
|
f0fe4f6c80 | ||
|
|
922b06bf8d | ||
|
|
b235b51c36 | ||
|
|
3e46c56693 |
@@ -496,6 +496,9 @@ override_dh_strip:
|
|||||||
# This has been known to break on some wacky binaries.
|
# This has been known to break on some wacky binaries.
|
||||||
# dh_strip
|
# dh_strip
|
||||||
|
|
||||||
|
override_dh_usrlocal:
|
||||||
|
-dh_usrlocal || printf "Your package seems to be installing files into /usr/local/, which could be buggy. Will continue anyway.\\n"
|
||||||
|
|
||||||
override_dh_fixperms:
|
override_dh_fixperms:
|
||||||
$fixpermscomment dh_fixperms
|
$fixpermscomment dh_fixperms
|
||||||
|
|
||||||
|
|||||||
@@ -773,6 +773,9 @@ sub arch {
|
|||||||
elsif ($arch eq 'all') {
|
elsif ($arch eq 'all') {
|
||||||
$arch='noarch';
|
$arch='noarch';
|
||||||
}
|
}
|
||||||
|
elsif ($arch eq 'arm64') {
|
||||||
|
$arch='aarch64';
|
||||||
|
}
|
||||||
elsif ($arch eq 'ppc64el') {
|
elsif ($arch eq 'ppc64el') {
|
||||||
$arch='ppc64le';
|
$arch='ppc64le';
|
||||||
}
|
}
|
||||||
|
|||||||
39
debian/changelog
vendored
39
debian/changelog
vendored
@@ -1,3 +1,42 @@
|
|||||||
|
alien (8.95.8) unstable; urgency=medium
|
||||||
|
|
||||||
|
* QA upload.
|
||||||
|
* debian/salsa-ci.yml: Add to provide CI tests for Salsa.
|
||||||
|
* debian/tests/*: Create autopkgtest.
|
||||||
|
|
||||||
|
-- Daniel Alber Costa <danielrodrc@gmail.com> Sun, 24 Nov 2024 21:32:45 -0300
|
||||||
|
|
||||||
|
alien (8.95.7) unstable; urgency=medium
|
||||||
|
|
||||||
|
* QA upload.
|
||||||
|
* debian/copyright: use spaces rather than tabs to start continuation lines.
|
||||||
|
* Update standards version to 4.6.2, no changes needed.
|
||||||
|
|
||||||
|
[ Alois Klink ]
|
||||||
|
* Alien/Package/Rpm.pm: Map arm64 in deb to aarch64 in rpm.
|
||||||
|
This fixes conversion of arm64 deb packages.
|
||||||
|
|
||||||
|
-- Bastian Germann <bage@debian.org> Sat, 22 Jun 2024 19:41:24 +0000
|
||||||
|
|
||||||
|
alien (8.95.6) unstable; urgency=medium
|
||||||
|
|
||||||
|
* QA upload.
|
||||||
|
|
||||||
|
[ Debian Janitor ]
|
||||||
|
* Remove constraints unnecessary since buster:
|
||||||
|
+ alien: Drop versioned constraint on rpm in Depends.
|
||||||
|
|
||||||
|
-- Jelmer Vernooij <jelmer@debian.org> Wed, 25 May 2022 18:54:06 +0100
|
||||||
|
|
||||||
|
alien (8.95.5) unstable; urgency=medium
|
||||||
|
|
||||||
|
* QA upload.
|
||||||
|
* Alien/Package/Deb.pm: Do not fail when dh_usrlocal returns
|
||||||
|
with nonzero value. A warning (shown in --veryverbose)
|
||||||
|
is generated instead. (Closes: #992188)
|
||||||
|
|
||||||
|
-- Boyuan Yang <byang@debian.org> Sun, 22 Aug 2021 01:14:58 -0400
|
||||||
|
|
||||||
alien (8.95.4) unstable; urgency=high
|
alien (8.95.4) unstable; urgency=high
|
||||||
|
|
||||||
* QA upload.
|
* QA upload.
|
||||||
|
|||||||
4
debian/control
vendored
4
debian/control
vendored
@@ -3,7 +3,7 @@ Section: admin
|
|||||||
Priority: optional
|
Priority: optional
|
||||||
Build-Depends: debhelper-compat (= 13)
|
Build-Depends: debhelper-compat (= 13)
|
||||||
Maintainer: Debian QA Group <packages@qa.debian.org>
|
Maintainer: Debian QA Group <packages@qa.debian.org>
|
||||||
Standards-Version: 4.5.0
|
Standards-Version: 4.6.2
|
||||||
Rules-Requires-Root: no
|
Rules-Requires-Root: no
|
||||||
Vcs-Git: https://salsa.debian.org/debian/alien.git
|
Vcs-Git: https://salsa.debian.org/debian/alien.git
|
||||||
Vcs-Browser: https://salsa.debian.org/debian/alien
|
Vcs-Browser: https://salsa.debian.org/debian/alien
|
||||||
@@ -14,7 +14,7 @@ Architecture: all
|
|||||||
Depends: debhelper (>= 10),
|
Depends: debhelper (>= 10),
|
||||||
${misc:Depends},
|
${misc:Depends},
|
||||||
${perl:Depends},
|
${perl:Depends},
|
||||||
rpm (>= 2.4.4-2),
|
rpm,
|
||||||
dpkg-dev,
|
dpkg-dev,
|
||||||
make,
|
make,
|
||||||
cpio,
|
cpio,
|
||||||
|
|||||||
3
debian/salsa-ci.yml
vendored
Normal file
3
debian/salsa-ci.yml
vendored
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
---
|
||||||
|
include:
|
||||||
|
- https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/recipes/debian.yml
|
||||||
5
debian/tests/control
vendored
Normal file
5
debian/tests/control
vendored
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
Test-Command: alien --help 2>&1 | grep "^Usage: alien"
|
||||||
|
Restrictions: allow-stderr, superficial
|
||||||
|
|
||||||
|
Tests: convert-deb-to-rpm.sh
|
||||||
|
Restrictions: allow-stderr, superficial
|
||||||
5
debian/tests/convert-deb-to-rpm.sh
vendored
Normal file
5
debian/tests/convert-deb-to-rpm.sh
vendored
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
cp debian/tests/data/* $AUTOPKGTEST_TMP
|
||||||
|
cd $AUTOPKGTEST_TMP
|
||||||
|
|
||||||
|
alien --to-rpm *
|
||||||
BIN
debian/tests/data/libmnl0_1.0.5-3_amd64.deb
vendored
Normal file
BIN
debian/tests/data/libmnl0_1.0.5-3_amd64.deb
vendored
Normal file
Binary file not shown.
Reference in New Issue
Block a user