Your message dated Thu, 23 Apr 2026 07:38:40 +0000
with message-id <[email protected]>
and subject line Bug#1134634: Removed package(s) from unstable
has caused the Debian Bug report #575606,
regarding /usr/bin/svn-inject: implement --add-tar option
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
575606: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=575606
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: svn-buildpackage
Version: 0.8.0~svn+nmu1
Severity: normal
File: /usr/bin/svn-inject
Tags: patch
Hi,
svn-inject has an --add-tar option that has no implementation. The
attached patch implements this option. While it is pretty straight
forward for layout style 1 to use
REPOSITORY/PACKAGE/tarballs (like REPOSITORY/PACKAGE/trunk) where it
would be picked up automatically in a full checkout, I'm not totally
convinced about using REPOSITORY/tarballs/PACKAGE for layout style 2
(but lacking any better ideas I implemented it this way for now).
Andreas
-- System Information:
Debian Release: squeeze/sid
APT prefers stable
APT policy: (800, 'stable'), (700, 'testing'), (600, 'unstable'), (130,
'experimental')
Architecture: amd64 (x86_64)
Kernel: Linux 2.6.32-3-amd64 (SMP w/2 CPU cores)
Locale: LANG=C, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Versions of packages svn-buildpackage depends on:
ii devscripts 2.10.61 scripts to make the life of a Debi
ii file 5.04-1 Determines file type using "magic"
ii libcapture-tiny-perl 0.07-1 module to capture STDOUT and STDER
ii libfile-libmagic-perl 0.91-2 Perl interface to libmagic for det
ii liblocale-gettext-perl 1.05-6 Using libc functions for internati
ii libsvn-perl 1.6.9dfsg-1 Perl bindings for Subversion
ii liburi-perl 1.52-1 module to manipulate and access UR
ii perl 5.10.1-11 Larry Wall's Practical Extraction
ii subversion 1.6.9dfsg-1 Advanced version control system
ii unp 1.0.15 unpack (almost) everything with on
ii wget 1.12-1.1 retrieves files from the web
Versions of packages svn-buildpackage recommends:
ii debhelper 7.4.15 helper programs for debian/rules
svn-buildpackage suggests no packages.
-- no debconf information
Index: b/svn-inject
===================================================================
--- a/svn-inject 2010-03-27 16:57:20.964023409 +0100
+++ b/svn-inject 2010-03-27 17:23:47.684055034 +0100
@@ -376,7 +376,7 @@
chdir $tempdir;
-my ($subupsCurrent, $subtrunk, $subupsVersion, $subtags, $subupsTags);
+my ($subupsCurrent, $subtrunk, $subupsVersion, $subtags, $subupsTags, $subtarballs);
if ($opt_layout == 1) {
$subupsCurrent="$package/branches/upstream/current";
@@ -384,6 +384,7 @@
$subupsTags="$package/branches/upstream";
$subtrunk="$package/trunk";
$subtags="$package/tags";
+ $subtarballs="$package/tarballs";
} else {
$subupsCurrent="branches/upstream/$package/current";
if(defined($upsVersion)) {
@@ -392,6 +393,7 @@
$subupsTags="branches/upstream/$package";
$subtrunk="trunk/$package";
$subtags="tags/$package";
+ $subtarballs="tarballs/$package";
}
$SDCommon::c{"trunkUrl"} = "$opt_svnurl/$subtrunk";
@@ -466,6 +468,17 @@
}
chdir $tempdir;
+# store the .orig.tar.gz in the repository
+# SVNROOT/PACKAGE/tarballs/PACKAGE_UPSVERSION.orig.tar.gz
+# SVNROOT/tarballs/PACKAGE/PACKAGE_UPSVERSION.orig.tar.gz
+if ($dscOrig && $opt_addtar) {
+ mkdir "tarballimport";
+ withecho "cp", "-a", $dscOrig, "tarballimport";
+ withecho "svn", $opt_svnquiet, "-m", "$scriptname Importing tarball $package ($upsVersion)",
+ "import", "tarballimport", "$opt_svnurl/$subtarballs";
+ system "rm -rf tarballimport";
+}
+
# Final tree prepation before commit, preconfiguring already
if($changed_non_debian || !$opt_onlychanged) {
--- End Message ---
--- Begin Message ---
Version: 0.8.10+rm
Dear submitter,
as the package svn-buildpackage has just been removed from the Debian archive
unstable we hereby close the associated bug reports. We are sorry
that we couldn't deal with your issue properly.
For details on the removal, please see https://bugs.debian.org/1134634
The version of this package that was in Debian prior to this removal
can still be found using https://snapshot.debian.org/.
Please note that the changes have been done on the master archive and
will not propagate to any mirrors until the next dinstall run at the
earliest.
This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
[email protected].
Debian distribution maintenance software
pp.
Thorsten Alteholz (the ftpmaster behind the curtain)
--- End Message ---