Compare commits
3 Commits
cee0af195e
...
baf7daa1bb
Author | SHA1 | Date | |
---|---|---|---|
baf7daa1bb | |||
43b0c0a399 | |||
7ac2cab082 |
6
Makefile
6
Makefile
@ -61,10 +61,14 @@ deb:
|
|||||||
$(Q) git archive --format tar --prefix lume-$(DEBVERSION)/ $(LUME_VERSION) | xz > $(DEBBUILDDIR)/$(DEBORIGSRC)
|
$(Q) git archive --format tar --prefix lume-$(DEBVERSION)/ $(LUME_VERSION) | xz > $(DEBBUILDDIR)/$(DEBORIGSRC)
|
||||||
$(Q) tar xf $(DEBBUILDDIR)/$(DEBORIGSRC) -C $(DEBBUILDDIR)
|
$(Q) tar xf $(DEBBUILDDIR)/$(DEBORIGSRC) -C $(DEBBUILDDIR)
|
||||||
$(Q) mkdir $(DEBBUILDDIR)/$(DEBORIGSRCDIR)/debian
|
$(Q) mkdir $(DEBBUILDDIR)/$(DEBORIGSRCDIR)/debian
|
||||||
|
$(Q) mkdir $(DEBBUILDDIR)/$(DEBORIGSRCDIR)/debian/source
|
||||||
$(Q) sed -e 's/__VERSION__/$(DEBVERSION)/g' $(DEBTMPLDIR)/rules > $(DEBBUILDDIR)/$(DEBORIGSRCDIR)/debian/rules
|
$(Q) sed -e 's/__VERSION__/$(DEBVERSION)/g' $(DEBTMPLDIR)/rules > $(DEBBUILDDIR)/$(DEBORIGSRCDIR)/debian/rules
|
||||||
|
$(Q) chmod 0755 $(DEBBUILDDIR)/$(DEBORIGSRCDIR)/debian/rules
|
||||||
$(Q) sed -e 's/__VERSION__/$(DEBVERSION)/g' -e 's/__DATE__/$(DEBDATE)/g' $(DEBTMPLDIR)/changelog > $(DEBBUILDDIR)/$(DEBORIGSRCDIR)/debian/changelog
|
$(Q) sed -e 's/__VERSION__/$(DEBVERSION)/g' -e 's/__DATE__/$(DEBDATE)/g' $(DEBTMPLDIR)/changelog > $(DEBBUILDDIR)/$(DEBORIGSRCDIR)/debian/changelog
|
||||||
$(Q) echo 9 > $(DEBBUILDDIR)/$(DEBORIGSRCDIR)/debian/compat
|
$(Q) echo 10 > $(DEBBUILDDIR)/$(DEBORIGSRCDIR)/debian/compat
|
||||||
|
$(Q) echo "3.0 (quilt)" > $(DEBBUILDDIR)/$(DEBORIGSRCDIR)/debian/source/format
|
||||||
$(Q) cp $(DEBTMPLDIR)/control $(DEBBUILDDIR)/$(DEBORIGSRCDIR)/debian/control
|
$(Q) cp $(DEBTMPLDIR)/control $(DEBBUILDDIR)/$(DEBORIGSRCDIR)/debian/control
|
||||||
|
$(Q) cp $(DEBTMPLDIR)/copyright $(DEBBUILDDIR)/$(DEBORIGSRCDIR)/debian/copyright
|
||||||
$(Q) cd $(DEBBUILDDIR)/$(DEBORIGSRCDIR) && dpkg-buildpackage -us -uc
|
$(Q) cd $(DEBBUILDDIR)/$(DEBORIGSRCDIR) && dpkg-buildpackage -us -uc
|
||||||
$(Q) mv $(DEBBUILDDIR)/*.dsc $(BUILDDIR)
|
$(Q) mv $(DEBBUILDDIR)/*.dsc $(BUILDDIR)
|
||||||
$(Q) mv $(DEBBUILDDIR)/*.changes $(BUILDDIR)
|
$(Q) mv $(DEBBUILDDIR)/*.changes $(BUILDDIR)
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
lume (__VERSION__) UNRELEASED; urgency=medium
|
lume (__VERSION__) unstable; urgency=medium
|
||||||
|
|
||||||
* Package generated with make deb
|
* Package generated with make deb
|
||||||
|
|
||||||
|
@ -1 +0,0 @@
|
|||||||
9
|
|
@ -1,7 +1,14 @@
|
|||||||
Source: lume
|
Source: lume
|
||||||
|
Section: unknown
|
||||||
|
Priority: optional
|
||||||
Maintainer: Ryan Cavicchioni <ryan@cavi.cc>
|
Maintainer: Ryan Cavicchioni <ryan@cavi.cc>
|
||||||
|
Build-Depends: debhelper (>= 10)
|
||||||
|
Standards-Version: 4.1.2
|
||||||
|
Homepage: https://git.kill0.net/chill9/lume
|
||||||
|
Vcs-Git: https://git.kill0.net/chill9/lume.git
|
||||||
|
Vcs-Browser: https://git.kill0.net/chill9/lume.git
|
||||||
|
|
||||||
Package: lume
|
Package: lume
|
||||||
Architecture: any
|
Architecture: any
|
||||||
Depends: ${misc:Depends}, ${shlibs:Depends}
|
Depends: ${shlibs:Depends}, ${misc:Depends}
|
||||||
Description: A CLI tool for the LIFX HTTP API
|
Description: A CLI tool for the LIFX HTTP API
|
||||||
|
28
packaging/debian/copyright
Normal file
28
packaging/debian/copyright
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
||||||
|
Upstream-Name: lume
|
||||||
|
Source: https://git.kill0.net/chill9/lume
|
||||||
|
|
||||||
|
Files: *
|
||||||
|
Copyright: 2021 Ryan Cavicchioni <ryan@cavi.cc>
|
||||||
|
License: MPL-2.0
|
||||||
|
|
||||||
|
License: MPL-2.0
|
||||||
|
Licensed under the Mozilla Public License License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License. You may
|
||||||
|
obtain a copy of the License at
|
||||||
|
.
|
||||||
|
https://www.mozilla.org/en-US/MPL/2.0/
|
||||||
|
.
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
||||||
|
.
|
||||||
|
On Debian systems, the complete text of the Mozilla Public License version 2.0
|
||||||
|
license can be found in "/usr/share/common-licenses/MPL-2.0".
|
||||||
|
|
||||||
|
# Please also look if there are files or directories which have a
|
||||||
|
# different copyright/license attached and list them here.
|
||||||
|
# Please avoid picking licenses with terms that are more restrictive than the
|
||||||
|
# packaged work, as it may make Debian's contributions unacceptable upstream.
|
Loading…
Reference in New Issue
Block a user