-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' of https://github.com/furlongm/patchman into d…
…evelop
- Loading branch information
Showing
89 changed files
with
297 additions
and
462 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
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,5 +1,5 @@ | ||
# Copyright 2012 VPAC, http://www.vpac.org | ||
# Copyright 2013-2016 Marcus Furlong <[email protected]> | ||
# Copyright 2013-2020 Marcus Furlong <[email protected]> | ||
# | ||
# This file is part of Patchman. | ||
# | ||
|
@@ -15,8 +15,6 @@ | |
# You should have received a copy of the GNU General Public License | ||
# along with Patchman. If not, see <http://www.gnu.org/licenses/> | ||
|
||
from __future__ import unicode_literals | ||
|
||
from django.contrib import admin | ||
from arch.models import PackageArchitecture, MachineArchitecture | ||
|
||
|
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,4 +1,4 @@ | ||
# Copyright 2019 Marcus Furlong <[email protected]> | ||
# Copyright 2019-2020 Marcus Furlong <[email protected]> | ||
# | ||
# This file is part of Patchman. | ||
# | ||
|
@@ -14,8 +14,6 @@ | |
# You should have received a copy of the GNU General Public License | ||
# along with Patchman. If not, see <http://www.gnu.org/licenses/> | ||
|
||
from __future__ import unicode_literals | ||
|
||
from django.apps import AppConfig | ||
|
||
|
||
|
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,5 +1,5 @@ | ||
# Copyright 2012 VPAC, http://www.vpac.org | ||
# Copyright 2013-2016 Marcus Furlong <[email protected]> | ||
# Copyright 2013-2020 Marcus Furlong <[email protected]> | ||
# | ||
# This file is part of Patchman. | ||
# | ||
|
@@ -15,13 +15,9 @@ | |
# You should have received a copy of the GNU General Public License | ||
# along with Patchman. If not, see <http://www.gnu.org/licenses/> | ||
|
||
from __future__ import unicode_literals | ||
|
||
from django.utils.encoding import python_2_unicode_compatible | ||
from django.db import models | ||
|
||
|
||
@python_2_unicode_compatible | ||
class Architecture(models.Model): | ||
|
||
name = models.CharField(unique=True, max_length=255) | ||
|
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,4 +1,4 @@ | ||
# Copyright 2016 Marcus Furlong <[email protected]> | ||
# Copyright 2016-2020 Marcus Furlong <[email protected]> | ||
# | ||
# This file is part of Patchman. | ||
# | ||
|
@@ -14,8 +14,6 @@ | |
# You should have received a copy of the GNU General Public License | ||
# along with Patchman. If not, see <http://www.gnu.org/licenses/> | ||
|
||
from __future__ import unicode_literals | ||
|
||
from rest_framework import serializers | ||
|
||
from arch.models import PackageArchitecture, MachineArchitecture | ||
|
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,4 +1,4 @@ | ||
# Copyright 2016 Marcus Furlong <[email protected]> | ||
# Copyright 2016-2020 Marcus Furlong <[email protected]> | ||
# | ||
# This file is part of Patchman. | ||
# | ||
|
@@ -14,8 +14,6 @@ | |
# You should have received a copy of the GNU General Public License | ||
# along with Patchman. If not, see <http://www.gnu.org/licenses/> | ||
|
||
from __future__ import unicode_literals | ||
|
||
from rest_framework import viewsets, permissions | ||
|
||
from arch.models import PackageArchitecture, MachineArchitecture | ||
|
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 |
---|---|---|
|
@@ -3,23 +3,23 @@ Section: python | |
Priority: optional | ||
Maintainer: Marcus Furlong <[email protected]> | ||
Uploaders: Marcus Furlong <[email protected]> | ||
Build-Depends: debhelper (>=9.0.0), python (>= 2.7), dh-python, dh-exec | ||
Standards-Version: 3.9.7 | ||
Build-Depends: debhelper (>=12), python3 (>= 3.6), dh-python, dh-exec | ||
Standards-Version: 4.3.0 | ||
Homepage: https://github.com/furlongm/patchman | ||
Vcs-Git: git://github.com/furlongm/patchman | ||
Vcs-Browser: https://github.com/furlongm/patchman | ||
X-Python-Version: >= 2.7 | ||
X-Python3-Version: >= 3.6 | ||
|
||
Package: python-patchman | ||
Package: python3-patchman | ||
Architecture: all | ||
Homepage: https://github.com/furlongm/patchman | ||
Depends: ${misc:Depends}, python (>= 2.7), python-django (>= 1.11.0), | ||
python-django-tagging, python-debian, python-rpm, python-progressbar, | ||
python-defusedxml, python-django-extensions, python-colorama, python-requests, | ||
python-humanize, python-django-bootstrap3, python-lzma, python-humanize, | ||
python-magic, python-memcache, python-pip, python-lxml, | ||
python-djangorestframework, memcached, libapache2-mod-wsgi,apache2 | ||
Suggests: python-django-celery | ||
Depends: ${misc:Depends}, python3 (>= 3.6), python3-django (>= 2.2), | ||
python3-django-tagging, python3-django-extensions, python3-django-bootstrap3, | ||
python3-djangorestframework, python3-debian, python3-rpm, python3-progressbar, | ||
python3-lxml, python3-defusedxml, python3-requests, python3-colorama, | ||
python3-magic, python3-humanize, python3-pip, python3-memcache, memcached, | ||
libapache2-mod-wsgi-py3, apache2 | ||
Suggests: python3-django-celery, python3-mysqldb, python3-psycopg2 | ||
Description: Django-based patch status monitoring tool for linux systems. | ||
. | ||
Patchman provides a web interface for monitoring host package updates. | ||
|
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
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
Oops, something went wrong.