File tree 7 files changed +9
-91
lines changed
7 files changed +9
-91
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
The MIT License (MIT)
2
2
3
- Copyright (c) 2019 Parkoview SA
3
+ Copyright (c) 2019-2020 Parkoview SA
4
4
5
5
Permission is hereby granted, free of charge, to any person obtaining a copy of
6
6
this software and associated documentation files (the "Software"), to deal in
Original file line number Diff line number Diff line change 1
1
MAKE := $(MAKE ) --no-print-directory
2
2
SHELL = sh
3
3
4
- IMAGE_NAME ?= parkoview/ wheel2deb
4
+ IMAGE_NAME ?= wheel2deb
5
5
6
6
DEBIAN_DISTS := stretch buster
7
7
@@ -31,7 +31,7 @@ images:
31
31
check :
32
32
@flake8 src
33
33
34
- tests : bdist
34
+ tests :
35
35
$(eval images := $(foreach a,$(DEBIAN_DISTS ) ,$(IMAGE_NAME ) :$(a ) ) )
36
36
$(call map,run_tests,$(images ) )
37
37
@@ -45,10 +45,6 @@ clean:
45
45
46
46
.PHONY : default bdist images clean publish check
47
47
48
- define build_jessie_image
49
- cat docker/Dockerfile.in | sed s/_IMAGE_/debian:jessie-patched/ | docker build -t $(IMAGE_NAME ) :jessie --cache-from $(IMAGE_NAME ) :jessie -f - dist;
50
- endef
51
-
52
48
define build_debian_image
53
49
cat docker/Dockerfile.in | sed s/_IMAGE_/debian:$(1 ) -slim/ | docker build -t $(IMAGE_NAME ) :$(1 ) --cache-from $(IMAGE_NAME ) :$(1 ) -f - dist;
54
50
endef
Original file line number Diff line number Diff line change 1
1
FROM _IMAGE_
2
- LABEL maintainer="fyhertz@gmail .com"
2
+ LABEL maintainer="simon.guigui@upciti .com"
3
3
4
4
ENV LC_ALL=C.UTF-8
5
5
ENV LANG=C.UTF-8
Original file line number Diff line number Diff line change @@ -3,10 +3,10 @@ name = wheel2deb
3
3
description = wheel2deb: python wheel to debian package converter
4
4
long_description = file: README.md
5
5
long-description-content-type = text/markdown
6
- url = https://github.com/parkoview /wheel2deb/
6
+ url = https://github.com/upciti /wheel2deb/
7
7
project_urls =
8
- Source =https://github.com/parkoview /wheel2deb
9
- Tracker =https://github.com/parkoview /wheel2deb/issues
8
+ Source =https://github.com/upciti /wheel2deb
9
+ Tracker =https://github.com/upciti /wheel2deb/issues
10
10
author = Simon Guigui
11
11
license = MIT license
12
12
license_file = LICENSE
Original file line number Diff line number Diff line change 8
8
@attr .s
9
9
class Context :
10
10
maintainer_name = attr .ib (default = 'wheel2deb' )
11
- maintainer_email = attr .ib (default = 'wheel2deb@parkoview .com' )
11
+ maintainer_email = attr .ib (default = 'wheel2deb@upciti .com' )
12
12
distribution = attr .ib (default = 'unstable' )
13
13
python_version = attr .ib (
14
14
converter = lambda x : Version .from_str (x ) if isinstance (x , str ) else x ,
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ def test_parse_debian_control(tmp_path):
9
9
f .write ("""Source: python-absl-py
10
10
Section: python
11
11
Priority: optional
12
- Maintainer: wheel2deb <wheel2deb@parkoview .com>
12
+ Maintainer: wheel2deb <wheel2deb@upciti .com>
13
13
Build-Depends: debhelper
14
14
Standards-Version: 3.9.6
15
15
You can’t perform that action at this time.
0 commit comments