[Git][security-tracker-team/security-tracker][master] 2 commits: Remove bin/split-by-year as its printfs mangle data (\chars) and safe scripts…
Salvatore Bonaccorso
carnil at debian.org
Wed Nov 14 13:29:03 GMT 2018
Salvatore Bonaccorso pushed to branch master at Debian Security Tracker / security-tracker
Commits:
38cb386e by Daniel Lange at 2018-11-14T11:53:52Z
Remove bin/split-by-year as its printfs mangle data (\chars) and safe scripts are available in BTS #908678
- - - - -
7cb3d362 by Salvatore Bonaccorso at 2018-11-14T13:28:02Z
Merge branch 'dlange/security-tracker-dlange-remove-bin-split-by-year'
- - - - -
1 changed file:
- − bin/split-by-year
Changes:
=====================================
bin/split-by-year deleted
=====================================
@@ -1,47 +0,0 @@
-#!/bin/sh
-
-####################
-# Copyright (C) 2011 by Raphael Geissert <geissert at debian.org>
-#
-#
-# This file is free software: you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-#
-# This file is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this file. If not, see <https://www.gnu.org/licenses/>.
-####################
-
-set -eu
-
-list=data/CVE/list
-
-[ -f $list ] || {
- echo "error: $list doesn't exist" >&2
- exit 1
-}
-
-cve=
-year=
-while read line; do
- case $line in
- CVE-*)
- cve="$line"
- year="${cve#CVE-}"
- year="${year%%-*}"
- ;;
- *)
- if [ "$cve" ]; then
- printf "%s\n" "$cve" >> data/CVE/list.$year
- cve=
- fi
- printf "\t%s\n" "$line" >> data/CVE/list.$year
- ;;
- esac
-done < "$list"
View it on GitLab: https://salsa.debian.org/security-tracker-team/security-tracker/compare/17a7a589560b58238d405f05ca6904f114d83183...7cb3d36229ced20a95acb811793231fecbca4f11
--
View it on GitLab: https://salsa.debian.org/security-tracker-team/security-tracker/compare/17a7a589560b58238d405f05ca6904f114d83183...7cb3d36229ced20a95acb811793231fecbca4f11
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/debian-security-tracker-commits/attachments/20181114/cfd2c4d8/attachment-0001.html>
More information about the debian-security-tracker-commits
mailing list