-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Documentation: use prettier on markdown files
- Loading branch information
1 parent
24b122e
commit a8fdeb6
Showing
22 changed files
with
599 additions
and
681 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,28 @@ | ||
# Archiving a suite | ||
|
||
How to mark a suite as sticky (ensuring its packages remain around) *before* it | ||
How to mark a suite as sticky (ensuring its packages remain around) _before_ it | ||
gets removed from the mirror network. | ||
|
||
1) edit `lib/debsources/consts.py`, setting `archived: True` on the relevant suite | ||
1. edit `lib/debsources/consts.py`, setting `archived: True` on the relevant suite | ||
(if it exists there otherwise, e.g., `*-lts` variants, don't bother) | ||
|
||
2) on the DB: set to `t` the column `sticky` of the relevant suite, e.g.: | ||
2. on the DB: set to `t` the column `sticky` of the relevant suite, e.g.: | ||
|
||
```sql | ||
update suites_info set sticky = 't' where name = 'squeeze'; | ||
``` | ||
```sql | ||
update suites_info set sticky = 't' where name = 'squeeze'; | ||
``` | ||
|
||
3) archive the suite using the archiver `add` action, e.g.: | ||
3. archive the suite using the archiver `add` action, e.g.: | ||
|
||
```shell | ||
bin/debsources-suite-archive add squeeze | ||
``` | ||
```shell | ||
bin/debsources-suite-archive add squeeze | ||
``` | ||
|
||
or, more precisely on sources.d.o machine: | ||
or, more precisely on sources.d.o machine: | ||
|
||
```shell | ||
sudo -u debsources PYTHONPATH=./lib bin/debsources-suite-archive add squeeze -vvv --single-transaction no | ||
``` | ||
```shell | ||
sudo -u debsources PYTHONPATH=./lib bin/debsources-suite-archive add squeeze -vvv --single-transaction no | ||
``` | ||
|
||
4) run `bin/debsources-suite-archive list` and check that the given suite is | ||
4. run `bin/debsources-suite-archive list` and check that the given suite is | ||
marked as both available and indexed, i.e., `True` on both columns |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
A list of Debian bugs related, for various reasons, to Debsources and/or | ||
sources.debian.org is available at: | ||
|
||
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=debsources;users=zack@debian.org | ||
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=debsources;users=zack@debian.org | ||
|
||
To add a bug to that list (please ask qa-debsources@lists.alioth.debian.org first): | ||
|
||
bts user zack@debian.org , usertag XXXXXX debsources | ||
bts user zack@debian.org , usertag XXXXXX debsources |
Oops, something went wrong.