apt install dpkg-dev devscripts
apt build-dep <package-name>
debuild -b -uc -us
-b: Build binary packages only
-uc: Prevent signing of chainlog
-us: Prevent signing of Source Code
dpkg-buildpackage -b -uc -us
apt-get source --compile <package-name>
apt install zathura-dev libjbig2dec0-dev libmupdf-dev libopenjp2-7-dev libssl-dev
https://debian-handbook.info/browse/stable/debian-packaging.html
https://git.pwmt.org/pwmt/zathura/-/issues/174
[libmupdf-dev] unable to link against libmupdf.a
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=617253
RFP: zathura-mupdf -- mupdf backend for zathura
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=833068
[mupdf] Please support to compile fitz as a .so
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=719351
mupdf upstreams says "fitz is still immature and should not be
exposed nor dynamically linked" (#719351)
RFP: zathura-mupdf -- mupdf backend for zathura
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=731447
This is blocked by a proper fix for #617253. Ideally, mupdf would start
to provide a shared library (#719351) and commit to a somewhat stable
API. mupdf needs to get in a better shape before zathura-pdf-mupdf can
be packaged
https://gitlab.com/paretje/zathura-pdf-mupdf
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1073285
some download stuck at 99.99% , merge them regardless got to ~/.xdm-app-data/Data/*.state cat dec.py import os import re # Define the pattern to extract the segment number pattern = re.compile(r'seg-(\d+)-v1-a1\.ts') # Get the current working directory current_directory = os.getcwd() # List to hold tuples of (segment_number, filename) files_with_segments = [] # Iterate through files in the current directory for filename in os.listdir(current_directory): match = pattern.search(filename) if match: # Extract the segment number as an integer segment_number = int(match.group(1)) # Add the tuple (segment_number, filename) to the list files_with_segments.append((segment_number, filename)) # Sort the list by the segment number (numerical sort) files_with_segments.sort(key=lambda x: x[0]) # Open the filelist.txt for writing with open('filelist.txt', 'w') as filelist: for _, filename in files_with_segments: file...
Comments
Post a Comment