Compare commits
18 Commits
upstream/0
...
master
| Author | SHA1 | Date |
|---|---|---|
|
|
b9a24d062d | |
|
|
b971e1787f | |
|
|
8a2bb5d88f | |
|
|
aa15f0a39b | |
|
|
6c6ffc35f9 | |
|
|
ff6ad55f9d | |
|
|
587bc2d32a | |
|
|
2a69919cf7 | |
|
|
b72fe4cec1 | |
|
|
6203244896 | |
|
|
eb51792639 | |
|
|
4f5e7bb2e7 | |
|
|
8e346b152b | |
|
|
3b8f4bf0e1 | |
|
|
47ca9862b9 | |
|
|
810d7699b1 | |
|
|
2bc567024a | |
|
|
396568a647 |
|
|
@ -0,0 +1,5 @@
|
|||
libhyprlang (0.5.1-1) unstable; urgency=low
|
||||
|
||||
* Initial release. Closes: #1065352
|
||||
|
||||
-- Alan M Varghese (NyxTrail) <alan@digistorm.in> Fri, 01 Mar 2024 21:02:26 +0000
|
||||
|
|
@ -0,0 +1,37 @@
|
|||
Source: libhyprlang
|
||||
Section: x11
|
||||
Priority: optional
|
||||
Maintainer: Alan M Varghese (NyxTrail) <alan@digistorm.in>
|
||||
Build-Depends: cmake, debhelper-compat (= 13)
|
||||
Standards-Version: 4.6.2
|
||||
Homepage: https://github.com/hyprwm/hyprlang
|
||||
Rules-Requires-Root: no
|
||||
Vcs-Git: https://salsa.debian.org/NyxTrail/hyprlang.git
|
||||
Vcs-Browser: https://salsa.debian.org/NyxTrail/hyprlang
|
||||
|
||||
Package: libhyprlang2
|
||||
Section: libs
|
||||
Architecture: any
|
||||
Depends: ${misc:Depends},
|
||||
${shlibs:Depends}
|
||||
Description: Configuration language for Hyprland (library)
|
||||
The hypr configuration language is an extremely efficient, yet easy
|
||||
to work with, configuration language for Linux applications.
|
||||
.
|
||||
It's user-friendly, easy to grasp, and easy to implement.
|
||||
.
|
||||
This package includes the shared library for hyprlang.
|
||||
|
||||
Package: libhyprlang-dev
|
||||
Section: libdevel
|
||||
Architecture: any
|
||||
Depends: ${misc:Depends},
|
||||
${shlibs:Depends},
|
||||
libhyprlang2 (= ${binary:Version})
|
||||
Description: Configuration language for Hyprland (development files)
|
||||
The hypr configuration language is an extremely efficient, yet easy
|
||||
to work with, configuration language for Linux applications.
|
||||
.
|
||||
It's user-friendly, easy to grasp, and easy to implement.
|
||||
.
|
||||
This package includes the development files for the hyprlang library.
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
||||
Upstream-Name: hyprlang
|
||||
Upstream-Contact: vaxerski <vaxry@vaxry.net>
|
||||
Source: https://github.com/hyprwm/hyprlang
|
||||
|
||||
Files: *
|
||||
Copyright: 2023-2024 Hypr Development <vaxry@vaxry.net>
|
||||
License: LGPL-3+
|
||||
|
||||
Files: debian/*
|
||||
Copyright: 2024 Alan M Varghese <alan@digistorm.in>
|
||||
License: LGPL-3+
|
||||
|
||||
License: LGPL-3+
|
||||
This is free software, licensed under:
|
||||
The GNU Lesser General Public License, Version 3, 29 June 2007
|
||||
This program is free software; you can redistribute it and/or modify it
|
||||
under the terms of the GNU Lesser General Public License as published by
|
||||
the Free Software Foundation; version 3 of the license.
|
||||
.
|
||||
On Debian systems, the complete text of version 3 of the GNU Lesser
|
||||
General Public License can be found in '/usr/share/common-licenses/LGPL-3'.
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
usr/include
|
||||
usr/lib/*/libhyprlang.so
|
||||
usr/lib/*/pkgconfig/hyprlang.pc
|
||||
|
|
@ -0,0 +1 @@
|
|||
usr/lib/*/libhyprlang.so.*
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
#!/usr/bin/make -f
|
||||
export DH_VERBOSE = 1
|
||||
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
|
||||
export DEB_CFLAGS_MAINT_APPEND = -Wall -pedantic
|
||||
export DEB_LDFLAGS_MAINT_APPEND = -Wl,-O1
|
||||
|
||||
%:
|
||||
dh $@
|
||||
|
|
@ -0,0 +1 @@
|
|||
3.0 (quilt)
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
#
|
||||
# DEP-12: Per-package machine-readable metadata about Upstream
|
||||
# Please check * https://dep-team.pages.debian.net/deps/dep12/
|
||||
# * https://wiki.debian.org/UpstreamMetadata
|
||||
Bug-Database: https://github.com/hyprwm/hyprlang/issues
|
||||
Bug-Submit: https://github.com/hyprwm/hyprlang/issues/new
|
||||
Repository: https://github.com/hyprwm/hyprlang
|
||||
Repository-Browse: https://github.com/hyprwm/hyprlang
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
version=4
|
||||
opts="searchmode=html" \
|
||||
https://github.com/hyprwm/hyprlang/tags \
|
||||
https://github.com/hyprwm/hyprlang/archive/refs/tags/v(\d+.\d+.\d+)\.tar\.gz
|
||||
Loading…
Reference in New Issue