From 3bda43a77d8113a5983e8464bbc53f558c93de0e Mon Sep 17 00:00:00 2001 From: idk Date: Thu, 1 Aug 2019 00:39:03 -0400 Subject: [PATCH 1/6] Try and get a debian-style package started --- Makefile | 7 +++- debian/README.Debian | 8 +++++ debian/changelog | 6 ++++ debian/compat | 1 + debian/control | 15 +++++++++ debian/copyright | 66 +++++++++++++++++++++++++++++++++++++ debian/patches/series | 1 + debian/rules | 15 +++++++++ debian/source/format | 1 + debian/source/local-options | 2 ++ debian/watch | 2 ++ 11 files changed, 123 insertions(+), 1 deletion(-) create mode 100644 debian/README.Debian create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/copyright create mode 100644 debian/patches/series create mode 100755 debian/rules create mode 100644 debian/source/format create mode 100644 debian/source/local-options create mode 100644 debian/watch diff --git a/Makefile b/Makefile index 7db3815..879bd22 100644 --- a/Makefile +++ b/Makefile @@ -25,7 +25,7 @@ uninstall: clobber: rm -f ../i2psetproxy.js.zip ../i2p_proxy*.xpi -VERSION=1.28-sp +VERSION=1.27 xpi: mv ~/Downloads/i2p_proxy-$(VERSION)-an+fx.xpi ../i2psetproxy.js@eyedeekay.github.io.xpi @@ -64,3 +64,8 @@ libpolyfill: fmt: find . -name '*.js' -exec jsfmt -w {} \; + +deborig: + rm -rfv ../i2psetproxy.js-$(VERSION) + cp -rv . ../i2psetproxy.js-$(VERSION) + tar --exclude=.git -cvzf ../i2psetproxy.js-$(VERSION).tar.gz . diff --git a/debian/README.Debian b/debian/README.Debian new file mode 100644 index 0000000..aff328c --- /dev/null +++ b/debian/README.Debian @@ -0,0 +1,8 @@ +i2psetproxy.js for Debian + +Please edit this to provide information specific to +this i2psetproxy.js Debian package. + + (Automatically generated by debmake Version 4.3.1) + + -- idk Thu, 01 Aug 2019 00:32:39 -0400 diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..3e726a1 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,6 @@ +i2psetproxy.js (1.27-1) UNRELEASED; urgency=low + + * Initial release. Closes: #nnnn + + + -- idk Thu, 01 Aug 2019 00:32:39 -0400 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..b4de394 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +11 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..6a067ba --- /dev/null +++ b/debian/control @@ -0,0 +1,15 @@ +Source: i2psetproxy.js +Section: unknown +Priority: optional +Maintainer: idk +Build-Depends: debhelper (>=11~) +Standards-Version: 4.1.4 +Homepage: + +Package: i2psetproxy.js +Architecture: any +Multi-Arch: foreign +Depends: ${misc:Depends}, ${shlibs:Depends} +Description: auto-generated package by debmake + This Debian binary package was auto-generated by the + debmake(1) command provided by the debmake package. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..0981ad5 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,66 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: i2psetproxy.js +Source: +# +# Please double check copyright with the licensecheck(1) command. + +Files: .gitignore + Makefile + README.md + _locales/en/messages.json + background.js + content.js + experiments/i2ptab.md + experiments/tunblink.md + i2psetproxy.js.png + i2psetproxy.js@eyedeekay.github.io.xpi + icons/toopie.png + info.css + info.js + manifest.json + options/options.css + options/options.js + privacy.js + proxy.js +Copyright: __NO_COPYRIGHT_NOR_LICENSE__ +License: __NO_COPYRIGHT_NOR_LICENSE__ + +Files: chromium/browser-polyfill.min.js +Copyright: __NO_COPYRIGHT__ in: chromium/browser-polyfill.min.js +License: MPL-2.0 + This Source Code Form is subject to the terms of the Mozilla Public + License, v. 2.0. If a copy of the MPL was not distributed with this + file, You can obtain one at http://mozilla.org/MPL/2.0/. + +#---------------------------------------------------------------------------- +# xml and html files (skipped): +# window.html +# options/options.html + +#---------------------------------------------------------------------------- +# Files marked as NO_LICENSE_TEXT_FOUND may be covered by the following +# license/copyright files. + +#---------------------------------------------------------------------------- +# License file: LICENSE + MIT License + . + Copyright (c) 2019 idk + . + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + . + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + . + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. diff --git a/debian/patches/series b/debian/patches/series new file mode 100644 index 0000000..4a97dfa --- /dev/null +++ b/debian/patches/series @@ -0,0 +1 @@ +# You must remove unused comment lines for the released package. diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..dca10d1 --- /dev/null +++ b/debian/rules @@ -0,0 +1,15 @@ +#!/usr/bin/make -f +# You must remove unused comment lines for the released package. +#export DH_VERBOSE = 1 +#export DEB_BUILD_MAINT_OPTIONS = hardening=+all +#export DEB_CFLAGS_MAINT_APPEND = -Wall -pedantic +#export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed + +%: + dh $@ + +#override_dh_auto_install: +# dh_auto_install -- prefix=/usr + +#override_dh_install: +# dh_install --list-missing -X.pyc -X.pyo diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) diff --git a/debian/source/local-options b/debian/source/local-options new file mode 100644 index 0000000..00131ee --- /dev/null +++ b/debian/source/local-options @@ -0,0 +1,2 @@ +#abort-on-upstream-changes +#unapply-patches diff --git a/debian/watch b/debian/watch new file mode 100644 index 0000000..76575dc --- /dev/null +++ b/debian/watch @@ -0,0 +1,2 @@ +# You must remove unused comment lines for the released package. +version=3 From 608b344c459a261ad91e8d53b0dae4739f731ac2 Mon Sep 17 00:00:00 2001 From: idk Date: Tue, 24 Sep 2019 22:33:30 -0400 Subject: [PATCH 2/6] build it as a debian package and then test circleci --- .circleci/config.yml | 16 ++++++++++++++++ Makefile | 45 ++++++++++++++++++++++++-------------------- debian/rules | 22 +++++++++++++++++++--- 3 files changed, 60 insertions(+), 23 deletions(-) create mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..0811549 --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,16 @@ +version: 2 +jobs: + build: + docker: + - image: debian:stretch + + steps: + - checkout + + - run: + name: Dependencies + command: apt-get -yq install devscripts build-essential lintian zip make + + - run: + name: Build + command: make zip deb diff --git a/Makefile b/Makefile index 879bd22..9e0e04c 100644 --- a/Makefile +++ b/Makefile @@ -1,26 +1,28 @@ +PREFIX:=/usr + default: zip install: uninstall - mkdir -p /usr/share/webext/i2psetproxy.js@eyedeekay.github.io \ - /usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/ - cp -rv options /usr/share/webext/i2psetproxy.js@eyedeekay.github.io/options - cp -rv icons /usr/share/webext/i2psetproxy.js@eyedeekay.github.io/icons - cp -rv _locales /usr/share/webext/i2psetproxy.js@eyedeekay.github.io/_locales - cp background.js /usr/share/webext/i2psetproxy.js@eyedeekay.github.io - cp proxy.js /usr/share/webext/i2psetproxy.js@eyedeekay.github.io - cp info.js /usr/share/webext/i2psetproxy.js@eyedeekay.github.io - cp content.js /usr/share/webext/i2psetproxy.js@eyedeekay.github.io - cp info.css /usr/share/webext/i2psetproxy.js@eyedeekay.github.io - cp window.html /usr/share/webext/i2psetproxy.js@eyedeekay.github.io - cp manifest.json /usr/share/webext/i2psetproxy.js@eyedeekay.github.io/ - cp README.md /usr/share/webext/i2psetproxy.js@eyedeekay.github.io - cp LICENSE /usr/share/webext/i2psetproxy.js@eyedeekay.github.io - ln -sf /usr/share/webext/i2psetproxy.js@eyedeekay.github.io \ - /usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/i2psetproxy.js@eyedeekay.github.io + install -d $(PREFIX)/share/webext/i2psetproxy.js@eyedeekay.github.io \ + $(PREFIX)/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/ + install -d options $(PREFIX)/share/webext/i2psetproxy.js@eyedeekay.github.io/options + install -d icons $(PREFIX)/share/webext/i2psetproxy.js@eyedeekay.github.io/icons + install -d _locales $(PREFIX)/share/webext/i2psetproxy.js@eyedeekay.github.io/_locales + install background.js $(PREFIX)/share/webext/i2psetproxy.js@eyedeekay.github.io + install proxy.js $(PREFIX)/share/webext/i2psetproxy.js@eyedeekay.github.io + install info.js $(PREFIX)/share/webext/i2psetproxy.js@eyedeekay.github.io + install content.js $(PREFIX)/share/webext/i2psetproxy.js@eyedeekay.github.io + install info.css $(PREFIX)/share/webext/i2psetproxy.js@eyedeekay.github.io + install window.html $(PREFIX)/share/webext/i2psetproxy.js@eyedeekay.github.io + install manifest.json $(PREFIX)/share/webext/i2psetproxy.js@eyedeekay.github.io/ + install README.md $(PREFIX)/share/webext/i2psetproxy.js@eyedeekay.github.io + install LICENSE $(PREFIX)/share/webext/i2psetproxy.js@eyedeekay.github.io + ln -sf $(PREFIX)/share/webext/i2psetproxy.js@eyedeekay.github.io \ + $(PREFIX)/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/i2psetproxy.js@eyedeekay.github.io uninstall: - rm -rf /usr/share/webext/i2psetproxy.js@eyedeekay.github.io \ - /usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/i2psetproxy.js@eyedeekay.github.io + rm -rf $(PREFIX)/share/webext/i2psetproxy.js@eyedeekay.github.io \ + $(PREFIX)/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/i2psetproxy.js@eyedeekay.github.io clobber: rm -f ../i2psetproxy.js.zip ../i2p_proxy*.xpi @@ -45,7 +47,7 @@ profile-install: cp ./i2psetproxy.js@eyedeekay.github.io.xpi $(HOME)/.mozilla/firefox/.firefox.profile.i2p.default/extensions to-profile: - cp ./i2psetproxy.js@eyedeekay.github.io.xpi /usr/local/lib/firefox.profile.i2p/firefox.profile.i2p/extensions/ + cp ./i2psetproxy.js@eyedeekay.github.io.xpi $(PREFIX)/local/lib/firefox.profile.i2p/firefox.profile.i2p/extensions/ pi: profile-install @@ -68,4 +70,7 @@ fmt: deborig: rm -rfv ../i2psetproxy.js-$(VERSION) cp -rv . ../i2psetproxy.js-$(VERSION) - tar --exclude=.git -cvzf ../i2psetproxy.js-$(VERSION).tar.gz . + tar --exclude='./.git' -cvzf ../i2psetproxy.js-$(VERSION).tar.gz . + +deb: deborig + cd ../i2psetproxy.js-$(VERSION) && debuild -us -uc -rfakeroot diff --git a/debian/rules b/debian/rules index dca10d1..301830e 100755 --- a/debian/rules +++ b/debian/rules @@ -6,10 +6,26 @@ #export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed %: - dh $@ + dh $@ -#override_dh_auto_install: -# dh_auto_install -- prefix=/usr +override_dh_auto_install: + install -d $$(pwd)/debian/i2psetproxy.js/share/webext/i2psetproxy.js@eyedeekay.github.io \ + $$(pwd)/debian/i2psetproxy.js/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/ + install -d options $$(pwd)/debian/i2psetproxy.js/share/webext/i2psetproxy.js@eyedeekay.github.io/options + install -d icons $$(pwd)/debian/i2psetproxy.js/share/webext/i2psetproxy.js@eyedeekay.github.io/icons + install -d _locales $$(pwd)/debian/i2psetproxy.js/share/webext/i2psetproxy.js@eyedeekay.github.io/_locales + install background.js $$(pwd)/debian/i2psetproxy.js/share/webext/i2psetproxy.js@eyedeekay.github.io + install proxy.js $$(pwd)/debian/i2psetproxy.js/share/webext/i2psetproxy.js@eyedeekay.github.io + install info.js $$(pwd)/debian/i2psetproxy.js/share/webext/i2psetproxy.js@eyedeekay.github.io + install content.js $$(pwd)/debian/i2psetproxy.js/share/webext/i2psetproxy.js@eyedeekay.github.io + install info.css $$(pwd)/debian/i2psetproxy.js/share/webext/i2psetproxy.js@eyedeekay.github.io + install window.html $$(pwd)/debian/i2psetproxy.js/share/webext/i2psetproxy.js@eyedeekay.github.io + install manifest.json $$(pwd)/debian/i2psetproxy.js/share/webext/i2psetproxy.js@eyedeekay.github.io/ + install README.md $$(pwd)/debian/i2psetproxy.js/share/webext/i2psetproxy.js@eyedeekay.github.io + install LICENSE $$(pwd)/debian/i2psetproxy.js/share/webext/i2psetproxy.js@eyedeekay.github.io + ln -sf $$(pwd)/debian/i2psetproxy.js/share/webext/i2psetproxy.js@eyedeekay.github.io \ + $$(pwd)/debian/i2psetproxy.js/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/i2psetproxy.js@eyedeekay.github.io + #dh_auto_install -- prefix=/usr #override_dh_install: # dh_install --list-missing -X.pyc -X.pyo From ae6a543df5a7feeae8ce3bdea95e3eb8a025eb61 Mon Sep 17 00:00:00 2001 From: idk Date: Tue, 24 Sep 2019 22:44:56 -0400 Subject: [PATCH 3/6] fix some basic lintian stuff, leave some other stuff because later is probably better on these ones --- debian/control | 10 ++++++---- debian/copyright | 6 +++--- debian/rules | 41 ++++++++++++++++------------------------- debian/watch | 1 - 4 files changed, 25 insertions(+), 33 deletions(-) diff --git a/debian/control b/debian/control index 6a067ba..9654a9f 100644 --- a/debian/control +++ b/debian/control @@ -4,12 +4,14 @@ Priority: optional Maintainer: idk Build-Depends: debhelper (>=11~) Standards-Version: 4.1.4 -Homepage: +Homepage: https://github.com/eyedeekay/i2psetproxy.js Package: i2psetproxy.js Architecture: any Multi-Arch: foreign Depends: ${misc:Depends}, ${shlibs:Depends} -Description: auto-generated package by debmake - This Debian binary package was auto-generated by the - debmake(1) command provided by the debmake package. +Description: Plugin for configuring i2p in Firefox and Chromium + This is a webextension which safely configures a Browser on the + Debian operating system to use I2P. i2psetproxy.js users form + their own anonymity set, like TAILS users or Brave users do on + the Tor network. diff --git a/debian/copyright b/debian/copyright index 0981ad5..a31321b 100644 --- a/debian/copyright +++ b/debian/copyright @@ -1,6 +1,6 @@ Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: i2psetproxy.js -Source: +Source: https://github.com/eyedeekay/i2psetproxy.js # # Please double check copyright with the licensecheck(1) command. @@ -22,8 +22,8 @@ Files: .gitignore options/options.js privacy.js proxy.js -Copyright: __NO_COPYRIGHT_NOR_LICENSE__ -License: __NO_COPYRIGHT_NOR_LICENSE__ +Copyright: MIT +License: MIT Files: chromium/browser-polyfill.min.js Copyright: __NO_COPYRIGHT__ in: chromium/browser-polyfill.min.js diff --git a/debian/rules b/debian/rules index 301830e..f3a66d5 100755 --- a/debian/rules +++ b/debian/rules @@ -1,31 +1,22 @@ #!/usr/bin/make -f -# You must remove unused comment lines for the released package. -#export DH_VERBOSE = 1 -#export DEB_BUILD_MAINT_OPTIONS = hardening=+all -#export DEB_CFLAGS_MAINT_APPEND = -Wall -pedantic -#export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed %: dh $@ override_dh_auto_install: - install -d $$(pwd)/debian/i2psetproxy.js/share/webext/i2psetproxy.js@eyedeekay.github.io \ - $$(pwd)/debian/i2psetproxy.js/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/ - install -d options $$(pwd)/debian/i2psetproxy.js/share/webext/i2psetproxy.js@eyedeekay.github.io/options - install -d icons $$(pwd)/debian/i2psetproxy.js/share/webext/i2psetproxy.js@eyedeekay.github.io/icons - install -d _locales $$(pwd)/debian/i2psetproxy.js/share/webext/i2psetproxy.js@eyedeekay.github.io/_locales - install background.js $$(pwd)/debian/i2psetproxy.js/share/webext/i2psetproxy.js@eyedeekay.github.io - install proxy.js $$(pwd)/debian/i2psetproxy.js/share/webext/i2psetproxy.js@eyedeekay.github.io - install info.js $$(pwd)/debian/i2psetproxy.js/share/webext/i2psetproxy.js@eyedeekay.github.io - install content.js $$(pwd)/debian/i2psetproxy.js/share/webext/i2psetproxy.js@eyedeekay.github.io - install info.css $$(pwd)/debian/i2psetproxy.js/share/webext/i2psetproxy.js@eyedeekay.github.io - install window.html $$(pwd)/debian/i2psetproxy.js/share/webext/i2psetproxy.js@eyedeekay.github.io - install manifest.json $$(pwd)/debian/i2psetproxy.js/share/webext/i2psetproxy.js@eyedeekay.github.io/ - install README.md $$(pwd)/debian/i2psetproxy.js/share/webext/i2psetproxy.js@eyedeekay.github.io - install LICENSE $$(pwd)/debian/i2psetproxy.js/share/webext/i2psetproxy.js@eyedeekay.github.io - ln -sf $$(pwd)/debian/i2psetproxy.js/share/webext/i2psetproxy.js@eyedeekay.github.io \ - $$(pwd)/debian/i2psetproxy.js/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/i2psetproxy.js@eyedeekay.github.io - #dh_auto_install -- prefix=/usr - -#override_dh_install: -# dh_install --list-missing -X.pyc -X.pyo + install -d $$(pwd)/debian/i2psetproxy.js/usr/share/webext/i2psetproxy.js@eyedeekay.github.io \ + $$(pwd)/debian/i2psetproxy.js/usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/ + install -d options $$(pwd)/debian/i2psetproxy.js/usr/share/webext/i2psetproxy.js@eyedeekay.github.io/options + install -d icons $$(pwd)/debian/i2psetproxy.js/usr/share/webext/i2psetproxy.js@eyedeekay.github.io/icons + install -d _locales $$(pwd)/debian/i2psetproxy.js/usr/share/webext/i2psetproxy.js@eyedeekay.github.io/_locales + install background.js $$(pwd)/debian/i2psetproxy.js/usr/share/webext/i2psetproxy.js@eyedeekay.github.io + install proxy.js $$(pwd)/debian/i2psetproxy.js/usr/share/webext/i2psetproxy.js@eyedeekay.github.io + install info.js $$(pwd)/debian/i2psetproxy.js/usr/share/webext/i2psetproxy.js@eyedeekay.github.io + install content.js $$(pwd)/debian/i2psetproxy.js/usr/share/webext/i2psetproxy.js@eyedeekay.github.io + install info.css $$(pwd)/debian/i2psetproxy.js/usr/share/webext/i2psetproxy.js@eyedeekay.github.io + install window.html $$(pwd)/debian/i2psetproxy.js/usr/share/webext/i2psetproxy.js@eyedeekay.github.io + install manifest.json $$(pwd)/debian/i2psetproxy.js/usr/share/webext/i2psetproxy.js@eyedeekay.github.io/ + install README.md $$(pwd)/debian/i2psetproxy.js/usr/share/webext/i2psetproxy.js@eyedeekay.github.io + install LICENSE $$(pwd)/debian/i2psetproxy.js/usr/share/webext/i2psetproxy.js@eyedeekay.github.io + ln -sf $$(pwd)/debian/i2psetproxy.js/usr/share/webext/i2psetproxy.js@eyedeekay.github.io \ + $$(pwd)/debian/i2psetproxy.js/usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/i2psetproxy.js@eyedeekay.github.io diff --git a/debian/watch b/debian/watch index 76575dc..9e7c0da 100644 --- a/debian/watch +++ b/debian/watch @@ -1,2 +1 @@ -# You must remove unused comment lines for the released package. version=3 From 9716fd793d0b2da1e21e49de96a8557bc7c98b3b Mon Sep 17 00:00:00 2001 From: idk Date: Tue, 24 Sep 2019 22:47:10 -0400 Subject: [PATCH 4/6] fix some basic lintian stuff, leave some other stuff because later is probably better on these ones --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 0811549..ebe4e8a 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -9,7 +9,7 @@ jobs: - run: name: Dependencies - command: apt-get -yq install devscripts build-essential lintian zip make + command: apt-get update && apt-get -yq install devscripts build-essential lintian zip make - run: name: Build From 7dd7a43686c7d7b8b7158534d70d882e2692d905 Mon Sep 17 00:00:00 2001 From: idk Date: Wed, 25 Sep 2019 00:21:16 -0400 Subject: [PATCH 5/6] use the better base image --- .circleci/config.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index ebe4e8a..8e19295 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -2,15 +2,11 @@ version: 2 jobs: build: docker: - - image: debian:stretch + - image: eyedeekay/builders steps: - checkout - - run: - name: Dependencies - command: apt-get update && apt-get -yq install devscripts build-essential lintian zip make - - run: name: Build command: make zip deb From 48068f24fa4fc0ffdc72b0ea5941aaa15b675d67 Mon Sep 17 00:00:00 2001 From: idk Date: Wed, 25 Sep 2019 00:52:16 -0400 Subject: [PATCH 6/6] use the better base image --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 8e19295..2db2aed 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -9,4 +9,4 @@ jobs: - run: name: Build - command: make zip deb + command: make zip