]>
git.decadent.org.uk Git - dak.git/log
Ansgar Burchardt [Thu, 31 Jul 2014 21:23:35 +0000 (23:23 +0200)]
The Binary field of source packages is comma-seperated.
Ansgar Burchardt [Thu, 31 Jul 2014 21:16:48 +0000 (23:16 +0200)]
daklib/packagelist.py: Additional sanity checks.
Ansgar Burchardt [Thu, 31 Jul 2014 19:21:23 +0000 (21:21 +0200)]
extract_component_from_section: avoid unneeded database lookup
Ansgar Burchardt [Sun, 22 Jun 2014 20:27:37 +0000 (22:27 +0200)]
Add parser for Package-List field.
Ansgar Burchardt [Tue, 29 Jul 2014 17:41:28 +0000 (19:41 +0200)]
daklib/gpg.py: Pass a few more options to gpg.
Joerg Jaspert [Mon, 28 Jul 2014 20:16:00 +0000 (22:16 +0200)]
Merge remote-tracking branch 'alteholz/alteholz/bugfix/tracker' into merge
This (closes: 754805)
* alteholz/alteholz/bugfix/tracker:
fix for #754805
Joerg Jaspert [Sun, 27 Jul 2014 19:37:09 +0000 (21:37 +0200)]
We are in srv now, no longer org
Signed-off-by: Joerg Jaspert <joerg@debian.org>
Joerg Jaspert [Sun, 27 Jul 2014 19:23:20 +0000 (21:23 +0200)]
Allow coccia, remove morricone, dont try to important if variable is empty
Signed-off-by: Joerg Jaspert <joerg@debian.org>
Ansgar Burchardt [Sat, 19 Jul 2014 10:21:42 +0000 (12:21 +0200)]
dak.conf: Reject uploads to Debian 6 (Squeeze).
Thorsten Alteholz [Fri, 18 Jul 2014 08:29:42 +0000 (08:29 +0000)]
fix for #754805
Ansgar Burchardt [Sun, 13 Jul 2014 07:37:34 +0000 (09:37 +0200)]
dak ls: document --format=control-suite option
Ansgar Burchardt [Sat, 12 Jul 2014 11:09:06 +0000 (13:09 +0200)]
Update for 7.6.
Joerg Jaspert [Sun, 6 Jul 2014 10:42:09 +0000 (12:42 +0200)]
Remove mail-archiving code, mail is no longer on ftp-master
Ansgar Burchardt [Wed, 25 Jun 2014 19:29:53 +0000 (21:29 +0200)]
Add change-component command.
Ansgar Burchardt [Thu, 19 Jun 2014 14:34:09 +0000 (16:34 +0200)]
Implement architecture matching rules.
Ansgar Burchardt [Wed, 18 Jun 2014 18:54:36 +0000 (20:54 +0200)]
Revert "Add a deb822 for the backports NEW queue (Closes: #749102)"
This reverts commit
cda77ad8e9f59752b615ec9a647848d05362a47d .
Ansgar Burchardt [Wed, 18 Jun 2014 18:53:09 +0000 (20:53 +0200)]
view src_associations_full: include sources for all binaries
The src_associations_full now includes sources for all binaries in a
suite. This includes old versions of source packages if old binary
packages are still around.
Ansgar Burchardt [Mon, 16 Jun 2014 17:45:32 +0000 (19:45 +0200)]
cron.hourly: Include backports-new queue in new.822.
Ansgar Burchardt [Mon, 16 Jun 2014 17:34:29 +0000 (19:34 +0200)]
dak queue-report: --822 outputs to stdout if no other location is given
Paul Wise [Sun, 25 May 2014 01:06:51 +0000 (09:06 +0800)]
Add a deb822 for the backports NEW queue (Closes: #749102)
Ansgar Burchardt [Mon, 26 May 2014 07:55:42 +0000 (09:55 +0200)]
Merge remote-tracking branch 'helmut/fix-gpg_get_key_addresses'
Helmut Grohne [Mon, 26 May 2014 05:47:07 +0000 (07:47 +0200)]
fix gpg_get_key_addresses
Do not use codecs.decode(s, "unicode_escape"). It has two issues:
* When being passed a bytes literal, the returned value becomes a str
and the decoding operation is locale specific on Python3.
* When passing a unicode literal, it implicitly encodes to
sys.getdefaultencoding() (locale specific) on Python2.
Thus "unicode_escape" is a bad choice in all cases.
For Python2 string_escape works with str, but it hinders a potential
Python3 port of dak. Use it now, because Python3 is totally broken.
Joerg Jaspert [Sun, 25 May 2014 12:38:56 +0000 (14:38 +0200)]
Merge remote-tracking branch 'helmut/smallthings' into merge
* helmut/smallthings:
rewrite daklib.utils.gpg_get_key_addresses
convert daklib.dbconn from os.popen to subprocess
put Python's with statement to good use
Signed-off-by: Joerg Jaspert <joerg@debian.org>
Helmut Grohne [Thu, 22 May 2014 17:08:40 +0000 (19:08 +0200)]
rewrite daklib.utils.gpg_get_key_addresses
* No longer uses the deprecated commands module.
* No longer invokes gpg via a shell.
* Passes --with-colons to gpg now.
* No longer depends on the current locale (since --with-colons forces
UTF-8 output).
Signed-off-by: Helmut Grohne <helmut@subdivi.de>
Helmut Grohne [Sat, 17 May 2014 19:31:47 +0000 (21:31 +0200)]
convert daklib.dbconn from os.popen to subprocess
It now explicitly closes the filedescriptors opened (by calling wait)
and checks the return code of gpg.
Helmut Grohne [Thu, 15 May 2014 21:36:51 +0000 (23:36 +0200)]
put Python's with statement to good use
Rather than using try-finally blocks or even failing to close files in
the event of an exception, open files in with blocks where feasible.
Signed-off-by: Helmut Grohne <helmut@subdivi.de>
Helmut Grohne [Thu, 15 May 2014 19:09:19 +0000 (21:09 +0200)]
read file once in HashedFile.check
Reading the file to check once rather than three times is both faster
and shorter.
Signed-off-by: Helmut Grohne <helmut@subdivi.de>
Signed-off-by: Helmut Grohne <helmut@subdivi.de>
Helmut Grohne [Thu, 15 May 2014 18:34:25 +0000 (20:34 +0200)]
visually fix daklib.utils.parse_wnpp_bug_file
The file asks Vim to set tabstop=4. So the "lines = []" line formerly
being indented with a tab appears to be executed unconditionally whereas
it really only is executed in the exception handler.
Signed-off-by: Helmut Grohne <helmut@subdivi.de>
Signed-off-by: Helmut Grohne <helmut@subdivi.de>
Helmut Grohne [Thu, 15 May 2014 18:32:30 +0000 (20:32 +0200)]
tell the uninitiated that 2 is ENOENT
Signed-off-by: Helmut Grohne <helmut@subdivi.de>
Signed-off-by: Helmut Grohne <helmut@subdivi.de>
Helmut Grohne [Thu, 15 May 2014 18:30:31 +0000 (20:30 +0200)]
tighten source format check for 1.0
The regular expression used a ".", so it would accept "1-0" or even
"120" for source format 1.0.
Signed-off-by: Helmut Grohne <helmut@subdivi.de>
Signed-off-by: Helmut Grohne <helmut@subdivi.de>
Joerg Jaspert [Sun, 11 May 2014 10:16:05 +0000 (12:16 +0200)]
Merge remote-tracking branch 'paultag/paultag/bugfix/new-package-template-fix' into merge
* paultag/paultag/bugfix/new-package-template-fix:
Update NEW email template.
Paul Tagliamonte [Thu, 1 May 2014 18:46:50 +0000 (14:46 -0400)]
Update NEW email template.
The last one was a bit too technical and obscured with details about
how dak works internally. This is a more clear project-centric template
that explains the situation in terms the average contributor would
understand.
Ansgar Burchardt [Wed, 7 May 2014 18:02:03 +0000 (20:02 +0200)]
TransitionCheck: do not use 'source' for two different things
Ansgar Burchardt [Wed, 7 May 2014 17:58:31 +0000 (19:58 +0200)]
daklib/checks.py: import textwrap
textwrap.wrap is used by TransitionCheck.
Ansgar Burchardt [Wed, 7 May 2014 17:57:29 +0000 (19:57 +0200)]
get_source_in_suite: return None if suite does not exist
Ansgar Burchardt [Tue, 6 May 2014 17:15:00 +0000 (19:15 +0200)]
daklib/checks.py: Set "session" variable.
Ansgar Burchardt [Sun, 4 May 2014 22:02:29 +0000 (00:02 +0200)]
daklib/dbconn.py: SQLAlchemy 0.9 is also fine.
Ansgar Burchardt [Sat, 26 Apr 2014 10:09:09 +0000 (12:09 +0200)]
README.stable-point-release: Update for 7.5
Run cruft-report later (after dominate) to pick up new cruft.
Niels Thykier [Sun, 16 Feb 2014 09:14:11 +0000 (09:14 +0000)]
daklib/utils.py: Fix crash on rdep test
Signed-off-by: Niels Thykier <nthykier@coccia.debian.org>
Joerg Jaspert [Thu, 10 Apr 2014 19:44:09 +0000 (21:44 +0200)]
Adjust security cron.daily to xz dumps and delete -mtime +30 ones
Signed-off-by: Joerg Jaspert <joerg@debian.org>
Joerg Jaspert [Sun, 2 Mar 2014 12:09:25 +0000 (13:09 +0100)]
cron.daily should have an own logfile
Signed-off-by: Joerg Jaspert <joerg@debian.org>
Joerg Jaspert [Sun, 2 Mar 2014 12:01:06 +0000 (13:01 +0100)]
one more alias
Signed-off-by: Joerg Jaspert <joerg@debian.org>
Joerg Jaspert [Sun, 2 Mar 2014 12:01:00 +0000 (13:01 +0100)]
incoming log has tag privacy (update with live version from franck)
Signed-off-by: Joerg Jaspert <joerg@debian.org>
Joerg Jaspert [Sun, 2 Mar 2014 11:58:05 +0000 (12:58 +0100)]
Update ldap cert
Signed-off-by: Joerg Jaspert <joerg@debian.org>
Ansgar Burchardt [Wed, 26 Feb 2014 17:42:38 +0000 (18:42 +0100)]
cruft report: sort sources in "Newer version in experimental"
Ansgar Burchardt [Fri, 14 Feb 2014 11:15:43 +0000 (12:15 +0100)]
process-policy: REJECT before ACCEPT
If both ACCEPT.* and REJECT.* comments are available, the package
should be rejected. So process REJECT.* first.
Joerg Jaspert [Sun, 9 Feb 2014 21:08:35 +0000 (22:08 +0100)]
More lintian fatals
Signed-off-by: Joerg Jaspert <joerg@debian.org>
Joerg Jaspert [Sun, 9 Feb 2014 10:55:39 +0000 (11:55 +0100)]
Adjust lintian autoreject tags
There are 4 new fatal, 2 new non-fatal tags.
This (closes: #721798, #733446)
Joerg Jaspert [Sat, 8 Feb 2014 21:49:04 +0000 (22:49 +0100)]
cron.monthly
compress last month dak log
reuse "olddate" variable
Joerg Jaspert [Sat, 8 Feb 2014 21:28:50 +0000 (22:28 +0100)]
Merge branch 'master' of franck.debian.org:/srv/ftp.debian.org/git/dak
* 'master' of franck.debian.org:/srv/ftp.debian.org/git/dak:
Update for 7.4.
Joerg Jaspert [Sat, 8 Feb 2014 21:28:04 +0000 (22:28 +0100)]
external files for security
activate them, also move them to cron.daily,
once a day this should be enough.
Ansgar Burchardt [Sat, 8 Feb 2014 10:54:05 +0000 (11:54 +0100)]
Update for 7.4.
Ansgar Burchardt [Thu, 6 Feb 2014 08:04:29 +0000 (09:04 +0100)]
Document NEW processing on security-master.
Joerg Jaspert [Sat, 1 Feb 2014 20:26:53 +0000 (21:26 +0100)]
Fix dc-tool call. in a day or two fix it again by redirecting its spam to dev/null
Signed-off-by: Joerg Jaspert <joerg@debian.org>
Joerg Jaspert [Sat, 1 Feb 2014 13:51:58 +0000 (14:51 +0100)]
push data to debian contributors
Signed-off-by: Joerg Jaspert <joerg@debian.org>
Ansgar Burchardt [Tue, 28 Jan 2014 10:10:55 +0000 (11:10 +0100)]
Remove Clean-Suites::OverrideFilename.
The option isn't used any longer in dak.
Ansgar Burchardt [Tue, 28 Jan 2014 10:09:28 +0000 (11:09 +0100)]
Remove Clean-Suites::StayOfExecution.
The option moved into the "archive" database table in
edf9c774f7d5b0148a30fd63bf1fa6bddf68d478 .
Ansgar Burchardt [Mon, 27 Jan 2014 22:24:04 +0000 (23:24 +0100)]
Keep debian-backup user.
Ansgar Burchardt [Wed, 15 Jan 2014 17:17:25 +0000 (18:17 +0100)]
Update apache.conf-ftp with current live version.
Ansgar Burchardt [Wed, 15 Jan 2014 15:37:41 +0000 (16:37 +0100)]
Merge remote-tracking branch 'origin/master'
Ansgar Burchardt [Wed, 15 Jan 2014 15:02:54 +0000 (16:02 +0100)]
Remove unused function.
Ansgar Burchardt [Wed, 15 Jan 2014 15:01:21 +0000 (16:01 +0100)]
Get rid of DatabaseHostname.
This also requires dropping __PRIMARY_MIRROR__ from the removal templates,
but this field already got the wrong value in case there are multiple
archives with different mirrors as only a single value was supported.
Thomas Bechtold [Sat, 11 Jan 2014 08:18:53 +0000 (09:18 +0100)]
Fix permissions for files in daklib/
No file in daklib needs the executable bit.
Bug: http://bugs.debian.org/735114
Joerg Jaspert [Tue, 14 Jan 2014 06:58:40 +0000 (07:58 +0100)]
rename metadata host
Signed-off-by: Joerg Jaspert <joerg@debian.org>
Ansgar Burchardt [Mon, 13 Jan 2014 18:10:42 +0000 (19:10 +0100)]
Remove links to HTML and CSS validators.
This also gets rid of external (non-debian.org) and unencrypted resources.
Ansgar Burchardt [Mon, 13 Jan 2014 18:07:33 +0000 (19:07 +0100)]
Use more https://.
Ansgar Burchardt [Sun, 5 Jan 2014 21:25:29 +0000 (22:25 +0100)]
It's generate-d-i, not generate-di.
Ansgar Burchardt [Thu, 2 Jan 2014 15:25:52 +0000 (16:25 +0100)]
Update apache.conf-ftp with current live version.
Ansgar Burchardt [Thu, 2 Jan 2014 15:08:23 +0000 (16:08 +0100)]
Use os.path.lexists instead of exists
scripts/debian/link_morgue.sh replaces files present on snapshot.d.o
with symlinks that are not valid on ftp-master.d.o.
Joerg Jaspert [Sat, 14 Dec 2013 11:20:17 +0000 (12:20 +0100)]
Note 7.3, just for the fun
Signed-off-by: Joerg Jaspert <joerg@debian.org>
Joerg Jaspert [Sat, 14 Dec 2013 09:59:57 +0000 (10:59 +0100)]
rename one function, drop psql alias
Signed-off-by: Joerg Jaspert <joerg@debian.org>
Ansgar Burchardt [Sun, 27 Oct 2013 19:22:11 +0000 (20:22 +0100)]
daklib/filewriter.py: indices do not need to be group-writable
Ansgar Burchardt [Sun, 27 Oct 2013 19:20:06 +0000 (20:20 +0100)]
daklib/filewriter.py: no longer invoke a shell when compressing files
Ansgar Burchardt [Sun, 27 Oct 2013 16:08:16 +0000 (17:08 +0100)]
Include {Packages,Sources}.xz indices in Release file.
Ansgar Burchardt [Sun, 27 Oct 2013 15:28:11 +0000 (16:28 +0100)]
daklib/filewriter.py: change default compression to gzip and xz
Change the default compression for Packages and Sources indices to gzip
and xz (from gzip and bzip2). This does not affect existing suites with
indices_compression set in the database.
Ansgar Burchardt [Sun, 27 Oct 2013 15:20:41 +0000 (16:20 +0100)]
Merge branch 'pu/xz-for-indices'
Conflicts:
dak/generate_packages_sources2.py
daklib/filewriter.py
Ansgar Burchardt [Sun, 19 Feb 2012 14:06:04 +0000 (14:06 +0000)]
Pass compression methods to FileWriter.
Ansgar Burchardt [Sun, 19 Feb 2012 14:05:33 +0000 (14:05 +0000)]
Add database fields to override compression methods.
Ansgar Burchardt [Sun, 27 Oct 2013 14:29:22 +0000 (15:29 +0100)]
Replace os.popen with the subprocess.Popen in a few places.
Ansgar Burchardt [Sun, 27 Oct 2013 12:47:10 +0000 (13:47 +0100)]
dak/rm.py: allow closing bugs no matter which suite packages are removed from
Closing bugs can make sense even when not removing the package from
unstable, for example when removing a package from experimental that
only was uploaded there and has no version in unstable.
Ansgar Burchardt [Sun, 20 Oct 2013 12:43:50 +0000 (14:43 +0200)]
daklib/dbconn.py: do not import apt_pkg again
Ansgar Burchardt [Sun, 20 Oct 2013 12:09:18 +0000 (14:09 +0200)]
dak/process_policy.py: process sourceful uploads first
Bug: http://bugs.debian.org/703876
Ansgar Burchardt [Sun, 20 Oct 2013 11:56:42 +0000 (13:56 +0200)]
daklib/checks.py: No longer set LINTIAN_COLL_UNPACKED_SKIP_SIG=1
lintian passes --no-check to dpkg-source by default since 2.5.15. There
is no longer a need to set undocumented environment variables.
Ansgar Burchardt [Sun, 20 Oct 2013 11:56:10 +0000 (13:56 +0200)]
daklib/checks.py: make lintian check use subprocess module
Ansgar Burchardt [Sun, 20 Oct 2013 09:02:04 +0000 (11:02 +0200)]
Reset signal handler to default action in child processes
Python changes the signal handler to SIG_IGN for a few signals which
causes unexpected behaviour in child processes. The wrapper functions in
the new daklib.daksubprocess module reset them to SIG_DFL in child
processes.
Reference: http://bugs.python.org/issue1652
Joerg Jaspert [Sat, 19 Oct 2013 19:04:15 +0000 (21:04 +0200)]
Dont generate SHA512sum lines in generate_packages_sources (used for squeeze)
Signed-off-by: Joerg Jaspert <joerg@debian.org>
Ansgar Burchardt [Tue, 15 Oct 2013 17:23:15 +0000 (19:23 +0200)]
config/debian/dak.conf: reject uploads to jessie-{backports,updates}
Ansgar Burchardt [Tue, 15 Oct 2013 17:11:11 +0000 (19:11 +0200)]
allow adding multiple architectures and components to a suite at the same time
This should make it a bit more comfortable to setup new suites.
Ansgar Burchardt [Mon, 14 Oct 2013 12:14:34 +0000 (14:14 +0200)]
byhand-di: fix version match
35b109fe6f42b6853809151e73be96909af7e3f7 made the script reject uploads using
YYYYMMDD as a closing ")" was at the wrong location.
Ansgar Burchardt [Sat, 12 Oct 2013 12:16:22 +0000 (14:16 +0200)]
README.stable-point-release: updates from Debian Wheezy 7.2
Ansgar Burchardt [Sat, 12 Oct 2013 12:00:32 +0000 (14:00 +0200)]
Use SHA256 for signatures.
As dak passes --no-options to gpg, setting preferences in gpg.conf does
not help.
Bug: http://bugs.debian.org/612657
Ansgar Burchardt [Sat, 12 Oct 2013 10:54:25 +0000 (12:54 +0200)]
Import daklib.utils, not utils.
Ansgar Burchardt [Thu, 10 Oct 2013 08:03:00 +0000 (10:03 +0200)]
byhand-di: accept +debXuZ in versions
Reported-by: Adam D. Barratt <adam@adam-barratt.org.uk>
Ansgar Burchardt [Mon, 30 Sep 2013 18:09:53 +0000 (20:09 +0200)]
README.stable-point-release: add if block around squeeze-only step
Ansgar Burchardt [Mon, 30 Sep 2013 18:08:21 +0000 (20:08 +0200)]
README.stable-point-release: add generate-i18n-Index call
Ansgar Burchardt [Sun, 29 Sep 2013 20:57:42 +0000 (22:57 +0200)]
use yaml.safe_{load,dump} functions
The yaml.load() function can run arbitrary code, the safe_load() variant only
understands a safe subset of YAML which is enough for dak.
Ansgar Burchardt [Thu, 26 Sep 2013 07:13:44 +0000 (09:13 +0200)]
daklib/archive.py: fix copying between components
The _copy_file() method needs to check if the file is already in the target
component. Having it in any component is not enough if it should be copied to
an additional component in the same archive.
Ansgar Burchardt [Wed, 25 Sep 2013 21:58:55 +0000 (23:58 +0200)]
daklib/archive.py: allow copying files between components
Copying files between components is useful when a package moves between
components as otherwise the .changes would have to include the upstream
tarball (even if it did not change).
Signed-off-by: Ansgar Burchardt <ansgar@debian.org>
Ansgar Burchardt [Wed, 18 Sep 2013 18:36:51 +0000 (20:36 +0200)]
Run clean-suites after processing policy queues
Files belonging to rejected uploads should be removed as soon as possible in
case a modified package with the same version is uploaded.
Signed-off-by: Ansgar Burchardt <ansgar@debian.org>
Ansgar Burchardt [Tue, 10 Sep 2013 21:39:39 +0000 (23:39 +0200)]
daklib/dbconn.py: one relation from components to suites is enough.
Signed-off-by: Ansgar Burchardt <ansgar@debian.org>