Skip to content

Commit 901875a

Browse files
committed
Rename parkoview -> upciti, drop jessie support
1 parent d55041d commit 901875a

File tree

7 files changed

+9
-91
lines changed

7 files changed

+9
-91
lines changed

.gitlab-ci.yml

-78
This file was deleted.

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2019 Parkoview SA
3+
Copyright (c) 2019-2020 Parkoview SA
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy of
66
this software and associated documentation files (the "Software"), to deal in

Makefile

+2-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
MAKE := $(MAKE) --no-print-directory
22
SHELL = sh
33

4-
IMAGE_NAME ?= parkoview/wheel2deb
4+
IMAGE_NAME ?= wheel2deb
55

66
DEBIAN_DISTS := stretch buster
77

@@ -31,7 +31,7 @@ images:
3131
check:
3232
@flake8 src
3333

34-
tests: bdist
34+
tests:
3535
$(eval images := $(foreach a,$(DEBIAN_DISTS),$(IMAGE_NAME):$(a)))
3636
$(call map,run_tests,$(images))
3737

@@ -45,10 +45,6 @@ clean:
4545

4646
.PHONY: default bdist images clean publish check
4747

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-
5248
define build_debian_image
5349
cat docker/Dockerfile.in | sed s/_IMAGE_/debian:$(1)-slim/ | docker build -t $(IMAGE_NAME):$(1) --cache-from $(IMAGE_NAME):$(1) -f - dist;
5450
endef

docker/Dockerfile.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
FROM _IMAGE_
2-
LABEL maintainer="fyhertz@gmail.com"
2+
LABEL maintainer="simon.guigui@upciti.com"
33

44
ENV LC_ALL=C.UTF-8
55
ENV LANG=C.UTF-8

setup.cfg

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ name = wheel2deb
33
description = wheel2deb: python wheel to debian package converter
44
long_description = file: README.md
55
long-description-content-type = text/markdown
6-
url = https://github.com/parkoview/wheel2deb/
6+
url = https://github.com/upciti/wheel2deb/
77
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
1010
author = Simon Guigui
1111
license = MIT license
1212
license_file = LICENSE

src/_wheel2deb/context.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
@attr.s
99
class Context:
1010
maintainer_name = attr.ib(default='wheel2deb')
11-
maintainer_email = attr.ib(default='wheel2deb@parkoview.com')
11+
maintainer_email = attr.ib(default='wheel2deb@upciti.com')
1212
distribution = attr.ib(default='unstable')
1313
python_version = attr.ib(
1414
converter=lambda x: Version.from_str(x) if isinstance(x, str) else x,

testing/test_tools.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def test_parse_debian_control(tmp_path):
99
f.write("""Source: python-absl-py
1010
Section: python
1111
Priority: optional
12-
Maintainer: wheel2deb <wheel2deb@parkoview.com>
12+
Maintainer: wheel2deb <wheel2deb@upciti.com>
1313
Build-Depends: debhelper
1414
Standards-Version: 3.9.6
1515

0 commit comments

Comments
 (0)