aboutsummaryrefslogtreecommitdiffhomepage
path: root/debian
diff options
context:
space:
mode:
Diffstat (limited to 'debian')
-rw-r--r--debian/changelog14
-rw-r--r--debian/control16
-rw-r--r--debian/copyright31
-rwxr-xr-xdebian/rules16
-rwxr-xr-xdebian/sciteco-gtk.install2
5 files changed, 39 insertions, 40 deletions
diff --git a/debian/changelog b/debian/changelog
index fc8c229..ddea47c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,20 @@
+sciteco (2.5.1) unstable; urgency=low
+
+ * new upstream version v2.5.1
+
+ -- Robin Haberkorn <rhaberkorn@fmsbw.de> Sat, 10 Jan 2026 15:16:39 +0000
+
+sciteco (2.5.0-0) unstable; urgency=low
+
+ * new upstream version v2.5.0
+
+ -- Robin Haberkorn <rhaberkorn@fmsbw.de> Wed, 31 Dec 2025 19:49:12 +0000
+
sciteco (2.4.0-0) unstable; urgency=low
* new upstream version v2.4.0
- -- Robin Haberkorn <robin.haberkorn@googlemail.com> Tue, 01 Apr 2025 01:02:03 +0000
+ -- Robin Haberkorn <robin.haberkorn@googlemail.com> Sat, 19 Apr 2025 22:11:34 +0000
sciteco (2.3.0-0) unstable; urgency=low
diff --git a/debian/control b/debian/control
index a5cdc76..0237784 100644
--- a/debian/control
+++ b/debian/control
@@ -1,15 +1,17 @@
Source: sciteco
Section: editors
Priority: optional
-Maintainer: Robin Haberkorn <robin.haberkorn@googlemail.com>
-Build-Depends: debhelper (>= 10), dh-exec, g++ (>= 4:5.0), libglib2.0-dev (>= 2.44),
+Maintainer: Robin Haberkorn <rhaberkorn@fmsbw.de>
+Build-Depends: debhelper (>= 10), dh-exec, dh-autoreconf,
+ gcc (>= 4:8.1), g++ (>= 4:8.1),
+ libglib2.0-dev (>= 2.44),
ncurses-term, libncurses-dev,
- libgtk-3-dev (>= 3.12), xvfb,
- groff
+ libgtk-3-dev (>= 3.24), xvfb, xauth,
+ groff (>= 1.19.2)
Standards-Version: 4.5.0
-Homepage: https://rhaberkorn.github.io/sciteco/
-Vcs-Browser: https://github.com/rhaberkorn/sciteco
-Vcs-Git: git://github.com/rhaberkorn/sciteco.git
+Homepage: https://sciteco.fmsbw.de/
+Vcs-Browser: https://git.fmsbw.de/sciteco
+Vcs-Git: git://git.fmsbw.de/sciteco
Package: sciteco-curses
Architecture: any
diff --git a/debian/copyright b/debian/copyright
index 83c46ac..b8908ae 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -1,10 +1,10 @@
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: SciTECO
-Upstream-Contact: robin.haberkorn@googlemail.com
-Source: https://github.com/rhaberkorn/sciteco
+Upstream-Contact: rhaberkorn@fmsbw.de
+Source: https://git.fmsbw.de/sciteco
Files: *
-Copyright: Copyright 2012-2025 Robin Haberkorn <robin.haberkorn@googlemail.com>
+Copyright: Copyright 2012-2026 Robin Haberkorn <rhaberkorn@fmsbw.de>
License: GPL-3
/usr/share/common-licenses/GPL-3
@@ -81,28 +81,3 @@ License: MIT
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.
-
-Files: contrib/mingw-bundledlls
-Copyright: Copyright 2015 Martin Preisler
-License: MIT
- The MIT License
- .
- Copyright (c) 2015 Martin Preisler
- .
- 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/rules b/debian/rules
index 1808b15..cd684aa 100755
--- a/debian/rules
+++ b/debian/rules
@@ -26,16 +26,25 @@ NUMJOBS = $(patsubst parallel=%,%,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
MAKEFLAGS += -j$(NUMJOBS)
endif
+# In case `make check` fails, there will be a complete log.
+# FIXME: Not all distributions appear to support --color=never.
+#export TESTSUITEFLAGS="--verbose --color=never"
+export TESTSUITEFLAGS="--verbose"
+
%:
dh $@
build build-arch build-indep: build-curses-stamp build-gtk-stamp;
+autoreconf-stamp:
+ dh_testdir
+ test -x ./configure || dh_autoreconf
+ touch $@
+
# NOTE: The datadir will be relative to the binary location at runtime.
# This makes the binary relocateable, which is important when creating
# AppImages from the Debian packages.
-build-curses-stamp:
- dh_testdir
+build-curses-stamp: autoreconf-stamp
rm -rf build-curses
dh_auto_configure -Bbuild-curses -- \
--with-interface=ncurses \
@@ -46,8 +55,7 @@ build-curses-stamp:
# NOTE: This does not depend on install-curses-stamp and uses
# --disable-bootstrap to speed up builds since that would prevent parallel builds.
-build-gtk-stamp:
- dh_testdir
+build-gtk-stamp: autoreconf-stamp
rm -rf build-gtk
dh_auto_configure -Bbuild-gtk -- \
--program-prefix=g \
diff --git a/debian/sciteco-gtk.install b/debian/sciteco-gtk.install
index bafa0d8..7381dd7 100755
--- a/debian/sciteco-gtk.install
+++ b/debian/sciteco-gtk.install
@@ -1,4 +1,6 @@
#!/usr/bin/dh-exec
+# NOTE: DO NOT REMOVE THE EXECUTABLE FLAG FROM THIS FILE
+
usr/bin/gsciteco
# Theoretically, these scripts could be in sciteco-common,
# but they need an interpreter and the name depends on the version installed.